diff --git a/assess-common/src/main/java/com/common/constant/ModelParameter.java b/assess-common/src/main/java/com/common/constant/ModelParameter.java index aea8b7c6293c31bef09bc7f83e302f93b802f0d9..9a8b188b5cf9f2155a0edcace4247c421d3c4098 100644 --- a/assess-common/src/main/java/com/common/constant/ModelParameter.java +++ b/assess-common/src/main/java/com/common/constant/ModelParameter.java @@ -2,27 +2,60 @@ package com.common.constant; public class ModelParameter { + // Commits + public static final double COMMITS_MEDIAN = 250; + public static final double COMMITS_WEIGHT = 2; + + // Pull Requests + public static final double PRS_MEDIAN = 50; + public static final double PRS_WEIGHT = 3; + + // Issues + public static final double ISSUES_MEDIAN = 25; + public static final double ISSUES_WEIGHT = 2; + + // Repositories + public static final double REPOS_MEDIAN = 30; + public static final double REPOS_WEIGHT = 1; + + // Stars + public static final double STARS_MEDIAN = 100; + public static final double STARS_WEIGHT = 1; + + // Followers + public static final double FOLLOWERS_MEDIAN = 10; + public static final double FOLLOWERS_WEIGHT = 3; + + // Forks + public static final double FORKS_MEDIAN = 30; + public static final double FORKS_WEIGHT = 1; + + // Total Stars + public static final double TOTALSTARS_MEDIAN = 100; + public static final double TOTALSTARS_WEIGHT = 4; + + //归一化参数 x 最大值 最小值 //处理类型包括:commit、pr、issue、fork、获得点赞数 - public static final double COMMIT_MAX = 0; + public static final double COMMIT_MAX = 500; public static final double COMMIR_MIN = 0; - public static final double PR_MAX = 0; + public static final double PR_MAX = 75; public static final double PR_MIN = 0; - public static final double ISSUE_MAX = 0; + public static final double ISSUE_MAX = 221; public static final double ISSUE_MIN = 0; - public static final double FORK_MAX = 0; + public static final double FORK_MAX = 110; public static final double FORK_MIN = 0; - public static final double TOTALSTAR_MAX = 0; + public static final double TOTALSTAR_MAX = 3948; public static final double TOTALSTAR_MIN = 0; //标准化参数 x 均值 标准差 //处理类型包括:粉丝、repo数、点赞数 - public static final double FOLLOWER_MEAN = 0; - public static final double FOLLOER_StdDEV = 0; - public static final double REPO_MEAN = 0; - public static final double REPO_StdDEV = 0; + public static final double FOLLOWER_MEAN = 179.66858308605342; + public static final double FOLLOER_StdDEV = 1029.0716248007864; + public static final double REPO_MEAN = 56.61016320474778; + public static final double REPO_StdDEV = 184.67805039307433; public static final double STAR_MEAN = 0; public static final double STAR_StdDEV = 0; diff --git a/assess-common/src/main/java/com/common/entity/Developer.java b/assess-common/src/main/java/com/common/entity/Developer.java index 9ec130f68c4115d4d9dfe0872feb4ca067a3026b..fdb1072b902fe7078f631306d394978b6a2accd9 100644 --- a/assess-common/src/main/java/com/common/entity/Developer.java +++ b/assess-common/src/main/java/com/common/entity/Developer.java @@ -18,88 +18,135 @@ import lombok.*; @EqualsAndHashCode(callSuper = false) @TableName("developer") public class Developer { - //主键 @TableId(type = IdType.AUTO) + @TableField("id") private Long id; + @TableField("level") private String level; + + @TableField("percentile") private double percentile; @TableField("username") private String userName; + @TableField("commits") private int commits; + + @TableField("prs") private int prs; + + @TableField("issues") private int issues; @TableField("total_start") - private int totalstart;//获得点赞数 + private int totalstart; // 获得点赞数 + + @TableField("forks") private int forks; - private int start;//点赞数 - - //个人信息 + @TableField("start") + private int start; // 点赞数 + + // 个人信息 + @TableField("name") private String name; + + @TableField("company") private String company; + + @TableField("blog") private String blog; + + @TableField("location") private String location; + + @TableField("email") private String email; + + @TableField("hireable") private String hireable; + + @TableField("bio") private String bio; - private String twitter_username; - //公开信息计数统计 - private int public_repos; - private int public_gists; + @TableField("twitter_username") + private String twitterUsername; + + // 公开信息计数统计 + @TableField("public_repos") + private int publicRepos; + + @TableField("public_gists") + private int publicGists; + + @TableField("followers") private int followers; - private int following; + @TableField("following") + private int following; - //私有信息计数统计 - private int private_gists; - private int total_private_repos; - private int owned_private_repos; + // 私有信息计数统计 + @TableField("private_gists") + private int privateGists; - //创建、更新时间 - private String created_at; - private String updated_at; + @TableField("total_private_repos") + private int totalPrivateRepos; - //头像url - private String avatar_url; + @TableField("owned_private_repos") + private int ownedPrivateRepos; - //api-url - private String url; - - //html-url - private String html_url; + // 创建、更新时间 + @TableField("created_at") + private String createdAt; - //粉丝列表 - private String followers_url; + @TableField("updated_at") + private String updatedAt; - //关注列表 - private String following_url; + // 头像url + @TableField("avatar_url") + private String avatarUrl; - //笔记列表 - private String gists_url; + // api-url + @TableField("url") + private String url; - //标星列表 - private String starred_url; + // html-url + @TableField("html_url") + private String htmlUrl; + // 粉丝列表 + @TableField("followers_url") + private String followersUrl; - //仓库列表 - private String repos_url; + // 关注列表 + @TableField("following_url") + private String followingUrl; - //公开活动列表 --反映活跃度 - private String events_url; + // 笔记列表 + @TableField("gists_url") + private String gistsUrl; - //和别人有关的活动列表 --受欢迎程度 - private String received_events_url; + // 标星列表 + @TableField("starred_url") + private String starredUrl; - //是否为Github管理员 - private boolean site_admin; -} + // 仓库列表 + @TableField("repos_url") + private String reposUrl; + // 公开活动列表 --反映活跃度 + @TableField("events_url") + private String eventsUrl; + // 和别人有关的活动列表 --受欢迎程度 + @TableField("received_events_url") + private String receivedEventsUrl; + // 是否为Github管理员 + @TableField("site_admin") + private boolean siteAdmin; +} diff --git a/assess-common/src/main/java/com/common/util/DeveloperConverter.java b/assess-common/src/main/java/com/common/util/DeveloperConverter.java index 19d5eb026488f9df444dda508b24438c2ee23102..f7836d464c0810c489b84168afe7c946d9ed3326 100644 --- a/assess-common/src/main/java/com/common/util/DeveloperConverter.java +++ b/assess-common/src/main/java/com/common/util/DeveloperConverter.java @@ -18,10 +18,10 @@ public class DeveloperConverter { developerVO.setTotalstart(developer.getTotalstart()); developerVO.setForks(developer.getForks()); developerVO.setStart(developer.getStart()); - developerVO.setPublic_repos(developer.getPublic_repos()); + developerVO.setPublic_repos(developer.getPublicRepos()); developerVO.setFollowers(developer.getFollowers()); developerVO.setLocation(developer.getLocation()); - developerVO.setAvatar_url(developer.getAvatar_url()); + developerVO.setAvatar_url(developer.getAvatarUrl()); developerVO.setLevel(developer.getLevel()); developerVO.setPercentile(developer.getPercentile()); diff --git a/assess-common/src/main/java/com/common/vo/DeveloperVO.java b/assess-common/src/main/java/com/common/vo/DeveloperVO.java index 8b4f7f2b765c6567782a421fa1f95f0772da5425..8082c73b966e3e988c66dce55517676f02743985 100644 --- a/assess-common/src/main/java/com/common/vo/DeveloperVO.java +++ b/assess-common/src/main/java/com/common/vo/DeveloperVO.java @@ -1,10 +1,7 @@ package com.common.vo; import com.common.dto.RankDTO; -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Data; -import lombok.NoArgsConstructor; +import lombok.*; /** * 返回展示结果数据 diff --git a/assess-web/pom.xml b/assess-web/pom.xml index c8ee3afe6731ae109a51ae3ffbfbe076ae3f0044..5692bfdb0a599de90b42290f359a327431056f25 100644 --- a/assess-web/pom.xml +++ b/assess-web/pom.xml @@ -78,6 +78,25 @@ org.springframework spring-test + + org.springframework.boot + spring-boot-test-autoconfigure + + + org.mockito + mockito-core + + + + + io.springfox + springfox-swagger2 + + + + io.springfox + springfox-swagger-ui + diff --git a/assess-web/src/main/java/com/web/config/MybatisPlusConfig.java b/assess-web/src/main/java/com/web/config/MybatisPlusConfig.java index 67b174f00a1542f9a16b9517f4eef58db011dd7a..9bd91f06d60ccb34b19153a7af2748d1a09dce15 100644 --- a/assess-web/src/main/java/com/web/config/MybatisPlusConfig.java +++ b/assess-web/src/main/java/com/web/config/MybatisPlusConfig.java @@ -1,6 +1,7 @@ package com.web.config; import com.baomidou.mybatisplus.annotation.DbType; +import com.baomidou.mybatisplus.autoconfigure.ConfigurationCustomizer; import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor; import org.mybatis.spring.annotation.MapperScan; @@ -13,8 +14,15 @@ public class MybatisPlusConfig { @Bean public MybatisPlusInterceptor mybatisPlusInterceptor() { MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); - //添加分页插件 - interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); + PaginationInnerInterceptor paginationInnerInterceptor = new PaginationInnerInterceptor(); + paginationInnerInterceptor.setDbType(DbType.MYSQL); + paginationInnerInterceptor.setOverflow(true); + interceptor.addInnerInterceptor(paginationInnerInterceptor); return interceptor; } + + @Bean + public ConfigurationCustomizer configurationCustomizer() { + return configuration -> configuration.setUseGeneratedKeys(false); + } } diff --git a/assess-web/src/main/java/com/web/config/SwaggerConfig.java b/assess-web/src/main/java/com/web/config/SwaggerConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..5c7d0fd9a23b0579ab785f193b5db2f851755951 --- /dev/null +++ b/assess-web/src/main/java/com/web/config/SwaggerConfig.java @@ -0,0 +1,47 @@ +package com.web.config; + +import io.swagger.annotations.ApiOperation; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import springfox.documentation.builders.ApiInfoBuilder; +import springfox.documentation.builders.PathSelectors; +import springfox.documentation.builders.RequestHandlerSelectors; +import springfox.documentation.service.ApiInfo; +import springfox.documentation.service.Contact; +import springfox.documentation.spi.DocumentationType; +import springfox.documentation.spring.web.plugins.Docket; +import springfox.documentation.swagger2.annotations.EnableSwagger2; + +import java.util.ArrayList; + +@Configuration //配置类 +@EnableSwagger2// 开启Swagger2的自动配置 +public class SwaggerConfig { + @Bean + public Docket productApi() { + return new Docket(DocumentationType.SWAGGER_2) + .apiInfo(apiInfo()) + .select() + .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) //添加ApiOperiation注解的被扫描 + .paths(PathSelectors.any()) + .build(); + + } + + //配置文档信息 + private ApiInfo apiInfo() { + Contact contact = new Contact("koko", "http://xxx.xxx.com/联系人访问链接", "联系人邮箱"); + return new ApiInfo( + "Swagger学习", // 标题 + "学习演示如何配置Swagger", // 描述 + "v1.0", // 版本 + "http://terms.service.url/组织链接", // 组织链接 + contact, // 联系人信息 + "Apach 2.0 许可", // 许可 + "许可链接", // 许可连接 + new ArrayList<>()// 扩展 + ); + } + + +} diff --git a/assess-web/src/main/java/com/web/controller/DeveloperContoller.java b/assess-web/src/main/java/com/web/controller/DeveloperContoller.java index ba494ab7c25c3ca4e718c17810971295a09773a3..7af587bd1c07afebae92fe49ed166c3023743a7c 100644 --- a/assess-web/src/main/java/com/web/controller/DeveloperContoller.java +++ b/assess-web/src/main/java/com/web/controller/DeveloperContoller.java @@ -5,6 +5,9 @@ import com.common.vo.DeveloperVO; import com.common.vo.PageResult; import com.common.vo.Result; import com.web.service.DeveloperService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; @@ -23,35 +26,41 @@ import java.io.IOException; */ @RestController @Slf4j +@Api(value = "开发者Controller", tags = { "开发者信息接口" }) public class DeveloperContoller { @Autowired DeveloperService developerService; @GetMapping("/page") + @ApiOperation(value = "分页加载数据") public Result page(PageQuery pageQuery){ log.info("分页查询:{}",pageQuery); PageResult pageResult = developerService.pageQuery(pageQuery); return Result.success(pageResult); } - //查询 @GetMapping("/inquire") + @ApiOperation(value = "加载指定地区的数据") public Result query(@RequestParam(required = false) String areas){ PageResult query = developerService.query(areas); return Result.success(query); } + + @GetMapping("/info") - public Result getDeveloper() { - String userName = "nomop"; - log.info("查找开发者信息:{}",userName); - DeveloperVO developer = developerService.getDeveloper(userName); - if(developer == null){ + @ApiOperation(value = "根据名字获取开发者评估信息") + public Result getDeveloper(@RequestParam("username") String username) { + log.info("查找开发者信息:{}", username); + DeveloperVO developer = developerService.getDeveloper(username); + if (developer == null) { return Result.error("用户不存在"); } return Result.success(developer); } + + //这个只是用来初始化数据库的 @GetMapping("/load") public void loadDeveloperByCSV() { String path = "D:/_Project/1024-creative-festival/script/userList.csv"; @@ -65,11 +74,17 @@ public class DeveloperContoller { // 读取数据行 while ((line = br.readLine()) != null) { - if(index == 1000){ + if(index == 10000){ break; } - if(index>=679){ + if(line.contains("[bot]")){ + continue; + } + if(index>=5220){ DeveloperVO developer = developerService.getDeveloper(line); + if(developer == null){ + continue; + } System.out.println("name=====" + developer.getUserName() + "======"); } System.out.println("当前数据量:=======" + index + "======="); diff --git a/assess-web/src/main/java/com/web/mapper/DeveloperMapper.java b/assess-web/src/main/java/com/web/mapper/DeveloperMapper.java index 4a6182b801040b49143935fd1b354bed0817f3a5..d288be9886516c197d47b299d8716e404558b912 100644 --- a/assess-web/src/main/java/com/web/mapper/DeveloperMapper.java +++ b/assess-web/src/main/java/com/web/mapper/DeveloperMapper.java @@ -3,7 +3,11 @@ package com.web.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.common.entity.Developer; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Result; +import org.apache.ibatis.annotations.Results; +import org.apache.ibatis.annotations.Select; @Mapper public interface DeveloperMapper extends BaseMapper { + } diff --git a/assess-web/src/main/java/com/web/service/DeveloperService.java b/assess-web/src/main/java/com/web/service/DeveloperService.java index 315609dc7550dcc849de87a27a824df3c43546bd..a51b1841447e4e97ee4e72c30835ffe9aaa36b40 100644 --- a/assess-web/src/main/java/com/web/service/DeveloperService.java +++ b/assess-web/src/main/java/com/web/service/DeveloperService.java @@ -17,5 +17,7 @@ public interface DeveloperService extends IService { DeveloperVO getDeveloper(String userName); PageResult query(String areas); + void cleanData(); + } diff --git a/assess-web/src/main/java/com/web/service/impl/DeveloperServiceImpl.java b/assess-web/src/main/java/com/web/service/impl/DeveloperServiceImpl.java index 6a5c591889a33ffd99650831102ddb8d76f3123a..29809145ff4a1f38d14b5ba7e4b0e952f5d4cee6 100644 --- a/assess-web/src/main/java/com/web/service/impl/DeveloperServiceImpl.java +++ b/assess-web/src/main/java/com/web/service/impl/DeveloperServiceImpl.java @@ -1,11 +1,13 @@ package com.web.service.impl; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.common.dto.PageQuery; +import com.common.dto.RankDTO; import com.common.entity.Developer; import com.common.util.DeveloperConverter; import com.common.vo.DeveloperVO; @@ -13,6 +15,7 @@ import com.common.vo.PageResult; import com.web.mapper.DeveloperMapper; import com.web.service.DeveloperService; import com.web.service.FormatDeveloper; +import com.web.service.RankModel; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; @@ -36,45 +39,42 @@ public class DeveloperServiceImpl extends ServiceImpl @Autowired private FormatDeveloper formatDeveloperService; - public PageResult pageQuery(PageQuery pageQuery) { + @Autowired + private RankModel rankModelService; - Page page = new Page<>(pageQuery.getPage(), pageQuery.getPageSize(),true); + public PageResult pageQuery(PageQuery pageQuery) { + Page page = new Page<>(pageQuery.getPage(), pageQuery.getPageSize(), true); Page developerPage = developerMapper.selectPage(page, new QueryWrapper<>()); - //获取总条数 + // 获取总条数 long total = developerPage.getTotal(); - //将数据库数据转换为VO + + // 将数据库数据转换为VO,使用转换器,并按 percentile 降序排序 List collect = developerPage.getRecords().stream() - .map(developer -> { - DeveloperVO developerVO = new DeveloperVO(); - developerVO.setUserName(developer.getUserName()); - developerVO.setCommits(developer.getCommits()); - developerVO.setPrs(developer.getPrs()); - developerVO.setIssues(developer.getIssues()); - developerVO.setTotalstart(developer.getTotalstart()); - developerVO.setForks(developer.getForks()); - developerVO.setStart(developer.getStart()); - developerVO.setPublic_repos(developer.getPublic_repos()); - developerVO.setFollowers(developer.getFollowers()); - developerVO.setLocation(developer.getLocation()); - developerVO.setAvatar_url(developer.getAvatar_url()); - developerVO.setLevel(developer.getLevel()); - developerVO.setPercentile(developer.getPercentile()); - return developerVO; - }).collect(Collectors.toList()); + .map(DeveloperConverter::convertToVO) + .sorted((vo1, vo2) -> Double.compare(vo2.getPercentile(), vo1.getPercentile())) // 按 percentile 降序排序 + .collect(Collectors.toList()); + PageResult pageResult = new PageResult(total, collect); return pageResult; - } + //从数据库里查询一个开发者信息 public DeveloperVO getDeveloper(String userName) { //在数据库中查找,有则返回,没有则插入再返回 - QueryWrapper queryWrapper = new QueryWrapper<>(); - queryWrapper.eq("userName", userName); - Developer developer = developerMapper.selectOne(queryWrapper); + LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); + queryWrapper.eq(Developer::getUserName, userName); + Developer developer1 = developerMapper.selectOne(queryWrapper); + System.out.println(developer1); + Developer developer = developer1; if (developer != null) { + String location = developer.getLocation(); + //预测location + if(location == null){ + developer.setLocation("未知"); + } //转换器 return DeveloperConverter.convertToVO(developer); } @@ -86,12 +86,16 @@ public class DeveloperServiceImpl extends ServiceImpl return null; } + String location = developerVO.getLocation(); + //预测location + if(location == null){ + developerVO.setLocation("未知"); + } return developerVO; } - //查询 - @Override + //查询指定地区的数据 public PageResult query(String areas) { // 创建 QueryWrapper 对象 QueryWrapper queryWrapper = new QueryWrapper<>(); @@ -109,10 +113,30 @@ public class DeveloperServiceImpl extends ServiceImpl BeanUtils.copyProperties(developer, developerVO); return developerVO; }) + .sorted((vo1, vo2) -> Double.compare(vo2.getPercentile(), vo1.getPercentile())) // 按 percentile 降序排序 .collect(Collectors.toList()); return new PageResult(developerVOS.size(), developerVOS); } + + public void cleanData(){ + // 1. 查询所有 Developer 数据 + List developers = developerMapper.selectList(new QueryWrapper<>()); // 查询所有数据 + + // 2. 遍历数据并修改 percentile 和 level + for (Developer developer : developers) { + + RankDTO rankDTO = rankModelService.calculateRank(developer); + + developer.setPercentile(rankDTO.getPercentile()); + developer.setLevel(rankDTO.getLevel()); + // 3. 更新每一条记录 + developerMapper.updateById(developer); + } + + System.out.println("数据清洗结束"); + + } } diff --git a/assess-web/src/main/java/com/web/service/impl/FormatDeveloperImpl.java b/assess-web/src/main/java/com/web/service/impl/FormatDeveloperImpl.java index 8a9829b1b99101c234ce10e46bb9e4b64ee07658..63214ba0d04c4329f0a0e5b4aee3bd02dd62beda 100644 --- a/assess-web/src/main/java/com/web/service/impl/FormatDeveloperImpl.java +++ b/assess-web/src/main/java/com/web/service/impl/FormatDeveloperImpl.java @@ -85,13 +85,13 @@ public class FormatDeveloperImpl implements FormatDeveloper { // 清理 URL{} private Developer cleanUrls(Developer developer) { - developer.setFollowers_url(cleanUrl(developer.getFollowers_url())); - developer.setFollowing_url(cleanUrl(developer.getFollowing_url())); - developer.setGists_url(cleanUrl(developer.getGists_url())); - developer.setStarred_url(cleanUrl(developer.getStarred_url())); - developer.setRepos_url(cleanUrl(developer.getRepos_url())); - developer.setEvents_url(cleanUrl(developer.getEvents_url())); - developer.setReceived_events_url(cleanUrl(developer.getReceived_events_url())); + developer.setFollowersUrl(cleanUrl(developer.getFollowersUrl())); + developer.setFollowingUrl(cleanUrl(developer.getFollowingUrl())); + developer.setGistsUrl(cleanUrl(developer.getGistsUrl())); + developer.setStarredUrl(cleanUrl(developer.getStarredUrl())); + developer.setReposUrl(cleanUrl(developer.getReposUrl())); + developer.setEventsUrl(cleanUrl(developer.getEventsUrl())); + developer.setReceivedEventsUrl(cleanUrl(developer.getReceivedEventsUrl())); return developer; } diff --git a/assess-web/src/main/java/com/web/service/impl/RankModelImpl.java b/assess-web/src/main/java/com/web/service/impl/RankModelImpl.java index a1eaeaefcc2f206a40938346fae3f18b1aae06c4..b7c638809e6cb1e46fa348d6d262c4b81fdd1b93 100644 --- a/assess-web/src/main/java/com/web/service/impl/RankModelImpl.java +++ b/assess-web/src/main/java/com/web/service/impl/RankModelImpl.java @@ -11,6 +11,8 @@ import org.springframework.stereotype.Service; import java.util.List; +import static com.common.constant.ModelParameter.*; + /** * 映射函数 */ @@ -19,7 +21,7 @@ import java.util.List; public class RankModelImpl implements RankModel { - //好恶心的代码qwq + //计算获取各个指标参数 public Developer calulateParameter(Developer developer){ String userName = developer.getUserName(); CaculateCommits caculateCommits = new CaculateCommits(); @@ -49,52 +51,33 @@ public class RankModelImpl implements RankModel { int commits = developer.getCommits(); int prs = developer.getPrs(); int issues = developer.getIssues(); - int repos = developer.getPublic_repos(); + int repos = developer.getPublicRepos(); int stars = developer.getStart(); int followers = developer.getFollowers(); int fork = developer.getForks(); int totalStart = developer.getTotalstart(); - //TODO: 配置到常量类里面 - //TODO: 中位数还没有计算 - //评分由8个数值计算出来 - final double COMMITS_MEDIAN = 250; - final double COMMITS_WEIGHT = 2; - final double PRS_MEDIAN = 50; - final double PRS_WEIGHT = 3; - final double ISSUES_MEDIAN = 25; - final double ISSUES_WEIGHT = 2; - final double REPOS_MEDIAN = 30; - final double REPOS_WEIGHT = 1; - final double STARS_MEDIAN = 100; - final double STARS_WEIGHT = 1; - final double FOLLOWERS_MEDIAN = 10; - final double FOLLOWERS_WEIGHT = 3; - final double FORKS_MEDIAN = 30; - final double FORKS_WEIGHT = 1; - final double TOTALSTARS_MEDIAN = 100; - final double TOTALSTARS_WEIGHT = 4; - String[] levels = {"S", "A+", "A", "A-", "B+", "B", "B-", "C+", "C"}; - double[] thresholds = {1, 12.5, 25, 37.5, 50, 62.5, 75, 87.5, 100}; - - + // Levels and Thresholds + final String[] levels = {"S", "A+", "A", "A-", "B+", "B", "B-", "C+", "C"}; + final double[] thresholds = {100, 87.5, 75, 62.5, 50, 37.5, 25, 12.5, 1}; double totalWeight = COMMITS_WEIGHT + PRS_WEIGHT + ISSUES_WEIGHT + REPOS_WEIGHT - + STARS_WEIGHT + FOLLOWERS_WEIGHT + FORKS_WEIGHT + TOTALSTARS_WEIGHT; - - //TODO: 计算函数出现值过大把不良结果 - //归一化 - double rank = 1 - ( - COMMITS_WEIGHT * exponentialCdf(commits / COMMITS_MEDIAN) + - PRS_WEIGHT * exponentialCdf(prs / PRS_MEDIAN) + - ISSUES_WEIGHT * exponentialCdf(issues / ISSUES_MEDIAN) + - REPOS_MEDIAN * exponentialCdf(repos / REPOS_MEDIAN) + - STARS_WEIGHT * logNormalCdf(stars / STARS_MEDIAN) + - FOLLOWERS_WEIGHT * logNormalCdf(followers / FOLLOWERS_MEDIAN) + - FORKS_WEIGHT * exponentialCdf(fork / FORKS_MEDIAN) + - TOTALSTARS_WEIGHT * logNormalCdf(totalStart / TOTALSTARS_MEDIAN) + + STARS_WEIGHT + FOLLOWERS_WEIGHT + FORKS_WEIGHT + TOTALSTARS_WEIGHT; + + // 归一化和标准化 + double rank = ( + COMMITS_WEIGHT * normalization(commits, COMMIR_MIN, COMMIT_MAX) + + PRS_WEIGHT * normalization(prs, PR_MIN, PR_MAX) + + ISSUES_WEIGHT * normalization(issues, ISSUE_MIN, ISSUE_MAX) + + REPOS_WEIGHT * Standardization(repos, REPO_MEAN, REPO_StdDEV) + + STARS_WEIGHT * Standardization(stars, STAR_MEAN, STAR_StdDEV) + + FOLLOWERS_WEIGHT * Standardization(followers, FOLLOWER_MEAN, FOLLOER_StdDEV) + + FORKS_WEIGHT * normalization(fork, FORK_MIN, FORK_MAX) + + TOTALSTARS_WEIGHT * normalization(totalStart, TOTALSTAR_MIN, TOTALSTAR_MAX) ) / totalWeight; - + + // 确保 rank 在 [0, 1] 范围内 + rank = Math.max(0, Math.min(rank, 1)); String level = levels[findLevelIndex(rank * 100, thresholds)]; @@ -103,51 +86,33 @@ public class RankModelImpl implements RankModel { private static int findLevelIndex(double rankPercentage, double[] thresholds) { for (int i = 0; i < thresholds.length; i++) { - if (rankPercentage <= thresholds[i]) { + if (rankPercentage >= thresholds[i]) { return i; } } return thresholds.length - 1; // Return the last index if no threshold is met } - /** - * 对数正态累积分布函数 - * 大部分用户的表现相对较低,而少数用户表现非常突出。 - */ - private double exponentialCdf(double x) { - return 1 - Math.pow(2, -x); - } - - /** - * 对数正态累积分布函数(CDF)的近似值 - * 这些活动可能遵循对数正态分布,数据往往存在极端值,且大部分用户的表现集中在一个较低的范围内。 - */ - private double logNormalCdf(double x) { - // approximation - return x / (1 + x); + private double normalization(double x, double Min, double Max) { + if (Max == Min) { + return 0; // Avoid division by zero + } + if (x < Min) { + return 0; // Ensure value is within the Min-Max range + } + if (x > Max) { + return 1; // Ensure value is within the Min-Max range + } + return (x - Min) / (Max - Min); } - /** - * 归一化计算-处理差异性大数据- - * @param x - * @param Min - * @param Max - * @return - */ - private double normalization(double x,double Min, double Max){ - return (x-Min)/(Max-Min); + private double Standardization(double x, double mean, double stdDev) { + if (stdDev == 0) { + return 0; // Avoid division by zero + } + return (x - mean) / stdDev; } - /** - * 标准化计算-处理正态数据 - * @param x - * @param mean - * @param stdDev - * @return - */ - private double Standardization(double x,double mean,double stdDev){ - return (x-mean)/stdDev; - } } diff --git a/assess-web/src/main/java/test/TestDatabase.java b/assess-web/src/main/java/test/TestDatabase.java index b1fc30ec86ac237da16ba4a73137928a7a003741..cd12dac625360fa4d833b7ad51eeda92c83b2542 100644 --- a/assess-web/src/main/java/test/TestDatabase.java +++ b/assess-web/src/main/java/test/TestDatabase.java @@ -81,7 +81,6 @@ public class TestDatabase { //过滤有用的数据 Developer developer = JSON.parseObject(response.body(), Developer.class); developer.setUserName(username); - cleanUrls(developer); int insert = developerMapper.insert(developer); System.out.println("受影响行数" + insert); @@ -89,17 +88,6 @@ public class TestDatabase { } - private Developer cleanUrls(Developer developer) { - developer.setFollowers_url(cleanUrl(developer.getFollowers_url())); - developer.setFollowing_url(cleanUrl(developer.getFollowing_url())); - developer.setGists_url(cleanUrl(developer.getGists_url())); - developer.setStarred_url(cleanUrl(developer.getStarred_url())); - developer.setRepos_url(cleanUrl(developer.getRepos_url())); - developer.setEvents_url(cleanUrl(developer.getEvents_url())); - developer.setReceived_events_url(cleanUrl(developer.getReceived_events_url())); - return developer; - } - // 辅助方法,用于清理 URL private String cleanUrl(String url) { if (url != null) { @@ -295,5 +283,11 @@ public class TestDatabase { DeveloperVO developer = developerService.getDeveloper(userName); } + @Test + public void testCleanData() { + developerService.cleanData(); + } + + } diff --git a/assess.sql b/assess.sql index 35a4b81d20e34d4603717494f51267bbcc84d42e..162690cbd433745ec4ab820f7b557d6a686c97a5 100644 --- a/assess.sql +++ b/assess.sql @@ -11,7 +11,7 @@ Target Server Version : 50732 File Encoding : 65001 - Date: 02/11/2024 20:50:47 + Date: 07/11/2024 13:48:43 */ SET NAMES utf8mb4; @@ -61,689 +61,5403 @@ CREATE TABLE `developer` ( `received_events_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `site_admin` tinyint(1) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 185833356 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC; +) ENGINE = InnoDB AUTO_INCREMENT = 187274878 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of developer -- ---------------------------- -INSERT INTO `developer` VALUES (1221, 'levinalex', 'S', -59.98058318294643, 0, 0, 0, 0, 0, 0, 'Levin Alexander', NULL, 'http://levinalex.net', 'Berlin', 'mail@levinalex.net', 'true', 'Ihr seid ja gar keine Vögel!', NULL, 75, 31, 50, 26, 0, 0, 0, '2008-02-27T22:49:12Z', '2023-06-18T15:02:21Z', 'https://avatars.githubusercontent.com/u/1221?v=4', 'https://api.github.com/users/levinalex', 'https://github.com/levinalex', 'https://api.github.com/users/levinalex/followers', 'https://api.github.com/users/levinalex/following', 'https://api.github.com/users/levinalex/gists', 'https://api.github.com/users/levinalex/starred', 'https://api.github.com/users/levinalex/repos', 'https://api.github.com/users/levinalex/events', 'https://api.github.com/users/levinalex/received_events', 0); -INSERT INTO `developer` VALUES (1402, 'trevrosen', 'S', -52.852507533024266, 0, 0, 0, 0, 0, 0, 'Trevor Rosen', 'GitHub', '', 'R\'lyeh', NULL, NULL, 'Supply chain security engineering @ GitHub. @sigstore TSC. Previously @solarwinds @rapid7 @metasploit.', 'trevrosen', 65, 17, 80, 17, 0, 0, 0, '2008-02-28T02:44:31Z', '2024-07-03T00:21:45Z', 'https://avatars.githubusercontent.com/u/1402?v=4', 'https://api.github.com/users/trevrosen', 'https://github.com/trevrosen', 'https://api.github.com/users/trevrosen/followers', 'https://api.github.com/users/trevrosen/following', 'https://api.github.com/users/trevrosen/gists', 'https://api.github.com/users/trevrosen/starred', 'https://api.github.com/users/trevrosen/repos', 'https://api.github.com/users/trevrosen/events', 'https://api.github.com/users/trevrosen/received_events', 1); -INSERT INTO `developer` VALUES (1642, 'rubysolo', 'S', -91.04883686924894, 0, 0, 0, 0, 0, 0, 'Solomon White', NULL, '', 'Denver, CO', 'rubysolo@gmail.com', NULL, NULL, NULL, 205, 122, 106, 46, 0, 0, 0, '2008-02-28T19:43:22Z', '2024-10-28T11:18:32Z', 'https://avatars.githubusercontent.com/u/1642?v=4', 'https://api.github.com/users/rubysolo', 'https://github.com/rubysolo', 'https://api.github.com/users/rubysolo/followers', 'https://api.github.com/users/rubysolo/following', 'https://api.github.com/users/rubysolo/gists', 'https://api.github.com/users/rubysolo/starred', 'https://api.github.com/users/rubysolo/repos', 'https://api.github.com/users/rubysolo/events', 'https://api.github.com/users/rubysolo/received_events', 0); -INSERT INTO `developer` VALUES (2289, 'zeke', 'S', -94.0545090881938, 0, 0, 0, 0, 0, 0, 'Zeke Sikelianos', '@replicate ', 'http://zeke.sikelianos.com', 'Berkeley, CA', 'zeke@sikelianos.com', NULL, '\"Zeek\". Open-source AI engineer at @replicate.\r\n\r\nPreviously @github, @electron, @npm, @heroku. **he/him**', 'zeke', 1006, 442, 2785, 298, 0, 0, 0, '2008-03-05T17:26:18Z', '2024-10-20T03:27:18Z', 'https://avatars.githubusercontent.com/u/2289?v=4', 'https://api.github.com/users/zeke', 'https://github.com/zeke', 'https://api.github.com/users/zeke/followers', 'https://api.github.com/users/zeke/following', 'https://api.github.com/users/zeke/gists', 'https://api.github.com/users/zeke/starred', 'https://api.github.com/users/zeke/repos', 'https://api.github.com/users/zeke/events', 'https://api.github.com/users/zeke/received_events', 0); -INSERT INTO `developer` VALUES (2859, 'rcorrear', 'A', 20.815263362366565, 0, 0, 0, 0, 0, 0, 'Ricardo Correa', 'Solera', '', 'Tampa - USA', 'r.correa.r@gmail.com', NULL, NULL, NULL, 21, 1, 18, 11, 0, 0, 0, '2008-03-11T20:12:46Z', '2024-08-21T01:26:56Z', 'https://avatars.githubusercontent.com/u/2859?v=4', 'https://api.github.com/users/rcorrear', 'https://github.com/rcorrear', 'https://api.github.com/users/rcorrear/followers', 'https://api.github.com/users/rcorrear/following', 'https://api.github.com/users/rcorrear/gists', 'https://api.github.com/users/rcorrear/starred', 'https://api.github.com/users/rcorrear/repos', 'https://api.github.com/users/rcorrear/events', 'https://api.github.com/users/rcorrear/received_events', 0); -INSERT INTO `developer` VALUES (5518, 'huacnlee', 'C', 190.27168259672118, 0, 0, 0, 0, 0, 0, 'Jason Lee', '@longbridgeapp ', '', 'Chengdu, China', 'huacnlee@gmail.com', NULL, 'Ruby / Go / Rust, co-founder of @ruby-china ', 'huacnlee', 166, 138, 4955, 195, 0, 0, 0, '2008-04-07T05:44:36Z', '2024-10-21T07:53:03Z', 'https://avatars.githubusercontent.com/u/5518?v=4', 'https://api.github.com/users/huacnlee', 'https://github.com/huacnlee', 'https://api.github.com/users/huacnlee/followers', 'https://api.github.com/users/huacnlee/following', 'https://api.github.com/users/huacnlee/gists', 'https://api.github.com/users/huacnlee/starred', 'https://api.github.com/users/huacnlee/repos', 'https://api.github.com/users/huacnlee/events', 'https://api.github.com/users/huacnlee/received_events', 0); -INSERT INTO `developer` VALUES (6251, 'vbehar', 'S', -83.41174737565741, 0, 0, 0, 0, 0, 0, 'Vincent Behar', 'Ubisoft', 'https://vincent.behar.name', 'Paris, France', 'v.behar@free.fr', NULL, 'I\'m a developer, and I love it ;-) My buzzwords of the moment are Go, Kubernetes, Observability, Continuous Delivery, and everything open-source', 'vbehar', 129, 8, 91, 0, 0, 0, 0, '2008-04-10T19:51:04Z', '2024-10-31T21:56:05Z', 'https://avatars.githubusercontent.com/u/6251?v=4', 'https://api.github.com/users/vbehar', 'https://github.com/vbehar', 'https://api.github.com/users/vbehar/followers', 'https://api.github.com/users/vbehar/following', 'https://api.github.com/users/vbehar/gists', 'https://api.github.com/users/vbehar/starred', 'https://api.github.com/users/vbehar/repos', 'https://api.github.com/users/vbehar/events', 'https://api.github.com/users/vbehar/received_events', 0); -INSERT INTO `developer` VALUES (6843, 'jinzhu', 'C', 213.161948137265, 0, 20, 106, 684, 5, 0, 'Jinzhu', NULL, 'http://patreon.com/jinzhu', 'HangZhou China', 'wosmvp@gmail.com', 'true', 'Life is Art', NULL, 100, 32, 5375, 10, 0, 0, 0, '2008-04-12T01:27:32Z', '2024-10-24T19:03:37Z', 'https://avatars.githubusercontent.com/u/6843?v=4', 'https://api.github.com/users/jinzhu', 'https://github.com/jinzhu', 'https://api.github.com/users/jinzhu/followers', 'https://api.github.com/users/jinzhu/following', 'https://api.github.com/users/jinzhu/gists', 'https://api.github.com/users/jinzhu/starred', 'https://api.github.com/users/jinzhu/repos', 'https://api.github.com/users/jinzhu/events', 'https://api.github.com/users/jinzhu/received_events', 0); -INSERT INTO `developer` VALUES (16780, 'roderik', 'S', -85.68754648398742, 0, 0, 0, 0, 0, 0, 'Roderik van der Veer', '@settlemint ', 'https://settlemint.com', 'Belgium', 'roderik@settlemint.com', 'true', 'Founder & CTO at @settlemint ', 'r0derik', 138, 109, 143, 173, 0, 0, 0, '2008-07-11T13:57:56Z', '2024-09-16T20:03:06Z', 'https://avatars.githubusercontent.com/u/16780?v=4', 'https://api.github.com/users/roderik', 'https://github.com/roderik', 'https://api.github.com/users/roderik/followers', 'https://api.github.com/users/roderik/following', 'https://api.github.com/users/roderik/gists', 'https://api.github.com/users/roderik/starred', 'https://api.github.com/users/roderik/repos', 'https://api.github.com/users/roderik/events', 'https://api.github.com/users/roderik/received_events', 0); -INSERT INTO `developer` VALUES (16963, 'csexton', 'S', -82.83543420603405, 0, 0, 0, 0, 0, 0, 'Christopher Sexton', '@RadiusNetworks ', 'http://www.codeography.com/', 'McLean, VA', NULL, NULL, NULL, NULL, 123, 345, 168, 14, 0, 0, 0, '2008-07-14T00:45:31Z', '2024-09-25T15:30:38Z', 'https://avatars.githubusercontent.com/u/16963?v=4', 'https://api.github.com/users/csexton', 'https://github.com/csexton', 'https://api.github.com/users/csexton/followers', 'https://api.github.com/users/csexton/following', 'https://api.github.com/users/csexton/gists', 'https://api.github.com/users/csexton/starred', 'https://api.github.com/users/csexton/repos', 'https://api.github.com/users/csexton/events', 'https://api.github.com/users/csexton/received_events', 0); -INSERT INTO `developer` VALUES (17146, 'witten', 'C+', 82.96631021904649, 0, 0, 0, 0, 0, 0, 'Dan Helfman', NULL, 'https://torsion.org/', 'Seattle, WA', 'witten@torsion.org', NULL, NULL, NULL, 1, 2, 28, 0, 0, 0, 0, '2008-07-15T20:34:04Z', '2024-04-16T20:13:26Z', 'https://avatars.githubusercontent.com/u/17146?v=4', 'https://api.github.com/users/witten', 'https://github.com/witten', 'https://api.github.com/users/witten/followers', 'https://api.github.com/users/witten/following', 'https://api.github.com/users/witten/gists', 'https://api.github.com/users/witten/starred', 'https://api.github.com/users/witten/repos', 'https://api.github.com/users/witten/events', 'https://api.github.com/users/witten/received_events', 0); -INSERT INTO `developer` VALUES (17377, 'cs278', 'S', -66.82700315689101, 0, 0, 0, 0, 0, 0, 'Chris Smith', 'Wider Plan', 'https://www.cs278.org/', 'Redditch, UK', NULL, NULL, NULL, NULL, 86, 42, 47, 20, 0, 0, 0, '2008-07-17T19:36:59Z', '2024-10-25T08:10:48Z', 'https://avatars.githubusercontent.com/u/17377?v=4', 'https://api.github.com/users/cs278', 'https://github.com/cs278', 'https://api.github.com/users/cs278/followers', 'https://api.github.com/users/cs278/following', 'https://api.github.com/users/cs278/gists', 'https://api.github.com/users/cs278/starred', 'https://api.github.com/users/cs278/repos', 'https://api.github.com/users/cs278/events', 'https://api.github.com/users/cs278/received_events', 0); -INSERT INTO `developer` VALUES (19967, 'nicholasf', 'S', -57.48245116071229, 0, 0, 0, 0, 0, 0, 'Nicholas Faiz ', NULL, '', 'Melbourne', NULL, 'true', NULL, NULL, 70, 327, 99, 49, 0, 0, 0, '2008-08-08T00:59:42Z', '2024-10-29T23:00:41Z', 'https://avatars.githubusercontent.com/u/19967?v=4', 'https://api.github.com/users/nicholasf', 'https://github.com/nicholasf', 'https://api.github.com/users/nicholasf/followers', 'https://api.github.com/users/nicholasf/following', 'https://api.github.com/users/nicholasf/gists', 'https://api.github.com/users/nicholasf/starred', 'https://api.github.com/users/nicholasf/repos', 'https://api.github.com/users/nicholasf/events', 'https://api.github.com/users/nicholasf/received_events', 0); -INSERT INTO `developer` VALUES (21108, 'ento', 'S', -84.8604237416573, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, 'true', 'Interests: self development, mindfulness.', NULL, 146, 75, 45, 6, 0, 0, 0, '2008-08-19T06:26:39Z', '2024-10-25T18:54:14Z', 'https://avatars.githubusercontent.com/u/21108?v=4', 'https://api.github.com/users/ento', 'https://github.com/ento', 'https://api.github.com/users/ento/followers', 'https://api.github.com/users/ento/following', 'https://api.github.com/users/ento/gists', 'https://api.github.com/users/ento/starred', 'https://api.github.com/users/ento/repos', 'https://api.github.com/users/ento/events', 'https://api.github.com/users/ento/received_events', 0); -INSERT INTO `developer` VALUES (21979, 'appleboy', 'S', -94.09135694304263, 0, 0, 0, 0, 0, 0, 'Bo-Yi Wu', 'Mediatek', 'https://blog.wu-boy.com', 'Hsinchu, Taiwan', 'appleboy.tw@gmail.com', 'true', 'I really believe committing every day to an open-source project is the best practice. Golang GDE (Google Developer Expert) in 2023', 'appleboy', 563, 55, 6805, 302, 0, 0, 0, '2008-08-26T02:05:56Z', '2024-10-03T11:22:04Z', 'https://avatars.githubusercontent.com/u/21979?v=4', 'https://api.github.com/users/appleboy', 'https://github.com/appleboy', 'https://api.github.com/users/appleboy/followers', 'https://api.github.com/users/appleboy/following', 'https://api.github.com/users/appleboy/gists', 'https://api.github.com/users/appleboy/starred', 'https://api.github.com/users/appleboy/repos', 'https://api.github.com/users/appleboy/events', 'https://api.github.com/users/appleboy/received_events', 0); -INSERT INTO `developer` VALUES (29317, 'mpokress', 'A', 17.35250688672397, 0, 0, 0, 5, 0, 0, 'Matt Pokress', NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 7, 6, 1, 0, 0, 0, '2008-10-16T16:33:36Z', '2024-01-31T20:08:44Z', 'https://avatars.githubusercontent.com/u/29317?v=4', 'https://api.github.com/users/mpokress', 'https://github.com/mpokress', 'https://api.github.com/users/mpokress/followers', 'https://api.github.com/users/mpokress/following', 'https://api.github.com/users/mpokress/gists', 'https://api.github.com/users/mpokress/starred', 'https://api.github.com/users/mpokress/repos', 'https://api.github.com/users/mpokress/events', 'https://api.github.com/users/mpokress/received_events', 0); -INSERT INTO `developer` VALUES (30140, 'jstrachan', 'S', -93.9161966156313, 0, 0, 0, 0, 0, 0, 'James Strachan', 'Apple', 'https://medium.com/@jstrachan/', 'Mells, UK', 'james.strachan@gmail.com', NULL, 'I work on new technologies at Apple\r\n\r\nI previously created Apache Groovy & Apache Camel and worked on Jenkins X', 'jstrachan', 1410, 191, 866, 2, 0, 0, 0, '2008-10-21T12:50:55Z', '2024-11-02T09:57:35Z', 'https://avatars.githubusercontent.com/u/30140?v=4', 'https://api.github.com/users/jstrachan', 'https://github.com/jstrachan', 'https://api.github.com/users/jstrachan/followers', 'https://api.github.com/users/jstrachan/following', 'https://api.github.com/users/jstrachan/gists', 'https://api.github.com/users/jstrachan/starred', 'https://api.github.com/users/jstrachan/repos', 'https://api.github.com/users/jstrachan/events', 'https://api.github.com/users/jstrachan/received_events', 0); -INSERT INTO `developer` VALUES (30146, 'amweiss', 'A', 20.88817447921516, 0, 0, 0, 0, 0, 0, 'Adam Weiss', 'HelixIntel', 'https://www.adamweiss.me', 'Buffalo, NY', NULL, NULL, 'Development leader with a belief that simple solutions result in better products.', NULL, 20, 0, 36, 0, 0, 0, 0, '2008-10-21T13:44:47Z', '2024-10-09T16:43:28Z', 'https://avatars.githubusercontent.com/u/30146?v=4', 'https://api.github.com/users/amweiss', 'https://github.com/amweiss', 'https://api.github.com/users/amweiss/followers', 'https://api.github.com/users/amweiss/following', 'https://api.github.com/users/amweiss/gists', 'https://api.github.com/users/amweiss/starred', 'https://api.github.com/users/amweiss/repos', 'https://api.github.com/users/amweiss/events', 'https://api.github.com/users/amweiss/received_events', 0); -INSERT INTO `developer` VALUES (32126, 'coding4food', 'A-', 31.33339861147895, 0, 0, 0, 0, 0, 0, 'Anatoly Medvedkov', NULL, '', NULL, NULL, NULL, NULL, NULL, 17, 3, 18, 9, 0, 0, 0, '2008-11-01T12:11:53Z', '2024-09-20T15:15:06Z', 'https://avatars.githubusercontent.com/u/32126?v=4', 'https://api.github.com/users/coding4food', 'https://github.com/coding4food', 'https://api.github.com/users/coding4food/followers', 'https://api.github.com/users/coding4food/following', 'https://api.github.com/users/coding4food/gists', 'https://api.github.com/users/coding4food/starred', 'https://api.github.com/users/coding4food/repos', 'https://api.github.com/users/coding4food/events', 'https://api.github.com/users/coding4food/received_events', 0); -INSERT INTO `developer` VALUES (32879, 'javiplx', 'S', -71.12707983271616, 0, 0, 0, 0, 0, 0, 'Javier Palacios', NULL, '', NULL, NULL, NULL, NULL, NULL, 101, 2, 20, 0, 0, 0, 0, '2008-11-05T22:09:47Z', '2024-10-14T15:55:58Z', 'https://avatars.githubusercontent.com/u/32879?v=4', 'https://api.github.com/users/javiplx', 'https://github.com/javiplx', 'https://api.github.com/users/javiplx/followers', 'https://api.github.com/users/javiplx/following', 'https://api.github.com/users/javiplx/gists', 'https://api.github.com/users/javiplx/starred', 'https://api.github.com/users/javiplx/repos', 'https://api.github.com/users/javiplx/events', 'https://api.github.com/users/javiplx/received_events', 0); -INSERT INTO `developer` VALUES (35170, 'nightscape', 'C', 192.9765647264017, 0, 0, 0, 0, 0, 0, 'Martin Mauch', NULL, '', 'Regensburg, Germany', 'martin@mauch.dev', 'true', 'Big fan of Functional Programming, Scala, Idris.\r\nPassionate about meditation and neuroscience.', NULL, 385, 40, 148, 212, 0, 0, 0, '2008-11-18T10:56:18Z', '2024-10-31T15:21:53Z', 'https://avatars.githubusercontent.com/u/35170?v=4', 'https://api.github.com/users/nightscape', 'https://github.com/nightscape', 'https://api.github.com/users/nightscape/followers', 'https://api.github.com/users/nightscape/following', 'https://api.github.com/users/nightscape/gists', 'https://api.github.com/users/nightscape/starred', 'https://api.github.com/users/nightscape/repos', 'https://api.github.com/users/nightscape/events', 'https://api.github.com/users/nightscape/received_events', 0); -INSERT INTO `developer` VALUES (38929, 'desaintmartin', 'S', -71.41096586657912, 0, 0, 0, 0, 0, 0, 'Cédric de Saint Martin', '@wiremind', 'http://twitter.com/desaintmartin', 'Paris, France', 'cedric@desaintmartin.fr', 'true', NULL, 'desaintmartin', 94, 12, 58, 26, 0, 0, 0, '2008-12-07T20:43:47Z', '2024-10-28T11:18:39Z', 'https://avatars.githubusercontent.com/u/38929?v=4', 'https://api.github.com/users/desaintmartin', 'https://github.com/desaintmartin', 'https://api.github.com/users/desaintmartin/followers', 'https://api.github.com/users/desaintmartin/following', 'https://api.github.com/users/desaintmartin/gists', 'https://api.github.com/users/desaintmartin/starred', 'https://api.github.com/users/desaintmartin/repos', 'https://api.github.com/users/desaintmartin/events', 'https://api.github.com/users/desaintmartin/received_events', 0); -INSERT INTO `developer` VALUES (41094, 'tschaub', 'S', -93.2938313848224, 0, 0, 0, 0, 0, 0, 'Tim Schaub', 'Planet Labs', 'http://tschaub.net/', NULL, NULL, 'true', NULL, NULL, 260, 34, 443, 2, 0, 0, 0, '2008-12-17T21:32:01Z', '2024-08-06T16:10:56Z', 'https://avatars.githubusercontent.com/u/41094?v=4', 'https://api.github.com/users/tschaub', 'https://github.com/tschaub', 'https://api.github.com/users/tschaub/followers', 'https://api.github.com/users/tschaub/following', 'https://api.github.com/users/tschaub/gists', 'https://api.github.com/users/tschaub/starred', 'https://api.github.com/users/tschaub/repos', 'https://api.github.com/users/tschaub/events', 'https://api.github.com/users/tschaub/received_events', 0); -INSERT INTO `developer` VALUES (41777, 'dol', 'B+', 40.096842848814475, 0, 0, 0, 0, 0, 0, 'Dominic', 'SIX Group', 'snowgarden.ch', 'Switzerland', NULL, NULL, 'Lead DevOps Engineer building internal platforms', 'drdol', 13, 17, 40, 45, 0, 0, 0, '2008-12-20T12:15:54Z', '2024-10-31T06:47:34Z', 'https://avatars.githubusercontent.com/u/41777?v=4', 'https://api.github.com/users/dol', 'https://github.com/dol', 'https://api.github.com/users/dol/followers', 'https://api.github.com/users/dol/following', 'https://api.github.com/users/dol/gists', 'https://api.github.com/users/dol/starred', 'https://api.github.com/users/dol/repos', 'https://api.github.com/users/dol/events', 'https://api.github.com/users/dol/received_events', 0); -INSERT INTO `developer` VALUES (43136, 'donaldguy', 'S', -38.578768840429035, 0, 0, 0, 0, 0, 0, 'Donald Guy', NULL, 'https://dbgmo.de', 'Denver', 'fawkes@mit.edu', 'true', '3 years unemployed 2012 MIT CS alum. Did DevOps & k8s stuff 2014-2021. Only sometimes likes coding, preferably in Elixir, Ruby, or good-old bash. Rust? maybe.', NULL, 53, 22, 38, 14, 0, 0, 0, '2008-12-29T13:28:14Z', '2024-11-01T02:31:05Z', 'https://avatars.githubusercontent.com/u/43136?v=4', 'https://api.github.com/users/donaldguy', 'https://github.com/donaldguy', 'https://api.github.com/users/donaldguy/followers', 'https://api.github.com/users/donaldguy/following', 'https://api.github.com/users/donaldguy/gists', 'https://api.github.com/users/donaldguy/starred', 'https://api.github.com/users/donaldguy/repos', 'https://api.github.com/users/donaldguy/events', 'https://api.github.com/users/donaldguy/received_events', 0); -INSERT INTO `developer` VALUES (55519, 'li3p', 'A+', 10.254521204182732, 0, 0, 0, 0, 0, 0, 'li3p', NULL, '', NULL, 'bobtern@gmail.com', NULL, NULL, NULL, 27, 0, 8, 4, 0, 0, 0, '2009-02-18T11:37:33Z', '2024-10-31T01:37:18Z', 'https://avatars.githubusercontent.com/u/55519?v=4', 'https://api.github.com/users/li3p', 'https://github.com/li3p', 'https://api.github.com/users/li3p/followers', 'https://api.github.com/users/li3p/following', 'https://api.github.com/users/li3p/gists', 'https://api.github.com/users/li3p/starred', 'https://api.github.com/users/li3p/repos', 'https://api.github.com/users/li3p/events', 'https://api.github.com/users/li3p/received_events', 0); -INSERT INTO `developer` VALUES (61834, 'jkongie', 'A-', 31.116070300844356, 0, 0, 0, 0, 0, 0, 'James Kong', NULL, '', 'Singapore', 'jkongie@gmail.com', NULL, NULL, NULL, 17, 16, 19, 2, 0, 0, 0, '2009-03-10T03:10:01Z', '2024-09-20T16:33:19Z', 'https://avatars.githubusercontent.com/u/61834?v=4', 'https://api.github.com/users/jkongie', 'https://github.com/jkongie', 'https://api.github.com/users/jkongie/followers', 'https://api.github.com/users/jkongie/following', 'https://api.github.com/users/jkongie/gists', 'https://api.github.com/users/jkongie/starred', 'https://api.github.com/users/jkongie/repos', 'https://api.github.com/users/jkongie/events', 'https://api.github.com/users/jkongie/received_events', 0); -INSERT INTO `developer` VALUES (67447, 'stevehill1981', 'A-', 31.14547609038645, 0, 0, 0, 0, 0, 0, 'Steve Hill', '@resourceguru ', 'https://stevehill.xyz', 'Shareshill, West Midlands, UK', 'steve@stevehill.xyz', NULL, NULL, NULL, 16, 3, 43, 81, 0, 0, 0, '2009-03-26T14:51:12Z', '2024-10-24T16:28:41Z', 'https://avatars.githubusercontent.com/u/67447?v=4', 'https://api.github.com/users/stevehill1981', 'https://github.com/stevehill1981', 'https://api.github.com/users/stevehill1981/followers', 'https://api.github.com/users/stevehill1981/following', 'https://api.github.com/users/stevehill1981/gists', 'https://api.github.com/users/stevehill1981/starred', 'https://api.github.com/users/stevehill1981/repos', 'https://api.github.com/users/stevehill1981/events', 'https://api.github.com/users/stevehill1981/received_events', 0); -INSERT INTO `developer` VALUES (67560, 'mwarkentin', 'S', -87.98562692723112, 0, 0, 0, 0, 0, 0, 'Michael Warkentin', '@getsentry', 'http://til.tobalabs.com', 'Toronto, Ontario', 'mwarkentin@hey.com', NULL, 'Senior SRE @getsentry\r\nPreviously OpsEng @waveaccounting', 'mwarkentin', 158, 29, 104, 37, 0, 0, 0, '2009-03-26T19:48:49Z', '2024-10-31T12:21:02Z', 'https://avatars.githubusercontent.com/u/67560?v=4', 'https://api.github.com/users/mwarkentin', 'https://github.com/mwarkentin', 'https://api.github.com/users/mwarkentin/followers', 'https://api.github.com/users/mwarkentin/following', 'https://api.github.com/users/mwarkentin/gists', 'https://api.github.com/users/mwarkentin/starred', 'https://api.github.com/users/mwarkentin/repos', 'https://api.github.com/users/mwarkentin/events', 'https://api.github.com/users/mwarkentin/received_events', 0); -INSERT INTO `developer` VALUES (70804, 'tylerstillwater', 'A', 20.84269017233169, 0, 0, 0, 0, 0, 0, 'Tyler Stillwater', '@outdoorsy ', '', 'US', NULL, NULL, 'Co-Founder and Backend Lead at @outdoorsy ', NULL, 19, 14, 138, 4, 0, 0, 0, '2009-04-05T22:03:50Z', '2024-03-07T22:40:50Z', 'https://avatars.githubusercontent.com/u/70804?v=4', 'https://api.github.com/users/tylerstillwater', 'https://github.com/tylerstillwater', 'https://api.github.com/users/tylerstillwater/followers', 'https://api.github.com/users/tylerstillwater/following', 'https://api.github.com/users/tylerstillwater/gists', 'https://api.github.com/users/tylerstillwater/starred', 'https://api.github.com/users/tylerstillwater/repos', 'https://api.github.com/users/tylerstillwater/events', 'https://api.github.com/users/tylerstillwater/received_events', 0); -INSERT INTO `developer` VALUES (73843, 'Juu', 'B+', 46.94805392147884, 0, 0, 0, 0, 0, 0, 'Julien Reitzel', NULL, '', NULL, NULL, 'true', NULL, NULL, 13, 0, 7, 3, 0, 0, 0, '2009-04-14T22:38:42Z', '2024-10-24T12:05:46Z', 'https://avatars.githubusercontent.com/u/73843?v=4', 'https://api.github.com/users/Juu', 'https://github.com/Juu', 'https://api.github.com/users/Juu/followers', 'https://api.github.com/users/Juu/following', 'https://api.github.com/users/Juu/gists', 'https://api.github.com/users/Juu/starred', 'https://api.github.com/users/Juu/repos', 'https://api.github.com/users/Juu/events', 'https://api.github.com/users/Juu/received_events', 0); -INSERT INTO `developer` VALUES (73976, 'canthefason', 'S', -35.228315269376864, 0, 0, 0, 0, 0, 0, 'Can Yucel', 'DoorDash', '', 'San Francisco', 'can.yucel@gmail.com', NULL, NULL, NULL, 49, 8, 78, 44, 0, 0, 0, '2009-04-15T08:53:19Z', '2024-08-19T19:59:22Z', 'https://avatars.githubusercontent.com/u/73976?v=4', 'https://api.github.com/users/canthefason', 'https://github.com/canthefason', 'https://api.github.com/users/canthefason/followers', 'https://api.github.com/users/canthefason/following', 'https://api.github.com/users/canthefason/gists', 'https://api.github.com/users/canthefason/starred', 'https://api.github.com/users/canthefason/repos', 'https://api.github.com/users/canthefason/events', 'https://api.github.com/users/canthefason/received_events', 0); -INSERT INTO `developer` VALUES (79169, 'lcowell', 'S', -1.8124571462683647, 0, 0, 0, 0, 0, 0, 'Luke Cowell', NULL, '', 'Vancouver, BC', 'lcowell@gmail.com', NULL, NULL, NULL, 31, 25, 19, 8, 0, 0, 0, '2009-04-29T14:03:16Z', '2023-06-20T13:22:53Z', 'https://avatars.githubusercontent.com/u/79169?v=4', 'https://api.github.com/users/lcowell', 'https://github.com/lcowell', 'https://api.github.com/users/lcowell/followers', 'https://api.github.com/users/lcowell/following', 'https://api.github.com/users/lcowell/gists', 'https://api.github.com/users/lcowell/starred', 'https://api.github.com/users/lcowell/repos', 'https://api.github.com/users/lcowell/events', 'https://api.github.com/users/lcowell/received_events', 0); -INSERT INTO `developer` VALUES (79869, 'evgkrsk', 'S', -23.965012633932936, 0, 0, 0, 0, 0, 0, 'Evgenii Tereshkov', 'Ozon', '', 'Somewhere', NULL, 'true', 'Делаю всё, чтобы ничего не делать', NULL, 44, 0, 18, 38, 0, 0, 0, '2009-05-01T08:37:24Z', '2024-09-12T13:38:27Z', 'https://avatars.githubusercontent.com/u/79869?v=4', 'https://api.github.com/users/evgkrsk', 'https://github.com/evgkrsk', 'https://api.github.com/users/evgkrsk/followers', 'https://api.github.com/users/evgkrsk/following', 'https://api.github.com/users/evgkrsk/gists', 'https://api.github.com/users/evgkrsk/starred', 'https://api.github.com/users/evgkrsk/repos', 'https://api.github.com/users/evgkrsk/events', 'https://api.github.com/users/evgkrsk/received_events', 0); -INSERT INTO `developer` VALUES (84321, 'kevinjqiu', 'S', -87.24214072573777, 0, 0, 0, 0, 0, 0, 'Kevin J. Qiu', '@instacart ', 'https://blog.idempotent.ca', 'GTA, Ontario', NULL, NULL, NULL, NULL, 153, 57, 92, 26, 0, 0, 0, '2009-05-13T23:57:58Z', '2024-09-10T22:22:41Z', 'https://avatars.githubusercontent.com/u/84321?v=4', 'https://api.github.com/users/kevinjqiu', 'https://github.com/kevinjqiu', 'https://api.github.com/users/kevinjqiu/followers', 'https://api.github.com/users/kevinjqiu/following', 'https://api.github.com/users/kevinjqiu/gists', 'https://api.github.com/users/kevinjqiu/starred', 'https://api.github.com/users/kevinjqiu/repos', 'https://api.github.com/users/kevinjqiu/events', 'https://api.github.com/users/kevinjqiu/received_events', 0); -INSERT INTO `developer` VALUES (93300, 'JonasJurczok', 'S', -37.13725744760983, 0, 0, 0, 0, 0, 0, 'Jonas', NULL, '', 'Berlin', NULL, NULL, NULL, NULL, 54, 1, 18, 8, 0, 0, 0, '2009-06-08T19:30:56Z', '2024-10-23T11:34:57Z', 'https://avatars.githubusercontent.com/u/93300?v=4', 'https://api.github.com/users/JonasJurczok', 'https://github.com/JonasJurczok', 'https://api.github.com/users/JonasJurczok/followers', 'https://api.github.com/users/JonasJurczok/following', 'https://api.github.com/users/JonasJurczok/gists', 'https://api.github.com/users/JonasJurczok/starred', 'https://api.github.com/users/JonasJurczok/repos', 'https://api.github.com/users/JonasJurczok/events', 'https://api.github.com/users/JonasJurczok/received_events', 0); -INSERT INTO `developer` VALUES (107825, 'ansel1', 'A-', 31.818207919817667, 0, 0, 0, 0, 0, 0, 'Russ Egan', '@Thales', '', 'Austin, TX', 'russellegan@gmail.com', NULL, NULL, NULL, 17, 0, 16, 0, 0, 0, 0, '2009-07-23T02:05:20Z', '2024-10-30T22:15:00Z', 'https://avatars.githubusercontent.com/u/107825?v=4', 'https://api.github.com/users/ansel1', 'https://github.com/ansel1', 'https://api.github.com/users/ansel1/followers', 'https://api.github.com/users/ansel1/following', 'https://api.github.com/users/ansel1/gists', 'https://api.github.com/users/ansel1/starred', 'https://api.github.com/users/ansel1/repos', 'https://api.github.com/users/ansel1/events', 'https://api.github.com/users/ansel1/received_events', 0); -INSERT INTO `developer` VALUES (108836, 'andytom', 'S', 0.01636642938296351, 0, 0, 0, 0, 0, 0, 'Thomas O\'Donnell', NULL, '', 'EU', NULL, NULL, NULL, NULL, 29, 1, 36, 0, 0, 0, 0, '2009-07-26T15:25:36Z', '2024-09-04T18:59:40Z', 'https://avatars.githubusercontent.com/u/108836?v=4', 'https://api.github.com/users/andytom', 'https://github.com/andytom', 'https://api.github.com/users/andytom/followers', 'https://api.github.com/users/andytom/following', 'https://api.github.com/users/andytom/gists', 'https://api.github.com/users/andytom/starred', 'https://api.github.com/users/andytom/repos', 'https://api.github.com/users/andytom/events', 'https://api.github.com/users/andytom/received_events', 0); -INSERT INTO `developer` VALUES (109604, 'forsberg', 'S', -32.7436288230184, 0, 0, 0, 0, 0, 0, 'Erik Forsberg', 'Ferroamp', 'http://efod.se/', NULL, 'forsberg@efod.se', NULL, NULL, NULL, 51, 2, 15, 2, 0, 0, 0, '2009-07-28T20:27:37Z', '2024-08-05T09:51:09Z', 'https://avatars.githubusercontent.com/u/109604?v=4', 'https://api.github.com/users/forsberg', 'https://github.com/forsberg', 'https://api.github.com/users/forsberg/followers', 'https://api.github.com/users/forsberg/following', 'https://api.github.com/users/forsberg/gists', 'https://api.github.com/users/forsberg/starred', 'https://api.github.com/users/forsberg/repos', 'https://api.github.com/users/forsberg/events', 'https://api.github.com/users/forsberg/received_events', 0); -INSERT INTO `developer` VALUES (110235, 'emiddleton', 'S', -95.72182295747074, 0, 0, 1, 391, 22, 0, 'Edward Middleton', 'Freelance Developer', 'https://hachyderm.io/@e14n', 'Japan', 'edward.middleton@vortorus.net', 'true', 'Software Engineer, Entrepreneur, President of Tokyo Linux User Group, Husband, Father of two, He/Him.', 'Eonprog', 104, 1, 36, 28, 0, 0, 0, '2009-07-30T11:50:44Z', '2024-09-12T13:49:43Z', 'https://avatars.githubusercontent.com/u/110235?v=4', 'https://api.github.com/users/emiddleton', 'https://github.com/emiddleton', 'https://api.github.com/users/emiddleton/followers', 'https://api.github.com/users/emiddleton/following', 'https://api.github.com/users/emiddleton/gists', 'https://api.github.com/users/emiddleton/starred', 'https://api.github.com/users/emiddleton/repos', 'https://api.github.com/users/emiddleton/events', 'https://api.github.com/users/emiddleton/received_events', 0); -INSERT INTO `developer` VALUES (115502, 'fikander', 'A+', 5.467974990427516, 0, 0, 0, 0, 0, 0, 'Tomek', NULL, 'fikander.github.io', NULL, NULL, NULL, NULL, NULL, 29, 7, 9, 10, 0, 0, 0, '2009-08-15T00:29:04Z', '2024-10-10T19:08:09Z', 'https://avatars.githubusercontent.com/u/115502?v=4', 'https://api.github.com/users/fikander', 'https://github.com/fikander', 'https://api.github.com/users/fikander/followers', 'https://api.github.com/users/fikander/following', 'https://api.github.com/users/fikander/gists', 'https://api.github.com/users/fikander/starred', 'https://api.github.com/users/fikander/repos', 'https://api.github.com/users/fikander/events', 'https://api.github.com/users/fikander/received_events', 0); -INSERT INTO `developer` VALUES (115564, 'davcamer', 'S', -26.738121877630384, 0, 0, 0, 0, 0, 0, 'Dave Cameron', 'DigitalOcean', 'http://intwoplacesatonce.com', 'NYC', 'dave.bc+github@gmail.com', NULL, NULL, 'davcamer', 44, 1, 40, 30, 0, 0, 0, '2009-08-15T07:11:16Z', '2024-09-26T17:27:40Z', 'https://avatars.githubusercontent.com/u/115564?v=4', 'https://api.github.com/users/davcamer', 'https://github.com/davcamer', 'https://api.github.com/users/davcamer/followers', 'https://api.github.com/users/davcamer/following', 'https://api.github.com/users/davcamer/gists', 'https://api.github.com/users/davcamer/starred', 'https://api.github.com/users/davcamer/repos', 'https://api.github.com/users/davcamer/events', 'https://api.github.com/users/davcamer/received_events', 0); -INSERT INTO `developer` VALUES (121129, 'baijum', 'S', -93.60283821482716, 0, 0, 0, 0, 0, 0, 'Baiju Muthukadan', 'Red Hat', '', 'India', 'baiju.m.mail@gmail.com', NULL, 'Senior Software Engineer, Red Hat', NULL, 427, 158, 339, 0, 0, 0, 0, '2009-08-30T15:19:42Z', '2024-10-17T11:12:57Z', 'https://avatars.githubusercontent.com/u/121129?v=4', 'https://api.github.com/users/baijum', 'https://github.com/baijum', 'https://api.github.com/users/baijum/followers', 'https://api.github.com/users/baijum/following', 'https://api.github.com/users/baijum/gists', 'https://api.github.com/users/baijum/starred', 'https://api.github.com/users/baijum/repos', 'https://api.github.com/users/baijum/events', 'https://api.github.com/users/baijum/received_events', 0); -INSERT INTO `developer` VALUES (122267, 'mdaisuke', 'S', -53.03720776902126, 0, 0, 0, 0, 0, 0, 'mdaisuke', NULL, '', NULL, NULL, 'true', 'tokyo', NULL, 66, 350, 56, 175, 0, 0, 0, '2009-09-02T07:45:27Z', '2024-06-28T07:02:48Z', 'https://avatars.githubusercontent.com/u/122267?v=4', 'https://api.github.com/users/mdaisuke', 'https://github.com/mdaisuke', 'https://api.github.com/users/mdaisuke/followers', 'https://api.github.com/users/mdaisuke/following', 'https://api.github.com/users/mdaisuke/gists', 'https://api.github.com/users/mdaisuke/starred', 'https://api.github.com/users/mdaisuke/repos', 'https://api.github.com/users/mdaisuke/events', 'https://api.github.com/users/mdaisuke/received_events', 0); -INSERT INTO `developer` VALUES (124390, 'robsonpeixoto', 'S', -61.08271243715038, 0, 0, 0, 0, 0, 0, 'Robson Roberto Souza Peixoto', '@stone-payments ', '', 'Salvador, Bahia, Brasil', NULL, NULL, 'Staff Software Engineer', 'robinhopeixoto', 74, 6, 149, 168, 0, 0, 0, '2009-09-08T06:00:13Z', '2024-10-18T10:46:34Z', 'https://avatars.githubusercontent.com/u/124390?v=4', 'https://api.github.com/users/robsonpeixoto', 'https://github.com/robsonpeixoto', 'https://api.github.com/users/robsonpeixoto/followers', 'https://api.github.com/users/robsonpeixoto/following', 'https://api.github.com/users/robsonpeixoto/gists', 'https://api.github.com/users/robsonpeixoto/starred', 'https://api.github.com/users/robsonpeixoto/repos', 'https://api.github.com/users/robsonpeixoto/events', 'https://api.github.com/users/robsonpeixoto/received_events', 0); -INSERT INTO `developer` VALUES (126313, 'athurg', 'B', 59.32972096691016, 0, 0, 0, 0, 0, 0, 'Athurg Gooth', NULL, 'https://www.gooth.org', 'China', NULL, 'true', 'Gopher, Linux', NULL, 7, 28, 43, 14, 0, 0, 0, '2009-09-13T05:40:46Z', '2024-10-28T11:18:54Z', 'https://avatars.githubusercontent.com/u/126313?v=4', 'https://api.github.com/users/athurg', 'https://github.com/athurg', 'https://api.github.com/users/athurg/followers', 'https://api.github.com/users/athurg/following', 'https://api.github.com/users/athurg/gists', 'https://api.github.com/users/athurg/starred', 'https://api.github.com/users/athurg/repos', 'https://api.github.com/users/athurg/events', 'https://api.github.com/users/athurg/received_events', 0); -INSERT INTO `developer` VALUES (127790, 'dscho', 'S', -93.58504334241687, 0, 0, 0, 0, 0, 0, 'Johannes Schindelin', '@Microsoft', '', NULL, 'johannes.schindelin@gmx.de', 'true', '@git-for-windows maintainer.', NULL, 270, 43, 929, 1, 0, 0, 0, '2009-09-16T16:04:04Z', '2024-10-17T11:21:34Z', 'https://avatars.githubusercontent.com/u/127790?v=4', 'https://api.github.com/users/dscho', 'https://github.com/dscho', 'https://api.github.com/users/dscho/followers', 'https://api.github.com/users/dscho/following', 'https://api.github.com/users/dscho/gists', 'https://api.github.com/users/dscho/starred', 'https://api.github.com/users/dscho/repos', 'https://api.github.com/users/dscho/events', 'https://api.github.com/users/dscho/received_events', 1); -INSERT INTO `developer` VALUES (128020, 'mxey', 'A-', 33.817163066533595, 0, 0, 0, 0, 0, 0, 'Maximilian Gaß', '@babiel ', '', NULL, NULL, NULL, NULL, NULL, 15, 119, 46, 26, 0, 0, 0, '2009-09-17T07:49:05Z', '2024-09-02T16:38:17Z', 'https://avatars.githubusercontent.com/u/128020?v=4', 'https://api.github.com/users/mxey', 'https://github.com/mxey', 'https://api.github.com/users/mxey/followers', 'https://api.github.com/users/mxey/following', 'https://api.github.com/users/mxey/gists', 'https://api.github.com/users/mxey/starred', 'https://api.github.com/users/mxey/repos', 'https://api.github.com/users/mxey/events', 'https://api.github.com/users/mxey/received_events', 0); -INSERT INTO `developer` VALUES (129536, 'dolmen', 'S', -92.86645173277776, 0, 0, 0, 0, 0, 0, 'Olivier Mengué', NULL, 'https://dolmen.github.io', 'Paris, France', 'dolmen@cpan.org', 'true', 'Professional Go engineer.\r\nFluent in many other programming languages.\r\nFormer Perl 5 toolchain contributor.\r\nAFOL.', 'omengue', 341, 134, 139, 139, 0, 0, 0, '2009-09-21T13:51:51Z', '2024-10-31T13:29:07Z', 'https://avatars.githubusercontent.com/u/129536?v=4', 'https://api.github.com/users/dolmen', 'https://github.com/dolmen', 'https://api.github.com/users/dolmen/followers', 'https://api.github.com/users/dolmen/following', 'https://api.github.com/users/dolmen/gists', 'https://api.github.com/users/dolmen/starred', 'https://api.github.com/users/dolmen/repos', 'https://api.github.com/users/dolmen/events', 'https://api.github.com/users/dolmen/received_events', 0); -INSERT INTO `developer` VALUES (134535, 'KarolBedkowski', 'S', -27.42974129433229, 0, 0, 0, 0, 0, 0, 'Karol Będkowski', NULL, '', 'Poland', NULL, NULL, NULL, NULL, 49, 6, 8, 3, 0, 0, 0, '2009-10-03T10:36:39Z', '2024-07-26T09:44:26Z', 'https://avatars.githubusercontent.com/u/134535?v=4', 'https://api.github.com/users/KarolBedkowski', 'https://github.com/KarolBedkowski', 'https://api.github.com/users/KarolBedkowski/followers', 'https://api.github.com/users/KarolBedkowski/following', 'https://api.github.com/users/KarolBedkowski/gists', 'https://api.github.com/users/KarolBedkowski/starred', 'https://api.github.com/users/KarolBedkowski/repos', 'https://api.github.com/users/KarolBedkowski/events', 'https://api.github.com/users/KarolBedkowski/received_events', 0); -INSERT INTO `developer` VALUES (135378, 'zenovich', 'S', -1.0625977649904472, 0, 0, 0, 0, 0, 0, 'Dmitry Zenovich', NULL, 'http://zenovich.blogspot.com', 'Germany', 'dzenovich@gmail.com', 'true', NULL, NULL, 29, 0, 54, 10, 0, 0, 0, '2009-10-05T17:11:43Z', '2024-10-16T14:54:41Z', 'https://avatars.githubusercontent.com/u/135378?v=4', 'https://api.github.com/users/zenovich', 'https://github.com/zenovich', 'https://api.github.com/users/zenovich/followers', 'https://api.github.com/users/zenovich/following', 'https://api.github.com/users/zenovich/gists', 'https://api.github.com/users/zenovich/starred', 'https://api.github.com/users/zenovich/repos', 'https://api.github.com/users/zenovich/events', 'https://api.github.com/users/zenovich/received_events', 0); -INSERT INTO `developer` VALUES (135644, 'haruyama', 'S', -73.5756346439091, 0, 0, 0, 0, 0, 0, 'HARUYAMA Seigo', 'Tankyu LLC.', 'https://www.unixuser.org/~haruyama/', 'Tokyo, Japan', NULL, 'true', 'https://gitlab.com/haruyama/experience', 'haruyama', 98, 24, 70, 1, 0, 0, 0, '2009-10-06T06:35:52Z', '2024-10-28T01:23:51Z', 'https://avatars.githubusercontent.com/u/135644?v=4', 'https://api.github.com/users/haruyama', 'https://github.com/haruyama', 'https://api.github.com/users/haruyama/followers', 'https://api.github.com/users/haruyama/following', 'https://api.github.com/users/haruyama/gists', 'https://api.github.com/users/haruyama/starred', 'https://api.github.com/users/haruyama/repos', 'https://api.github.com/users/haruyama/events', 'https://api.github.com/users/haruyama/received_events', 0); -INSERT INTO `developer` VALUES (136512, 'danielnaab', 'C', 150.80259665958397, 0, 0, 0, 0, 0, 0, 'Daniel Naab', 'Flexion | GSA/TTS/10x | Personal', 'http://www.crushingpennies.com/', 'Madison, WI', 'danielnaab@gmail.com', 'true', 'At @flexion I\'ve helped on @gsa-tts, @CMSgov, and @usgs projects', NULL, 65, 7, 34, 5, 0, 0, 0, '2009-10-07T20:17:56Z', '2024-10-30T20:19:23Z', 'https://avatars.githubusercontent.com/u/136512?v=4', 'https://api.github.com/users/danielnaab', 'https://github.com/danielnaab', 'https://api.github.com/users/danielnaab/followers', 'https://api.github.com/users/danielnaab/following', 'https://api.github.com/users/danielnaab/gists', 'https://api.github.com/users/danielnaab/starred', 'https://api.github.com/users/danielnaab/repos', 'https://api.github.com/users/danielnaab/events', 'https://api.github.com/users/danielnaab/received_events', 0); -INSERT INTO `developer` VALUES (140790, 'steeve85', 'B+', 45.01051065953767, 0, 0, 0, 0, 0, 0, 'Steeve Barbeau', NULL, 'blog.sbarbeau.fr', 'San Francisco', NULL, 'true', NULL, NULL, 11, 24, 68, 31, 0, 0, 0, '2009-10-16T19:16:13Z', '2024-10-22T11:18:42Z', 'https://avatars.githubusercontent.com/u/140790?v=4', 'https://api.github.com/users/steeve85', 'https://github.com/steeve85', 'https://api.github.com/users/steeve85/followers', 'https://api.github.com/users/steeve85/following', 'https://api.github.com/users/steeve85/gists', 'https://api.github.com/users/steeve85/starred', 'https://api.github.com/users/steeve85/repos', 'https://api.github.com/users/steeve85/events', 'https://api.github.com/users/steeve85/received_events', 0); -INSERT INTO `developer` VALUES (146378, 'muesli', 'S', -93.980768306578, 0, 0, 0, 0, 0, 0, 'Christian Muehlhaeuser', NULL, 'https://fribbledom.com', NULL, 'muesli@gmail.com', 'true', 'I hack on @charmbracelet.\r\n\r\nGeek, Gopher, Software Developer, Maker, Opensource Advocate, Tech Enthusiast, Photographer, Board and Card Gamer.', 'mueslix', 334, 17, 3016, 443, 0, 0, 0, '2009-10-29T17:26:19Z', '2024-09-22T00:13:14Z', 'https://avatars.githubusercontent.com/u/146378?v=4', 'https://api.github.com/users/muesli', 'https://github.com/muesli', 'https://api.github.com/users/muesli/followers', 'https://api.github.com/users/muesli/following', 'https://api.github.com/users/muesli/gists', 'https://api.github.com/users/muesli/starred', 'https://api.github.com/users/muesli/repos', 'https://api.github.com/users/muesli/events', 'https://api.github.com/users/muesli/received_events', 0); -INSERT INTO `developer` VALUES (150935, 'TBeijen', 'S', -40.951170770457644, 0, 0, 0, 0, 0, 0, 'Tibo Beijen', 'Fullstaq', 'https://www.tibobeijen.nl/', 'NL', 'tibobeijen@gmail.com', NULL, 'DevOps, Python and JS developer/architect. UX \r\nenthusiast. Coffee addict. Loud music aficionado. Runner. Dad.', 'TBeijen', 57, 11, 20, 8, 0, 0, 0, '2009-11-09T19:45:44Z', '2024-10-03T13:48:12Z', 'https://avatars.githubusercontent.com/u/150935?v=4', 'https://api.github.com/users/TBeijen', 'https://github.com/TBeijen', 'https://api.github.com/users/TBeijen/followers', 'https://api.github.com/users/TBeijen/following', 'https://api.github.com/users/TBeijen/gists', 'https://api.github.com/users/TBeijen/starred', 'https://api.github.com/users/TBeijen/repos', 'https://api.github.com/users/TBeijen/events', 'https://api.github.com/users/TBeijen/received_events', 0); -INSERT INTO `developer` VALUES (154998, 'ayadav', 'S', -0.09688449373201902, 0, 0, 0, 0, 0, 0, 'Amit Yadav', 'JoshLabs', '', NULL, NULL, NULL, NULL, NULL, 34, 2, 3, 0, 0, 0, 0, '2009-11-18T19:17:50Z', '2024-08-29T11:30:16Z', 'https://avatars.githubusercontent.com/u/154998?v=4', 'https://api.github.com/users/ayadav', 'https://github.com/ayadav', 'https://api.github.com/users/ayadav/followers', 'https://api.github.com/users/ayadav/following', 'https://api.github.com/users/ayadav/gists', 'https://api.github.com/users/ayadav/starred', 'https://api.github.com/users/ayadav/repos', 'https://api.github.com/users/ayadav/events', 'https://api.github.com/users/ayadav/received_events', 0); -INSERT INTO `developer` VALUES (156964, 'tboerger', 'A-', 25.605700366056993, 0, 0, 0, 0, 0, 0, 'Thomas Boerger', 'Cloudpunks GmbH', '', 'Nuremberg, Germany', NULL, NULL, 'Cloud Engineer at Cloudpunks GmbH, open source contributor, go evangelist and proud to be a Webhippie.', 'tboerger', 17, 55, 297, 19, 0, 0, 0, '2009-11-23T10:38:41Z', '2024-09-15T15:45:36Z', 'https://avatars.githubusercontent.com/u/156964?v=4', 'https://api.github.com/users/tboerger', 'https://github.com/tboerger', 'https://api.github.com/users/tboerger/followers', 'https://api.github.com/users/tboerger/following', 'https://api.github.com/users/tboerger/gists', 'https://api.github.com/users/tboerger/starred', 'https://api.github.com/users/tboerger/repos', 'https://api.github.com/users/tboerger/events', 'https://api.github.com/users/tboerger/received_events', 0); -INSERT INTO `developer` VALUES (158418, 'cortex', 'S', -42.73728280011247, 0, 0, 0, 0, 0, 0, 'Joakim Lundborg', NULL, '', NULL, 'joakim.lundborg@gmail.com', NULL, NULL, NULL, 56, 3, 49, 8, 0, 0, 0, '2009-11-26T08:09:53Z', '2024-10-29T22:17:20Z', 'https://avatars.githubusercontent.com/u/158418?v=4', 'https://api.github.com/users/cortex', 'https://github.com/cortex', 'https://api.github.com/users/cortex/followers', 'https://api.github.com/users/cortex/following', 'https://api.github.com/users/cortex/gists', 'https://api.github.com/users/cortex/starred', 'https://api.github.com/users/cortex/repos', 'https://api.github.com/users/cortex/events', 'https://api.github.com/users/cortex/received_events', 0); -INSERT INTO `developer` VALUES (159209, 'ahmetb', 'S', -93.02693088358947, 0, 0, 0, 0, 0, 0, 'Ahmet Alp Balkan', '@linkedin ', 'https://ahmet.dev', 'Seattle, WA', 'github@ahmet.im', 'true', 'Working on compute orchestration with Kubernetes at large fleets.', 'ahmetb', 221, 30, 8216, 34, 0, 0, 0, '2009-11-28T14:59:59Z', '2024-10-23T03:23:02Z', 'https://avatars.githubusercontent.com/u/159209?v=4', 'https://api.github.com/users/ahmetb', 'https://github.com/ahmetb', 'https://api.github.com/users/ahmetb/followers', 'https://api.github.com/users/ahmetb/following', 'https://api.github.com/users/ahmetb/gists', 'https://api.github.com/users/ahmetb/starred', 'https://api.github.com/users/ahmetb/repos', 'https://api.github.com/users/ahmetb/events', 'https://api.github.com/users/ahmetb/received_events', 0); -INSERT INTO `developer` VALUES (159528, 'nickperry', 'S', -2.0152969028606416, 0, 0, 0, 0, 0, 0, 'Nick Perry', NULL, 'https://www.linkedin.com/in/nwperry/', 'United Kingdom', NULL, NULL, NULL, NULL, 31, 1, 20, 8, 0, 0, 0, '2009-11-29T18:10:46Z', '2024-06-04T22:07:11Z', 'https://avatars.githubusercontent.com/u/159528?v=4', 'https://api.github.com/users/nickperry', 'https://github.com/nickperry', 'https://api.github.com/users/nickperry/followers', 'https://api.github.com/users/nickperry/following', 'https://api.github.com/users/nickperry/gists', 'https://api.github.com/users/nickperry/starred', 'https://api.github.com/users/nickperry/repos', 'https://api.github.com/users/nickperry/events', 'https://api.github.com/users/nickperry/received_events', 0); -INSERT INTO `developer` VALUES (160859, 'femaref', 'S', -53.1178380849072, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Kiel, Germany', NULL, NULL, NULL, NULL, 75, 3, 8, 3, 0, 0, 0, '2009-12-02T13:31:46Z', '2024-06-24T11:56:54Z', 'https://avatars.githubusercontent.com/u/160859?v=4', 'https://api.github.com/users/femaref', 'https://github.com/femaref', 'https://api.github.com/users/femaref/followers', 'https://api.github.com/users/femaref/following', 'https://api.github.com/users/femaref/gists', 'https://api.github.com/users/femaref/starred', 'https://api.github.com/users/femaref/repos', 'https://api.github.com/users/femaref/events', 'https://api.github.com/users/femaref/received_events', 0); -INSERT INTO `developer` VALUES (160975, 'victornoel', 'S', -63.69138158155514, 0, 0, 0, 0, 0, 0, 'Victor Noël', 'Brennus Analytics', 'http://www.irit.fr/~Victor.Noel/', 'Toulouse, France', NULL, NULL, NULL, NULL, 80, 15, 57, 5, 0, 0, 0, '2009-12-02T17:51:22Z', '2024-09-26T21:06:09Z', 'https://avatars.githubusercontent.com/u/160975?v=4', 'https://api.github.com/users/victornoel', 'https://github.com/victornoel', 'https://api.github.com/users/victornoel/followers', 'https://api.github.com/users/victornoel/following', 'https://api.github.com/users/victornoel/gists', 'https://api.github.com/users/victornoel/starred', 'https://api.github.com/users/victornoel/repos', 'https://api.github.com/users/victornoel/events', 'https://api.github.com/users/victornoel/received_events', 0); -INSERT INTO `developer` VALUES (165111, 'bencrouse', 'S', -9.56757795895351, 0, 0, 0, 0, 0, 0, 'Ben Crouse', '@convictional ', '', 'Philadelphia, PA', NULL, NULL, 'Principal Engineer @ Convictional', 'bencrouse', 34, 18, 33, 22, 0, 0, 0, '2009-12-09T16:45:14Z', '2024-05-31T19:11:22Z', 'https://avatars.githubusercontent.com/u/165111?v=4', 'https://api.github.com/users/bencrouse', 'https://github.com/bencrouse', 'https://api.github.com/users/bencrouse/followers', 'https://api.github.com/users/bencrouse/following', 'https://api.github.com/users/bencrouse/gists', 'https://api.github.com/users/bencrouse/starred', 'https://api.github.com/users/bencrouse/repos', 'https://api.github.com/users/bencrouse/events', 'https://api.github.com/users/bencrouse/received_events', 0); -INSERT INTO `developer` VALUES (166367, 'dvalentiate', 'B+', 39.489431974096625, 0, 0, 0, 0, 0, 0, 'David Valentiate', 'Bluedrop Performance Learning', 'http://davidv.ca', 'Ottawa', 'david@bluedrop.com', NULL, NULL, NULL, 15, 0, 10, 0, 0, 0, 0, '2009-12-11T21:25:33Z', '2024-09-24T13:23:44Z', 'https://avatars.githubusercontent.com/u/166367?v=4', 'https://api.github.com/users/dvalentiate', 'https://github.com/dvalentiate', 'https://api.github.com/users/dvalentiate/followers', 'https://api.github.com/users/dvalentiate/following', 'https://api.github.com/users/dvalentiate/gists', 'https://api.github.com/users/dvalentiate/starred', 'https://api.github.com/users/dvalentiate/repos', 'https://api.github.com/users/dvalentiate/events', 'https://api.github.com/users/dvalentiate/received_events', 0); -INSERT INTO `developer` VALUES (170308, 'xee5ch', 'S', -90.74687526689591, 0, 0, 0, 0, 0, 0, 'Al', NULL, '', NULL, 'xee5ch@member.fsf.org', NULL, 'Security engineer or developer or DevSecOps person or whatever. I love OSCAL, I run oscal.club.', NULL, 362, 34, 43, 22, 0, 0, 0, '2009-12-21T01:34:33Z', '2024-10-23T17:16:50Z', 'https://avatars.githubusercontent.com/u/170308?v=4', 'https://api.github.com/users/xee5ch', 'https://github.com/xee5ch', 'https://api.github.com/users/xee5ch/followers', 'https://api.github.com/users/xee5ch/following', 'https://api.github.com/users/xee5ch/gists', 'https://api.github.com/users/xee5ch/starred', 'https://api.github.com/users/xee5ch/repos', 'https://api.github.com/users/xee5ch/events', 'https://api.github.com/users/xee5ch/received_events', 0); -INSERT INTO `developer` VALUES (177732, 'mattfinlayson', 'S', -43.92678207577254, 0, 0, 0, 0, 0, 0, 'Matthew Finlayson', '@cloudability ', 'https://www.partiallypeaceful.com', 'Portland, OR', 'matt@unsure.org', NULL, NULL, NULL, 59, 24, 25, 22, 0, 0, 0, '2010-01-07T02:02:20Z', '2024-07-25T16:59:12Z', 'https://avatars.githubusercontent.com/u/177732?v=4', 'https://api.github.com/users/mattfinlayson', 'https://github.com/mattfinlayson', 'https://api.github.com/users/mattfinlayson/followers', 'https://api.github.com/users/mattfinlayson/following', 'https://api.github.com/users/mattfinlayson/gists', 'https://api.github.com/users/mattfinlayson/starred', 'https://api.github.com/users/mattfinlayson/repos', 'https://api.github.com/users/mattfinlayson/events', 'https://api.github.com/users/mattfinlayson/received_events', 0); -INSERT INTO `developer` VALUES (178154, 'sryabkov', 'S', -27.458302733869466, 0, 0, 0, 0, 0, 0, 'Sergei Ryabkov', NULL, '', 'New York, NY', NULL, NULL, NULL, NULL, 46, 2, 21, 7, 0, 0, 0, '2010-01-07T19:51:06Z', '2024-10-24T15:29:32Z', 'https://avatars.githubusercontent.com/u/178154?v=4', 'https://api.github.com/users/sryabkov', 'https://github.com/sryabkov', 'https://api.github.com/users/sryabkov/followers', 'https://api.github.com/users/sryabkov/following', 'https://api.github.com/users/sryabkov/gists', 'https://api.github.com/users/sryabkov/starred', 'https://api.github.com/users/sryabkov/repos', 'https://api.github.com/users/sryabkov/events', 'https://api.github.com/users/sryabkov/received_events', 0); -INSERT INTO `developer` VALUES (181308, 'htdvisser', 'A-', 29.13278703842097, 0, 0, 0, 0, 0, 0, 'Hylke Visser', '@1password ', '', 'The Hague, The Netherlands', 'hi@htdvisser.dev', NULL, NULL, NULL, 16, 5, 124, 30, 0, 0, 0, '2010-01-13T08:56:55Z', '2024-04-19T09:24:35Z', 'https://avatars.githubusercontent.com/u/181308?v=4', 'https://api.github.com/users/htdvisser', 'https://github.com/htdvisser', 'https://api.github.com/users/htdvisser/followers', 'https://api.github.com/users/htdvisser/following', 'https://api.github.com/users/htdvisser/gists', 'https://api.github.com/users/htdvisser/starred', 'https://api.github.com/users/htdvisser/repos', 'https://api.github.com/users/htdvisser/events', 'https://api.github.com/users/htdvisser/received_events', 0); -INSERT INTO `developer` VALUES (185122, 'chrispat', 'S', -97.93177629772015, 0, 0, 0, 59, 5, 0, 'Chris Patterson', '@github ', '', 'Cary, NC', 'chrispat@github.com', NULL, 'Product @ GitHub', 'chrisrpatterson', 153, 2, 417, 20, 0, 0, 0, '2010-01-19T03:36:01Z', '2024-10-30T00:28:52Z', 'https://avatars.githubusercontent.com/u/185122?v=4', 'https://api.github.com/users/chrispat', 'https://github.com/chrispat', 'https://api.github.com/users/chrispat/followers', 'https://api.github.com/users/chrispat/following', 'https://api.github.com/users/chrispat/gists', 'https://api.github.com/users/chrispat/starred', 'https://api.github.com/users/chrispat/repos', 'https://api.github.com/users/chrispat/events', 'https://api.github.com/users/chrispat/received_events', 1); -INSERT INTO `developer` VALUES (192728, 'maclennann', 'S', -16.933612086214534, 0, 0, 0, 0, 0, 0, 'Norm MacLennan', NULL, 'https://iwritethe.codes', 'Boston-ish, MA', 'norm@iwritethe.codes', NULL, NULL, NULL, 39, 3, 22, 4, 0, 0, 0, '2010-01-30T06:09:05Z', '2024-05-16T16:55:05Z', 'https://avatars.githubusercontent.com/u/192728?v=4', 'https://api.github.com/users/maclennann', 'https://github.com/maclennann', 'https://api.github.com/users/maclennann/followers', 'https://api.github.com/users/maclennann/following', 'https://api.github.com/users/maclennann/gists', 'https://api.github.com/users/maclennann/starred', 'https://api.github.com/users/maclennann/repos', 'https://api.github.com/users/maclennann/events', 'https://api.github.com/users/maclennann/received_events', 0); -INSERT INTO `developer` VALUES (193408, 'kwk', 'S', -87.74209853559391, 0, 0, 0, 0, 0, 0, 'Konrad Kleine', 'Red Hat', '', 'Germany', 'kkleine@redhat.com', 'true', 'Senior software engineer at Red Hat working on LLVM.', NULL, 152, 93, 149, 41, 0, 0, 0, '2010-01-31T18:46:01Z', '2024-10-20T11:21:58Z', 'https://avatars.githubusercontent.com/u/193408?v=4', 'https://api.github.com/users/kwk', 'https://github.com/kwk', 'https://api.github.com/users/kwk/followers', 'https://api.github.com/users/kwk/following', 'https://api.github.com/users/kwk/gists', 'https://api.github.com/users/kwk/starred', 'https://api.github.com/users/kwk/repos', 'https://api.github.com/users/kwk/events', 'https://api.github.com/users/kwk/received_events', 0); -INSERT INTO `developer` VALUES (195041, 'tpounds', 'B', 55.77994958669517, 0, 0, 0, 0, 0, 0, 'Trevor Pounds', NULL, 'tpounds.dev', NULL, NULL, NULL, NULL, NULL, 8, 3, 45, 72, 0, 0, 0, '2010-02-03T02:55:15Z', '2024-10-16T15:46:50Z', 'https://avatars.githubusercontent.com/u/195041?v=4', 'https://api.github.com/users/tpounds', 'https://github.com/tpounds', 'https://api.github.com/users/tpounds/followers', 'https://api.github.com/users/tpounds/following', 'https://api.github.com/users/tpounds/gists', 'https://api.github.com/users/tpounds/starred', 'https://api.github.com/users/tpounds/repos', 'https://api.github.com/users/tpounds/events', 'https://api.github.com/users/tpounds/received_events', 0); -INSERT INTO `developer` VALUES (197954, 'ltran', 'S', -59.28741543452711, 0, 0, 0, 0, 0, 0, 'Louis Tran', NULL, '', 'San Francisco', NULL, NULL, NULL, NULL, 81, 8, 13, 16, 0, 0, 0, '2010-02-05T19:36:09Z', '2024-02-26T03:32:05Z', 'https://avatars.githubusercontent.com/u/197954?v=4', 'https://api.github.com/users/ltran', 'https://github.com/ltran', 'https://api.github.com/users/ltran/followers', 'https://api.github.com/users/ltran/following', 'https://api.github.com/users/ltran/gists', 'https://api.github.com/users/ltran/starred', 'https://api.github.com/users/ltran/repos', 'https://api.github.com/users/ltran/events', 'https://api.github.com/users/ltran/received_events', 0); -INSERT INTO `developer` VALUES (198793, 'kupnu4x', 'B+', 38.845254114803765, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 16, 0, 6, 1, 0, 0, 0, '2010-02-07T05:05:33Z', '2024-05-15T10:27:39Z', 'https://avatars.githubusercontent.com/u/198793?v=4', 'https://api.github.com/users/kupnu4x', 'https://github.com/kupnu4x', 'https://api.github.com/users/kupnu4x/followers', 'https://api.github.com/users/kupnu4x/following', 'https://api.github.com/users/kupnu4x/gists', 'https://api.github.com/users/kupnu4x/starred', 'https://api.github.com/users/kupnu4x/repos', 'https://api.github.com/users/kupnu4x/events', 'https://api.github.com/users/kupnu4x/received_events', 0); -INSERT INTO `developer` VALUES (203604, 'kaznovac', 'S', -73.36411167855859, 0, 0, 0, 0, 0, 0, 'Marko Kaznovac', '@byteout ', 'https://kaznovac.com', 'Belgrade, Serbia', NULL, 'true', 'Simplicity is the ultimate form of sophistication.', 'kznvc', 98, 17, 63, 438, 0, 0, 0, '2010-02-14T20:34:17Z', '2024-06-10T20:32:56Z', 'https://avatars.githubusercontent.com/u/203604?v=4', 'https://api.github.com/users/kaznovac', 'https://github.com/kaznovac', 'https://api.github.com/users/kaznovac/followers', 'https://api.github.com/users/kaznovac/following', 'https://api.github.com/users/kaznovac/gists', 'https://api.github.com/users/kaznovac/starred', 'https://api.github.com/users/kaznovac/repos', 'https://api.github.com/users/kaznovac/events', 'https://api.github.com/users/kaznovac/received_events', 0); -INSERT INTO `developer` VALUES (205553, 'hendrikhalkow', 'C', 87.86764705882352, 0, 0, 0, 0, 0, 0, 'Hendrik M Halkow', 'Forward H', 'https://halkow.com', 'Hamburg, Germany', NULL, 'true', NULL, 'hendrikhalkow', 0, 2, 22, 23, 0, 0, 0, '2010-02-17T21:15:43Z', '2024-10-28T11:19:08Z', 'https://avatars.githubusercontent.com/u/205553?v=4', 'https://api.github.com/users/hendrikhalkow', 'https://github.com/hendrikhalkow', 'https://api.github.com/users/hendrikhalkow/followers', 'https://api.github.com/users/hendrikhalkow/following', 'https://api.github.com/users/hendrikhalkow/gists', 'https://api.github.com/users/hendrikhalkow/starred', 'https://api.github.com/users/hendrikhalkow/repos', 'https://api.github.com/users/hendrikhalkow/events', 'https://api.github.com/users/hendrikhalkow/received_events', 0); -INSERT INTO `developer` VALUES (217874, 'dorianj', 'B+', 42.56322645679982, 0, 0, 0, 0, 0, 0, 'Dorian Johnson', NULL, '', 'San Francisco', NULL, NULL, NULL, 'dorianj', 12, 0, 50, 9, 0, 0, 0, '2010-03-07T18:00:43Z', '2024-10-31T16:55:02Z', 'https://avatars.githubusercontent.com/u/217874?v=4', 'https://api.github.com/users/dorianj', 'https://github.com/dorianj', 'https://api.github.com/users/dorianj/followers', 'https://api.github.com/users/dorianj/following', 'https://api.github.com/users/dorianj/gists', 'https://api.github.com/users/dorianj/starred', 'https://api.github.com/users/dorianj/repos', 'https://api.github.com/users/dorianj/events', 'https://api.github.com/users/dorianj/received_events', 0); -INSERT INTO `developer` VALUES (220838, 'aaronweaver', 'S', -14.746817305073456, 0, 0, 0, 0, 0, 0, 'Aaron Weaver', 'OWASP', '', NULL, NULL, NULL, NULL, NULL, 36, 3, 59, 3, 0, 0, 0, '2010-03-11T19:54:19Z', '2024-10-19T01:25:45Z', 'https://avatars.githubusercontent.com/u/220838?v=4', 'https://api.github.com/users/aaronweaver', 'https://github.com/aaronweaver', 'https://api.github.com/users/aaronweaver/followers', 'https://api.github.com/users/aaronweaver/following', 'https://api.github.com/users/aaronweaver/gists', 'https://api.github.com/users/aaronweaver/starred', 'https://api.github.com/users/aaronweaver/repos', 'https://api.github.com/users/aaronweaver/events', 'https://api.github.com/users/aaronweaver/received_events', 0); -INSERT INTO `developer` VALUES (221872, 'maddie', 'S', -50.43438848056312, 0, 0, 0, 0, 0, 0, 'maddie', NULL, '', 'Shenzhen, China', NULL, NULL, 'Always learning.', NULL, 64, 7, 41, 35, 0, 0, 0, '2010-03-13T11:47:16Z', '2024-09-10T15:39:43Z', 'https://avatars.githubusercontent.com/u/221872?v=4', 'https://api.github.com/users/maddie', 'https://github.com/maddie', 'https://api.github.com/users/maddie/followers', 'https://api.github.com/users/maddie/following', 'https://api.github.com/users/maddie/gists', 'https://api.github.com/users/maddie/starred', 'https://api.github.com/users/maddie/repos', 'https://api.github.com/users/maddie/events', 'https://api.github.com/users/maddie/received_events', 0); -INSERT INTO `developer` VALUES (263448, 'hikhvar', 'S', -55.240386164811106, 0, 0, 0, 0, 0, 0, 'Christoph Petrausch', NULL, 'https://journal.petrausch.info', NULL, NULL, NULL, NULL, 'hikhvar', 69, 1, 48, 3, 0, 0, 0, '2010-05-03T20:01:11Z', '2024-06-07T04:36:36Z', 'https://avatars.githubusercontent.com/u/263448?v=4', 'https://api.github.com/users/hikhvar', 'https://github.com/hikhvar', 'https://api.github.com/users/hikhvar/followers', 'https://api.github.com/users/hikhvar/following', 'https://api.github.com/users/hikhvar/gists', 'https://api.github.com/users/hikhvar/starred', 'https://api.github.com/users/hikhvar/repos', 'https://api.github.com/users/hikhvar/events', 'https://api.github.com/users/hikhvar/received_events', 0); -INSERT INTO `developer` VALUES (266018, 'itscaro', 'S', -85.35223885641649, 0, 0, 0, 0, 0, 0, 'Quan TRAN', '@its-caro ', 'https://gitter.im/itscaro/contact', 'Paris, France', NULL, 'true', 'DevOps', NULL, 167, 2, 25, 5, 0, 0, 0, '2010-05-05T23:08:35Z', '2024-10-22T09:16:50Z', 'https://avatars.githubusercontent.com/u/266018?v=4', 'https://api.github.com/users/itscaro', 'https://github.com/itscaro', 'https://api.github.com/users/itscaro/followers', 'https://api.github.com/users/itscaro/following', 'https://api.github.com/users/itscaro/gists', 'https://api.github.com/users/itscaro/starred', 'https://api.github.com/users/itscaro/repos', 'https://api.github.com/users/itscaro/events', 'https://api.github.com/users/itscaro/received_events', 0); -INSERT INTO `developer` VALUES (273837, 'akavel', 'S', -92.07569350692796, 0, 0, 0, 0, 0, 0, 'Mateusz Czapliński', NULL, 'https://akavel.com', NULL, NULL, 'true', NULL, NULL, 211, 41, 244, 10, 0, 0, 0, '2010-05-11T22:29:44Z', '2024-10-31T07:39:59Z', 'https://avatars.githubusercontent.com/u/273837?v=4', 'https://api.github.com/users/akavel', 'https://github.com/akavel', 'https://api.github.com/users/akavel/followers', 'https://api.github.com/users/akavel/following', 'https://api.github.com/users/akavel/gists', 'https://api.github.com/users/akavel/starred', 'https://api.github.com/users/akavel/repos', 'https://api.github.com/users/akavel/events', 'https://api.github.com/users/akavel/received_events', 0); -INSERT INTO `developer` VALUES (295376, 'rightjoin', 'B+', 39.27517939464437, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 14, 0, 21, 0, 0, 0, 0, '2010-06-03T11:13:09Z', '2024-08-04T03:39:24Z', 'https://avatars.githubusercontent.com/u/295376?v=4', 'https://api.github.com/users/rightjoin', 'https://github.com/rightjoin', 'https://api.github.com/users/rightjoin/followers', 'https://api.github.com/users/rightjoin/following', 'https://api.github.com/users/rightjoin/gists', 'https://api.github.com/users/rightjoin/starred', 'https://api.github.com/users/rightjoin/repos', 'https://api.github.com/users/rightjoin/events', 'https://api.github.com/users/rightjoin/received_events', 0); -INSERT INTO `developer` VALUES (299404, 'mseashor', 'A-', 31.415027215256973, 0, 0, 0, 0, 0, 0, 'Matt Seashore', NULL, '', NULL, NULL, NULL, NULL, NULL, 19, 1, 5, 1, 0, 0, 0, '2010-06-08T01:16:29Z', '2024-10-30T06:19:42Z', 'https://avatars.githubusercontent.com/u/299404?v=4', 'https://api.github.com/users/mseashor', 'https://github.com/mseashor', 'https://api.github.com/users/mseashor/followers', 'https://api.github.com/users/mseashor/following', 'https://api.github.com/users/mseashor/gists', 'https://api.github.com/users/mseashor/starred', 'https://api.github.com/users/mseashor/repos', 'https://api.github.com/users/mseashor/events', 'https://api.github.com/users/mseashor/received_events', 0); -INSERT INTO `developer` VALUES (304383, 'jasonharrison', 'S', -21.483109246831035, 0, 0, 0, 0, 0, 0, 'Jason', 'Stanley Black & Decker', 'https://www.jasonharrison.us/?from=github', 'Loveland, Colorado', 'me@jasonh.dev', NULL, NULL, NULL, 41, 6, 32, 16, 0, 0, 0, '2010-06-13T22:23:05Z', '2024-10-29T19:55:53Z', 'https://avatars.githubusercontent.com/u/304383?v=4', 'https://api.github.com/users/jasonharrison', 'https://github.com/jasonharrison', 'https://api.github.com/users/jasonharrison/followers', 'https://api.github.com/users/jasonharrison/following', 'https://api.github.com/users/jasonharrison/gists', 'https://api.github.com/users/jasonharrison/starred', 'https://api.github.com/users/jasonharrison/repos', 'https://api.github.com/users/jasonharrison/events', 'https://api.github.com/users/jasonharrison/received_events', 0); -INSERT INTO `developer` VALUES (309628, 'ppiotr3k', 'B', 51.15142856516146, 0, 0, 0, 0, 0, 0, 'Piotr PAWLICKI', NULL, '', 'Earth > France > Paris', NULL, NULL, NULL, NULL, 11, 0, 11, 0, 0, 0, 0, '2010-06-19T21:00:38Z', '2024-10-28T11:19:22Z', 'https://avatars.githubusercontent.com/u/309628?v=4', 'https://api.github.com/users/ppiotr3k', 'https://github.com/ppiotr3k', 'https://api.github.com/users/ppiotr3k/followers', 'https://api.github.com/users/ppiotr3k/following', 'https://api.github.com/users/ppiotr3k/gists', 'https://api.github.com/users/ppiotr3k/starred', 'https://api.github.com/users/ppiotr3k/repos', 'https://api.github.com/users/ppiotr3k/events', 'https://api.github.com/users/ppiotr3k/received_events', 0); -INSERT INTO `developer` VALUES (326929, 'Flydiverny', 'S', -67.33910023189793, 0, 0, 0, 0, 0, 0, 'Markus Maga', '@doktor-se', 'https://markusmaga.se', 'Sweden', 'github@markusmaga.se', NULL, 'FullStack dev playing in DevOps land and improving DevExp with internal toys!', 'flydiverny', 88, 6, 38, 37, 0, 0, 0, '2010-07-09T00:13:48Z', '2024-10-28T11:19:23Z', 'https://avatars.githubusercontent.com/u/326929?v=4', 'https://api.github.com/users/Flydiverny', 'https://github.com/Flydiverny', 'https://api.github.com/users/Flydiverny/followers', 'https://api.github.com/users/Flydiverny/following', 'https://api.github.com/users/Flydiverny/gists', 'https://api.github.com/users/Flydiverny/starred', 'https://api.github.com/users/Flydiverny/repos', 'https://api.github.com/users/Flydiverny/events', 'https://api.github.com/users/Flydiverny/received_events', 0); -INSERT INTO `developer` VALUES (329265, 'Gallardot', 'S', -28.629897016047657, 0, 0, 0, 0, 0, 0, 'Gallardot', '@apache, @cncf, XPENG Motors', '', 'Guangzhou, China', 'gallardot@apache.org', NULL, NULL, 'Gallardot68112', 45, 0, 47, 4, 0, 0, 0, '2010-07-12T06:39:53Z', '2024-10-22T11:19:01Z', 'https://avatars.githubusercontent.com/u/329265?v=4', 'https://api.github.com/users/Gallardot', 'https://github.com/Gallardot', 'https://api.github.com/users/Gallardot/followers', 'https://api.github.com/users/Gallardot/following', 'https://api.github.com/users/Gallardot/gists', 'https://api.github.com/users/Gallardot/starred', 'https://api.github.com/users/Gallardot/repos', 'https://api.github.com/users/Gallardot/events', 'https://api.github.com/users/Gallardot/received_events', 0); -INSERT INTO `developer` VALUES (334661, 'dmacthedestroyer', 'A+', 1.906271724590336, 0, 0, 0, 0, 0, 0, 'Daniel McDonald', NULL, '', 'Tacoma, WA', 'mcdonald.daniel.james@gmail.com', NULL, NULL, NULL, 31, 2, 8, 5, 0, 0, 0, '2010-07-17T04:53:25Z', '2024-11-01T11:21:22Z', 'https://avatars.githubusercontent.com/u/334661?v=4', 'https://api.github.com/users/dmacthedestroyer', 'https://github.com/dmacthedestroyer', 'https://api.github.com/users/dmacthedestroyer/followers', 'https://api.github.com/users/dmacthedestroyer/following', 'https://api.github.com/users/dmacthedestroyer/gists', 'https://api.github.com/users/dmacthedestroyer/starred', 'https://api.github.com/users/dmacthedestroyer/repos', 'https://api.github.com/users/dmacthedestroyer/events', 'https://api.github.com/users/dmacthedestroyer/received_events', 0); -INSERT INTO `developer` VALUES (340093, 'MattLud', 'S', -2.6421333625102905, 0, 0, 0, 0, 0, 0, 'Matt L. ', NULL, '', 'Austin, TX', NULL, NULL, NULL, NULL, 34, 8, 6, 3, 0, 0, 0, '2010-07-21T19:53:24Z', '2024-07-12T15:30:56Z', 'https://avatars.githubusercontent.com/u/340093?v=4', 'https://api.github.com/users/MattLud', 'https://github.com/MattLud', 'https://api.github.com/users/MattLud/followers', 'https://api.github.com/users/MattLud/following', 'https://api.github.com/users/MattLud/gists', 'https://api.github.com/users/MattLud/starred', 'https://api.github.com/users/MattLud/repos', 'https://api.github.com/users/MattLud/events', 'https://api.github.com/users/MattLud/received_events', 0); -INSERT INTO `developer` VALUES (349931, 'junhuif', 'A-', 27.003262509374625, 0, 0, 0, 0, 0, 0, 'junhuif', '@theplant ', '', 'HangZhou China', 'junhuif@theplant.jp', NULL, NULL, NULL, 19, 12, 14, 33, 0, 0, 0, '2010-07-31T06:48:12Z', '2024-10-17T03:23:50Z', 'https://avatars.githubusercontent.com/u/349931?v=4', 'https://api.github.com/users/junhuif', 'https://github.com/junhuif', 'https://api.github.com/users/junhuif/followers', 'https://api.github.com/users/junhuif/following', 'https://api.github.com/users/junhuif/gists', 'https://api.github.com/users/junhuif/starred', 'https://api.github.com/users/junhuif/repos', 'https://api.github.com/users/junhuif/events', 'https://api.github.com/users/junhuif/received_events', 0); -INSERT INTO `developer` VALUES (355264, 'brunoro', 'S', -49.250436203682014, 0, 0, 1, 357, 19, 0, 'Gustavo Brunoro', NULL, 'hitnail.net', NULL, NULL, NULL, NULL, NULL, 45, 18, 44, 37, 0, 0, 0, '2010-08-05T14:43:42Z', '2024-10-24T14:12:36Z', 'https://avatars.githubusercontent.com/u/355264?v=4', 'https://api.github.com/users/brunoro', 'https://github.com/brunoro', 'https://api.github.com/users/brunoro/followers', 'https://api.github.com/users/brunoro/following', 'https://api.github.com/users/brunoro/gists', 'https://api.github.com/users/brunoro/starred', 'https://api.github.com/users/brunoro/repos', 'https://api.github.com/users/brunoro/events', 'https://api.github.com/users/brunoro/received_events', 0); -INSERT INTO `developer` VALUES (363932, 'ReSTARTR', 'S', -15.080527190437131, 0, 0, 0, 0, 0, 0, 'Masaki Yoshida', 'Freelance Software Engineer', 'https://medium.com/@restartr', 'Tokyo, Japan', NULL, 'true', '\r\n since 2006\r\n', 'restartr', 38, 21, 21, 34, 0, 0, 0, '2010-08-13T23:44:42Z', '2024-10-22T23:10:22Z', 'https://avatars.githubusercontent.com/u/363932?v=4', 'https://api.github.com/users/ReSTARTR', 'https://github.com/ReSTARTR', 'https://api.github.com/users/ReSTARTR/followers', 'https://api.github.com/users/ReSTARTR/following', 'https://api.github.com/users/ReSTARTR/gists', 'https://api.github.com/users/ReSTARTR/starred', 'https://api.github.com/users/ReSTARTR/repos', 'https://api.github.com/users/ReSTARTR/events', 'https://api.github.com/users/ReSTARTR/received_events', 0); -INSERT INTO `developer` VALUES (372794, 'glb', 'S', -30.174839333547986, 0, 0, 0, 0, 0, 0, 'Geoff Baskwill', NULL, '', 'Canada', NULL, NULL, 'Learning daily.', NULL, 49, 2, 15, 1, 0, 0, 0, '2010-08-22T21:16:44Z', '2024-10-26T16:51:46Z', 'https://avatars.githubusercontent.com/u/372794?v=4', 'https://api.github.com/users/glb', 'https://github.com/glb', 'https://api.github.com/users/glb/followers', 'https://api.github.com/users/glb/following', 'https://api.github.com/users/glb/gists', 'https://api.github.com/users/glb/starred', 'https://api.github.com/users/glb/repos', 'https://api.github.com/users/glb/events', 'https://api.github.com/users/glb/received_events', 0); -INSERT INTO `developer` VALUES (379820, 'zaneli', 'S', -43.60933389277724, 0, 0, 0, 0, 0, 0, 'Shunsuke Otani', '@zauel', 'https://www.zaneli.com/', 'Tokyo, Japan', 'shun.otani@gmail.com', NULL, NULL, 'so_zaneli', 58, 59, 31, 0, 0, 0, 0, '2010-08-29T15:48:41Z', '2024-09-24T02:45:11Z', 'https://avatars.githubusercontent.com/u/379820?v=4', 'https://api.github.com/users/zaneli', 'https://github.com/zaneli', 'https://api.github.com/users/zaneli/followers', 'https://api.github.com/users/zaneli/following', 'https://api.github.com/users/zaneli/gists', 'https://api.github.com/users/zaneli/starred', 'https://api.github.com/users/zaneli/repos', 'https://api.github.com/users/zaneli/events', 'https://api.github.com/users/zaneli/received_events', 0); -INSERT INTO `developer` VALUES (392473, 'wuurrd', 'S', -50.38656340546525, 0, 0, 0, 0, 0, 0, 'David Emanuel Buchmann', 'Nøyd AS', '', 'Oslo, Norway', 'david.buchmann@gmail.com', NULL, NULL, NULL, 68, 5, 15, 4, 0, 0, 0, '2010-09-08T19:23:09Z', '2024-08-16T18:20:40Z', 'https://avatars.githubusercontent.com/u/392473?v=4', 'https://api.github.com/users/wuurrd', 'https://github.com/wuurrd', 'https://api.github.com/users/wuurrd/followers', 'https://api.github.com/users/wuurrd/following', 'https://api.github.com/users/wuurrd/gists', 'https://api.github.com/users/wuurrd/starred', 'https://api.github.com/users/wuurrd/repos', 'https://api.github.com/users/wuurrd/events', 'https://api.github.com/users/wuurrd/received_events', 0); -INSERT INTO `developer` VALUES (403067, 'drakedevel', 'C', 165.46122588772732, 0, 63, 2, 30, 0, 0, 'Andrew Drake', '@frontapp', 'https://adrake.org', 'San Francisco, CA', 'adrake@adrake.org', NULL, NULL, NULL, 63, 11, 36, 3, 0, 0, 0, '2010-09-16T18:00:33Z', '2024-10-30T18:17:45Z', 'https://avatars.githubusercontent.com/u/403067?v=4', 'https://api.github.com/users/drakedevel', 'https://github.com/drakedevel', 'https://api.github.com/users/drakedevel/followers', 'https://api.github.com/users/drakedevel/following', 'https://api.github.com/users/drakedevel/gists', 'https://api.github.com/users/drakedevel/starred', 'https://api.github.com/users/drakedevel/repos', 'https://api.github.com/users/drakedevel/events', 'https://api.github.com/users/drakedevel/received_events', 0); -INSERT INTO `developer` VALUES (406916, 'smacker', 'S', -76.93225565484856, 0, 0, 0, 0, 0, 0, 'Maxim Sukharev', 'Fujitsu Launchpad', '', 'Singapore', 'max@smacker.ru', NULL, NULL, NULL, 107, 11, 67, 0, 0, 0, 0, '2010-09-19T10:51:31Z', '2024-10-14T03:14:14Z', 'https://avatars.githubusercontent.com/u/406916?v=4', 'https://api.github.com/users/smacker', 'https://github.com/smacker', 'https://api.github.com/users/smacker/followers', 'https://api.github.com/users/smacker/following', 'https://api.github.com/users/smacker/gists', 'https://api.github.com/users/smacker/starred', 'https://api.github.com/users/smacker/repos', 'https://api.github.com/users/smacker/events', 'https://api.github.com/users/smacker/received_events', 0); -INSERT INTO `developer` VALUES (407342, 'wendorf', 'S', -78.65978840395891, 0, 0, 0, 0, 0, 0, 'Dan Wendorf', NULL, '', NULL, NULL, NULL, NULL, NULL, 142, 11, 10, 3, 0, 0, 0, '2010-09-19T19:15:38Z', '2024-07-18T15:22:27Z', 'https://avatars.githubusercontent.com/u/407342?v=4', 'https://api.github.com/users/wendorf', 'https://github.com/wendorf', 'https://api.github.com/users/wendorf/followers', 'https://api.github.com/users/wendorf/following', 'https://api.github.com/users/wendorf/gists', 'https://api.github.com/users/wendorf/starred', 'https://api.github.com/users/wendorf/repos', 'https://api.github.com/users/wendorf/events', 'https://api.github.com/users/wendorf/received_events', 0); -INSERT INTO `developer` VALUES (414366, 'bastianeicher', 'B', 50.56689729999865, 0, 43, 5, 44, 0, 0, 'Bastian Eicher', NULL, 'https://bastian.eicher.net/', 'Germany', NULL, NULL, NULL, NULL, 5, 0, 33, 4, 0, 0, 0, '2010-09-24T12:36:53Z', '2024-11-01T17:17:09Z', 'https://avatars.githubusercontent.com/u/414366?v=4', 'https://api.github.com/users/bastianeicher', 'https://github.com/bastianeicher', 'https://api.github.com/users/bastianeicher/followers', 'https://api.github.com/users/bastianeicher/following', 'https://api.github.com/users/bastianeicher/gists', 'https://api.github.com/users/bastianeicher/starred', 'https://api.github.com/users/bastianeicher/repos', 'https://api.github.com/users/bastianeicher/events', 'https://api.github.com/users/bastianeicher/received_events', 0); -INSERT INTO `developer` VALUES (416477, 'ScottBrenner', 'A', 24.05675508566888, 0, 0, 0, 0, 0, 0, 'Scott Brenner', NULL, 'https://www.scottbrenner.me/', 'San Francisco, CA', 'scott@scottbrenner.me', NULL, 'NoDevSecNetGitSysChatTestOps', NULL, 18, 1, 91, 79, 0, 0, 0, '2010-09-26T15:22:12Z', '2024-08-29T22:14:00Z', 'https://avatars.githubusercontent.com/u/416477?v=4', 'https://api.github.com/users/ScottBrenner', 'https://github.com/ScottBrenner', 'https://api.github.com/users/ScottBrenner/followers', 'https://api.github.com/users/ScottBrenner/following', 'https://api.github.com/users/ScottBrenner/gists', 'https://api.github.com/users/ScottBrenner/starred', 'https://api.github.com/users/ScottBrenner/repos', 'https://api.github.com/users/ScottBrenner/events', 'https://api.github.com/users/ScottBrenner/received_events', 0); -INSERT INTO `developer` VALUES (420132, 'aboyett', 'S', -74.00690560297676, 0, 0, 0, 0, 0, 0, 'Andy Boyett', 'CloudPhysics', '', NULL, NULL, NULL, NULL, NULL, 119, 4, 10, 0, 0, 0, 0, '2010-09-29T02:54:05Z', '2024-10-21T01:21:43Z', 'https://avatars.githubusercontent.com/u/420132?v=4', 'https://api.github.com/users/aboyett', 'https://github.com/aboyett', 'https://api.github.com/users/aboyett/followers', 'https://api.github.com/users/aboyett/following', 'https://api.github.com/users/aboyett/gists', 'https://api.github.com/users/aboyett/starred', 'https://api.github.com/users/aboyett/repos', 'https://api.github.com/users/aboyett/events', 'https://api.github.com/users/aboyett/received_events', 0); -INSERT INTO `developer` VALUES (426340, 'rtfb', 'S', -57.78082564469755, 0, 0, 0, 0, 0, 0, 'Vytautas Šaltenis', NULL, 'https://rtfb.lt', 'Vilnius', 'vytas@rtfb.lt', NULL, NULL, NULL, 74, 10, 30, 3, 0, 0, 0, '2010-10-04T11:58:27Z', '2024-08-02T21:16:23Z', 'https://avatars.githubusercontent.com/u/426340?v=4', 'https://api.github.com/users/rtfb', 'https://github.com/rtfb', 'https://api.github.com/users/rtfb/followers', 'https://api.github.com/users/rtfb/following', 'https://api.github.com/users/rtfb/gists', 'https://api.github.com/users/rtfb/starred', 'https://api.github.com/users/rtfb/repos', 'https://api.github.com/users/rtfb/events', 'https://api.github.com/users/rtfb/received_events', 0); -INSERT INTO `developer` VALUES (432904, 'xyziemba', 'A-', 26.43765164964611, 0, 0, 0, 0, 0, 0, 'Xy Ziemba', '@google', '', 'Seattle, WA', 'xy.ziemba@gmail.com', NULL, NULL, NULL, 19, 0, 16, 1, 0, 0, 0, '2010-10-08T21:02:12Z', '2024-10-24T17:04:23Z', 'https://avatars.githubusercontent.com/u/432904?v=4', 'https://api.github.com/users/xyziemba', 'https://github.com/xyziemba', 'https://api.github.com/users/xyziemba/followers', 'https://api.github.com/users/xyziemba/following', 'https://api.github.com/users/xyziemba/gists', 'https://api.github.com/users/xyziemba/starred', 'https://api.github.com/users/xyziemba/repos', 'https://api.github.com/users/xyziemba/events', 'https://api.github.com/users/xyziemba/received_events', 0); -INSERT INTO `developer` VALUES (435652, 'jaytaylor', 'S', -85.3119678943491, 0, 0, 0, 0, 0, 0, 'J. Elliot Taylor', '@gigawattio ', 'https://jaytaylor.com/', 'Palo Alto, CA', 'outtatime+github@gmail.com', NULL, NULL, NULL, 140, 145, 85, 33, 0, 0, 0, '2010-10-11T17:37:49Z', '2024-10-20T17:59:20Z', 'https://avatars.githubusercontent.com/u/435652?v=4', 'https://api.github.com/users/jaytaylor', 'https://github.com/jaytaylor', 'https://api.github.com/users/jaytaylor/followers', 'https://api.github.com/users/jaytaylor/following', 'https://api.github.com/users/jaytaylor/gists', 'https://api.github.com/users/jaytaylor/starred', 'https://api.github.com/users/jaytaylor/repos', 'https://api.github.com/users/jaytaylor/events', 'https://api.github.com/users/jaytaylor/received_events', 0); -INSERT INTO `developer` VALUES (439279, 'deronnax', 'S', -74.76500998947073, 0, 0, 0, 0, 0, 0, 'Mathieu Dupuy', 'GitGuardian', '', 'Paris, France', NULL, 'true', 'I write python and deploy stuffs in managed clouds', NULL, 105, 5, 37, 27, 0, 0, 0, '2010-10-14T12:10:11Z', '2024-10-23T08:36:56Z', 'https://avatars.githubusercontent.com/u/439279?v=4', 'https://api.github.com/users/deronnax', 'https://github.com/deronnax', 'https://api.github.com/users/deronnax/followers', 'https://api.github.com/users/deronnax/following', 'https://api.github.com/users/deronnax/gists', 'https://api.github.com/users/deronnax/starred', 'https://api.github.com/users/deronnax/repos', 'https://api.github.com/users/deronnax/events', 'https://api.github.com/users/deronnax/received_events', 0); -INSERT INTO `developer` VALUES (450140, 'ivpusic', 'S', -84.0060713592258, 0, 0, 0, 0, 0, 0, 'Ivan Pusic', '@mantro ', 'www.linkedin.com/in/ivan-pusic', 'Zagreb, Croatia', NULL, NULL, NULL, NULL, 127, 11, 232, 41, 0, 0, 0, '2010-10-22T18:37:29Z', '2024-10-28T10:46:35Z', 'https://avatars.githubusercontent.com/u/450140?v=4', 'https://api.github.com/users/ivpusic', 'https://github.com/ivpusic', 'https://api.github.com/users/ivpusic/followers', 'https://api.github.com/users/ivpusic/following', 'https://api.github.com/users/ivpusic/gists', 'https://api.github.com/users/ivpusic/starred', 'https://api.github.com/users/ivpusic/repos', 'https://api.github.com/users/ivpusic/events', 'https://api.github.com/users/ivpusic/received_events', 0); -INSERT INTO `developer` VALUES (452568, 'akuseru', 'A+', 11.981945439062326, 0, 0, 0, 0, 0, 0, 'Adam Smith', NULL, '', NULL, NULL, NULL, 'I break things.', NULL, 25, 5, 15, 5, 0, 0, 0, '2010-10-25T05:23:40Z', '2024-09-30T06:49:12Z', 'https://avatars.githubusercontent.com/u/452568?v=4', 'https://api.github.com/users/akuseru', 'https://github.com/akuseru', 'https://api.github.com/users/akuseru/followers', 'https://api.github.com/users/akuseru/following', 'https://api.github.com/users/akuseru/gists', 'https://api.github.com/users/akuseru/starred', 'https://api.github.com/users/akuseru/repos', 'https://api.github.com/users/akuseru/events', 'https://api.github.com/users/akuseru/received_events', 0); -INSERT INTO `developer` VALUES (477982, 'flah00', 'B', 54.77068105601761, 0, 0, 0, 0, 0, 0, 'Philip Champon', NULL, '', 'Brooklyn, NY', 'pchampon@gmail.com', NULL, NULL, NULL, 10, 0, 10, 5, 0, 0, 0, '2010-11-11T22:00:03Z', '2024-09-26T19:35:15Z', 'https://avatars.githubusercontent.com/u/477982?v=4', 'https://api.github.com/users/flah00', 'https://github.com/flah00', 'https://api.github.com/users/flah00/followers', 'https://api.github.com/users/flah00/following', 'https://api.github.com/users/flah00/gists', 'https://api.github.com/users/flah00/starred', 'https://api.github.com/users/flah00/repos', 'https://api.github.com/users/flah00/events', 'https://api.github.com/users/flah00/received_events', 0); -INSERT INTO `developer` VALUES (478926, 'cpswan', 'S', -87.11657497343406, 0, 0, 0, 0, 0, 0, 'Chris Swan', '@atsign-company ', 'https://chris.swanz.net/', NULL, NULL, NULL, 'Engineer at Atsign, Dart GDE, Cloud Editor at InfoQ, Raspberry Pi, Arduino and RC2014 tinkerer', NULL, 149, 31, 120, 0, 0, 0, 0, '2010-11-12T14:41:37Z', '2024-10-25T05:56:11Z', 'https://avatars.githubusercontent.com/u/478926?v=4', 'https://api.github.com/users/cpswan', 'https://github.com/cpswan', 'https://api.github.com/users/cpswan/followers', 'https://api.github.com/users/cpswan/following', 'https://api.github.com/users/cpswan/gists', 'https://api.github.com/users/cpswan/starred', 'https://api.github.com/users/cpswan/repos', 'https://api.github.com/users/cpswan/events', 'https://api.github.com/users/cpswan/received_events', 0); -INSERT INTO `developer` VALUES (492603, 'westonplatter', 'S', -92.07578437257675, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, 'westonplattergithub@gmail.com', 'true', 'software/data/quant engineer. Fascinated by option markets, financial time series, and risk.\r\n', NULL, 224, 76, 159, 8, 0, 0, 0, '2010-11-22T23:45:58Z', '2024-08-26T17:55:51Z', 'https://avatars.githubusercontent.com/u/492603?v=4', 'https://api.github.com/users/westonplatter', 'https://github.com/westonplatter', 'https://api.github.com/users/westonplatter/followers', 'https://api.github.com/users/westonplatter/following', 'https://api.github.com/users/westonplatter/gists', 'https://api.github.com/users/westonplatter/starred', 'https://api.github.com/users/westonplatter/repos', 'https://api.github.com/users/westonplatter/events', 'https://api.github.com/users/westonplatter/received_events', 0); -INSERT INTO `developer` VALUES (494259, 'cedric-lamalle', 'S', -8.46157288881666, 0, 0, 0, 0, 0, 0, 'Cédric Lamalle', 'Basis TI', 'https://cedric-lamalle.github.io', 'Brazil', NULL, NULL, NULL, NULL, 33, 0, 43, 3, 0, 0, 0, '2010-11-24T01:16:22Z', '2024-09-08T12:58:15Z', 'https://avatars.githubusercontent.com/u/494259?v=4', 'https://api.github.com/users/cedric-lamalle', 'https://github.com/cedric-lamalle', 'https://api.github.com/users/cedric-lamalle/followers', 'https://api.github.com/users/cedric-lamalle/following', 'https://api.github.com/users/cedric-lamalle/gists', 'https://api.github.com/users/cedric-lamalle/starred', 'https://api.github.com/users/cedric-lamalle/repos', 'https://api.github.com/users/cedric-lamalle/events', 'https://api.github.com/users/cedric-lamalle/received_events', 0); -INSERT INTO `developer` VALUES (501976, 'andrew-waters', 'S', -36.92167068264829, 0, 11, 0, 619, 3, 0, 'Andrew Waters', 'Ctrl Hub', 'https://andon.dev', 'Europe', NULL, NULL, 'CTO @ctrl-hub ', NULL, 36, 2, 40, 10, 0, 0, 0, '2010-11-29T15:27:22Z', '2024-10-23T10:57:01Z', 'https://avatars.githubusercontent.com/u/501976?v=4', 'https://api.github.com/users/andrew-waters', 'https://github.com/andrew-waters', 'https://api.github.com/users/andrew-waters/followers', 'https://api.github.com/users/andrew-waters/following', 'https://api.github.com/users/andrew-waters/gists', 'https://api.github.com/users/andrew-waters/starred', 'https://api.github.com/users/andrew-waters/repos', 'https://api.github.com/users/andrew-waters/events', 'https://api.github.com/users/andrew-waters/received_events', 0); -INSERT INTO `developer` VALUES (523991, 'AKoetsier', 'S', -1.4105837917349984, 0, 0, 0, 0, 0, 0, 'Andres Koetsier', 'Oblivion B.V.', '', NULL, NULL, NULL, NULL, NULL, 33, 0, 7, 0, 0, 0, 0, '2010-12-15T08:31:32Z', '2023-06-02T09:48:45Z', 'https://avatars.githubusercontent.com/u/523991?v=4', 'https://api.github.com/users/AKoetsier', 'https://github.com/AKoetsier', 'https://api.github.com/users/AKoetsier/followers', 'https://api.github.com/users/AKoetsier/following', 'https://api.github.com/users/AKoetsier/gists', 'https://api.github.com/users/AKoetsier/starred', 'https://api.github.com/users/AKoetsier/repos', 'https://api.github.com/users/AKoetsier/events', 'https://api.github.com/users/AKoetsier/received_events', 0); -INSERT INTO `developer` VALUES (534649, 'yciabaud', 'S', -52.40337012815432, 0, 0, 0, 0, 0, 0, 'Yoann Ciabaud', '@sonoralabs ', 'http://www.yoann-ciabaud.fr', 'Marseille, France', NULL, NULL, NULL, NULL, 68, 1, 25, 15, 0, 0, 0, '2010-12-23T14:59:14Z', '2024-10-29T14:18:49Z', 'https://avatars.githubusercontent.com/u/534649?v=4', 'https://api.github.com/users/yciabaud', 'https://github.com/yciabaud', 'https://api.github.com/users/yciabaud/followers', 'https://api.github.com/users/yciabaud/following', 'https://api.github.com/users/yciabaud/gists', 'https://api.github.com/users/yciabaud/starred', 'https://api.github.com/users/yciabaud/repos', 'https://api.github.com/users/yciabaud/events', 'https://api.github.com/users/yciabaud/received_events', 0); -INSERT INTO `developer` VALUES (536306, 'twmbx', 'S', -6.248392010062398, 0, 0, 0, 0, 0, 0, 'Twaambo Haamucenje', NULL, 'twmbx.com', 'Ndola, Zambia', 'twaambo@outlook.com', 'true', 'I build things @realmdigital & @Mvesesani. I believe in solving African problems with African solutions. ', NULL, 31, 21, 97, 136, 0, 0, 0, '2010-12-25T15:16:42Z', '2024-09-29T16:37:23Z', 'https://avatars.githubusercontent.com/u/536306?v=4', 'https://api.github.com/users/twmbx', 'https://github.com/twmbx', 'https://api.github.com/users/twmbx/followers', 'https://api.github.com/users/twmbx/following', 'https://api.github.com/users/twmbx/gists', 'https://api.github.com/users/twmbx/starred', 'https://api.github.com/users/twmbx/repos', 'https://api.github.com/users/twmbx/events', 'https://api.github.com/users/twmbx/received_events', 0); -INSERT INTO `developer` VALUES (536667, 'Konboi', 'S', -75.68117195482256, 0, 0, 0, 0, 0, 0, 'Ryosuke Yabuki', 'Launchable inc,', 'https://blog.konboi.com', 'Fukushima, Japan', 'ryosuke.yabuki+gh@gmail.com', 'true', 'Software Engineer\r\n', 'Konboi', 103, 13, 74, 179, 0, 0, 0, '2010-12-26T04:33:41Z', '2024-10-24T13:37:32Z', 'https://avatars.githubusercontent.com/u/536667?v=4', 'https://api.github.com/users/Konboi', 'https://github.com/Konboi', 'https://api.github.com/users/Konboi/followers', 'https://api.github.com/users/Konboi/following', 'https://api.github.com/users/Konboi/gists', 'https://api.github.com/users/Konboi/starred', 'https://api.github.com/users/Konboi/repos', 'https://api.github.com/users/Konboi/events', 'https://api.github.com/users/Konboi/received_events', 0); -INSERT INTO `developer` VALUES (547135, 'cdevienne', 'A+', 8.353627240607409, 0, 0, 0, 0, 0, 0, 'Christophe de Vienne', '@orus-io ', 'https://orus.io', 'Rennes - France', NULL, NULL, NULL, NULL, 26, 5, 21, 3, 0, 0, 0, '2011-01-04T15:23:50Z', '2024-10-28T17:39:47Z', 'https://avatars.githubusercontent.com/u/547135?v=4', 'https://api.github.com/users/cdevienne', 'https://github.com/cdevienne', 'https://api.github.com/users/cdevienne/followers', 'https://api.github.com/users/cdevienne/following', 'https://api.github.com/users/cdevienne/gists', 'https://api.github.com/users/cdevienne/starred', 'https://api.github.com/users/cdevienne/repos', 'https://api.github.com/users/cdevienne/events', 'https://api.github.com/users/cdevienne/received_events', 0); -INSERT INTO `developer` VALUES (584253, 'captn3m0', 'S', -94.01481532209117, 0, 0, 0, 0, 0, 0, 'Nemo', NULL, 'https://captnemo.in', 'Bangalore, India', 'github.contact@captnemo.in', NULL, 'Making and Breaking things, sometimes intentionally', 'captn3m0', 436, 81, 1840, 786, 0, 0, 0, '2011-01-26T08:56:27Z', '2024-10-31T16:58:26Z', 'https://avatars.githubusercontent.com/u/584253?v=4', 'https://api.github.com/users/captn3m0', 'https://github.com/captn3m0', 'https://api.github.com/users/captn3m0/followers', 'https://api.github.com/users/captn3m0/following', 'https://api.github.com/users/captn3m0/gists', 'https://api.github.com/users/captn3m0/starred', 'https://api.github.com/users/captn3m0/repos', 'https://api.github.com/users/captn3m0/events', 'https://api.github.com/users/captn3m0/received_events', 0); -INSERT INTO `developer` VALUES (585223, 'tonistiigi', 'S', -88.74454054714643, 0, 0, 0, 0, 0, 0, 'Tõnis Tiigi', 'Docker', '', 'San Francisco', 'tonistiigi@gmail.com', NULL, NULL, NULL, 153, 38, 765, 3, 0, 0, 0, '2011-01-26T19:58:17Z', '2024-10-01T05:24:04Z', 'https://avatars.githubusercontent.com/u/585223?v=4', 'https://api.github.com/users/tonistiigi', 'https://github.com/tonistiigi', 'https://api.github.com/users/tonistiigi/followers', 'https://api.github.com/users/tonistiigi/following', 'https://api.github.com/users/tonistiigi/gists', 'https://api.github.com/users/tonistiigi/starred', 'https://api.github.com/users/tonistiigi/repos', 'https://api.github.com/users/tonistiigi/events', 'https://api.github.com/users/tonistiigi/received_events', 0); -INSERT INTO `developer` VALUES (587332, 'Phylu', 'S', -23.571327948070685, 0, 0, 0, 0, 0, 0, 'Janosch Braukmann', '@ottonova', 'https://janosch-braukmann.de', 'Munich', 'janosch.braukmann@gmail.com', 'true', 'Team Lead System Engineering & Information Security Officer @ Ottonova\r\n--\r\nSecurity, Saas, Terraform, Kubernetes, Python', 'Phylu', 42, 2, 38, 26, 0, 0, 0, '2011-01-27T22:15:21Z', '2024-10-23T13:52:20Z', 'https://avatars.githubusercontent.com/u/587332?v=4', 'https://api.github.com/users/Phylu', 'https://github.com/Phylu', 'https://api.github.com/users/Phylu/followers', 'https://api.github.com/users/Phylu/following', 'https://api.github.com/users/Phylu/gists', 'https://api.github.com/users/Phylu/starred', 'https://api.github.com/users/Phylu/repos', 'https://api.github.com/users/Phylu/events', 'https://api.github.com/users/Phylu/received_events', 0); -INSERT INTO `developer` VALUES (596384, 'jgchristian', 'B', 57.45394957356482, 0, 0, 0, 0, 0, 0, 'James Christian', NULL, '', NULL, NULL, NULL, NULL, NULL, 11, 1, 2, 0, 0, 0, 0, '2011-02-02T08:21:53Z', '2024-09-05T16:52:46Z', 'https://avatars.githubusercontent.com/u/596384?v=4', 'https://api.github.com/users/jgchristian', 'https://github.com/jgchristian', 'https://api.github.com/users/jgchristian/followers', 'https://api.github.com/users/jgchristian/following', 'https://api.github.com/users/jgchristian/gists', 'https://api.github.com/users/jgchristian/starred', 'https://api.github.com/users/jgchristian/repos', 'https://api.github.com/users/jgchristian/events', 'https://api.github.com/users/jgchristian/received_events', 0); -INSERT INTO `developer` VALUES (597616, 'jalkjaer', 'S', -13.704624869915083, 0, 0, 0, 0, 0, 0, 'Johannes Alkjær', NULL, '', NULL, NULL, NULL, NULL, NULL, 40, 1, 7, 1, 0, 0, 0, '2011-02-02T22:06:16Z', '2024-10-30T08:05:38Z', 'https://avatars.githubusercontent.com/u/597616?v=4', 'https://api.github.com/users/jalkjaer', 'https://github.com/jalkjaer', 'https://api.github.com/users/jalkjaer/followers', 'https://api.github.com/users/jalkjaer/following', 'https://api.github.com/users/jalkjaer/gists', 'https://api.github.com/users/jalkjaer/starred', 'https://api.github.com/users/jalkjaer/repos', 'https://api.github.com/users/jalkjaer/events', 'https://api.github.com/users/jalkjaer/received_events', 0); -INSERT INTO `developer` VALUES (599706, 'trumant', 'S', -76.57322406488021, 0, 0, 0, 0, 0, 0, 'Travis Truman', '@samsara-dev ', '', 'Philadelphia, PA USA', 'trumant@gmail.com', 'true', NULL, NULL, 108, 25, 49, 54, 0, 0, 0, '2011-02-04T01:36:01Z', '2024-04-05T21:39:39Z', 'https://avatars.githubusercontent.com/u/599706?v=4', 'https://api.github.com/users/trumant', 'https://github.com/trumant', 'https://api.github.com/users/trumant/followers', 'https://api.github.com/users/trumant/following', 'https://api.github.com/users/trumant/gists', 'https://api.github.com/users/trumant/starred', 'https://api.github.com/users/trumant/repos', 'https://api.github.com/users/trumant/events', 'https://api.github.com/users/trumant/received_events', 0); -INSERT INTO `developer` VALUES (600464, 'svdm', 'B+', 43.38650134277846, 0, 0, 0, 0, 0, 0, 'Stefan van der Meer', '@PrivacyCompany ', '', 'NL', NULL, NULL, NULL, NULL, 14, 0, 8, 2, 0, 0, 0, '2011-02-04T13:45:48Z', '2024-10-27T11:19:51Z', 'https://avatars.githubusercontent.com/u/600464?v=4', 'https://api.github.com/users/svdm', 'https://github.com/svdm', 'https://api.github.com/users/svdm/followers', 'https://api.github.com/users/svdm/following', 'https://api.github.com/users/svdm/gists', 'https://api.github.com/users/svdm/starred', 'https://api.github.com/users/svdm/repos', 'https://api.github.com/users/svdm/events', 'https://api.github.com/users/svdm/received_events', 0); -INSERT INTO `developer` VALUES (617942, 'ellman121', 'A', 21.943972499738372, 0, 0, 0, 0, 0, 0, 'Elliott', 'NewStore GmbH', 'https://elliottrarden.me', 'Berlin', NULL, NULL, 'Gamer with a coding problem', NULL, 24, 4, 2, 8, 0, 0, 0, '2011-02-14T20:10:14Z', '2024-08-24T15:51:06Z', 'https://avatars.githubusercontent.com/u/617942?v=4', 'https://api.github.com/users/ellman121', 'https://github.com/ellman121', 'https://api.github.com/users/ellman121/followers', 'https://api.github.com/users/ellman121/following', 'https://api.github.com/users/ellman121/gists', 'https://api.github.com/users/ellman121/starred', 'https://api.github.com/users/ellman121/repos', 'https://api.github.com/users/ellman121/events', 'https://api.github.com/users/ellman121/received_events', 0); -INSERT INTO `developer` VALUES (626427, 'joshes', 'S', -60.17271938888478, 0, 0, 0, 0, 0, 0, 'Joshua Hansen', '@PsiQ ', '', 'Canada', 'j4ah4n@gmail.com', 'true', 'Director, Applications Systems Engineering @PsiQ ', 'bytecode', 81, 15, 16, 21, 0, 0, 0, '2011-02-19T04:45:29Z', '2024-09-28T17:26:07Z', 'https://avatars.githubusercontent.com/u/626427?v=4', 'https://api.github.com/users/joshes', 'https://github.com/joshes', 'https://api.github.com/users/joshes/followers', 'https://api.github.com/users/joshes/following', 'https://api.github.com/users/joshes/gists', 'https://api.github.com/users/joshes/starred', 'https://api.github.com/users/joshes/repos', 'https://api.github.com/users/joshes/events', 'https://api.github.com/users/joshes/received_events', 0); -INSERT INTO `developer` VALUES (643960, 'MiguelMoll', 'B', 56.32272785410781, 0, 0, 0, 0, 0, 0, 'Miguel Moll', NULL, 'https://miguel.moll.ninja', NULL, NULL, NULL, NULL, NULL, 11, 3, 3, 2, 0, 0, 0, '2011-03-01T03:37:32Z', '2024-10-24T16:32:28Z', 'https://avatars.githubusercontent.com/u/643960?v=4', 'https://api.github.com/users/MiguelMoll', 'https://github.com/MiguelMoll', 'https://api.github.com/users/MiguelMoll/followers', 'https://api.github.com/users/MiguelMoll/following', 'https://api.github.com/users/MiguelMoll/gists', 'https://api.github.com/users/MiguelMoll/starred', 'https://api.github.com/users/MiguelMoll/repos', 'https://api.github.com/users/MiguelMoll/events', 'https://api.github.com/users/MiguelMoll/received_events', 0); -INSERT INTO `developer` VALUES (646638, 'jbfm', 'B', 60.2504228863945, 0, 0, 0, 0, 0, 0, 'John Mick', '@360player ', 'jmick.se', 'Stockholm, Sweden', 'john@jmick.se', NULL, NULL, NULL, 9, 1, 6, 4, 0, 0, 0, '2011-03-02T10:18:27Z', '2024-10-21T07:29:13Z', 'https://avatars.githubusercontent.com/u/646638?v=4', 'https://api.github.com/users/jbfm', 'https://github.com/jbfm', 'https://api.github.com/users/jbfm/followers', 'https://api.github.com/users/jbfm/following', 'https://api.github.com/users/jbfm/gists', 'https://api.github.com/users/jbfm/starred', 'https://api.github.com/users/jbfm/repos', 'https://api.github.com/users/jbfm/events', 'https://api.github.com/users/jbfm/received_events', 0); -INSERT INTO `developer` VALUES (657615, 'legik', 'B', 52.734481960995, 0, 0, 0, 0, 0, 0, 'O.o', NULL, '', NULL, NULL, NULL, NULL, NULL, 10, 3, 16, 20, 0, 0, 0, '2011-03-08T12:21:53Z', '2024-10-04T19:48:06Z', 'https://avatars.githubusercontent.com/u/657615?v=4', 'https://api.github.com/users/legik', 'https://github.com/legik', 'https://api.github.com/users/legik/followers', 'https://api.github.com/users/legik/following', 'https://api.github.com/users/legik/gists', 'https://api.github.com/users/legik/starred', 'https://api.github.com/users/legik/repos', 'https://api.github.com/users/legik/events', 'https://api.github.com/users/legik/received_events', 0); -INSERT INTO `developer` VALUES (662419, 'justAnotherDev', 'S', -11.418906203861589, 0, 0, 0, 0, 0, 0, 'Casey', 'Scribd', '', NULL, NULL, NULL, '🧗‍♂️ + 🪂 ', NULL, 39, 9, 6, 4, 0, 0, 0, '2011-03-10T17:20:38Z', '2024-09-04T22:17:52Z', 'https://avatars.githubusercontent.com/u/662419?v=4', 'https://api.github.com/users/justAnotherDev', 'https://github.com/justAnotherDev', 'https://api.github.com/users/justAnotherDev/followers', 'https://api.github.com/users/justAnotherDev/following', 'https://api.github.com/users/justAnotherDev/gists', 'https://api.github.com/users/justAnotherDev/starred', 'https://api.github.com/users/justAnotherDev/repos', 'https://api.github.com/users/justAnotherDev/events', 'https://api.github.com/users/justAnotherDev/received_events', 0); -INSERT INTO `developer` VALUES (672405, 'cameronbraid', 'S', -85.32250067692577, 0, 0, 0, 0, 0, 0, 'Cameron Braid', 'DriveNow Pty Ltd', 'https://www.drivenow.com.au', NULL, 'cameron@drivenow.com.au', NULL, NULL, NULL, 235, 3, 12, 12, 0, 0, 0, '2011-03-16T04:49:16Z', '2024-07-24T05:53:13Z', 'https://avatars.githubusercontent.com/u/672405?v=4', 'https://api.github.com/users/cameronbraid', 'https://github.com/cameronbraid', 'https://api.github.com/users/cameronbraid/followers', 'https://api.github.com/users/cameronbraid/following', 'https://api.github.com/users/cameronbraid/gists', 'https://api.github.com/users/cameronbraid/starred', 'https://api.github.com/users/cameronbraid/repos', 'https://api.github.com/users/cameronbraid/events', 'https://api.github.com/users/cameronbraid/received_events', 0); -INSERT INTO `developer` VALUES (674134, 'gnawhleinad', 'S', -71.44574529794153, 0, 0, 0, 0, 0, 0, 'Daniel Hwang', NULL, '', NULL, NULL, 'true', NULL, NULL, 91, 4, 148, 41, 0, 0, 0, '2011-03-17T00:00:27Z', '2024-09-07T21:08:47Z', 'https://avatars.githubusercontent.com/u/674134?v=4', 'https://api.github.com/users/gnawhleinad', 'https://github.com/gnawhleinad', 'https://api.github.com/users/gnawhleinad/followers', 'https://api.github.com/users/gnawhleinad/following', 'https://api.github.com/users/gnawhleinad/gists', 'https://api.github.com/users/gnawhleinad/starred', 'https://api.github.com/users/gnawhleinad/repos', 'https://api.github.com/users/gnawhleinad/events', 'https://api.github.com/users/gnawhleinad/received_events', 0); -INSERT INTO `developer` VALUES (683170, 'd6o', 'S', -91.4210883575029, 0, 0, 0, 0, 0, 0, 'Diego', NULL, 'diego.dev', NULL, 'mail@diego.dev', NULL, '\r\n A Computer Engineer - A Passionate Backend Developer\r\n', NULL, 196, 5, 213, 99, 0, 0, 0, '2011-03-22T05:18:27Z', '2024-10-26T05:34:17Z', 'https://avatars.githubusercontent.com/u/683170?v=4', 'https://api.github.com/users/d6o', 'https://github.com/d6o', 'https://api.github.com/users/d6o/followers', 'https://api.github.com/users/d6o/following', 'https://api.github.com/users/d6o/gists', 'https://api.github.com/users/d6o/starred', 'https://api.github.com/users/d6o/repos', 'https://api.github.com/users/d6o/events', 'https://api.github.com/users/d6o/received_events', 0); -INSERT INTO `developer` VALUES (684180, 'stroborobo', 'S', -29.77390937016331, 0, 0, 0, 0, 0, 0, 'Bo', NULL, 'https://kbct.de/', 'Lübeck, Germany', 'bo@kbct.de', NULL, NULL, NULL, 47, 7, 27, 21, 0, 0, 0, '2011-03-22T16:11:50Z', '2024-06-12T08:31:33Z', 'https://avatars.githubusercontent.com/u/684180?v=4', 'https://api.github.com/users/stroborobo', 'https://github.com/stroborobo', 'https://api.github.com/users/stroborobo/followers', 'https://api.github.com/users/stroborobo/following', 'https://api.github.com/users/stroborobo/gists', 'https://api.github.com/users/stroborobo/starred', 'https://api.github.com/users/stroborobo/repos', 'https://api.github.com/users/stroborobo/events', 'https://api.github.com/users/stroborobo/received_events', 0); -INSERT INTO `developer` VALUES (704085, 'akhleung', 'B-', 69.62085661463789, 0, 0, 0, 0, 0, 0, 'Aaron Leung', NULL, '', 'San Francisco Bay Area', 'modus.tollens@gmail.com', NULL, NULL, NULL, 4, 0, 52, 0, 0, 0, 0, '2011-04-01T16:46:23Z', '2024-10-08T02:38:34Z', 'https://avatars.githubusercontent.com/u/704085?v=4', 'https://api.github.com/users/akhleung', 'https://github.com/akhleung', 'https://api.github.com/users/akhleung/followers', 'https://api.github.com/users/akhleung/following', 'https://api.github.com/users/akhleung/gists', 'https://api.github.com/users/akhleung/starred', 'https://api.github.com/users/akhleung/repos', 'https://api.github.com/users/akhleung/events', 'https://api.github.com/users/akhleung/received_events', 0); -INSERT INTO `developer` VALUES (711717, 'calebhearth', 'S', -90.05944817315361, 0, 0, 0, 0, 0, 0, 'Caleb Hearth', NULL, 'https://calebhearth.com', 'Denver, CO', 'caleb@calebhearth.com', NULL, NULL, NULL, 177, 76, 150, 7, 0, 0, 0, '2011-04-05T21:39:30Z', '2024-10-28T16:14:42Z', 'https://avatars.githubusercontent.com/u/711717?v=4', 'https://api.github.com/users/calebhearth', 'https://github.com/calebhearth', 'https://api.github.com/users/calebhearth/followers', 'https://api.github.com/users/calebhearth/following', 'https://api.github.com/users/calebhearth/gists', 'https://api.github.com/users/calebhearth/starred', 'https://api.github.com/users/calebhearth/repos', 'https://api.github.com/users/calebhearth/events', 'https://api.github.com/users/calebhearth/received_events', 0); -INSERT INTO `developer` VALUES (713006, 'shashankkumar', 'B-', 64.34252441084696, 0, 0, 0, 0, 0, 0, 'Shashank Kumar', 'Razorpay', '', 'Bangalore', 'shashankkumar.me@gmail.com', NULL, NULL, NULL, 5, 1, 132, 24, 0, 0, 0, '2011-04-06T13:09:45Z', '2024-10-24T13:07:26Z', 'https://avatars.githubusercontent.com/u/713006?v=4', 'https://api.github.com/users/shashankkumar', 'https://github.com/shashankkumar', 'https://api.github.com/users/shashankkumar/followers', 'https://api.github.com/users/shashankkumar/following', 'https://api.github.com/users/shashankkumar/gists', 'https://api.github.com/users/shashankkumar/starred', 'https://api.github.com/users/shashankkumar/repos', 'https://api.github.com/users/shashankkumar/events', 'https://api.github.com/users/shashankkumar/received_events', 0); -INSERT INTO `developer` VALUES (734840, 'pronav', 'B+', 41.582507455086706, 0, 0, 0, 0, 0, 0, 'Pranav Gupta', 'Razorpay', '', 'Bengaluru, India', NULL, NULL, NULL, NULL, 7, 3, 63, 8, 0, 0, 0, '2011-04-17T14:27:10Z', '2024-10-17T05:31:56Z', 'https://avatars.githubusercontent.com/u/734840?v=4', 'https://api.github.com/users/pronav', 'https://github.com/pronav', 'https://api.github.com/users/pronav/followers', 'https://api.github.com/users/pronav/following', 'https://api.github.com/users/pronav/gists', 'https://api.github.com/users/pronav/starred', 'https://api.github.com/users/pronav/repos', 'https://api.github.com/users/pronav/events', 'https://api.github.com/users/pronav/received_events', 0); -INSERT INTO `developer` VALUES (752491, 'h00die', 'A+', 1.4364688435736905, 0, 0, 0, 0, 0, 0, 'h00die', NULL, '', NULL, NULL, NULL, NULL, NULL, 27, 3, 169, 10, 0, 0, 0, '2011-04-26T13:48:09Z', '2024-10-29T13:34:08Z', 'https://avatars.githubusercontent.com/u/752491?v=4', 'https://api.github.com/users/h00die', 'https://github.com/h00die', 'https://api.github.com/users/h00die/followers', 'https://api.github.com/users/h00die/following', 'https://api.github.com/users/h00die/gists', 'https://api.github.com/users/h00die/starred', 'https://api.github.com/users/h00die/repos', 'https://api.github.com/users/h00die/events', 'https://api.github.com/users/h00die/received_events', 0); -INSERT INTO `developer` VALUES (786238, 'danlester', 'S', -10.606975850362232, 0, 0, 0, 0, 0, 0, 'Dan Lester', 'ContainDS / Ideonate', 'https://ideonate.com/', 'Cambridge, UK', 'dan@ideonate.com', NULL, 'Technical Co-founder of ContainDS, Ideonate, WP-Glogin, Conversocial, iPlatform.', 'danlester', 35, 11, 26, 8, 0, 0, 0, '2011-05-13T14:40:32Z', '2024-07-23T12:55:12Z', 'https://avatars.githubusercontent.com/u/786238?v=4', 'https://api.github.com/users/danlester', 'https://github.com/danlester', 'https://api.github.com/users/danlester/followers', 'https://api.github.com/users/danlester/following', 'https://api.github.com/users/danlester/gists', 'https://api.github.com/users/danlester/starred', 'https://api.github.com/users/danlester/repos', 'https://api.github.com/users/danlester/events', 'https://api.github.com/users/danlester/received_events', 0); -INSERT INTO `developer` VALUES (791275, 'jvz', 'S', -85.56217664295636, 0, 0, 0, 0, 0, 0, 'Matt Sicker', '@apple', 'https://musigma.blog', 'Chicago', 'mattsicker@apache.org', NULL, 'Computer scientist, distributed systems software engineer, and advocate for free and open source software. Developer in Log4j and Spinnaker. (he/him/his)', NULL, 138, 28, 128, 33, 0, 0, 0, '2011-05-16T15:38:08Z', '2024-10-14T20:36:52Z', 'https://avatars.githubusercontent.com/u/791275?v=4', 'https://api.github.com/users/jvz', 'https://github.com/jvz', 'https://api.github.com/users/jvz/followers', 'https://api.github.com/users/jvz/following', 'https://api.github.com/users/jvz/gists', 'https://api.github.com/users/jvz/starred', 'https://api.github.com/users/jvz/repos', 'https://api.github.com/users/jvz/events', 'https://api.github.com/users/jvz/received_events', 0); -INSERT INTO `developer` VALUES (793580, 'sebbrandt87', 'S', -68.01294781290046, 0, 0, 0, 0, 0, 0, 'Sebastian Brandt', '@Tchibo', '', 'Hamburg, Germany', 'sebbrandt@mailbox.org', NULL, 'Senior Cloud Engineer - Lead Online Platform at Tchibo GmbH', NULL, 92, 28, 25, 13, 0, 0, 0, '2011-05-17T14:43:20Z', '2024-08-01T13:52:40Z', 'https://avatars.githubusercontent.com/u/793580?v=4', 'https://api.github.com/users/sebbrandt87', 'https://github.com/sebbrandt87', 'https://api.github.com/users/sebbrandt87/followers', 'https://api.github.com/users/sebbrandt87/following', 'https://api.github.com/users/sebbrandt87/gists', 'https://api.github.com/users/sebbrandt87/starred', 'https://api.github.com/users/sebbrandt87/repos', 'https://api.github.com/users/sebbrandt87/events', 'https://api.github.com/users/sebbrandt87/received_events', 0); -INSERT INTO `developer` VALUES (812993, 'yohanb', 'S', -33.18530127469139, 0, 0, 0, 0, 0, 0, 'Yohan Belval', '@turo', 'https://www.turo.com', 'Montréal', NULL, NULL, 'Fullstack development, DevOps, SRE and Cloud is my jam.', NULL, 50, 9, 23, 3, 0, 0, 0, '2011-05-26T20:47:23Z', '2024-10-22T18:37:17Z', 'https://avatars.githubusercontent.com/u/812993?v=4', 'https://api.github.com/users/yohanb', 'https://github.com/yohanb', 'https://api.github.com/users/yohanb/followers', 'https://api.github.com/users/yohanb/following', 'https://api.github.com/users/yohanb/gists', 'https://api.github.com/users/yohanb/starred', 'https://api.github.com/users/yohanb/repos', 'https://api.github.com/users/yohanb/events', 'https://api.github.com/users/yohanb/received_events', 0); -INSERT INTO `developer` VALUES (814431, 'illyabusigin', 'S', -28.784695777657564, 0, 0, 0, 0, 0, 0, 'Illya Busigin', 'Cyrillian', 'http://www.cyrillian.com', 'Austin, TX', 'illya@cyrillian.com', NULL, NULL, NULL, 45, 3, 50, 11, 0, 0, 0, '2011-05-27T15:13:03Z', '2024-08-17T17:55:41Z', 'https://avatars.githubusercontent.com/u/814431?v=4', 'https://api.github.com/users/illyabusigin', 'https://github.com/illyabusigin', 'https://api.github.com/users/illyabusigin/followers', 'https://api.github.com/users/illyabusigin/following', 'https://api.github.com/users/illyabusigin/gists', 'https://api.github.com/users/illyabusigin/starred', 'https://api.github.com/users/illyabusigin/repos', 'https://api.github.com/users/illyabusigin/events', 'https://api.github.com/users/illyabusigin/received_events', 0); -INSERT INTO `developer` VALUES (815816, 'brunsgaard', 'S', -77.7268557505985, 0, 0, 0, 0, 0, 0, 'Jonas Brunsgaard', 'Chainalysis', 'http://brunsgaard.io', 'Copenhagen, Denmark', 'jonas.brunsgaard@gmail.com', 'true', 'From Copenhagen with ❤️', NULL, 115, 29, 34, 12, 0, 0, 0, '2011-05-28T13:18:35Z', '2024-09-19T09:24:53Z', 'https://avatars.githubusercontent.com/u/815816?v=4', 'https://api.github.com/users/brunsgaard', 'https://github.com/brunsgaard', 'https://api.github.com/users/brunsgaard/followers', 'https://api.github.com/users/brunsgaard/following', 'https://api.github.com/users/brunsgaard/gists', 'https://api.github.com/users/brunsgaard/starred', 'https://api.github.com/users/brunsgaard/repos', 'https://api.github.com/users/brunsgaard/events', 'https://api.github.com/users/brunsgaard/received_events', 0); -INSERT INTO `developer` VALUES (847020, 'sparticvs', 'S', -50.38656340546525, 0, 0, 0, 0, 0, 0, 'Charles Timko', NULL, 'http://tippytinkerer.com', NULL, NULL, NULL, 'Red Hatter', NULL, 68, 2, 15, 6, 0, 0, 0, '2011-06-13T14:25:54Z', '2024-11-02T04:05:42Z', 'https://avatars.githubusercontent.com/u/847020?v=4', 'https://api.github.com/users/sparticvs', 'https://github.com/sparticvs', 'https://api.github.com/users/sparticvs/followers', 'https://api.github.com/users/sparticvs/following', 'https://api.github.com/users/sparticvs/gists', 'https://api.github.com/users/sparticvs/starred', 'https://api.github.com/users/sparticvs/repos', 'https://api.github.com/users/sparticvs/events', 'https://api.github.com/users/sparticvs/received_events', 0); -INSERT INTO `developer` VALUES (857205, 'olivierboudet', 'S', -35.30845256463622, 0, 0, 0, 0, 0, 0, 'Olivier Boudet', NULL, '', NULL, 'o.boudet@gmail.com', NULL, NULL, NULL, 58, 1, 4, 9, 0, 0, 0, '2011-06-17T19:06:52Z', '2024-09-12T18:00:05Z', 'https://avatars.githubusercontent.com/u/857205?v=4', 'https://api.github.com/users/olivierboudet', 'https://github.com/olivierboudet', 'https://api.github.com/users/olivierboudet/followers', 'https://api.github.com/users/olivierboudet/following', 'https://api.github.com/users/olivierboudet/gists', 'https://api.github.com/users/olivierboudet/starred', 'https://api.github.com/users/olivierboudet/repos', 'https://api.github.com/users/olivierboudet/events', 'https://api.github.com/users/olivierboudet/received_events', 0); -INSERT INTO `developer` VALUES (878009, 'ngaut', 'S', -93.92178170322671, 0, 0, 0, 0, 0, 0, 'goroutine', 'PingCAP', '', NULL, NULL, NULL, NULL, NULL, 323, 10, 1856, 14, 0, 0, 0, '2011-06-27T06:07:03Z', '2023-12-28T03:42:24Z', 'https://avatars.githubusercontent.com/u/878009?v=4', 'https://api.github.com/users/ngaut', 'https://github.com/ngaut', 'https://api.github.com/users/ngaut/followers', 'https://api.github.com/users/ngaut/following', 'https://api.github.com/users/ngaut/gists', 'https://api.github.com/users/ngaut/starred', 'https://api.github.com/users/ngaut/repos', 'https://api.github.com/users/ngaut/events', 'https://api.github.com/users/ngaut/received_events', 0); -INSERT INTO `developer` VALUES (881965, 'mikesplain', 'S', -90.01041894117488, 0, 0, 0, 0, 0, 0, 'Mike Splain', 'Sonos', 'http://mikespla.in', 'Boston, MA', NULL, NULL, NULL, NULL, 183, 16, 105, 50, 0, 0, 0, '2011-06-28T17:29:25Z', '2024-10-10T00:02:25Z', 'https://avatars.githubusercontent.com/u/881965?v=4', 'https://api.github.com/users/mikesplain', 'https://github.com/mikesplain', 'https://api.github.com/users/mikesplain/followers', 'https://api.github.com/users/mikesplain/following', 'https://api.github.com/users/mikesplain/gists', 'https://api.github.com/users/mikesplain/starred', 'https://api.github.com/users/mikesplain/repos', 'https://api.github.com/users/mikesplain/events', 'https://api.github.com/users/mikesplain/received_events', 0); -INSERT INTO `developer` VALUES (905419, 'rajiteh', 'S', -86.56875728473675, 0, 0, 0, 0, 0, 0, 'Raj Perera', '@ubisoftinc', '', 'Toronto, ON', NULL, 'true', 'SRE|DevOps|Cloud', NULL, 154, 43, 60, 46, 0, 0, 0, '2011-07-10T00:53:34Z', '2024-06-09T05:18:58Z', 'https://avatars.githubusercontent.com/u/905419?v=4', 'https://api.github.com/users/rajiteh', 'https://github.com/rajiteh', 'https://api.github.com/users/rajiteh/followers', 'https://api.github.com/users/rajiteh/following', 'https://api.github.com/users/rajiteh/gists', 'https://api.github.com/users/rajiteh/starred', 'https://api.github.com/users/rajiteh/repos', 'https://api.github.com/users/rajiteh/events', 'https://api.github.com/users/rajiteh/received_events', 0); -INSERT INTO `developer` VALUES (909098, 'russellballestrini', 'S', -18.767779217347602, 0, 0, 0, 0, 0, 0, 'Russell', NULL, 'https://russell.ballestrini.net', 'Remote', NULL, NULL, 'Python', 'russellbal', 38, 5, 78, 82, 0, 0, 0, '2011-07-12T00:58:17Z', '2024-05-10T13:09:14Z', 'https://avatars.githubusercontent.com/u/909098?v=4', 'https://api.github.com/users/russellballestrini', 'https://github.com/russellballestrini', 'https://api.github.com/users/russellballestrini/followers', 'https://api.github.com/users/russellballestrini/following', 'https://api.github.com/users/russellballestrini/gists', 'https://api.github.com/users/russellballestrini/starred', 'https://api.github.com/users/russellballestrini/repos', 'https://api.github.com/users/russellballestrini/events', 'https://api.github.com/users/russellballestrini/received_events', 0); -INSERT INTO `developer` VALUES (916676, 'JamesMcMahon', 'S', -40.67569394713551, 0, 0, 0, 0, 0, 0, 'James F McMahon', 'VMWare', '', 'Chicago, IL', NULL, 'true', NULL, NULL, 55, 32, 35, 15, 0, 0, 0, '2011-07-15T02:42:26Z', '2024-05-26T03:27:06Z', 'https://avatars.githubusercontent.com/u/916676?v=4', 'https://api.github.com/users/JamesMcMahon', 'https://github.com/JamesMcMahon', 'https://api.github.com/users/JamesMcMahon/followers', 'https://api.github.com/users/JamesMcMahon/following', 'https://api.github.com/users/JamesMcMahon/gists', 'https://api.github.com/users/JamesMcMahon/starred', 'https://api.github.com/users/JamesMcMahon/repos', 'https://api.github.com/users/JamesMcMahon/events', 'https://api.github.com/users/JamesMcMahon/received_events', 0); -INSERT INTO `developer` VALUES (918891, 'philipbjorge', 'S', -74.51403843474785, 0, 0, 0, 0, 0, 0, 'Philip Bjorge', '@Pachama', 'https://www.philipbjorge.com', 'Seattle, WA', NULL, NULL, NULL, NULL, 103, 20, 44, 23, 0, 0, 0, '2011-07-16T02:39:08Z', '2024-10-28T18:49:34Z', 'https://avatars.githubusercontent.com/u/918891?v=4', 'https://api.github.com/users/philipbjorge', 'https://github.com/philipbjorge', 'https://api.github.com/users/philipbjorge/followers', 'https://api.github.com/users/philipbjorge/following', 'https://api.github.com/users/philipbjorge/gists', 'https://api.github.com/users/philipbjorge/starred', 'https://api.github.com/users/philipbjorge/repos', 'https://api.github.com/users/philipbjorge/events', 'https://api.github.com/users/philipbjorge/received_events', 0); -INSERT INTO `developer` VALUES (919294, 'posener', 'S', -61.51123672804981, 0, 0, 0, 0, 0, 0, 'Eyal Posener', '@google', 'https://posener.github.io/about', 'San Francisco ', NULL, NULL, 'Sittin\' on the dock of the bay', 'posenerx', 74, 4, 249, 73, 0, 0, 0, '2011-07-16T10:03:04Z', '2024-10-18T15:37:12Z', 'https://avatars.githubusercontent.com/u/919294?v=4', 'https://api.github.com/users/posener', 'https://github.com/posener', 'https://api.github.com/users/posener/followers', 'https://api.github.com/users/posener/following', 'https://api.github.com/users/posener/gists', 'https://api.github.com/users/posener/starred', 'https://api.github.com/users/posener/repos', 'https://api.github.com/users/posener/events', 'https://api.github.com/users/posener/received_events', 0); -INSERT INTO `developer` VALUES (919564, 'bryanmacfarlane', 'A+', 12.386692436882218, 0, 0, 0, 0, 0, 0, 'Bryan MacFarlane', 'GitHub', 'http://stackoverflow.com/users/775184/bryanmac', 'Wake Forest, NC', NULL, NULL, 'Actions Engineering at GitHub', NULL, 22, 7, 487, 4, 0, 0, 0, '2011-07-16T14:02:56Z', '2024-06-09T23:30:04Z', 'https://avatars.githubusercontent.com/u/919564?v=4', 'https://api.github.com/users/bryanmacfarlane', 'https://github.com/bryanmacfarlane', 'https://api.github.com/users/bryanmacfarlane/followers', 'https://api.github.com/users/bryanmacfarlane/following', 'https://api.github.com/users/bryanmacfarlane/gists', 'https://api.github.com/users/bryanmacfarlane/starred', 'https://api.github.com/users/bryanmacfarlane/repos', 'https://api.github.com/users/bryanmacfarlane/events', 'https://api.github.com/users/bryanmacfarlane/received_events', 1); -INSERT INTO `developer` VALUES (925667, 'leonmaia', 'S', -30.94194415164346, 0, 0, 0, 0, 0, 0, 'Leon Maia', '@zendesk ', 'http://leonmaia.me', 'Copenhagen', 'leonmaia@me.com', 'true', NULL, NULL, 47, 32, 39, 37, 0, 0, 0, '2011-07-19T15:20:11Z', '2024-07-30T07:20:27Z', 'https://avatars.githubusercontent.com/u/925667?v=4', 'https://api.github.com/users/leonmaia', 'https://github.com/leonmaia', 'https://api.github.com/users/leonmaia/followers', 'https://api.github.com/users/leonmaia/following', 'https://api.github.com/users/leonmaia/gists', 'https://api.github.com/users/leonmaia/starred', 'https://api.github.com/users/leonmaia/repos', 'https://api.github.com/users/leonmaia/events', 'https://api.github.com/users/leonmaia/received_events', 0); -INSERT INTO `developer` VALUES (932452, 'rmenn', 'S', -49.911331062436034, 0, 0, 0, 0, 0, 0, 'Rahul Menon', NULL, 'https://rmenn.in/', NULL, 'rahul@rmenn.in', NULL, NULL, NULL, 65, 7, 26, 7, 0, 0, 0, '2011-07-22T12:56:27Z', '2024-10-31T06:08:58Z', 'https://avatars.githubusercontent.com/u/932452?v=4', 'https://api.github.com/users/rmenn', 'https://github.com/rmenn', 'https://api.github.com/users/rmenn/followers', 'https://api.github.com/users/rmenn/following', 'https://api.github.com/users/rmenn/gists', 'https://api.github.com/users/rmenn/starred', 'https://api.github.com/users/rmenn/repos', 'https://api.github.com/users/rmenn/events', 'https://api.github.com/users/rmenn/received_events', 0); -INSERT INTO `developer` VALUES (940275, 'azhang', 'S', -68.30277085136085, 0, 0, 0, 0, 0, 0, 'Allie', NULL, '', '☾', NULL, NULL, NULL, NULL, 133, 13, 0, 0, 0, 0, 0, '2011-07-26T18:17:31Z', '2024-10-21T10:08:22Z', 'https://avatars.githubusercontent.com/u/940275?v=4', 'https://api.github.com/users/azhang', 'https://github.com/azhang', 'https://api.github.com/users/azhang/followers', 'https://api.github.com/users/azhang/following', 'https://api.github.com/users/azhang/gists', 'https://api.github.com/users/azhang/starred', 'https://api.github.com/users/azhang/repos', 'https://api.github.com/users/azhang/events', 'https://api.github.com/users/azhang/received_events', 0); -INSERT INTO `developer` VALUES (955192, 'wurstbrot', 'S', -73.76310515390598, 0, 0, 0, 0, 0, 0, 'Timo Pagel', 'Timo Pagel IT-Consulting', 'https://pagel.pro', 'Germany', 'github@pagel.pro', NULL, 'I enable your team using modern technology in a secure way', NULL, 97, 1, 101, 1, 0, 0, 0, '2011-08-02T22:16:20Z', '2024-10-20T09:48:27Z', 'https://avatars.githubusercontent.com/u/955192?v=4', 'https://api.github.com/users/wurstbrot', 'https://github.com/wurstbrot', 'https://api.github.com/users/wurstbrot/followers', 'https://api.github.com/users/wurstbrot/following', 'https://api.github.com/users/wurstbrot/gists', 'https://api.github.com/users/wurstbrot/starred', 'https://api.github.com/users/wurstbrot/repos', 'https://api.github.com/users/wurstbrot/events', 'https://api.github.com/users/wurstbrot/received_events', 0); -INSERT INTO `developer` VALUES (1004789, 'dschaller', 'S', -40.72484632931634, 0, 0, 0, 0, 0, 0, 'Derek', '@pulumi ', '', 'San Francisco, CA', NULL, NULL, 'Software Engineer', '_derek_', 54, 0, 55, 6, 0, 0, 0, '2011-08-25T18:09:49Z', '2024-08-13T20:14:34Z', 'https://avatars.githubusercontent.com/u/1004789?v=4', 'https://api.github.com/users/dschaller', 'https://github.com/dschaller', 'https://api.github.com/users/dschaller/followers', 'https://api.github.com/users/dschaller/following', 'https://api.github.com/users/dschaller/gists', 'https://api.github.com/users/dschaller/starred', 'https://api.github.com/users/dschaller/repos', 'https://api.github.com/users/dschaller/events', 'https://api.github.com/users/dschaller/received_events', 0); -INSERT INTO `developer` VALUES (1006477, 'felixonmars', 'S', -94.0607210626186, 0, 0, 0, 0, 0, 0, 'Felix Yan', 'Arch Linux @archlinux', 'https://felixc.at', 'Wuhan, China', 'felixonmars@archlinux.org', NULL, 'Arch Linux Developer, RISC-V Porter, probably a fox.\r\n\r\nPGP Key: 0x786C63F330D7CB92', 'felixonmars', 1657, 6, 3090, 173, 0, 0, 0, '2011-08-26T12:35:50Z', '2024-10-24T23:25:25Z', 'https://avatars.githubusercontent.com/u/1006477?v=4', 'https://api.github.com/users/felixonmars', 'https://github.com/felixonmars', 'https://api.github.com/users/felixonmars/followers', 'https://api.github.com/users/felixonmars/following', 'https://api.github.com/users/felixonmars/gists', 'https://api.github.com/users/felixonmars/starred', 'https://api.github.com/users/felixonmars/repos', 'https://api.github.com/users/felixonmars/events', 'https://api.github.com/users/felixonmars/received_events', 0); -INSERT INTO `developer` VALUES (1008583, 'ninp0', 'A', 13.120443087973666, 0, 0, 0, 0, 0, 0, NULL, '0day Inc.', 'https://0dayinc.com', NULL, NULL, NULL, 'Twitter: https://twitter.com/ninp0', NULL, 24, 220, 20, 59, 0, 0, 0, '2011-08-27T14:46:57Z', '2024-04-09T17:52:05Z', 'https://avatars.githubusercontent.com/u/1008583?v=4', 'https://api.github.com/users/ninp0', 'https://github.com/ninp0', 'https://api.github.com/users/ninp0/followers', 'https://api.github.com/users/ninp0/following', 'https://api.github.com/users/ninp0/gists', 'https://api.github.com/users/ninp0/starred', 'https://api.github.com/users/ninp0/repos', 'https://api.github.com/users/ninp0/events', 'https://api.github.com/users/ninp0/received_events', 0); -INSERT INTO `developer` VALUES (1043689, 'msutter', 'S', -82.26820760111929, 0, 0, 0, 0, 0, 0, 'Marc Sutter', '@camptocamp', '', 'Switzerland', 'marc.sutter@swissflow.ch', NULL, NULL, NULL, 144, 18, 22, 5, 0, 0, 0, '2011-09-12T07:15:46Z', '2024-09-03T11:45:55Z', 'https://avatars.githubusercontent.com/u/1043689?v=4', 'https://api.github.com/users/msutter', 'https://github.com/msutter', 'https://api.github.com/users/msutter/followers', 'https://api.github.com/users/msutter/following', 'https://api.github.com/users/msutter/gists', 'https://api.github.com/users/msutter/starred', 'https://api.github.com/users/msutter/repos', 'https://api.github.com/users/msutter/events', 'https://api.github.com/users/msutter/received_events', 0); -INSERT INTO `developer` VALUES (1050883, 'BabisK', 'S', -67.59626335956668, 0, 0, 0, 0, 0, 0, 'Babis K', 'Juniper Networks', 'https://www.kaidos.me', 'Athens, Greece', 'babis_k@outlook.com', NULL, 'Software engineer in the Telecommunications industry', NULL, 102, 2, 8, 1, 0, 0, 0, '2011-09-14T17:11:18Z', '2024-10-10T17:23:04Z', 'https://avatars.githubusercontent.com/u/1050883?v=4', 'https://api.github.com/users/BabisK', 'https://github.com/BabisK', 'https://api.github.com/users/BabisK/followers', 'https://api.github.com/users/BabisK/following', 'https://api.github.com/users/BabisK/gists', 'https://api.github.com/users/BabisK/starred', 'https://api.github.com/users/BabisK/repos', 'https://api.github.com/users/BabisK/events', 'https://api.github.com/users/BabisK/received_events', 0); -INSERT INTO `developer` VALUES (1052770, 'hoesler', 'S', -26.09207882495108, 0, 0, 0, 0, 0, 0, 'Christoph Hösler', '@inovex', '', 'Germany', 'christoph.hoesler@gmail.com', NULL, 'Full Stack Data Scientist and Solution Architect @inovex', NULL, 46, 3, 15, 1, 0, 0, 0, '2011-09-15T10:07:26Z', '2024-10-30T09:20:38Z', 'https://avatars.githubusercontent.com/u/1052770?v=4', 'https://api.github.com/users/hoesler', 'https://github.com/hoesler', 'https://api.github.com/users/hoesler/followers', 'https://api.github.com/users/hoesler/following', 'https://api.github.com/users/hoesler/gists', 'https://api.github.com/users/hoesler/starred', 'https://api.github.com/users/hoesler/repos', 'https://api.github.com/users/hoesler/events', 'https://api.github.com/users/hoesler/received_events', 0); -INSERT INTO `developer` VALUES (1094995, 'edersonbrilhante', 'S', -28.239136076413352, 0, 0, 0, 0, 0, 0, 'Ederson Brilhante', '@cisco', 'dev.to/edersonbrilhante', 'Krakow - Poland', 'contato@edersonbrilhante.com.br', NULL, 'SRE Tech Lead', 'ederbrilhante', 44, 2, 77, 84, 0, 0, 0, '2011-10-01T15:17:46Z', '2024-08-19T10:46:09Z', 'https://avatars.githubusercontent.com/u/1094995?v=4', 'https://api.github.com/users/edersonbrilhante', 'https://github.com/edersonbrilhante', 'https://api.github.com/users/edersonbrilhante/followers', 'https://api.github.com/users/edersonbrilhante/following', 'https://api.github.com/users/edersonbrilhante/gists', 'https://api.github.com/users/edersonbrilhante/starred', 'https://api.github.com/users/edersonbrilhante/repos', 'https://api.github.com/users/edersonbrilhante/events', 'https://api.github.com/users/edersonbrilhante/received_events', 0); -INSERT INTO `developer` VALUES (1096799, 'jouve', 'S', -36.452900874263875, 0, 0, 0, 0, 0, 0, 'Cyril Jouve', NULL, 'https://cyril-jouve.fr', 'Vitrolles', 'jv.cyril@gmail.com', 'true', NULL, NULL, 57, 3, 7, 15, 0, 0, 0, '2011-10-02T16:25:52Z', '2024-10-25T11:21:09Z', 'https://avatars.githubusercontent.com/u/1096799?v=4', 'https://api.github.com/users/jouve', 'https://github.com/jouve', 'https://api.github.com/users/jouve/followers', 'https://api.github.com/users/jouve/following', 'https://api.github.com/users/jouve/gists', 'https://api.github.com/users/jouve/starred', 'https://api.github.com/users/jouve/repos', 'https://api.github.com/users/jouve/events', 'https://api.github.com/users/jouve/received_events', 0); -INSERT INTO `developer` VALUES (1101732, 'xdmnl', 'A', 24.404798520135873, 0, 0, 0, 0, 0, 0, 'Xavier', '@frontapp ', '', NULL, NULL, NULL, NULL, NULL, 20, 1, 14, 7, 0, 0, 0, '2011-10-04T12:51:17Z', '2024-10-16T03:33:15Z', 'https://avatars.githubusercontent.com/u/1101732?v=4', 'https://api.github.com/users/xdmnl', 'https://github.com/xdmnl', 'https://api.github.com/users/xdmnl/followers', 'https://api.github.com/users/xdmnl/following', 'https://api.github.com/users/xdmnl/gists', 'https://api.github.com/users/xdmnl/starred', 'https://api.github.com/users/xdmnl/repos', 'https://api.github.com/users/xdmnl/events', 'https://api.github.com/users/xdmnl/received_events', 0); -INSERT INTO `developer` VALUES (1104976, 'joesiewert', 'S', -59.793302019715156, 0, 0, 0, 0, 0, 0, 'Joe Siewert', NULL, '', NULL, NULL, NULL, '🏔🏔🏔', NULL, 79, 0, 20, 36, 0, 0, 0, '2011-10-05T14:14:18Z', '2024-04-22T18:49:46Z', 'https://avatars.githubusercontent.com/u/1104976?v=4', 'https://api.github.com/users/joesiewert', 'https://github.com/joesiewert', 'https://api.github.com/users/joesiewert/followers', 'https://api.github.com/users/joesiewert/following', 'https://api.github.com/users/joesiewert/gists', 'https://api.github.com/users/joesiewert/starred', 'https://api.github.com/users/joesiewert/repos', 'https://api.github.com/users/joesiewert/events', 'https://api.github.com/users/joesiewert/received_events', 0); -INSERT INTO `developer` VALUES (1119267, 'alexesprit', 'S', -2.2301255869300096, 0, 0, 0, 0, 0, 0, 'Alexey', '@maroo-us', 'https://alexesprit.com', NULL, 'alex.esprit@gmail.com', 'true', NULL, 'KotanPupkin', 29, 11, 101, 0, 0, 0, 0, '2011-10-11T11:51:07Z', '2024-07-16T16:24:59Z', 'https://avatars.githubusercontent.com/u/1119267?v=4', 'https://api.github.com/users/alexesprit', 'https://github.com/alexesprit', 'https://api.github.com/users/alexesprit/followers', 'https://api.github.com/users/alexesprit/following', 'https://api.github.com/users/alexesprit/gists', 'https://api.github.com/users/alexesprit/starred', 'https://api.github.com/users/alexesprit/repos', 'https://api.github.com/users/alexesprit/events', 'https://api.github.com/users/alexesprit/received_events', 0); -INSERT INTO `developer` VALUES (1137632, 'mb-14', 'S', -46.02762241190699, 0, 0, 0, 0, 0, 0, 'Miroojin Bakshi', NULL, 'http://mb-14.github.io', 'Pune, India', 'mbakshi1094@gmail.com', 'true', NULL, NULL, 59, 12, 50, 17, 0, 0, 0, '2011-10-19T07:46:15Z', '2024-10-13T08:53:25Z', 'https://avatars.githubusercontent.com/u/1137632?v=4', 'https://api.github.com/users/mb-14', 'https://github.com/mb-14', 'https://api.github.com/users/mb-14/followers', 'https://api.github.com/users/mb-14/following', 'https://api.github.com/users/mb-14/gists', 'https://api.github.com/users/mb-14/starred', 'https://api.github.com/users/mb-14/repos', 'https://api.github.com/users/mb-14/events', 'https://api.github.com/users/mb-14/received_events', 0); -INSERT INTO `developer` VALUES (1192573, 'shenli', 'S', -81.88041200449013, 0, 0, 0, 0, 0, 0, 'Li Shen', 'PingCAP', '', 'San Francisco Bay Area', 'shenli3514@gmail.com', 'true', 'Building Distributed SQL Database', 'shenli3514', 117, 7, 414, 12, 0, 0, 0, '2011-11-14T02:01:36Z', '2024-10-21T23:42:39Z', 'https://avatars.githubusercontent.com/u/1192573?v=4', 'https://api.github.com/users/shenli', 'https://github.com/shenli', 'https://api.github.com/users/shenli/followers', 'https://api.github.com/users/shenli/following', 'https://api.github.com/users/shenli/gists', 'https://api.github.com/users/shenli/starred', 'https://api.github.com/users/shenli/repos', 'https://api.github.com/users/shenli/events', 'https://api.github.com/users/shenli/received_events', 0); -INSERT INTO `developer` VALUES (1209742, 'MarianG', 'C+', 86.57801454927618, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 0, 1, 0, 0, 0, 0, '2011-11-21T08:24:21Z', '2024-07-01T11:41:15Z', 'https://avatars.githubusercontent.com/u/1209742?v=4', 'https://api.github.com/users/MarianG', 'https://github.com/MarianG', 'https://api.github.com/users/MarianG/followers', 'https://api.github.com/users/MarianG/following', 'https://api.github.com/users/MarianG/gists', 'https://api.github.com/users/MarianG/starred', 'https://api.github.com/users/MarianG/repos', 'https://api.github.com/users/MarianG/events', 'https://api.github.com/users/MarianG/received_events', 0); -INSERT INTO `developer` VALUES (1211146, 'pburkholder', 'C', 205.3357590786129, 0, 54, 29, 100, 0, 0, 'Peter Burkholder', 'US Government', 'https://pburkholder.dev', 'Hyattsville, MD', 'peter.burkholder@gsa.gov', NULL, NULL, NULL, 114, 61, 38, 1, 0, 0, 0, '2011-11-21T19:30:14Z', '2024-10-22T13:42:12Z', 'https://avatars.githubusercontent.com/u/1211146?v=4', 'https://api.github.com/users/pburkholder', 'https://github.com/pburkholder', 'https://api.github.com/users/pburkholder/followers', 'https://api.github.com/users/pburkholder/following', 'https://api.github.com/users/pburkholder/gists', 'https://api.github.com/users/pburkholder/starred', 'https://api.github.com/users/pburkholder/repos', 'https://api.github.com/users/pburkholder/events', 'https://api.github.com/users/pburkholder/received_events', 0); -INSERT INTO `developer` VALUES (1226445, 'arianitu', 'S', -18.246637296298562, 0, 0, 0, 0, 0, 0, 'Arianit Uka', 'StackSoft Inc.', 'https://www.stacksoft.io', 'Montreal, QC', 'arianitu@gmail.com', NULL, NULL, NULL, 39, 9, 32, 21, 0, 0, 0, '2011-11-28T21:03:30Z', '2024-10-01T15:40:59Z', 'https://avatars.githubusercontent.com/u/1226445?v=4', 'https://api.github.com/users/arianitu', 'https://github.com/arianitu', 'https://api.github.com/users/arianitu/followers', 'https://api.github.com/users/arianitu/following', 'https://api.github.com/users/arianitu/gists', 'https://api.github.com/users/arianitu/starred', 'https://api.github.com/users/arianitu/repos', 'https://api.github.com/users/arianitu/events', 'https://api.github.com/users/arianitu/received_events', 0); -INSERT INTO `developer` VALUES (1226686, 'matthewdfuller', 'S', -23.7872567122688, 0, 0, 0, 0, 0, 0, 'Matt Fuller', NULL, 'http://matthewdfuller.com', 'New York, NY', 'matthewdf10@gmail.com', NULL, NULL, 'matthewdfuller', 41, 7, 83, 2, 0, 0, 0, '2011-11-28T22:50:41Z', '2024-07-06T15:41:24Z', 'https://avatars.githubusercontent.com/u/1226686?v=4', 'https://api.github.com/users/matthewdfuller', 'https://github.com/matthewdfuller', 'https://api.github.com/users/matthewdfuller/followers', 'https://api.github.com/users/matthewdfuller/following', 'https://api.github.com/users/matthewdfuller/gists', 'https://api.github.com/users/matthewdfuller/starred', 'https://api.github.com/users/matthewdfuller/repos', 'https://api.github.com/users/matthewdfuller/events', 'https://api.github.com/users/matthewdfuller/received_events', 0); -INSERT INTO `developer` VALUES (1228349, 'jmccann', 'S', -72.63799814644605, 0, 0, 0, 0, 0, 0, 'Jacob McCann', '@target ', '', NULL, 'jmccann.git@gmail.com', NULL, NULL, NULL, 97, 1, 55, 12, 0, 0, 0, '2011-11-29T15:17:16Z', '2024-07-16T18:18:20Z', 'https://avatars.githubusercontent.com/u/1228349?v=4', 'https://api.github.com/users/jmccann', 'https://github.com/jmccann', 'https://api.github.com/users/jmccann/followers', 'https://api.github.com/users/jmccann/following', 'https://api.github.com/users/jmccann/gists', 'https://api.github.com/users/jmccann/starred', 'https://api.github.com/users/jmccann/repos', 'https://api.github.com/users/jmccann/events', 'https://api.github.com/users/jmccann/received_events', 0); -INSERT INTO `developer` VALUES (1235925, 'AlexsJones', 'S', -112.3063675642482, 0, 0, 0, 202, 39, 0, 'Alex Jones', 'AWS', '', 'London', 'alex@k8sgpt.ai', NULL, 'Principal Engineer @aws', 'AlexJonesax', 239, 159, 513, 60, 0, 0, 0, '2011-12-02T11:40:05Z', '2024-10-30T13:57:17Z', 'https://avatars.githubusercontent.com/u/1235925?v=4', 'https://api.github.com/users/AlexsJones', 'https://github.com/AlexsJones', 'https://api.github.com/users/AlexsJones/followers', 'https://api.github.com/users/AlexsJones/following', 'https://api.github.com/users/AlexsJones/gists', 'https://api.github.com/users/AlexsJones/starred', 'https://api.github.com/users/AlexsJones/repos', 'https://api.github.com/users/AlexsJones/events', 'https://api.github.com/users/AlexsJones/received_events', 0); -INSERT INTO `developer` VALUES (1259631, 'roboll', 'S', -4.758336455601331, 0, 0, 0, 0, 0, 0, 'rob boll', '@DataDog ', '', 'new york, ny', NULL, NULL, NULL, NULL, 30, 7, 147, 2, 0, 0, 0, '2011-12-13T07:52:08Z', '2024-07-31T18:17:05Z', 'https://avatars.githubusercontent.com/u/1259631?v=4', 'https://api.github.com/users/roboll', 'https://github.com/roboll', 'https://api.github.com/users/roboll/followers', 'https://api.github.com/users/roboll/following', 'https://api.github.com/users/roboll/gists', 'https://api.github.com/users/roboll/starred', 'https://api.github.com/users/roboll/repos', 'https://api.github.com/users/roboll/events', 'https://api.github.com/users/roboll/received_events', 0); -INSERT INTO `developer` VALUES (1281825, 'k-kinzal', 'S', -68.57665551642941, 0, 0, 0, 0, 0, 0, 'kinzal', NULL, 'http://about.me/kinzal', 'japan', NULL, NULL, NULL, 'k_kinzal', 102, 10, 10, 6, 0, 0, 0, '2011-12-23T10:01:07Z', '2024-08-04T04:58:37Z', 'https://avatars.githubusercontent.com/u/1281825?v=4', 'https://api.github.com/users/k-kinzal', 'https://github.com/k-kinzal', 'https://api.github.com/users/k-kinzal/followers', 'https://api.github.com/users/k-kinzal/following', 'https://api.github.com/users/k-kinzal/gists', 'https://api.github.com/users/k-kinzal/starred', 'https://api.github.com/users/k-kinzal/repos', 'https://api.github.com/users/k-kinzal/events', 'https://api.github.com/users/k-kinzal/received_events', 0); -INSERT INTO `developer` VALUES (1291984, 'worldofprasanna', 'S', -79.85167681278156, 0, 0, 0, 0, 0, 0, 'Prasanna', NULL, 'worldofprasanna.in', 'Chennai', NULL, 'true', 'Passionate coder who loves to read code and strives to follow the best practices.', 'worldofprasanna', 118, 39, 55, 115, 0, 0, 0, '2011-12-29T07:15:48Z', '2024-10-01T17:01:19Z', 'https://avatars.githubusercontent.com/u/1291984?v=4', 'https://api.github.com/users/worldofprasanna', 'https://github.com/worldofprasanna', 'https://api.github.com/users/worldofprasanna/followers', 'https://api.github.com/users/worldofprasanna/following', 'https://api.github.com/users/worldofprasanna/gists', 'https://api.github.com/users/worldofprasanna/starred', 'https://api.github.com/users/worldofprasanna/repos', 'https://api.github.com/users/worldofprasanna/events', 'https://api.github.com/users/worldofprasanna/received_events', 0); -INSERT INTO `developer` VALUES (1298643, 'eirmag', 'A-', 35.69310208156713, 0, 0, 0, 0, 0, 0, 'Gabriel', NULL, '', NULL, NULL, NULL, NULL, NULL, 19, 1, 1, 2, 0, 0, 0, '2012-01-02T10:47:05Z', '2024-09-03T19:46:18Z', 'https://avatars.githubusercontent.com/u/1298643?v=4', 'https://api.github.com/users/eirmag', 'https://github.com/eirmag', 'https://api.github.com/users/eirmag/followers', 'https://api.github.com/users/eirmag/following', 'https://api.github.com/users/eirmag/gists', 'https://api.github.com/users/eirmag/starred', 'https://api.github.com/users/eirmag/repos', 'https://api.github.com/users/eirmag/events', 'https://api.github.com/users/eirmag/received_events', 0); -INSERT INTO `developer` VALUES (1302480, 'darend', 'S', -1.0433878902573523, 0, 0, 0, 0, 0, 0, 'Daren Desjardins', '@sagansystems ', '', 'San Francisco', NULL, NULL, NULL, NULL, 32, 0, 10, 0, 0, 0, 0, '2012-01-03T23:13:31Z', '2024-06-14T01:28:01Z', 'https://avatars.githubusercontent.com/u/1302480?v=4', 'https://api.github.com/users/darend', 'https://github.com/darend', 'https://api.github.com/users/darend/followers', 'https://api.github.com/users/darend/following', 'https://api.github.com/users/darend/gists', 'https://api.github.com/users/darend/starred', 'https://api.github.com/users/darend/repos', 'https://api.github.com/users/darend/events', 'https://api.github.com/users/darend/received_events', 0); -INSERT INTO `developer` VALUES (1305919, 'ezk84', 'A', 17.366909973055222, 0, 0, 0, 0, 0, 0, 'Ezequiel Muns', NULL, '', 'Berlin, Germany', NULL, 'true', 'Full stack developer-at-large and digital nomad interested in all things computer science, AI and machine learning. ', NULL, 26, 3, 2, 12, 0, 0, 0, '2012-01-05T06:53:05Z', '2024-10-22T12:25:11Z', 'https://avatars.githubusercontent.com/u/1305919?v=4', 'https://api.github.com/users/ezk84', 'https://github.com/ezk84', 'https://api.github.com/users/ezk84/followers', 'https://api.github.com/users/ezk84/following', 'https://api.github.com/users/ezk84/gists', 'https://api.github.com/users/ezk84/starred', 'https://api.github.com/users/ezk84/repos', 'https://api.github.com/users/ezk84/events', 'https://api.github.com/users/ezk84/received_events', 0); -INSERT INTO `developer` VALUES (1308885, 'Miradorn', 'S', -36.575872200254935, 0, 0, 0, 0, 0, 0, 'Alexander Steppke', '@remoteoss', 'https://unsubstantiated.blog', 'Hamburg, Germany', 'alex@schram.me', NULL, NULL, 'm1rad', 55, 1, 12, 4, 0, 0, 0, '2012-01-06T08:33:18Z', '2024-10-07T06:20:36Z', 'https://avatars.githubusercontent.com/u/1308885?v=4', 'https://api.github.com/users/Miradorn', 'https://github.com/Miradorn', 'https://api.github.com/users/Miradorn/followers', 'https://api.github.com/users/Miradorn/following', 'https://api.github.com/users/Miradorn/gists', 'https://api.github.com/users/Miradorn/starred', 'https://api.github.com/users/Miradorn/repos', 'https://api.github.com/users/Miradorn/events', 'https://api.github.com/users/Miradorn/received_events', 0); -INSERT INTO `developer` VALUES (1315944, 'shashankmehta', 'A-', 28.40018204624123, 0, 0, 0, 0, 0, 0, 'Shashank Mehta', '@razorpay ', 'http://shashankmehta.in', 'Bangalore, India', 'me@shashankmehta.in', NULL, 'Product, Tech, Marketing, Content, Dishes, Sweeping, Dusting.... at @Razorpay. ', NULL, 16, 11, 292, 68, 0, 0, 0, '2012-01-09T17:50:21Z', '2023-11-22T10:32:18Z', 'https://avatars.githubusercontent.com/u/1315944?v=4', 'https://api.github.com/users/shashankmehta', 'https://github.com/shashankmehta', 'https://api.github.com/users/shashankmehta/followers', 'https://api.github.com/users/shashankmehta/following', 'https://api.github.com/users/shashankmehta/gists', 'https://api.github.com/users/shashankmehta/starred', 'https://api.github.com/users/shashankmehta/repos', 'https://api.github.com/users/shashankmehta/events', 'https://api.github.com/users/shashankmehta/received_events', 0); -INSERT INTO `developer` VALUES (1318986, 'cmeury', 'S', -47.25295508472192, 0, 0, 0, 0, 0, 0, 'Cedric Meury', NULL, 'http://www.meury.com', 'Switzerland', 'cedric@meury.com', NULL, 'It\'s me.', NULL, 61, 4, 37, 15, 0, 0, 0, '2012-01-10T16:32:42Z', '2024-11-01T14:43:19Z', 'https://avatars.githubusercontent.com/u/1318986?v=4', 'https://api.github.com/users/cmeury', 'https://github.com/cmeury', 'https://api.github.com/users/cmeury/followers', 'https://api.github.com/users/cmeury/following', 'https://api.github.com/users/cmeury/gists', 'https://api.github.com/users/cmeury/starred', 'https://api.github.com/users/cmeury/repos', 'https://api.github.com/users/cmeury/events', 'https://api.github.com/users/cmeury/received_events', 0); -INSERT INTO `developer` VALUES (1328551, 'matt7277', 'B+', 40.420884366904595, 0, 0, 0, 0, 0, 0, 'Matthew Saeed', 'Discovery, Inc', 'www.matthewsaeed.com', 'Washington, D.C.', NULL, NULL, 'Sr Director, Security Architecture', NULL, 16, 1, 4, 8, 0, 0, 0, '2012-01-13T19:08:51Z', '2023-11-02T18:15:45Z', 'https://avatars.githubusercontent.com/u/1328551?v=4', 'https://api.github.com/users/matt7277', 'https://github.com/matt7277', 'https://api.github.com/users/matt7277/followers', 'https://api.github.com/users/matt7277/following', 'https://api.github.com/users/matt7277/gists', 'https://api.github.com/users/matt7277/starred', 'https://api.github.com/users/matt7277/repos', 'https://api.github.com/users/matt7277/events', 'https://api.github.com/users/matt7277/received_events', 0); -INSERT INTO `developer` VALUES (1378419, 'jnfeinstein', 'S', -11.999956386689203, 0, 0, 0, 0, 0, 0, 'Joel Feinstein', NULL, '', 'New York, NY', NULL, NULL, NULL, NULL, 37, 1, 15, 3, 0, 0, 0, '2012-01-25T08:11:32Z', '2024-10-02T15:09:46Z', 'https://avatars.githubusercontent.com/u/1378419?v=4', 'https://api.github.com/users/jnfeinstein', 'https://github.com/jnfeinstein', 'https://api.github.com/users/jnfeinstein/followers', 'https://api.github.com/users/jnfeinstein/following', 'https://api.github.com/users/jnfeinstein/gists', 'https://api.github.com/users/jnfeinstein/starred', 'https://api.github.com/users/jnfeinstein/repos', 'https://api.github.com/users/jnfeinstein/events', 'https://api.github.com/users/jnfeinstein/received_events', 0); -INSERT INTO `developer` VALUES (1387322, 'phihos', 'S', -44.48529411764706, 0, 0, 0, 0, 0, 0, 'Philipp Hossner', NULL, '', 'Cologne, Germany', NULL, NULL, NULL, NULL, 60, 2, 22, 13, 0, 0, 0, '2012-01-28T14:14:34Z', '2024-09-10T15:04:45Z', 'https://avatars.githubusercontent.com/u/1387322?v=4', 'https://api.github.com/users/phihos', 'https://github.com/phihos', 'https://api.github.com/users/phihos/followers', 'https://api.github.com/users/phihos/following', 'https://api.github.com/users/phihos/gists', 'https://api.github.com/users/phihos/starred', 'https://api.github.com/users/phihos/repos', 'https://api.github.com/users/phihos/events', 'https://api.github.com/users/phihos/received_events', 0); -INSERT INTO `developer` VALUES (1397674, 'AnatolyRugalev', 'S', -69.2946738989178, 0, 0, 0, 0, 0, 0, 'Toly', '@messagebird-dev', '', 'Amsterdam', 'anatoly.rugalev@gmail.com', NULL, NULL, NULL, 91, 5, 44, 27, 0, 0, 0, '2012-02-01T12:30:16Z', '2024-10-20T14:17:54Z', 'https://avatars.githubusercontent.com/u/1397674?v=4', 'https://api.github.com/users/AnatolyRugalev', 'https://github.com/AnatolyRugalev', 'https://api.github.com/users/AnatolyRugalev/followers', 'https://api.github.com/users/AnatolyRugalev/following', 'https://api.github.com/users/AnatolyRugalev/gists', 'https://api.github.com/users/AnatolyRugalev/starred', 'https://api.github.com/users/AnatolyRugalev/repos', 'https://api.github.com/users/AnatolyRugalev/events', 'https://api.github.com/users/AnatolyRugalev/received_events', 0); -INSERT INTO `developer` VALUES (1398435, 'ginodeis', 'B-', 67.27727578990373, 0, 0, 0, 0, 0, 0, 'Tino D', NULL, '', 'Canary Islands - Spain', NULL, NULL, NULL, NULL, 8, 0, 2, 0, 0, 0, 0, '2012-02-01T15:37:41Z', '2022-02-09T18:53:40Z', 'https://avatars.githubusercontent.com/u/1398435?v=4', 'https://api.github.com/users/ginodeis', 'https://github.com/ginodeis', 'https://api.github.com/users/ginodeis/followers', 'https://api.github.com/users/ginodeis/following', 'https://api.github.com/users/ginodeis/gists', 'https://api.github.com/users/ginodeis/starred', 'https://api.github.com/users/ginodeis/repos', 'https://api.github.com/users/ginodeis/events', 'https://api.github.com/users/ginodeis/received_events', 0); -INSERT INTO `developer` VALUES (1416037, 'alloylab', 'C', 93.46015074384677, 0, 0, 0, 4, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 1, 1, 1, 0, 0, 0, '2012-02-07T13:25:51Z', '2024-08-06T02:27:04Z', 'https://avatars.githubusercontent.com/u/1416037?v=4', 'https://api.github.com/users/alloylab', 'https://github.com/alloylab', 'https://api.github.com/users/alloylab/followers', 'https://api.github.com/users/alloylab/following', 'https://api.github.com/users/alloylab/gists', 'https://api.github.com/users/alloylab/starred', 'https://api.github.com/users/alloylab/repos', 'https://api.github.com/users/alloylab/events', 'https://api.github.com/users/alloylab/received_events', 0); -INSERT INTO `developer` VALUES (1420702, 'bp4151', 'A-', 34.698916167194696, 0, 0, 0, 0, 0, 0, 'Bruce Parr', 'Paylocity', '', 'Pennsylvania', NULL, NULL, NULL, NULL, 20, 3, 0, 0, 0, 0, 0, '2012-02-08T19:27:15Z', '2024-10-05T14:38:39Z', 'https://avatars.githubusercontent.com/u/1420702?v=4', 'https://api.github.com/users/bp4151', 'https://github.com/bp4151', 'https://api.github.com/users/bp4151/followers', 'https://api.github.com/users/bp4151/following', 'https://api.github.com/users/bp4151/gists', 'https://api.github.com/users/bp4151/starred', 'https://api.github.com/users/bp4151/repos', 'https://api.github.com/users/bp4151/events', 'https://api.github.com/users/bp4151/received_events', 0); -INSERT INTO `developer` VALUES (1440370, 'davidovich', 'S', -33.71725965466139, 0, 0, 0, 0, 0, 0, 'David Genest', NULL, '', 'Montreal', NULL, NULL, 'Senior Software Developer at DRW. Make, go, jsonnet, containers, k8s.', NULL, 51, 3, 19, 25, 0, 0, 0, '2012-02-15T15:54:13Z', '2024-11-01T10:36:17Z', 'https://avatars.githubusercontent.com/u/1440370?v=4', 'https://api.github.com/users/davidovich', 'https://github.com/davidovich', 'https://api.github.com/users/davidovich/followers', 'https://api.github.com/users/davidovich/following', 'https://api.github.com/users/davidovich/gists', 'https://api.github.com/users/davidovich/starred', 'https://api.github.com/users/davidovich/repos', 'https://api.github.com/users/davidovich/events', 'https://api.github.com/users/davidovich/received_events', 0); -INSERT INTO `developer` VALUES (1445228, 'jessfraz', 'S', -87.76955158537005, 0, 0, 0, 0, 0, 0, 'Jess Frazelle', '@KittyCAD ', 'https://blog.jessfraz.com', 'PID 1', NULL, NULL, 'A superhero with supervillain tendencies.', 'jessfraz', 144, 27, 13197, 60, 0, 0, 0, '2012-02-17T02:15:05Z', '2024-10-22T22:25:52Z', 'https://avatars.githubusercontent.com/u/1445228?v=4', 'https://api.github.com/users/jessfraz', 'https://github.com/jessfraz', 'https://api.github.com/users/jessfraz/followers', 'https://api.github.com/users/jessfraz/following', 'https://api.github.com/users/jessfraz/gists', 'https://api.github.com/users/jessfraz/starred', 'https://api.github.com/users/jessfraz/repos', 'https://api.github.com/users/jessfraz/events', 'https://api.github.com/users/jessfraz/received_events', 0); -INSERT INTO `developer` VALUES (1450593, 'astockwell', 'A+', 4.375850593706421, 0, 0, 0, 0, 0, 0, 'Alex Stockwell', NULL, 'http://astockwell.com', 'Hartford, CT', 'astockwell@github.com', NULL, NULL, NULL, 28, 32, 19, 4, 0, 0, 0, '2012-02-19T05:07:53Z', '2024-10-29T11:18:16Z', 'https://avatars.githubusercontent.com/u/1450593?v=4', 'https://api.github.com/users/astockwell', 'https://github.com/astockwell', 'https://api.github.com/users/astockwell/followers', 'https://api.github.com/users/astockwell/following', 'https://api.github.com/users/astockwell/gists', 'https://api.github.com/users/astockwell/starred', 'https://api.github.com/users/astockwell/repos', 'https://api.github.com/users/astockwell/events', 'https://api.github.com/users/astockwell/received_events', 1); -INSERT INTO `developer` VALUES (1464713, 'ademozay', 'A-', 26.83440841661283, 0, 0, 0, 0, 0, 0, 'Adem Özay', NULL, '', NULL, NULL, NULL, NULL, NULL, 18, 4, 29, 13, 0, 0, 0, '2012-02-23T08:31:06Z', '2024-09-25T07:37:01Z', 'https://avatars.githubusercontent.com/u/1464713?v=4', 'https://api.github.com/users/ademozay', 'https://github.com/ademozay', 'https://api.github.com/users/ademozay/followers', 'https://api.github.com/users/ademozay/following', 'https://api.github.com/users/ademozay/gists', 'https://api.github.com/users/ademozay/starred', 'https://api.github.com/users/ademozay/repos', 'https://api.github.com/users/ademozay/events', 'https://api.github.com/users/ademozay/received_events', 0); -INSERT INTO `developer` VALUES (1470270, 'dalbani', 'S', -19.576241720878684, 0, 0, 0, 0, 0, 0, 'Damiano Albani', NULL, '', NULL, 'damiano.albani@gmail.com', NULL, NULL, NULL, 46, 8, 3, 0, 0, 0, 0, '2012-02-24T17:08:05Z', '2024-08-19T08:15:19Z', 'https://avatars.githubusercontent.com/u/1470270?v=4', 'https://api.github.com/users/dalbani', 'https://github.com/dalbani', 'https://api.github.com/users/dalbani/followers', 'https://api.github.com/users/dalbani/following', 'https://api.github.com/users/dalbani/gists', 'https://api.github.com/users/dalbani/starred', 'https://api.github.com/users/dalbani/repos', 'https://api.github.com/users/dalbani/events', 'https://api.github.com/users/dalbani/received_events', 0); -INSERT INTO `developer` VALUES (1486729, 'Stono', 'S', -69.74599824290088, 0, 0, 0, 0, 0, 0, 'Karl Stoney', 'Auto Trader UK', 'https://karlstoney.com', 'Manchester', NULL, 'true', 'Principal Engineer', NULL, 88, 18, 129, 7, 0, 0, 0, '2012-02-29T22:36:54Z', '2024-10-20T18:04:11Z', 'https://avatars.githubusercontent.com/u/1486729?v=4', 'https://api.github.com/users/Stono', 'https://github.com/Stono', 'https://api.github.com/users/Stono/followers', 'https://api.github.com/users/Stono/following', 'https://api.github.com/users/Stono/gists', 'https://api.github.com/users/Stono/starred', 'https://api.github.com/users/Stono/repos', 'https://api.github.com/users/Stono/events', 'https://api.github.com/users/Stono/received_events', 0); -INSERT INTO `developer` VALUES (1492007, 'Vad1mo', 'S', -80.53736660433202, 0, 0, 0, 0, 0, 0, 'Vadim Bauer', '@container-registry ', 'container-registry.com', 'Zürich', NULL, NULL, 'SaaS Builder, Explorer, Cloud First, DevOps advocate & practitioner! Founder @8gears @container-registry. CNCF @goharbor maintainer.', 'vad1mo', 116, 11, 109, 74, 0, 0, 0, '2012-03-02T09:46:22Z', '2024-11-02T11:33:50Z', 'https://avatars.githubusercontent.com/u/1492007?v=4', 'https://api.github.com/users/Vad1mo', 'https://github.com/Vad1mo', 'https://api.github.com/users/Vad1mo/followers', 'https://api.github.com/users/Vad1mo/following', 'https://api.github.com/users/Vad1mo/gists', 'https://api.github.com/users/Vad1mo/starred', 'https://api.github.com/users/Vad1mo/repos', 'https://api.github.com/users/Vad1mo/events', 'https://api.github.com/users/Vad1mo/received_events', 0); -INSERT INTO `developer` VALUES (1499305, 'FallenAtticus', 'B-', 74.12749798086179, 0, 0, 0, 0, 0, 0, 'Sascha D.', 'idealo internet GmbH', 'http://www.idealo.de', 'Germany', NULL, NULL, NULL, NULL, 4, 0, 14, 21, 0, 0, 0, '2012-03-04T12:19:14Z', '2024-10-07T07:02:50Z', 'https://avatars.githubusercontent.com/u/1499305?v=4', 'https://api.github.com/users/FallenAtticus', 'https://github.com/FallenAtticus', 'https://api.github.com/users/FallenAtticus/followers', 'https://api.github.com/users/FallenAtticus/following', 'https://api.github.com/users/FallenAtticus/gists', 'https://api.github.com/users/FallenAtticus/starred', 'https://api.github.com/users/FallenAtticus/repos', 'https://api.github.com/users/FallenAtticus/events', 'https://api.github.com/users/FallenAtticus/received_events', 0); -INSERT INTO `developer` VALUES (1501547, 'akashsharma95', 'S', -27.803308771475145, 0, 0, 0, 0, 0, 0, 'Akash Sharma', '@PaddleHQ ', '', 'London', NULL, NULL, NULL, NULL, 46, 1, 23, 151, 0, 0, 0, '2012-03-05T05:41:30Z', '2024-10-11T12:54:59Z', 'https://avatars.githubusercontent.com/u/1501547?v=4', 'https://api.github.com/users/akashsharma95', 'https://github.com/akashsharma95', 'https://api.github.com/users/akashsharma95/followers', 'https://api.github.com/users/akashsharma95/following', 'https://api.github.com/users/akashsharma95/gists', 'https://api.github.com/users/akashsharma95/starred', 'https://api.github.com/users/akashsharma95/repos', 'https://api.github.com/users/akashsharma95/events', 'https://api.github.com/users/akashsharma95/received_events', 0); -INSERT INTO `developer` VALUES (1560587, 'jkroepke', 'S', -93.70998074490127, 0, 0, 0, 0, 0, 0, 'Jan-Otto Kröpke', '@cloudeteer', '', 'Nuremberg, Germany', 'github@jkroepke.de', NULL, NULL, 'jkroepke', 323, 11, 566, 2, 0, 0, 0, '2012-03-21T11:06:24Z', '2024-10-24T14:20:52Z', 'https://avatars.githubusercontent.com/u/1560587?v=4', 'https://api.github.com/users/jkroepke', 'https://github.com/jkroepke', 'https://api.github.com/users/jkroepke/followers', 'https://api.github.com/users/jkroepke/following', 'https://api.github.com/users/jkroepke/gists', 'https://api.github.com/users/jkroepke/starred', 'https://api.github.com/users/jkroepke/repos', 'https://api.github.com/users/jkroepke/events', 'https://api.github.com/users/jkroepke/received_events', 0); -INSERT INTO `developer` VALUES (1580956, 'chenrui333', 'C', 189.86711719675066, 0, 0, 0, 0, 0, 0, 'Rui Chen', '@meetup ', 'chenrui.dev', 'New York', 'rui@chenrui.dev', 'true', NULL, 'chenrui', 164, 100, 669, 0, 0, 0, 0, '2012-03-27T19:17:28Z', '2024-10-02T17:17:18Z', 'https://avatars.githubusercontent.com/u/1580956?v=4', 'https://api.github.com/users/chenrui333', 'https://github.com/chenrui333', 'https://api.github.com/users/chenrui333/followers', 'https://api.github.com/users/chenrui333/following', 'https://api.github.com/users/chenrui333/gists', 'https://api.github.com/users/chenrui333/starred', 'https://api.github.com/users/chenrui333/repos', 'https://api.github.com/users/chenrui333/events', 'https://api.github.com/users/chenrui333/received_events', 0); -INSERT INTO `developer` VALUES (1587013, 'maennel', 'A', 18.818951147517073, 0, 0, 0, 0, 0, 0, 'Manuel Jeckelmann', NULL, '', NULL, NULL, NULL, NULL, NULL, 22, 0, 16, 4, 0, 0, 0, '2012-03-29T12:45:09Z', '2024-10-07T05:52:49Z', 'https://avatars.githubusercontent.com/u/1587013?v=4', 'https://api.github.com/users/maennel', 'https://github.com/maennel', 'https://api.github.com/users/maennel/followers', 'https://api.github.com/users/maennel/following', 'https://api.github.com/users/maennel/gists', 'https://api.github.com/users/maennel/starred', 'https://api.github.com/users/maennel/repos', 'https://api.github.com/users/maennel/events', 'https://api.github.com/users/maennel/received_events', 0); -INSERT INTO `developer` VALUES (1607449, 'girokon', 'B+', 38.60553823655975, 0, 0, 0, 0, 0, 0, 'Igor Noskov', NULL, '', NULL, 'igor.noskov87@gmail.com', NULL, NULL, NULL, 17, 2, 3, 0, 0, 0, 0, '2012-04-03T08:11:17Z', '2024-10-16T17:24:11Z', 'https://avatars.githubusercontent.com/u/1607449?v=4', 'https://api.github.com/users/girokon', 'https://github.com/girokon', 'https://api.github.com/users/girokon/followers', 'https://api.github.com/users/girokon/following', 'https://api.github.com/users/girokon/gists', 'https://api.github.com/users/girokon/starred', 'https://api.github.com/users/girokon/repos', 'https://api.github.com/users/girokon/events', 'https://api.github.com/users/girokon/received_events', 0); -INSERT INTO `developer` VALUES (1632246, 'jayme-github', 'S', -50.70586054628576, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 67, 28, 20, 0, 0, 0, 0, '2012-04-11T08:05:40Z', '2024-08-20T09:48:42Z', 'https://avatars.githubusercontent.com/u/1632246?v=4', 'https://api.github.com/users/jayme-github', 'https://github.com/jayme-github', 'https://api.github.com/users/jayme-github/followers', 'https://api.github.com/users/jayme-github/following', 'https://api.github.com/users/jayme-github/gists', 'https://api.github.com/users/jayme-github/starred', 'https://api.github.com/users/jayme-github/repos', 'https://api.github.com/users/jayme-github/events', 'https://api.github.com/users/jayme-github/received_events', 0); -INSERT INTO `developer` VALUES (1634746, 'abatilo', 'S', -83.82456445720817, 0, 0, 0, 0, 0, 0, 'Aaron Batilo', '@microsoft', 'https://www.aaronbatilo.dev', 'Denver, CO', 'AaronBatilo@gmail.com', NULL, 'If I don\'t have to do it, I won\'t. If I have to do it, I\'ll do it as quickly as possible.', 'aaronbatilo', 137, 56, 52, 0, 0, 0, 0, '2012-04-11T22:11:15Z', '2024-10-18T23:52:46Z', 'https://avatars.githubusercontent.com/u/1634746?v=4', 'https://api.github.com/users/abatilo', 'https://github.com/abatilo', 'https://api.github.com/users/abatilo/followers', 'https://api.github.com/users/abatilo/following', 'https://api.github.com/users/abatilo/gists', 'https://api.github.com/users/abatilo/starred', 'https://api.github.com/users/abatilo/repos', 'https://api.github.com/users/abatilo/events', 'https://api.github.com/users/abatilo/received_events', 0); -INSERT INTO `developer` VALUES (1636877, 'ibcoleman', 'A', 22.570180733179967, 0, 0, 0, 0, 0, 0, 'Ian Coleman', NULL, '', NULL, 'ibcoleman@gmail.com', NULL, NULL, NULL, 25, 1, 0, 3, 0, 0, 0, '2012-04-12T13:55:03Z', '2023-10-25T15:54:33Z', 'https://avatars.githubusercontent.com/u/1636877?v=4', 'https://api.github.com/users/ibcoleman', 'https://github.com/ibcoleman', 'https://api.github.com/users/ibcoleman/followers', 'https://api.github.com/users/ibcoleman/following', 'https://api.github.com/users/ibcoleman/gists', 'https://api.github.com/users/ibcoleman/starred', 'https://api.github.com/users/ibcoleman/repos', 'https://api.github.com/users/ibcoleman/events', 'https://api.github.com/users/ibcoleman/received_events', 0); -INSERT INTO `developer` VALUES (1644105, 'manics', 'S', -92.58419947167909, 0, 0, 0, 0, 0, 0, 'Simon Li', NULL, '', 'UK', NULL, NULL, NULL, NULL, 336, 42, 111, 103, 0, 0, 0, '2012-04-14T22:36:13Z', '2024-09-30T10:51:06Z', 'https://avatars.githubusercontent.com/u/1644105?v=4', 'https://api.github.com/users/manics', 'https://github.com/manics', 'https://api.github.com/users/manics/followers', 'https://api.github.com/users/manics/following', 'https://api.github.com/users/manics/gists', 'https://api.github.com/users/manics/starred', 'https://api.github.com/users/manics/repos', 'https://api.github.com/users/manics/events', 'https://api.github.com/users/manics/received_events', 0); -INSERT INTO `developer` VALUES (1671878, 'rookies', 'S', -19.96116636589287, 0, 0, 0, 0, 0, 0, 'Robert', 'mgm security partners GmbH', 'https://dec2b.de', 'Dresden, Germany', NULL, NULL, NULL, NULL, 45, 0, 5, 2, 0, 0, 0, '2012-04-23T18:33:42Z', '2024-10-29T15:31:56Z', 'https://avatars.githubusercontent.com/u/1671878?v=4', 'https://api.github.com/users/rookies', 'https://github.com/rookies', 'https://api.github.com/users/rookies/followers', 'https://api.github.com/users/rookies/following', 'https://api.github.com/users/rookies/gists', 'https://api.github.com/users/rookies/starred', 'https://api.github.com/users/rookies/repos', 'https://api.github.com/users/rookies/events', 'https://api.github.com/users/rookies/received_events', 0); -INSERT INTO `developer` VALUES (1673467, 'uncycler', 'S', -1.4105837917349984, 0, 0, 0, 0, 0, 0, 'Frédéric Marchand', NULL, '', 'Switzerland', NULL, NULL, NULL, NULL, 33, 2, 7, 0, 0, 0, 0, '2012-04-24T06:34:15Z', '2024-10-16T20:03:05Z', 'https://avatars.githubusercontent.com/u/1673467?v=4', 'https://api.github.com/users/uncycler', 'https://github.com/uncycler', 'https://api.github.com/users/uncycler/followers', 'https://api.github.com/users/uncycler/following', 'https://api.github.com/users/uncycler/gists', 'https://api.github.com/users/uncycler/starred', 'https://api.github.com/users/uncycler/repos', 'https://api.github.com/users/uncycler/events', 'https://api.github.com/users/uncycler/received_events', 0); -INSERT INTO `developer` VALUES (1689118, 'shortjared', 'S', -73.94328170273263, 0, 0, 0, 0, 0, 0, 'Jared Short', NULL, 'http://jaredshort.com', NULL, 'jaredlshort@gmail.com', NULL, NULL, NULL, 98, 20, 86, 12, 0, 0, 0, '2012-04-29T00:52:14Z', '2024-11-01T18:43:34Z', 'https://avatars.githubusercontent.com/u/1689118?v=4', 'https://api.github.com/users/shortjared', 'https://github.com/shortjared', 'https://api.github.com/users/shortjared/followers', 'https://api.github.com/users/shortjared/following', 'https://api.github.com/users/shortjared/gists', 'https://api.github.com/users/shortjared/starred', 'https://api.github.com/users/shortjared/repos', 'https://api.github.com/users/shortjared/events', 'https://api.github.com/users/shortjared/received_events', 0); -INSERT INTO `developer` VALUES (1698794, 'WingGao', 'S', -81.53492018162838, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Shanghai', NULL, NULL, NULL, NULL, 162, 1, 11, 0, 0, 0, 0, '2012-05-02T12:31:52Z', '2024-09-02T07:08:58Z', 'https://avatars.githubusercontent.com/u/1698794?v=4', 'https://api.github.com/users/WingGao', 'https://github.com/WingGao', 'https://api.github.com/users/WingGao/followers', 'https://api.github.com/users/WingGao/following', 'https://api.github.com/users/WingGao/gists', 'https://api.github.com/users/WingGao/starred', 'https://api.github.com/users/WingGao/repos', 'https://api.github.com/users/WingGao/events', 'https://api.github.com/users/WingGao/received_events', 0); -INSERT INTO `developer` VALUES (1699826, 'xens', 'S', -52.559744056263426, 0, 0, 0, 0, 0, 0, 'Romain Aviolat', NULL, '', NULL, NULL, 'true', NULL, NULL, 66, 0, 46, 21, 0, 0, 0, '2012-05-02T18:02:12Z', '2024-10-21T11:20:40Z', 'https://avatars.githubusercontent.com/u/1699826?v=4', 'https://api.github.com/users/xens', 'https://github.com/xens', 'https://api.github.com/users/xens/followers', 'https://api.github.com/users/xens/following', 'https://api.github.com/users/xens/gists', 'https://api.github.com/users/xens/starred', 'https://api.github.com/users/xens/repos', 'https://api.github.com/users/xens/events', 'https://api.github.com/users/xens/received_events', 0); -INSERT INTO `developer` VALUES (1706007, 'bvcelari', 'S', -26.33713076108308, 0, 0, 0, 0, 0, 0, 'Juan Perez', NULL, '', NULL, NULL, NULL, NULL, NULL, 52, 15, 2, 3, 0, 0, 0, '2012-05-04T13:58:49Z', '2024-09-11T08:35:34Z', 'https://avatars.githubusercontent.com/u/1706007?v=4', 'https://api.github.com/users/bvcelari', 'https://github.com/bvcelari', 'https://api.github.com/users/bvcelari/followers', 'https://api.github.com/users/bvcelari/following', 'https://api.github.com/users/bvcelari/gists', 'https://api.github.com/users/bvcelari/starred', 'https://api.github.com/users/bvcelari/repos', 'https://api.github.com/users/bvcelari/events', 'https://api.github.com/users/bvcelari/received_events', 0); -INSERT INTO `developer` VALUES (1719646, 'gavvvr', 'A-', 36.85055363036016, 0, 0, 0, 0, 0, 0, 'Kirill Gavrilov', NULL, '', NULL, NULL, NULL, 'Senior backend developer (Kotlin/Java)', NULL, 14, 21, 44, 239, 0, 0, 0, '2012-05-08T21:11:15Z', '2024-11-02T11:20:06Z', 'https://avatars.githubusercontent.com/u/1719646?v=4', 'https://api.github.com/users/gavvvr', 'https://github.com/gavvvr', 'https://api.github.com/users/gavvvr/followers', 'https://api.github.com/users/gavvvr/following', 'https://api.github.com/users/gavvvr/gists', 'https://api.github.com/users/gavvvr/starred', 'https://api.github.com/users/gavvvr/repos', 'https://api.github.com/users/gavvvr/events', 'https://api.github.com/users/gavvvr/received_events', 0); -INSERT INTO `developer` VALUES (1750815, 'TingluoHuang', 'S', -68.6312384042141, 0, 0, 0, 0, 0, 0, 'Tingluo Huang', 'GitHub', '', 'United States', 'tingluohuang@github.com', NULL, NULL, NULL, 85, 0, 233, 1, 0, 0, 0, '2012-05-18T00:25:48Z', '2024-11-01T16:00:04Z', 'https://avatars.githubusercontent.com/u/1750815?v=4', 'https://api.github.com/users/TingluoHuang', 'https://github.com/TingluoHuang', 'https://api.github.com/users/TingluoHuang/followers', 'https://api.github.com/users/TingluoHuang/following', 'https://api.github.com/users/TingluoHuang/gists', 'https://api.github.com/users/TingluoHuang/starred', 'https://api.github.com/users/TingluoHuang/repos', 'https://api.github.com/users/TingluoHuang/events', 'https://api.github.com/users/TingluoHuang/received_events', 1); -INSERT INTO `developer` VALUES (1762599, 'so0k', 'S', -75.50113714794995, 0, 0, 0, 0, 0, 0, 'so0k', NULL, 'https://twitter.com/vincentdesmet', 'Singapore', 'vincent.drl@gmail.com', NULL, NULL, NULL, 101, 52, 107, 44, 0, 0, 0, '2012-05-22T04:26:41Z', '2024-10-28T02:04:50Z', 'https://avatars.githubusercontent.com/u/1762599?v=4', 'https://api.github.com/users/so0k', 'https://github.com/so0k', 'https://api.github.com/users/so0k/followers', 'https://api.github.com/users/so0k/following', 'https://api.github.com/users/so0k/gists', 'https://api.github.com/users/so0k/starred', 'https://api.github.com/users/so0k/repos', 'https://api.github.com/users/so0k/events', 'https://api.github.com/users/so0k/received_events', 0); -INSERT INTO `developer` VALUES (1764206, 'mycalf', 'B-', 67.02949899132747, 0, 0, 0, 0, 0, 0, 'xiaoniu', '@dedecms ', 'http://xiaoniu.me', 'ShangHai', NULL, NULL, 'Loading ...', NULL, 7, 0, 6, 1, 0, 0, 0, '2012-05-22T11:06:19Z', '2024-10-11T18:27:18Z', 'https://avatars.githubusercontent.com/u/1764206?v=4', 'https://api.github.com/users/mycalf', 'https://github.com/mycalf', 'https://api.github.com/users/mycalf/followers', 'https://api.github.com/users/mycalf/following', 'https://api.github.com/users/mycalf/gists', 'https://api.github.com/users/mycalf/starred', 'https://api.github.com/users/mycalf/repos', 'https://api.github.com/users/mycalf/events', 'https://api.github.com/users/mycalf/received_events', 0); -INSERT INTO `developer` VALUES (1766527, 'CCoffie', 'S', -13.366180295607588, 0, 0, 0, 0, 0, 0, 'Caleb Coffie', NULL, 'https://CalebCoffie.com', 'USA', 'CalebCoffie@gmail.com', NULL, NULL, NULL, 37, 3, 21, 17, 0, 0, 0, '2012-05-22T18:35:54Z', '2024-11-02T01:13:05Z', 'https://avatars.githubusercontent.com/u/1766527?v=4', 'https://api.github.com/users/CCoffie', 'https://github.com/CCoffie', 'https://api.github.com/users/CCoffie/followers', 'https://api.github.com/users/CCoffie/following', 'https://api.github.com/users/CCoffie/gists', 'https://api.github.com/users/CCoffie/starred', 'https://api.github.com/users/CCoffie/repos', 'https://api.github.com/users/CCoffie/events', 'https://api.github.com/users/CCoffie/received_events', 0); -INSERT INTO `developer` VALUES (1771003, 'jwalton', 'S', -76.27777202134753, 0, 0, 0, 0, 0, 0, 'Jason Walton', NULL, 'https://thedreaming.org', 'Ottawa, Ontario', 'jwalton@solinkcorp.com', NULL, NULL, NULL, 104, 19, 84, 4, 0, 0, 0, '2012-05-23T17:59:25Z', '2024-10-10T17:43:19Z', 'https://avatars.githubusercontent.com/u/1771003?v=4', 'https://api.github.com/users/jwalton', 'https://github.com/jwalton', 'https://api.github.com/users/jwalton/followers', 'https://api.github.com/users/jwalton/following', 'https://api.github.com/users/jwalton/gists', 'https://api.github.com/users/jwalton/starred', 'https://api.github.com/users/jwalton/repos', 'https://api.github.com/users/jwalton/events', 'https://api.github.com/users/jwalton/received_events', 0); -INSERT INTO `developer` VALUES (1774061, 'baibaratsky', 'S', -6.1122239353136765, 0, 0, 0, 0, 0, 0, 'Andrei Baibaratsky', NULL, '', 'Barcelona, Spain', NULL, NULL, NULL, NULL, 32, 1, 37, 23, 0, 0, 0, '2012-05-24T12:48:21Z', '2024-06-29T23:06:08Z', 'https://avatars.githubusercontent.com/u/1774061?v=4', 'https://api.github.com/users/baibaratsky', 'https://github.com/baibaratsky', 'https://api.github.com/users/baibaratsky/followers', 'https://api.github.com/users/baibaratsky/following', 'https://api.github.com/users/baibaratsky/gists', 'https://api.github.com/users/baibaratsky/starred', 'https://api.github.com/users/baibaratsky/repos', 'https://api.github.com/users/baibaratsky/events', 'https://api.github.com/users/baibaratsky/received_events', 0); -INSERT INTO `developer` VALUES (1776470, 'frankreno', 'A-', 30.221189021760708, 0, 0, 0, 0, 0, 0, 'Frank Reno', 'Procore', '', 'Denver', NULL, NULL, 'Group PM @Procore, former PM and open source ambassador @SumoLogic', 'frankreno', 17, 3, 24, 56, 0, 0, 0, '2012-05-25T02:59:28Z', '2024-10-15T15:26:04Z', 'https://avatars.githubusercontent.com/u/1776470?v=4', 'https://api.github.com/users/frankreno', 'https://github.com/frankreno', 'https://api.github.com/users/frankreno/followers', 'https://api.github.com/users/frankreno/following', 'https://api.github.com/users/frankreno/gists', 'https://api.github.com/users/frankreno/starred', 'https://api.github.com/users/frankreno/repos', 'https://api.github.com/users/frankreno/events', 'https://api.github.com/users/frankreno/received_events', 0); -INSERT INTO `developer` VALUES (1788384, 'abdennour', 'S', -92.27640306185754, 0, 0, 0, 0, 0, 0, 'abdennour', '@rathath-it ', 'http://in.abdennoor.com/', 'Tunisia', NULL, 'true', 'Former full stack developer, switched to the dark-side of DevOps!', NULL, 217, 80, 254, 6, 0, 0, 0, '2012-05-29T09:42:15Z', '2024-08-29T20:16:34Z', 'https://avatars.githubusercontent.com/u/1788384?v=4', 'https://api.github.com/users/abdennour', 'https://github.com/abdennour', 'https://api.github.com/users/abdennour/followers', 'https://api.github.com/users/abdennour/following', 'https://api.github.com/users/abdennour/gists', 'https://api.github.com/users/abdennour/starred', 'https://api.github.com/users/abdennour/repos', 'https://api.github.com/users/abdennour/events', 'https://api.github.com/users/abdennour/received_events', 0); -INSERT INTO `developer` VALUES (1794593, 'ConradKurth', 'A-', 30.626517977149447, 0, 0, 0, 0, 0, 0, 'Conrad', NULL, '', NULL, NULL, NULL, NULL, NULL, 20, 0, 3, 0, 0, 0, 0, '2012-05-30T17:36:28Z', '2024-10-24T16:22:41Z', 'https://avatars.githubusercontent.com/u/1794593?v=4', 'https://api.github.com/users/ConradKurth', 'https://github.com/ConradKurth', 'https://api.github.com/users/ConradKurth/followers', 'https://api.github.com/users/ConradKurth/following', 'https://api.github.com/users/ConradKurth/gists', 'https://api.github.com/users/ConradKurth/starred', 'https://api.github.com/users/ConradKurth/repos', 'https://api.github.com/users/ConradKurth/events', 'https://api.github.com/users/ConradKurth/received_events', 0); -INSERT INTO `developer` VALUES (1800020, 'terrycorley', 'S', -38.23529411764706, 0, 0, 0, 0, 0, 0, 'Terry Corley', '@bloomberg', '', 'Fairhope, Alabama, US', NULL, NULL, 'See also @terry-sm', NULL, 60, 4, 5, 7, 0, 0, 0, '2012-05-31T17:42:56Z', '2024-03-08T13:54:51Z', 'https://avatars.githubusercontent.com/u/1800020?v=4', 'https://api.github.com/users/terrycorley', 'https://github.com/terrycorley', 'https://api.github.com/users/terrycorley/followers', 'https://api.github.com/users/terrycorley/following', 'https://api.github.com/users/terrycorley/gists', 'https://api.github.com/users/terrycorley/starred', 'https://api.github.com/users/terrycorley/repos', 'https://api.github.com/users/terrycorley/events', 'https://api.github.com/users/terrycorley/received_events', 0); -INSERT INTO `developer` VALUES (1801407, 'jwitko', 'A+', 10.831222472925528, 0, 0, 0, 0, 0, 0, 'Jason Witkowski', '@cloudstruct ', '', NULL, 'jason@witkow.ski', NULL, 'Systems / Infrastructure engineer specializing in DevOps best practices and cloud architecture.', NULL, 27, 6, 7, 0, 0, 0, 0, '2012-05-31T23:16:09Z', '2024-05-15T14:33:28Z', 'https://avatars.githubusercontent.com/u/1801407?v=4', 'https://api.github.com/users/jwitko', 'https://github.com/jwitko', 'https://api.github.com/users/jwitko/followers', 'https://api.github.com/users/jwitko/following', 'https://api.github.com/users/jwitko/gists', 'https://api.github.com/users/jwitko/starred', 'https://api.github.com/users/jwitko/repos', 'https://api.github.com/users/jwitko/events', 'https://api.github.com/users/jwitko/received_events', 0); -INSERT INTO `developer` VALUES (1822404, 'DJWassink', 'S', -8.721606317933883, 0, 0, 0, 0, 0, 0, 'Dirk-Jan Wassink', NULL, 'http://djwassink.com', 'the Netherlands', NULL, NULL, NULL, NULL, 35, 1, 16, 7, 0, 0, 0, '2012-06-06T09:32:18Z', '2024-10-27T11:21:02Z', 'https://avatars.githubusercontent.com/u/1822404?v=4', 'https://api.github.com/users/DJWassink', 'https://github.com/DJWassink', 'https://api.github.com/users/DJWassink/followers', 'https://api.github.com/users/DJWassink/following', 'https://api.github.com/users/DJWassink/gists', 'https://api.github.com/users/DJWassink/starred', 'https://api.github.com/users/DJWassink/repos', 'https://api.github.com/users/DJWassink/events', 'https://api.github.com/users/DJWassink/received_events', 0); -INSERT INTO `developer` VALUES (1824153, 'tux-mind', 'S', -59.19533613602057, 0, 0, 0, 0, 0, 0, 'Max', NULL, '', NULL, NULL, NULL, NULL, NULL, 71, 9, 240, 0, 0, 0, 0, '2012-06-06T18:05:49Z', '2023-12-12T09:28:04Z', 'https://avatars.githubusercontent.com/u/1824153?v=4', 'https://api.github.com/users/tux-mind', 'https://github.com/tux-mind', 'https://api.github.com/users/tux-mind/followers', 'https://api.github.com/users/tux-mind/following', 'https://api.github.com/users/tux-mind/gists', 'https://api.github.com/users/tux-mind/starred', 'https://api.github.com/users/tux-mind/repos', 'https://api.github.com/users/tux-mind/events', 'https://api.github.com/users/tux-mind/received_events', 0); -INSERT INTO `developer` VALUES (1835799, 'miya-masa', 'S', -37.204093000142294, 0, 0, 0, 0, 0, 0, 'Masayuki', NULL, 'https://www.miya-masa.com', NULL, NULL, NULL, NULL, NULL, 59, 3, 5, 7, 0, 0, 0, '2012-06-10T15:18:58Z', '2024-03-08T16:33:02Z', 'https://avatars.githubusercontent.com/u/1835799?v=4', 'https://api.github.com/users/miya-masa', 'https://github.com/miya-masa', 'https://api.github.com/users/miya-masa/followers', 'https://api.github.com/users/miya-masa/following', 'https://api.github.com/users/miya-masa/gists', 'https://api.github.com/users/miya-masa/starred', 'https://api.github.com/users/miya-masa/repos', 'https://api.github.com/users/miya-masa/events', 'https://api.github.com/users/miya-masa/received_events', 0); -INSERT INTO `developer` VALUES (1866448, 'yurrriq', 'S', -93.3783673656487, 0, 0, 0, 0, 0, 0, 'Eric Bailey', '@sportradar', 'https://blorg.ericb.me', 'Minneapolis, MN', NULL, NULL, 'Highly functional yak stylist, {HoT,PL}T enthusiast, {Erlang,Lisp}er, Kubernaut, MaMuTh meddler, Nix user, (comics) reader, linguaphile, musician, philomath, &c', NULL, 527, 121, 229, 645, 0, 0, 0, '2012-06-19T07:41:21Z', '2024-09-18T00:45:17Z', 'https://avatars.githubusercontent.com/u/1866448?v=4', 'https://api.github.com/users/yurrriq', 'https://github.com/yurrriq', 'https://api.github.com/users/yurrriq/followers', 'https://api.github.com/users/yurrriq/following', 'https://api.github.com/users/yurrriq/gists', 'https://api.github.com/users/yurrriq/starred', 'https://api.github.com/users/yurrriq/repos', 'https://api.github.com/users/yurrriq/events', 'https://api.github.com/users/yurrriq/received_events', 0); -INSERT INTO `developer` VALUES (1879641, 'yjqg6666', 'S', -72.20987350950901, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 102, 9, 24, 54, 0, 0, 0, '2012-06-22T03:52:41Z', '2024-10-28T11:22:04Z', 'https://avatars.githubusercontent.com/u/1879641?v=4', 'https://api.github.com/users/yjqg6666', 'https://github.com/yjqg6666', 'https://api.github.com/users/yjqg6666/followers', 'https://api.github.com/users/yjqg6666/following', 'https://api.github.com/users/yjqg6666/gists', 'https://api.github.com/users/yjqg6666/starred', 'https://api.github.com/users/yjqg6666/repos', 'https://api.github.com/users/yjqg6666/events', 'https://api.github.com/users/yjqg6666/received_events', 0); -INSERT INTO `developer` VALUES (1907761, 'enahs', 'B+', 46.37135265273605, 0, 0, 0, 0, 0, 0, 'Shane', NULL, '', 'Oakland, CA', NULL, NULL, 'SHANE', NULL, 13, 4, 8, 6, 0, 0, 0, '2012-06-30T00:55:05Z', '2024-10-10T15:52:33Z', 'https://avatars.githubusercontent.com/u/1907761?v=4', 'https://api.github.com/users/enahs', 'https://github.com/enahs', 'https://api.github.com/users/enahs/followers', 'https://api.github.com/users/enahs/following', 'https://api.github.com/users/enahs/gists', 'https://api.github.com/users/enahs/starred', 'https://api.github.com/users/enahs/repos', 'https://api.github.com/users/enahs/events', 'https://api.github.com/users/enahs/received_events', 0); -INSERT INTO `developer` VALUES (1913775, 'lukasdietrich', 'S', -17.959872839711544, 0, 0, 0, 0, 0, 0, 'Lukas Dietrich', NULL, 'https://lukasdietrich.com', 'Germany', 'lukas@lukasdietrich.com', NULL, '🐸', NULL, 42, 0, 9, 5, 0, 0, 0, '2012-07-02T11:23:02Z', '2024-10-22T11:21:38Z', 'https://avatars.githubusercontent.com/u/1913775?v=4', 'https://api.github.com/users/lukasdietrich', 'https://github.com/lukasdietrich', 'https://api.github.com/users/lukasdietrich/followers', 'https://api.github.com/users/lukasdietrich/following', 'https://api.github.com/users/lukasdietrich/gists', 'https://api.github.com/users/lukasdietrich/starred', 'https://api.github.com/users/lukasdietrich/repos', 'https://api.github.com/users/lukasdietrich/events', 'https://api.github.com/users/lukasdietrich/received_events', 0); -INSERT INTO `developer` VALUES (1946248, 'Ulexus', 'S', -54.450500358784424, 0, 0, 0, 0, 0, 0, 'Seán C. McCord', 'CyCore Systems, Inc', 'https://cycoresys.com', 'NYC', NULL, 'true', 'Principal Architect @CyCoreSystems and engineer @tkhq. Plays with Go, @kubernetes, @ceph, VoIP, and things open-source.', NULL, 66, 8, 130, 4, 0, 0, 0, '2012-07-10T01:01:04Z', '2024-09-20T00:30:41Z', 'https://avatars.githubusercontent.com/u/1946248?v=4', 'https://api.github.com/users/Ulexus', 'https://github.com/Ulexus', 'https://api.github.com/users/Ulexus/followers', 'https://api.github.com/users/Ulexus/following', 'https://api.github.com/users/Ulexus/gists', 'https://api.github.com/users/Ulexus/starred', 'https://api.github.com/users/Ulexus/repos', 'https://api.github.com/users/Ulexus/events', 'https://api.github.com/users/Ulexus/received_events', 0); -INSERT INTO `developer` VALUES (1951866, 'crazy-max', 'S', -92.89966886949534, 0, 0, 0, 0, 0, 0, 'CrazyMax', '@docker', 'https://crazymax.dev', 'France', NULL, NULL, 'Software Engineer, Open Source, Go, Containers', 'crazyws', 218, 26, 2442, 38, 0, 0, 0, '2012-07-10T18:54:34Z', '2024-10-19T11:07:54Z', 'https://avatars.githubusercontent.com/u/1951866?v=4', 'https://api.github.com/users/crazy-max', 'https://github.com/crazy-max', 'https://api.github.com/users/crazy-max/followers', 'https://api.github.com/users/crazy-max/following', 'https://api.github.com/users/crazy-max/gists', 'https://api.github.com/users/crazy-max/starred', 'https://api.github.com/users/crazy-max/repos', 'https://api.github.com/users/crazy-max/events', 'https://api.github.com/users/crazy-max/received_events', 0); -INSERT INTO `developer` VALUES (1965521, 'jtslear', 'S', -69.37879455386258, 0, 0, 0, 0, 0, 0, 'John T Skarbek', NULL, 'http://jtslear.github.io', 'Raleigh, NC', NULL, 'true', NULL, NULL, 102, 19, 12, 10, 0, 0, 0, '2012-07-12T20:22:20Z', '2024-10-22T11:21:42Z', 'https://avatars.githubusercontent.com/u/1965521?v=4', 'https://api.github.com/users/jtslear', 'https://github.com/jtslear', 'https://api.github.com/users/jtslear/followers', 'https://api.github.com/users/jtslear/following', 'https://api.github.com/users/jtslear/gists', 'https://api.github.com/users/jtslear/starred', 'https://api.github.com/users/jtslear/repos', 'https://api.github.com/users/jtslear/events', 'https://api.github.com/users/jtslear/received_events', 0); -INSERT INTO `developer` VALUES (1980110, 'amnk', 'A+', 6.808232508904055, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 31, 3, 2, 0, 0, 0, 0, '2012-07-15T18:59:02Z', '2024-08-21T07:01:54Z', 'https://avatars.githubusercontent.com/u/1980110?v=4', 'https://api.github.com/users/amnk', 'https://github.com/amnk', 'https://api.github.com/users/amnk/followers', 'https://api.github.com/users/amnk/following', 'https://api.github.com/users/amnk/gists', 'https://api.github.com/users/amnk/starred', 'https://api.github.com/users/amnk/repos', 'https://api.github.com/users/amnk/events', 'https://api.github.com/users/amnk/received_events', 0); -INSERT INTO `developer` VALUES (2006610, 'mlushpenko', 'A+', 3.532990470303665, 0, 0, 0, 0, 0, 0, 'Maksym Lushpenko', NULL, '', 'Amsterdam', NULL, NULL, NULL, 'MLushpenko', 29, 18, 14, 12, 0, 0, 0, '2012-07-19T17:31:09Z', '2024-10-10T22:21:00Z', 'https://avatars.githubusercontent.com/u/2006610?v=4', 'https://api.github.com/users/mlushpenko', 'https://github.com/mlushpenko', 'https://api.github.com/users/mlushpenko/followers', 'https://api.github.com/users/mlushpenko/following', 'https://api.github.com/users/mlushpenko/gists', 'https://api.github.com/users/mlushpenko/starred', 'https://api.github.com/users/mlushpenko/repos', 'https://api.github.com/users/mlushpenko/events', 'https://api.github.com/users/mlushpenko/received_events', 0); -INSERT INTO `developer` VALUES (2011351, 'alextes', 'S', -85.47849542802717, 0, 0, 0, 0, 0, 0, 'Alexander Tesfamichael', NULL, 'https://alextes.me/', NULL, 'alex.tesfamichael@gmail.com', NULL, NULL, 'alextes', 137, 17, 138, 19, 0, 0, 0, '2012-07-20T11:00:56Z', '2024-10-28T15:34:57Z', 'https://avatars.githubusercontent.com/u/2011351?v=4', 'https://api.github.com/users/alextes', 'https://github.com/alextes', 'https://api.github.com/users/alextes/followers', 'https://api.github.com/users/alextes/following', 'https://api.github.com/users/alextes/gists', 'https://api.github.com/users/alextes/starred', 'https://api.github.com/users/alextes/repos', 'https://api.github.com/users/alextes/events', 'https://api.github.com/users/alextes/received_events', 0); -INSERT INTO `developer` VALUES (2030965, 'duchatran', 'A-', 30.626517977149447, 0, 0, 0, 0, 0, 0, 'Duc Ha', NULL, '', 'California', NULL, NULL, NULL, NULL, 20, 0, 3, 1, 0, 0, 0, '2012-07-24T01:48:24Z', '2024-10-27T21:29:21Z', 'https://avatars.githubusercontent.com/u/2030965?v=4', 'https://api.github.com/users/duchatran', 'https://github.com/duchatran', 'https://api.github.com/users/duchatran/followers', 'https://api.github.com/users/duchatran/following', 'https://api.github.com/users/duchatran/gists', 'https://api.github.com/users/duchatran/starred', 'https://api.github.com/users/duchatran/repos', 'https://api.github.com/users/duchatran/events', 'https://api.github.com/users/duchatran/received_events', 0); -INSERT INTO `developer` VALUES (2033945, 'wallclockbuilder', 'S', -75.79919669280764, 0, 0, 0, 0, 0, 0, 'Mawuli Obuntu', '@bisq-network, @SatoshiDollarParity, @KitiwaImpactPortfolio ', 'https://www.satoshidollarparity.com', 'Hayward, California', 'wallclockbuilder@googlemail.com', 'true', 'I am a Full Stack Software Engineer with about 15 years of experience developing innovative solutions. I\'ve founded over half a dozen startups and coded them.', 'mawueli', 103, 3, 79, 518, 0, 0, 0, '2012-07-24T12:44:11Z', '2024-10-18T17:32:44Z', 'https://avatars.githubusercontent.com/u/2033945?v=4', 'https://api.github.com/users/wallclockbuilder', 'https://github.com/wallclockbuilder', 'https://api.github.com/users/wallclockbuilder/followers', 'https://api.github.com/users/wallclockbuilder/following', 'https://api.github.com/users/wallclockbuilder/gists', 'https://api.github.com/users/wallclockbuilder/starred', 'https://api.github.com/users/wallclockbuilder/repos', 'https://api.github.com/users/wallclockbuilder/events', 'https://api.github.com/users/wallclockbuilder/received_events', 0); -INSERT INTO `developer` VALUES (2098878, 'baurmatt', 'S', -53.21909444187796, 0, 0, 0, 0, 0, 0, 'Matthias Baur', '@syseleven ', '', 'Berlin', NULL, NULL, NULL, NULL, 70, 10, 20, 11, 0, 0, 0, '2012-08-05T16:03:43Z', '2024-10-10T18:39:22Z', 'https://avatars.githubusercontent.com/u/2098878?v=4', 'https://api.github.com/users/baurmatt', 'https://github.com/baurmatt', 'https://api.github.com/users/baurmatt/followers', 'https://api.github.com/users/baurmatt/following', 'https://api.github.com/users/baurmatt/gists', 'https://api.github.com/users/baurmatt/starred', 'https://api.github.com/users/baurmatt/repos', 'https://api.github.com/users/baurmatt/events', 'https://api.github.com/users/baurmatt/received_events', 0); -INSERT INTO `developer` VALUES (2099463, 'samshuster', 'A-', 34.91456355559149, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 18, 1, 4, 1, 0, 0, 0, '2012-08-05T19:14:10Z', '2024-09-25T15:06:56Z', 'https://avatars.githubusercontent.com/u/2099463?v=4', 'https://api.github.com/users/samshuster', 'https://github.com/samshuster', 'https://api.github.com/users/samshuster/followers', 'https://api.github.com/users/samshuster/following', 'https://api.github.com/users/samshuster/gists', 'https://api.github.com/users/samshuster/starred', 'https://api.github.com/users/samshuster/repos', 'https://api.github.com/users/samshuster/events', 'https://api.github.com/users/samshuster/received_events', 0); -INSERT INTO `developer` VALUES (2129762, 'dany74q', 'S', -46.869234146195616, 0, 0, 0, 0, 0, 0, 'Danny Shemesh', '@wiz-sec ', 'https://www.linkedin.com/in/dany74q', 'Israel', 'dany74q@gmail.com', NULL, 'Software is my passion.', NULL, 63, 1, 19, 0, 0, 0, 0, '2012-08-10T12:54:07Z', '2024-10-30T08:32:52Z', 'https://avatars.githubusercontent.com/u/2129762?v=4', 'https://api.github.com/users/dany74q', 'https://github.com/dany74q', 'https://api.github.com/users/dany74q/followers', 'https://api.github.com/users/dany74q/following', 'https://api.github.com/users/dany74q/gists', 'https://api.github.com/users/dany74q/starred', 'https://api.github.com/users/dany74q/repos', 'https://api.github.com/users/dany74q/events', 'https://api.github.com/users/dany74q/received_events', 0); -INSERT INTO `developer` VALUES (2142872, 'vibhavp', 'S', -69.00499714993471, 0, 0, 0, 0, 0, 0, 'Vibhav Pant', '@meganz', '', 'New Delhi, India', 'vibhavp@gmail.com', 'true', 'Emacs hacker, PL enthusiast.', NULL, 87, 34, 110, 45, 0, 0, 0, '2012-08-13T07:14:21Z', '2024-10-13T11:42:57Z', 'https://avatars.githubusercontent.com/u/2142872?v=4', 'https://api.github.com/users/vibhavp', 'https://github.com/vibhavp', 'https://api.github.com/users/vibhavp/followers', 'https://api.github.com/users/vibhavp/following', 'https://api.github.com/users/vibhavp/gists', 'https://api.github.com/users/vibhavp/starred', 'https://api.github.com/users/vibhavp/repos', 'https://api.github.com/users/vibhavp/events', 'https://api.github.com/users/vibhavp/received_events', 0); -INSERT INTO `developer` VALUES (2178421, 'kimiby', 'B', 54.21448990763802, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, 'true', NULL, NULL, 13, 0, 0, 0, 0, 0, 0, '2012-08-19T12:03:51Z', '2024-08-19T18:08:42Z', 'https://avatars.githubusercontent.com/u/2178421?v=4', 'https://api.github.com/users/kimiby', 'https://github.com/kimiby', 'https://api.github.com/users/kimiby/followers', 'https://api.github.com/users/kimiby/following', 'https://api.github.com/users/kimiby/gists', 'https://api.github.com/users/kimiby/starred', 'https://api.github.com/users/kimiby/repos', 'https://api.github.com/users/kimiby/events', 'https://api.github.com/users/kimiby/received_events', 0); -INSERT INTO `developer` VALUES (2183720, 'vincent178', 'S', -56.966037825372396, 0, 0, 0, 0, 0, 0, 'Vincent Huang', 'GOAT Group', 'https://vincent178.github.io', 'Shanghai, China', 'vh7157@gmail.com', 'true', 'Love in open-source, creator of framework LOON, contribute to varies open source projects.', NULL, 69, 40, 124, 323, 0, 0, 0, '2012-08-20T14:23:51Z', '2024-10-19T08:16:49Z', 'https://avatars.githubusercontent.com/u/2183720?v=4', 'https://api.github.com/users/vincent178', 'https://github.com/vincent178', 'https://api.github.com/users/vincent178/followers', 'https://api.github.com/users/vincent178/following', 'https://api.github.com/users/vincent178/gists', 'https://api.github.com/users/vincent178/starred', 'https://api.github.com/users/vincent178/repos', 'https://api.github.com/users/vincent178/events', 'https://api.github.com/users/vincent178/received_events', 0); -INSERT INTO `developer` VALUES (2223163, 'rajat404', 'A+', 3.6382514788253495, 0, 0, 0, 0, 0, 0, 'Rajat Goyal', NULL, 'https://rajat404.com', 'New Delhi | Bangalore', NULL, NULL, NULL, NULL, 28, 12, 23, 26, 0, 0, 0, '2012-08-26T18:42:08Z', '2024-06-11T20:14:58Z', 'https://avatars.githubusercontent.com/u/2223163?v=4', 'https://api.github.com/users/rajat404', 'https://github.com/rajat404', 'https://api.github.com/users/rajat404/followers', 'https://api.github.com/users/rajat404/following', 'https://api.github.com/users/rajat404/gists', 'https://api.github.com/users/rajat404/starred', 'https://api.github.com/users/rajat404/repos', 'https://api.github.com/users/rajat404/events', 'https://api.github.com/users/rajat404/received_events', 0); -INSERT INTO `developer` VALUES (2253692, 'knqyf263', 'S', -92.47570827231696, 0, 0, 0, 0, 0, 0, 'Teppei Fukuda', NULL, '', 'Dubai, UAE', 'knqyf263@gmail.com', NULL, NULL, NULL, 208, 13, 881, 0, 0, 0, 0, '2012-08-31T07:56:45Z', '2024-10-10T11:23:26Z', 'https://avatars.githubusercontent.com/u/2253692?v=4', 'https://api.github.com/users/knqyf263', 'https://github.com/knqyf263', 'https://api.github.com/users/knqyf263/followers', 'https://api.github.com/users/knqyf263/following', 'https://api.github.com/users/knqyf263/gists', 'https://api.github.com/users/knqyf263/starred', 'https://api.github.com/users/knqyf263/repos', 'https://api.github.com/users/knqyf263/events', 'https://api.github.com/users/knqyf263/received_events', 0); -INSERT INTO `developer` VALUES (2257501, 'brunoksato', 'S', -85.27131377468753, 0, 0, 0, 0, 0, 0, 'Bruno Sato', NULL, 'http://twitter.com/brunoksato', 'Brazil', 'bruno.sato@live.com', 'true', 'Full Stack Engineer ', 'brunoksato', 136, 52, 134, 171, 0, 0, 0, '2012-08-31T22:38:05Z', '2024-10-26T22:13:05Z', 'https://avatars.githubusercontent.com/u/2257501?v=4', 'https://api.github.com/users/brunoksato', 'https://github.com/brunoksato', 'https://api.github.com/users/brunoksato/followers', 'https://api.github.com/users/brunoksato/following', 'https://api.github.com/users/brunoksato/gists', 'https://api.github.com/users/brunoksato/starred', 'https://api.github.com/users/brunoksato/repos', 'https://api.github.com/users/brunoksato/events', 'https://api.github.com/users/brunoksato/received_events', 0); -INSERT INTO `developer` VALUES (2269242, 'nkovacs', 'S', -82.36764433299162, 0, 0, 0, 0, 0, 0, 'Nikola Kovacs', NULL, '', NULL, NULL, NULL, NULL, NULL, 157, 13, 15, 0, 0, 0, 0, '2012-09-03T08:07:05Z', '2024-10-30T13:09:48Z', 'https://avatars.githubusercontent.com/u/2269242?v=4', 'https://api.github.com/users/nkovacs', 'https://github.com/nkovacs', 'https://api.github.com/users/nkovacs/followers', 'https://api.github.com/users/nkovacs/following', 'https://api.github.com/users/nkovacs/gists', 'https://api.github.com/users/nkovacs/starred', 'https://api.github.com/users/nkovacs/repos', 'https://api.github.com/users/nkovacs/events', 'https://api.github.com/users/nkovacs/received_events', 0); -INSERT INTO `developer` VALUES (2275667, 'yanfali', 'S', -61.4233101738876, 0, 0, 0, 0, 0, 0, 'Yan-Fa Li', NULL, '', 'Bellevue, WA', 'yanfali@gmail.com', 'true', NULL, NULL, 80, 15, 26, 11, 0, 0, 0, '2012-09-04T06:18:23Z', '2024-11-01T05:58:05Z', 'https://avatars.githubusercontent.com/u/2275667?v=4', 'https://api.github.com/users/yanfali', 'https://github.com/yanfali', 'https://api.github.com/users/yanfali/followers', 'https://api.github.com/users/yanfali/following', 'https://api.github.com/users/yanfali/gists', 'https://api.github.com/users/yanfali/starred', 'https://api.github.com/users/yanfali/repos', 'https://api.github.com/users/yanfali/events', 'https://api.github.com/users/yanfali/received_events', 0); -INSERT INTO `developer` VALUES (2325888, 'RichardKnop', 'S', -91.49077199987137, 0, 0, 0, 0, 0, 0, 'Richard Knop', 'currently @arabesque-sray, before @NewsUK @GrabSG', 'http://richardknop.com/', 'London', NULL, 'true', 'Writing software for a living since 2011.', NULL, 188, 17, 517, 69, 0, 0, 0, '2012-09-11T16:39:04Z', '2024-10-29T09:02:48Z', 'https://avatars.githubusercontent.com/u/2325888?v=4', 'https://api.github.com/users/RichardKnop', 'https://github.com/RichardKnop', 'https://api.github.com/users/RichardKnop/followers', 'https://api.github.com/users/RichardKnop/following', 'https://api.github.com/users/RichardKnop/gists', 'https://api.github.com/users/RichardKnop/starred', 'https://api.github.com/users/RichardKnop/repos', 'https://api.github.com/users/RichardKnop/events', 'https://api.github.com/users/RichardKnop/received_events', 0); -INSERT INTO `developer` VALUES (2360224, 'olblak', 'S', -91.15957849767062, 0, 0, 0, 0, 0, 0, 'Olivier Vernin', 'Suse', 'https://www.olblak.com/', 'Belgium', 'me@olblak.com', NULL, 'Infrastructure Tinkerer. \r\n\r\n@updatecli founder', NULL, 219, 62, 86, 132, 0, 0, 0, '2012-09-17T05:36:51Z', '2024-11-01T07:45:14Z', 'https://avatars.githubusercontent.com/u/2360224?v=4', 'https://api.github.com/users/olblak', 'https://github.com/olblak', 'https://api.github.com/users/olblak/followers', 'https://api.github.com/users/olblak/following', 'https://api.github.com/users/olblak/gists', 'https://api.github.com/users/olblak/starred', 'https://api.github.com/users/olblak/repos', 'https://api.github.com/users/olblak/events', 'https://api.github.com/users/olblak/received_events', 0); -INSERT INTO `developer` VALUES (2379758, 'wmiller848', 'S', -70.5506685668475, 0, 34, 75, 27, 0, 0, 'William Miller', NULL, 'wcmill.com', 'San Francisco', NULL, NULL, NULL, NULL, 68, 2, 10, 0, 0, 0, 0, '2012-09-19T17:10:23Z', '2022-10-15T20:08:15Z', 'https://avatars.githubusercontent.com/u/2379758?v=4', 'https://api.github.com/users/wmiller848', 'https://github.com/wmiller848', 'https://api.github.com/users/wmiller848/followers', 'https://api.github.com/users/wmiller848/following', 'https://api.github.com/users/wmiller848/gists', 'https://api.github.com/users/wmiller848/starred', 'https://api.github.com/users/wmiller848/repos', 'https://api.github.com/users/wmiller848/events', 'https://api.github.com/users/wmiller848/received_events', 0); -INSERT INTO `developer` VALUES (2391490, 'blacklotos', 'A-', 34.35620368584521, 0, 0, 0, 0, 0, 0, 'Gotsman Kirill', NULL, '', NULL, NULL, NULL, NULL, NULL, 19, 1, 2, 0, 0, 0, 0, '2012-09-21T06:52:13Z', '2024-09-22T10:30:28Z', 'https://avatars.githubusercontent.com/u/2391490?v=4', 'https://api.github.com/users/blacklotos', 'https://github.com/blacklotos', 'https://api.github.com/users/blacklotos/followers', 'https://api.github.com/users/blacklotos/following', 'https://api.github.com/users/blacklotos/gists', 'https://api.github.com/users/blacklotos/starred', 'https://api.github.com/users/blacklotos/repos', 'https://api.github.com/users/blacklotos/events', 'https://api.github.com/users/blacklotos/received_events', 0); -INSERT INTO `developer` VALUES (2441317, 'krbalag', 'A+', 9.74940897949229, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 31, 1, 0, 4, 0, 0, 0, '2012-09-28T00:27:53Z', '2023-09-20T11:22:26Z', 'https://avatars.githubusercontent.com/u/2441317?v=4', 'https://api.github.com/users/krbalag', 'https://github.com/krbalag', 'https://api.github.com/users/krbalag/followers', 'https://api.github.com/users/krbalag/following', 'https://api.github.com/users/krbalag/gists', 'https://api.github.com/users/krbalag/starred', 'https://api.github.com/users/krbalag/repos', 'https://api.github.com/users/krbalag/events', 'https://api.github.com/users/krbalag/received_events', 0); -INSERT INTO `developer` VALUES (2446168, 'aldor007', 'S', -58.73238273812316, 0, 0, 0, 0, 0, 0, 'Marcin Kaciuba', NULL, 'https://mkaciuba.com', 'Poland', 'marcin.kaciuba@gmail.com', NULL, NULL, NULL, 74, 6, 41, 50, 0, 0, 0, '2012-09-28T14:53:14Z', '2024-10-10T10:54:13Z', 'https://avatars.githubusercontent.com/u/2446168?v=4', 'https://api.github.com/users/aldor007', 'https://github.com/aldor007', 'https://api.github.com/users/aldor007/followers', 'https://api.github.com/users/aldor007/following', 'https://api.github.com/users/aldor007/gists', 'https://api.github.com/users/aldor007/starred', 'https://api.github.com/users/aldor007/repos', 'https://api.github.com/users/aldor007/events', 'https://api.github.com/users/aldor007/received_events', 0); -INSERT INTO `developer` VALUES (2481249, 'libsamek', 'B', 55.35310923743037, 0, 0, 0, 0, 0, 0, 'Samo Jelovšek', NULL, '', 'Ljubljana, Slovenia', 'samo@jelovsek.net', NULL, NULL, NULL, 11, 0, 4, 14, 0, 0, 0, '2012-10-03T18:46:49Z', '2024-05-29T16:36:58Z', 'https://avatars.githubusercontent.com/u/2481249?v=4', 'https://api.github.com/users/libsamek', 'https://github.com/libsamek', 'https://api.github.com/users/libsamek/followers', 'https://api.github.com/users/libsamek/following', 'https://api.github.com/users/libsamek/gists', 'https://api.github.com/users/libsamek/starred', 'https://api.github.com/users/libsamek/repos', 'https://api.github.com/users/libsamek/events', 'https://api.github.com/users/libsamek/received_events', 0); -INSERT INTO `developer` VALUES (2503903, 'dcalvin', 'S', -15.304086549392593, 0, 0, 0, 0, 0, 0, 'Calvin Weng', 'PingCAP', '', 'Beijing', 'wenghao@pingcap.com', NULL, NULL, NULL, 37, 0, 37, 5, 0, 0, 0, '2012-10-07T05:05:10Z', '2024-10-28T11:22:47Z', 'https://avatars.githubusercontent.com/u/2503903?v=4', 'https://api.github.com/users/dcalvin', 'https://github.com/dcalvin', 'https://api.github.com/users/dcalvin/followers', 'https://api.github.com/users/dcalvin/following', 'https://api.github.com/users/dcalvin/gists', 'https://api.github.com/users/dcalvin/starred', 'https://api.github.com/users/dcalvin/repos', 'https://api.github.com/users/dcalvin/events', 'https://api.github.com/users/dcalvin/received_events', 0); -INSERT INTO `developer` VALUES (2534060, 'herpiko', 'S', -92.99046008872836, 0, 0, 0, 0, 0, 0, 'Herpiko Dwi Aguno', '@play3gg @BlankOn', 'http://aguno.xyz', 'Jakarta - Indonesia', 'herpiko@aguno.xyz', 'true', '~', NULL, 422, 71, 148, 53, 0, 0, 0, '2012-10-11T04:46:46Z', '2024-10-31T10:13:15Z', 'https://avatars.githubusercontent.com/u/2534060?v=4', 'https://api.github.com/users/herpiko', 'https://github.com/herpiko', 'https://api.github.com/users/herpiko/followers', 'https://api.github.com/users/herpiko/following', 'https://api.github.com/users/herpiko/gists', 'https://api.github.com/users/herpiko/starred', 'https://api.github.com/users/herpiko/repos', 'https://api.github.com/users/herpiko/events', 'https://api.github.com/users/herpiko/received_events', 0); -INSERT INTO `developer` VALUES (2536001, 'jabhishek87', 'S', -75.12011430782348, 0, 0, 0, 0, 0, 0, 'Abhishek Jaiswal (AJ)', '@Wind-River', 'http://jabhishek87.github.io/', 'Bangalore, India', 'abhishekjaiswal.kol+github@gmail.com', NULL, 'Backend Pythonista & DevOps. \r\nIntermediate Gopher, Life Long Learner\r\n', 'jabhishek87', 107, 5, 33, 35, 0, 0, 0, '2012-10-11T10:12:33Z', '2024-09-11T10:38:15Z', 'https://avatars.githubusercontent.com/u/2536001?v=4', 'https://api.github.com/users/jabhishek87', 'https://github.com/jabhishek87', 'https://api.github.com/users/jabhishek87/followers', 'https://api.github.com/users/jabhishek87/following', 'https://api.github.com/users/jabhishek87/gists', 'https://api.github.com/users/jabhishek87/starred', 'https://api.github.com/users/jabhishek87/repos', 'https://api.github.com/users/jabhishek87/events', 'https://api.github.com/users/jabhishek87/received_events', 0); -INSERT INTO `developer` VALUES (2577368, 'hacker65536', 'S', -81.58832088534413, 0, 0, 0, 0, 0, 0, 'hacker65536', NULL, '', NULL, 's.hacker65536@gmail.com', NULL, NULL, NULL, 173, 20, 9, 4, 0, 0, 0, '2012-10-17T02:22:16Z', '2024-10-18T04:00:14Z', 'https://avatars.githubusercontent.com/u/2577368?v=4', 'https://api.github.com/users/hacker65536', 'https://github.com/hacker65536', 'https://api.github.com/users/hacker65536/followers', 'https://api.github.com/users/hacker65536/following', 'https://api.github.com/users/hacker65536/gists', 'https://api.github.com/users/hacker65536/starred', 'https://api.github.com/users/hacker65536/repos', 'https://api.github.com/users/hacker65536/events', 'https://api.github.com/users/hacker65536/received_events', 0); -INSERT INTO `developer` VALUES (2601311, 'destel', 'B-', 73.3105045168095, 0, 0, 0, 0, 0, 0, 'Viktor Nikolaiev', '@readdle', '', 'Odessa', NULL, NULL, 'Readdle / Spark / Backend', NULL, 4, 0, 17, 7, 0, 0, 0, '2012-10-19T17:41:14Z', '2024-06-02T15:13:55Z', 'https://avatars.githubusercontent.com/u/2601311?v=4', 'https://api.github.com/users/destel', 'https://github.com/destel', 'https://api.github.com/users/destel/followers', 'https://api.github.com/users/destel/following', 'https://api.github.com/users/destel/gists', 'https://api.github.com/users/destel/starred', 'https://api.github.com/users/destel/repos', 'https://api.github.com/users/destel/events', 'https://api.github.com/users/destel/received_events', 0); -INSERT INTO `developer` VALUES (2611065, 'domenipavec', 'S', -60.833502067273336, 0, 0, 0, 0, 0, 0, 'Domen Ipavec', NULL, 'http://domen.ipavec.net', NULL, 'domen.ipavec@gmail.com', 'true', NULL, NULL, 83, 0, 14, 0, 0, 0, 0, '2012-10-21T07:54:03Z', '2024-10-12T15:30:08Z', 'https://avatars.githubusercontent.com/u/2611065?v=4', 'https://api.github.com/users/domenipavec', 'https://github.com/domenipavec', 'https://api.github.com/users/domenipavec/followers', 'https://api.github.com/users/domenipavec/following', 'https://api.github.com/users/domenipavec/gists', 'https://api.github.com/users/domenipavec/starred', 'https://api.github.com/users/domenipavec/repos', 'https://api.github.com/users/domenipavec/events', 'https://api.github.com/users/domenipavec/received_events', 0); -INSERT INTO `developer` VALUES (2632829, 'jduepmeier', 'S', -17.549299994867027, 0, 0, 0, 0, 0, 0, 'Jan Düpmeier', '@dm-drogeriemarkt ', '', 'Karlsruhe, Germany', 'j.duepmeier@googlemail.com', NULL, NULL, NULL, 40, 0, 17, 7, 0, 0, 0, '2012-10-23T15:32:29Z', '2024-11-02T08:45:44Z', 'https://avatars.githubusercontent.com/u/2632829?v=4', 'https://api.github.com/users/jduepmeier', 'https://github.com/jduepmeier', 'https://api.github.com/users/jduepmeier/followers', 'https://api.github.com/users/jduepmeier/following', 'https://api.github.com/users/jduepmeier/gists', 'https://api.github.com/users/jduepmeier/starred', 'https://api.github.com/users/jduepmeier/repos', 'https://api.github.com/users/jduepmeier/events', 'https://api.github.com/users/jduepmeier/received_events', 0); -INSERT INTO `developer` VALUES (2662497, 'Wadeck', 'S', -79.07378822477273, 0, 0, 0, 0, 0, 0, 'Wadeck Follonier', NULL, '', NULL, NULL, NULL, NULL, NULL, 129, 3, 19, 4, 0, 0, 0, '2012-10-27T08:01:54Z', '2024-05-20T19:11:47Z', 'https://avatars.githubusercontent.com/u/2662497?v=4', 'https://api.github.com/users/Wadeck', 'https://github.com/Wadeck', 'https://api.github.com/users/Wadeck/followers', 'https://api.github.com/users/Wadeck/following', 'https://api.github.com/users/Wadeck/gists', 'https://api.github.com/users/Wadeck/starred', 'https://api.github.com/users/Wadeck/repos', 'https://api.github.com/users/Wadeck/events', 'https://api.github.com/users/Wadeck/received_events', 0); -INSERT INTO `developer` VALUES (2730310, 'emil2k', 'S', -2.85563303731442, 0, 0, 0, 0, 0, 0, 'Emil Davtyan', 'Davtyan Technologies AB', 'https://davtyan.tech', 'Skåne, Sweden', 'emil@davtyan.tech', NULL, 'Since 2005, my work spans cloud engineering, data integration, infrastructure automation, and app development.', NULL, 31, 4, 25, 28, 0, 0, 0, '2012-11-05T22:30:04Z', '2024-10-12T08:00:22Z', 'https://avatars.githubusercontent.com/u/2730310?v=4', 'https://api.github.com/users/emil2k', 'https://github.com/emil2k', 'https://api.github.com/users/emil2k/followers', 'https://api.github.com/users/emil2k/following', 'https://api.github.com/users/emil2k/gists', 'https://api.github.com/users/emil2k/starred', 'https://api.github.com/users/emil2k/repos', 'https://api.github.com/users/emil2k/events', 'https://api.github.com/users/emil2k/received_events', 0); -INSERT INTO `developer` VALUES (2760734, 'spiffyjr', 'S', -47.54901960784312, 0, 0, 0, 0, 0, 0, 'Kyle Spraggs', NULL, '', 'Missouri, USA', NULL, NULL, NULL, NULL, 60, 30, 62, 1, 0, 0, 0, '2012-11-09T17:46:52Z', '2024-07-13T13:36:13Z', 'https://avatars.githubusercontent.com/u/2760734?v=4', 'https://api.github.com/users/spiffyjr', 'https://github.com/spiffyjr', 'https://api.github.com/users/spiffyjr/followers', 'https://api.github.com/users/spiffyjr/following', 'https://api.github.com/users/spiffyjr/gists', 'https://api.github.com/users/spiffyjr/starred', 'https://api.github.com/users/spiffyjr/repos', 'https://api.github.com/users/spiffyjr/events', 'https://api.github.com/users/spiffyjr/received_events', 0); -INSERT INTO `developer` VALUES (2772755, 'xabufr', 'S', -52.842394959549985, 0, 0, 0, 0, 0, 0, 'Thomas Loubiou', NULL, '', 'Bordeaux, France', NULL, NULL, NULL, NULL, 71, 0, 15, 13, 0, 0, 0, '2012-11-11T17:56:58Z', '2024-08-21T08:49:31Z', 'https://avatars.githubusercontent.com/u/2772755?v=4', 'https://api.github.com/users/xabufr', 'https://github.com/xabufr', 'https://api.github.com/users/xabufr/followers', 'https://api.github.com/users/xabufr/following', 'https://api.github.com/users/xabufr/gists', 'https://api.github.com/users/xabufr/starred', 'https://api.github.com/users/xabufr/repos', 'https://api.github.com/users/xabufr/events', 'https://api.github.com/users/xabufr/received_events', 0); -INSERT INTO `developer` VALUES (2778741, 'fredleger', 'S', -1.11287758346581, 0, 0, 0, 0, 0, 0, 'Frederic Leger', 'webofmars', 'http://webofmars.com/', 'Marseille, France', NULL, 'true', 'Born & grew up in Marseille among other places, i\'m now working as DevOps & try to learn more Ninja Skills every day.\r\nCurrently working as indep in @webofmars ', 'webofmars', 30, 12, 27, 105, 0, 0, 0, '2012-11-12T14:16:53Z', '2024-10-26T18:14:13Z', 'https://avatars.githubusercontent.com/u/2778741?v=4', 'https://api.github.com/users/fredleger', 'https://github.com/fredleger', 'https://api.github.com/users/fredleger/followers', 'https://api.github.com/users/fredleger/following', 'https://api.github.com/users/fredleger/gists', 'https://api.github.com/users/fredleger/starred', 'https://api.github.com/users/fredleger/repos', 'https://api.github.com/users/fredleger/events', 'https://api.github.com/users/fredleger/received_events', 0); -INSERT INTO `developer` VALUES (2904692, 'michaelgibson', 'A', 19.411089770122338, 0, 0, 0, 0, 0, 0, 'Michael Gibson', NULL, 'https://www.linkedin.com/in/michaeltgibson', NULL, NULL, NULL, NULL, NULL, 23, 8, 8, 0, 0, 0, 0, '2012-11-27T18:46:20Z', '2024-10-28T17:20:12Z', 'https://avatars.githubusercontent.com/u/2904692?v=4', 'https://api.github.com/users/michaelgibson', 'https://github.com/michaelgibson', 'https://api.github.com/users/michaelgibson/followers', 'https://api.github.com/users/michaelgibson/following', 'https://api.github.com/users/michaelgibson/gists', 'https://api.github.com/users/michaelgibson/starred', 'https://api.github.com/users/michaelgibson/repos', 'https://api.github.com/users/michaelgibson/events', 'https://api.github.com/users/michaelgibson/received_events', 0); -INSERT INTO `developer` VALUES (2912732, 'gecube', 'S', -53.54561713857786, 0, 0, 0, 0, 0, 0, 'George Gaál', NULL, '', NULL, 'gb12335@gmail.com', 'true', 'Serial DevOops', NULL, 67, 0, 48, 23, 0, 0, 0, '2012-11-28T14:54:23Z', '2024-10-21T05:03:49Z', 'https://avatars.githubusercontent.com/u/2912732?v=4', 'https://api.github.com/users/gecube', 'https://github.com/gecube', 'https://api.github.com/users/gecube/followers', 'https://api.github.com/users/gecube/following', 'https://api.github.com/users/gecube/gists', 'https://api.github.com/users/gecube/starred', 'https://api.github.com/users/gecube/repos', 'https://api.github.com/users/gecube/events', 'https://api.github.com/users/gecube/received_events', 0); -INSERT INTO `developer` VALUES (2936501, 'hori-ryota', 'S', -80.34912048773295, 0, 0, 0, 0, 0, 0, 'hori-ryota', NULL, 'https://hori-ryota.com', NULL, NULL, NULL, NULL, 'hori_ryota', 121, 3, 49, 31, 0, 0, 0, '2012-12-01T05:05:31Z', '2024-10-27T14:28:48Z', 'https://avatars.githubusercontent.com/u/2936501?v=4', 'https://api.github.com/users/hori-ryota', 'https://github.com/hori-ryota', 'https://api.github.com/users/hori-ryota/followers', 'https://api.github.com/users/hori-ryota/following', 'https://api.github.com/users/hori-ryota/gists', 'https://api.github.com/users/hori-ryota/starred', 'https://api.github.com/users/hori-ryota/repos', 'https://api.github.com/users/hori-ryota/events', 'https://api.github.com/users/hori-ryota/received_events', 0); -INSERT INTO `developer` VALUES (3017019, 'adamar', 'S', -57.67212400903243, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Melbourne', NULL, NULL, '---', NULL, 81, 10, 9, 0, 0, 0, 0, '2012-12-11T14:22:21Z', '2024-10-08T04:09:14Z', 'https://avatars.githubusercontent.com/u/3017019?v=4', 'https://api.github.com/users/adamar', 'https://github.com/adamar', 'https://api.github.com/users/adamar/followers', 'https://api.github.com/users/adamar/following', 'https://api.github.com/users/adamar/gists', 'https://api.github.com/users/adamar/starred', 'https://api.github.com/users/adamar/repos', 'https://api.github.com/users/adamar/events', 'https://api.github.com/users/adamar/received_events', 0); -INSERT INTO `developer` VALUES (3060199, 'jesserockz', 'S', -83.30319040797136, 0, 0, 0, 0, 0, 0, 'Jesse Hills', '@NabuCasa ', '', 'Wellington, New Zealand', NULL, NULL, 'Developer @NabuCasa working on @esphome ', NULL, 123, 5, 327, 10, 0, 0, 0, '2012-12-17T05:10:52Z', '2024-06-26T22:28:41Z', 'https://avatars.githubusercontent.com/u/3060199?v=4', 'https://api.github.com/users/jesserockz', 'https://github.com/jesserockz', 'https://api.github.com/users/jesserockz/followers', 'https://api.github.com/users/jesserockz/following', 'https://api.github.com/users/jesserockz/gists', 'https://api.github.com/users/jesserockz/starred', 'https://api.github.com/users/jesserockz/repos', 'https://api.github.com/users/jesserockz/events', 'https://api.github.com/users/jesserockz/received_events', 0); -INSERT INTO `developer` VALUES (3093183, 'chris-crone', 'S', -25.752285076684835, 0, 0, 0, 0, 0, 0, 'Chris Crone', '@docker', '', NULL, NULL, NULL, NULL, NULL, 42, 1, 108, 1, 0, 0, 0, '2012-12-20T21:39:26Z', '2024-08-20T18:18:47Z', 'https://avatars.githubusercontent.com/u/3093183?v=4', 'https://api.github.com/users/chris-crone', 'https://github.com/chris-crone', 'https://api.github.com/users/chris-crone/followers', 'https://api.github.com/users/chris-crone/following', 'https://api.github.com/users/chris-crone/gists', 'https://api.github.com/users/chris-crone/starred', 'https://api.github.com/users/chris-crone/repos', 'https://api.github.com/users/chris-crone/events', 'https://api.github.com/users/chris-crone/received_events', 0); -INSERT INTO `developer` VALUES (3223098, 'feng-tao', 'S', -93.27696233029297, 0, 0, 0, 0, 0, 0, 'Tao Feng', '@databricks @amundsen-io @apache ', 'https://www.linkedin.com/in/tao-f-17195814/', 'San Francisco', 'tfeng@apache.org', NULL, 'Engineering Leadership @databricks on Data Catalog && Data Lineage | @apache Airflow PMC and committer | @amundsen-io co-creator ', 'photoft45', 302, 3, 251, 240, 0, 0, 0, '2013-01-09T06:45:49Z', '2024-10-03T17:53:03Z', 'https://avatars.githubusercontent.com/u/3223098?v=4', 'https://api.github.com/users/feng-tao', 'https://github.com/feng-tao', 'https://api.github.com/users/feng-tao/followers', 'https://api.github.com/users/feng-tao/following', 'https://api.github.com/users/feng-tao/gists', 'https://api.github.com/users/feng-tao/starred', 'https://api.github.com/users/feng-tao/repos', 'https://api.github.com/users/feng-tao/events', 'https://api.github.com/users/feng-tao/received_events', 0); -INSERT INTO `developer` VALUES (3250776, 'tonglil', 'S', -50.26217837419444, 0, 0, 0, 0, 0, 0, 'Tony Li', '@nytimes', '', 'Vancouver', NULL, 'true', 'I love doing lines of code.', NULL, 62, 3, 92, 46, 0, 0, 0, '2013-01-12T08:41:52Z', '2024-10-21T17:34:24Z', 'https://avatars.githubusercontent.com/u/3250776?v=4', 'https://api.github.com/users/tonglil', 'https://github.com/tonglil', 'https://api.github.com/users/tonglil/followers', 'https://api.github.com/users/tonglil/following', 'https://api.github.com/users/tonglil/gists', 'https://api.github.com/users/tonglil/starred', 'https://api.github.com/users/tonglil/repos', 'https://api.github.com/users/tonglil/events', 'https://api.github.com/users/tonglil/received_events', 0); -INSERT INTO `developer` VALUES (3251373, 'mahjonp', 'A+', 5.294916996760223, 0, 0, 0, 0, 0, 0, NULL, '@PingCAP', '', 'HangZhou', 'junpeng.man@gmail.com', NULL, NULL, NULL, 26, 2, 57, 86, 0, 0, 0, '2013-01-12T11:19:34Z', '2024-09-24T04:04:20Z', 'https://avatars.githubusercontent.com/u/3251373?v=4', 'https://api.github.com/users/mahjonp', 'https://github.com/mahjonp', 'https://api.github.com/users/mahjonp/followers', 'https://api.github.com/users/mahjonp/following', 'https://api.github.com/users/mahjonp/gists', 'https://api.github.com/users/mahjonp/starred', 'https://api.github.com/users/mahjonp/repos', 'https://api.github.com/users/mahjonp/events', 'https://api.github.com/users/mahjonp/received_events', 0); -INSERT INTO `developer` VALUES (3265455, 'msvticket', 'A+', 12.215305517908225, 0, 0, 0, 0, 0, 0, 'Mårten Svantesson', 'Ticket Privatresor', '', 'Stockholm', NULL, NULL, NULL, NULL, 27, 0, 5, 1, 0, 0, 0, '2013-01-14T13:51:29Z', '2024-10-24T21:02:03Z', 'https://avatars.githubusercontent.com/u/3265455?v=4', 'https://api.github.com/users/msvticket', 'https://github.com/msvticket', 'https://api.github.com/users/msvticket/followers', 'https://api.github.com/users/msvticket/following', 'https://api.github.com/users/msvticket/gists', 'https://api.github.com/users/msvticket/starred', 'https://api.github.com/users/msvticket/repos', 'https://api.github.com/users/msvticket/events', 'https://api.github.com/users/msvticket/received_events', 0); -INSERT INTO `developer` VALUES (3298471, 'bharghav9', 'C', 94.36512811941238, 0, 0, 0, 0, 0, 0, 'Vijay Bheemineni', NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 0, 0, 0, '2013-01-17T17:44:12Z', '2016-05-25T18:11:53Z', 'https://avatars.githubusercontent.com/u/3298471?v=4', 'https://api.github.com/users/bharghav9', 'https://github.com/bharghav9', 'https://api.github.com/users/bharghav9/followers', 'https://api.github.com/users/bharghav9/following', 'https://api.github.com/users/bharghav9/gists', 'https://api.github.com/users/bharghav9/starred', 'https://api.github.com/users/bharghav9/repos', 'https://api.github.com/users/bharghav9/events', 'https://api.github.com/users/bharghav9/received_events', 0); -INSERT INTO `developer` VALUES (3335446, 'jayste', 'C+', 77.15598175813956, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 6, 0, 0, 0, 0, 0, 0, '2013-01-22T04:47:08Z', '2024-09-10T08:37:20Z', 'https://avatars.githubusercontent.com/u/3335446?v=4', 'https://api.github.com/users/jayste', 'https://github.com/jayste', 'https://api.github.com/users/jayste/followers', 'https://api.github.com/users/jayste/following', 'https://api.github.com/users/jayste/gists', 'https://api.github.com/users/jayste/starred', 'https://api.github.com/users/jayste/repos', 'https://api.github.com/users/jayste/events', 'https://api.github.com/users/jayste/received_events', 0); -INSERT INTO `developer` VALUES (3340262, 'tlvenn', 'S', -61.4233101738876, 0, 0, 0, 0, 0, 0, 'Christian Meunier', NULL, '', 'Hong Kong', 'chris@magelo.com', NULL, NULL, 'tlvenn', 80, 31, 26, 28, 0, 0, 0, '2013-01-22T15:00:53Z', '2024-10-26T15:23:26Z', 'https://avatars.githubusercontent.com/u/3340262?v=4', 'https://api.github.com/users/tlvenn', 'https://github.com/tlvenn', 'https://api.github.com/users/tlvenn/followers', 'https://api.github.com/users/tlvenn/following', 'https://api.github.com/users/tlvenn/gists', 'https://api.github.com/users/tlvenn/starred', 'https://api.github.com/users/tlvenn/repos', 'https://api.github.com/users/tlvenn/events', 'https://api.github.com/users/tlvenn/received_events', 0); -INSERT INTO `developer` VALUES (3345293, 'silentred', 'S', -98.18087001487244, 0, 0, 0, 1780, 24, 0, 'NightsWatch', NULL, 'http://silentred.github.io', 'Hangzhou', 'silentred3@gmail.com', NULL, 'A software engineer lost in the binary world.', NULL, 99, 1, 53, 67, 0, 0, 0, '2013-01-23T00:51:34Z', '2024-11-02T07:13:36Z', 'https://avatars.githubusercontent.com/u/3345293?v=4', 'https://api.github.com/users/silentred', 'https://github.com/silentred', 'https://api.github.com/users/silentred/followers', 'https://api.github.com/users/silentred/following', 'https://api.github.com/users/silentred/gists', 'https://api.github.com/users/silentred/starred', 'https://api.github.com/users/silentred/repos', 'https://api.github.com/users/silentred/events', 'https://api.github.com/users/silentred/received_events', 0); -INSERT INTO `developer` VALUES (3352585, 'okhowang', 'C', 164.82648764879454, 0, 10, 19, 145, 5, 0, NULL, 'Tencent', '', 'Shenzhen', NULL, NULL, NULL, NULL, 57, 7, 38, 13, 0, 0, 0, '2013-01-23T11:31:10Z', '2024-10-28T16:15:34Z', 'https://avatars.githubusercontent.com/u/3352585?v=4', 'https://api.github.com/users/okhowang', 'https://github.com/okhowang', 'https://api.github.com/users/okhowang/followers', 'https://api.github.com/users/okhowang/following', 'https://api.github.com/users/okhowang/gists', 'https://api.github.com/users/okhowang/starred', 'https://api.github.com/users/okhowang/repos', 'https://api.github.com/users/okhowang/events', 'https://api.github.com/users/okhowang/received_events', 0); -INSERT INTO `developer` VALUES (3412241, 'emirb', 'B', 55.328746378139016, 0, 0, 0, 0, 0, 0, 'Emir Beganović', 'Booking.com', '', 'Amsterdam', NULL, NULL, NULL, NULL, 8, 7, 54, 70, 0, 0, 0, '2013-01-29T02:35:32Z', '2024-09-10T22:10:23Z', 'https://avatars.githubusercontent.com/u/3412241?v=4', 'https://api.github.com/users/emirb', 'https://github.com/emirb', 'https://api.github.com/users/emirb/followers', 'https://api.github.com/users/emirb/following', 'https://api.github.com/users/emirb/gists', 'https://api.github.com/users/emirb/starred', 'https://api.github.com/users/emirb/repos', 'https://api.github.com/users/emirb/events', 'https://api.github.com/users/emirb/received_events', 0); -INSERT INTO `developer` VALUES (3422255, 'kmcquade', 'S', -93.44248133866964, 0, 0, 0, 0, 0, 0, 'Kinnaird McQuade', 'NightVision Security', 'https://kmcquade.com', 'us-east-1', NULL, NULL, 'Founder/CTO @nvsecurity. I build security testing tools, mostly around AppSec, CloudSec, and AWS. Author of Cloudsplaining and Endgame.', 'kmcquade3', 296, 96, 353, 290, 0, 0, 0, '2013-01-30T00:12:42Z', '2024-10-11T15:01:31Z', 'https://avatars.githubusercontent.com/u/3422255?v=4', 'https://api.github.com/users/kmcquade', 'https://github.com/kmcquade', 'https://api.github.com/users/kmcquade/followers', 'https://api.github.com/users/kmcquade/following', 'https://api.github.com/users/kmcquade/gists', 'https://api.github.com/users/kmcquade/starred', 'https://api.github.com/users/kmcquade/repos', 'https://api.github.com/users/kmcquade/events', 'https://api.github.com/users/kmcquade/received_events', 0); -INSERT INTO `developer` VALUES (3423547, 's-takehana', 'C+', 82.29993968296601, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 1, 5, 1, 0, 0, 0, '2013-01-30T03:13:29Z', '2024-04-13T12:53:53Z', 'https://avatars.githubusercontent.com/u/3423547?v=4', 'https://api.github.com/users/s-takehana', 'https://github.com/s-takehana', 'https://api.github.com/users/s-takehana/followers', 'https://api.github.com/users/s-takehana/following', 'https://api.github.com/users/s-takehana/gists', 'https://api.github.com/users/s-takehana/starred', 'https://api.github.com/users/s-takehana/repos', 'https://api.github.com/users/s-takehana/events', 'https://api.github.com/users/s-takehana/received_events', 0); -INSERT INTO `developer` VALUES (3449337, 'loshz', 'A', 19.203937687998142, 0, 0, 0, 0, 0, 0, 'Dan', NULL, 'https://loshz.com', NULL, 'danbond@protonmail.com', NULL, 'Systems programmer, working on Linux networking and security.', NULL, 20, 0, 72, 120, 0, 0, 0, '2013-02-01T14:22:38Z', '2024-10-28T14:39:23Z', 'https://avatars.githubusercontent.com/u/3449337?v=4', 'https://api.github.com/users/loshz', 'https://github.com/loshz', 'https://api.github.com/users/loshz/followers', 'https://api.github.com/users/loshz/following', 'https://api.github.com/users/loshz/gists', 'https://api.github.com/users/loshz/starred', 'https://api.github.com/users/loshz/repos', 'https://api.github.com/users/loshz/events', 'https://api.github.com/users/loshz/received_events', 0); -INSERT INTO `developer` VALUES (3463175, 'metajiji', 'S', -51.08005700872287, 0, 0, 0, 0, 0, 0, 'Denis Kadyshev', NULL, 'http://metajiji.blogspot.com', 'Novosibirsk', NULL, 'true', NULL, NULL, 70, 24, 12, 7, 0, 0, 0, '2013-02-03T12:49:03Z', '2024-09-30T06:10:14Z', 'https://avatars.githubusercontent.com/u/3463175?v=4', 'https://api.github.com/users/metajiji', 'https://github.com/metajiji', 'https://api.github.com/users/metajiji/followers', 'https://api.github.com/users/metajiji/following', 'https://api.github.com/users/metajiji/gists', 'https://api.github.com/users/metajiji/starred', 'https://api.github.com/users/metajiji/repos', 'https://api.github.com/users/metajiji/events', 'https://api.github.com/users/metajiji/received_events', 0); -INSERT INTO `developer` VALUES (3473393, 'kiliczsh', 'S', -44.67159961016136, 0, 0, 0, 0, 0, 0, 'Muhammed Kılıç', NULL, 'muhammedkilic.com', NULL, NULL, 'true', 'Senior Software Engineer', NULL, 56, 8, 157, 1391, 0, 0, 0, '2013-02-04T16:42:28Z', '2024-10-31T14:15:51Z', 'https://avatars.githubusercontent.com/u/3473393?v=4', 'https://api.github.com/users/kiliczsh', 'https://github.com/kiliczsh', 'https://api.github.com/users/kiliczsh/followers', 'https://api.github.com/users/kiliczsh/following', 'https://api.github.com/users/kiliczsh/gists', 'https://api.github.com/users/kiliczsh/starred', 'https://api.github.com/users/kiliczsh/repos', 'https://api.github.com/users/kiliczsh/events', 'https://api.github.com/users/kiliczsh/received_events', 0); -INSERT INTO `developer` VALUES (3499079, 'antness', 'B', 51.27331343704979, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 13, 0, 2, 1, 0, 0, 0, '2013-02-07T07:07:40Z', '2024-08-28T16:23:29Z', 'https://avatars.githubusercontent.com/u/3499079?v=4', 'https://api.github.com/users/antness', 'https://github.com/antness', 'https://api.github.com/users/antness/followers', 'https://api.github.com/users/antness/following', 'https://api.github.com/users/antness/gists', 'https://api.github.com/users/antness/starred', 'https://api.github.com/users/antness/repos', 'https://api.github.com/users/antness/events', 'https://api.github.com/users/antness/received_events', 0); -INSERT INTO `developer` VALUES (3519911, 'bruston', 'A+', 11.762977024625254, 0, 0, 0, 0, 0, 0, 'Benjamin Ruston', NULL, '', 'UK', NULL, 'true', NULL, NULL, 24, 4, 29, 92, 0, 0, 0, '2013-02-09T16:56:05Z', '2022-02-21T22:05:05Z', 'https://avatars.githubusercontent.com/u/3519911?v=4', 'https://api.github.com/users/bruston', 'https://github.com/bruston', 'https://api.github.com/users/bruston/followers', 'https://api.github.com/users/bruston/following', 'https://api.github.com/users/bruston/gists', 'https://api.github.com/users/bruston/starred', 'https://api.github.com/users/bruston/repos', 'https://api.github.com/users/bruston/events', 'https://api.github.com/users/bruston/received_events', 0); -INSERT INTO `developer` VALUES (3577968, 'Rhymond', 'S', -63.89312376659571, 0, 0, 0, 0, 0, 0, 'Raymond', NULL, '', 'United Kingdom', NULL, NULL, 'In order to understand recursion, you must first understand recursion', NULL, 79, 1, 89, 26, 0, 0, 0, '2013-02-12T19:41:34Z', '2024-09-25T06:57:01Z', 'https://avatars.githubusercontent.com/u/3577968?v=4', 'https://api.github.com/users/Rhymond', 'https://github.com/Rhymond', 'https://api.github.com/users/Rhymond/followers', 'https://api.github.com/users/Rhymond/following', 'https://api.github.com/users/Rhymond/gists', 'https://api.github.com/users/Rhymond/starred', 'https://api.github.com/users/Rhymond/repos', 'https://api.github.com/users/Rhymond/events', 'https://api.github.com/users/Rhymond/received_events', 0); -INSERT INTO `developer` VALUES (3711645, 'cavemanpi', 'S', -9.20641562627258, 0, 0, 0, 0, 0, 0, 'Kevin Johnson', NULL, '', NULL, NULL, NULL, NULL, NULL, 35, 0, 18, 12, 0, 0, 0, '2013-02-27T02:43:24Z', '2024-10-14T02:44:06Z', 'https://avatars.githubusercontent.com/u/3711645?v=4', 'https://api.github.com/users/cavemanpi', 'https://github.com/cavemanpi', 'https://api.github.com/users/cavemanpi/followers', 'https://api.github.com/users/cavemanpi/following', 'https://api.github.com/users/cavemanpi/gists', 'https://api.github.com/users/cavemanpi/starred', 'https://api.github.com/users/cavemanpi/repos', 'https://api.github.com/users/cavemanpi/events', 'https://api.github.com/users/cavemanpi/received_events', 0); -INSERT INTO `developer` VALUES (3726205, 'abrander', 'S', -39.62135005201812, 0, 0, 0, 0, 0, 0, 'Anders Brander', NULL, '', 'Aalborg, Denmark', 'anders@brander.dk', 'true', NULL, NULL, 53, 1, 57, 25, 0, 0, 0, '2013-02-28T10:12:41Z', '2024-10-31T19:59:22Z', 'https://avatars.githubusercontent.com/u/3726205?v=4', 'https://api.github.com/users/abrander', 'https://github.com/abrander', 'https://api.github.com/users/abrander/followers', 'https://api.github.com/users/abrander/following', 'https://api.github.com/users/abrander/gists', 'https://api.github.com/users/abrander/starred', 'https://api.github.com/users/abrander/repos', 'https://api.github.com/users/abrander/events', 'https://api.github.com/users/abrander/received_events', 0); -INSERT INTO `developer` VALUES (3833685, 'shibumi', 'S', -90.43428439911484, 0, 0, 0, 0, 0, 0, 'Christian Rebischke', '@Google', 'https://shibumi.dev', 'Germany', 'chris@shibumi.dev', 'true', 'Site Reliability Engineer @google ', 'sh1bumi', 174, 16, 332, 102, 0, 0, 0, '2013-03-11T16:31:14Z', '2024-09-17T13:42:47Z', 'https://avatars.githubusercontent.com/u/3833685?v=4', 'https://api.github.com/users/shibumi', 'https://github.com/shibumi', 'https://api.github.com/users/shibumi/followers', 'https://api.github.com/users/shibumi/following', 'https://api.github.com/users/shibumi/gists', 'https://api.github.com/users/shibumi/starred', 'https://api.github.com/users/shibumi/repos', 'https://api.github.com/users/shibumi/events', 'https://api.github.com/users/shibumi/received_events', 0); -INSERT INTO `developer` VALUES (3841578, 'ankitstarski', 'A-', 36.35850218282528, 0, 0, 0, 0, 0, 0, 'Ankit', NULL, '', 'Bangalore, India', 'ankitstarski@gmail.com', NULL, NULL, NULL, 15, 1, 21, 46, 0, 0, 0, '2013-03-12T10:45:41Z', '2024-09-25T09:26:04Z', 'https://avatars.githubusercontent.com/u/3841578?v=4', 'https://api.github.com/users/ankitstarski', 'https://github.com/ankitstarski', 'https://api.github.com/users/ankitstarski/followers', 'https://api.github.com/users/ankitstarski/following', 'https://api.github.com/users/ankitstarski/gists', 'https://api.github.com/users/ankitstarski/starred', 'https://api.github.com/users/ankitstarski/repos', 'https://api.github.com/users/ankitstarski/events', 'https://api.github.com/users/ankitstarski/received_events', 0); -INSERT INTO `developer` VALUES (3885905, 'szeist', 'B', 50.651461750917484, 0, 0, 0, 0, 0, 0, 'István Szénási', NULL, '', 'Hungary', 'szeist@gmail.com', NULL, NULL, NULL, 12, 1, 6, 9, 0, 0, 0, '2013-03-16T20:38:52Z', '2024-10-14T09:51:15Z', 'https://avatars.githubusercontent.com/u/3885905?v=4', 'https://api.github.com/users/szeist', 'https://github.com/szeist', 'https://api.github.com/users/szeist/followers', 'https://api.github.com/users/szeist/following', 'https://api.github.com/users/szeist/gists', 'https://api.github.com/users/szeist/starred', 'https://api.github.com/users/szeist/repos', 'https://api.github.com/users/szeist/events', 'https://api.github.com/users/szeist/received_events', 0); -INSERT INTO `developer` VALUES (3948217, 'sendyhalim', 'S', -66.83644641334368, 0, 0, 0, 0, 0, 0, 'Sendy Halim', NULL, 'https://blog.wavvel.com', 'Jakarta, Indonesia', NULL, 'true', NULL, NULL, 85, 2, 60, 13, 0, 0, 0, '2013-03-23T09:02:12Z', '2024-06-30T04:59:58Z', 'https://avatars.githubusercontent.com/u/3948217?v=4', 'https://api.github.com/users/sendyhalim', 'https://github.com/sendyhalim', 'https://api.github.com/users/sendyhalim/followers', 'https://api.github.com/users/sendyhalim/following', 'https://api.github.com/users/sendyhalim/gists', 'https://api.github.com/users/sendyhalim/starred', 'https://api.github.com/users/sendyhalim/repos', 'https://api.github.com/users/sendyhalim/events', 'https://api.github.com/users/sendyhalim/received_events', 0); -INSERT INTO `developer` VALUES (4240075, 'JoseRoman', 'A', 22.570180733179967, 0, 0, 0, 0, 0, 0, 'Jose Roman', NULL, '', NULL, NULL, NULL, NULL, NULL, 25, 1, 0, 0, 0, 0, 0, '2013-04-24T00:02:01Z', '2024-11-02T00:59:10Z', 'https://avatars.githubusercontent.com/u/4240075?v=4', 'https://api.github.com/users/JoseRoman', 'https://github.com/JoseRoman', 'https://api.github.com/users/JoseRoman/followers', 'https://api.github.com/users/JoseRoman/following', 'https://api.github.com/users/JoseRoman/gists', 'https://api.github.com/users/JoseRoman/starred', 'https://api.github.com/users/JoseRoman/repos', 'https://api.github.com/users/JoseRoman/events', 'https://api.github.com/users/JoseRoman/received_events', 0); -INSERT INTO `developer` VALUES (4282712, 'bolkedebruin', 'S', -58.06298319484409, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 71, 5, 86, 2, 0, 0, 0, '2013-04-28T18:00:47Z', '2024-08-18T11:02:03Z', 'https://avatars.githubusercontent.com/u/4282712?v=4', 'https://api.github.com/users/bolkedebruin', 'https://github.com/bolkedebruin', 'https://api.github.com/users/bolkedebruin/followers', 'https://api.github.com/users/bolkedebruin/following', 'https://api.github.com/users/bolkedebruin/gists', 'https://api.github.com/users/bolkedebruin/starred', 'https://api.github.com/users/bolkedebruin/repos', 'https://api.github.com/users/bolkedebruin/events', 'https://api.github.com/users/bolkedebruin/received_events', 0); -INSERT INTO `developer` VALUES (4294781, 'DzeryCZ', 'A+', 5.147058823529416, 0, 0, 0, 0, 0, 0, 'Jaroslav Živný', 'ErsteBank', '', 'Vienna', 'jarda668@gmail.com', NULL, NULL, NULL, 30, 11, 6, 7, 0, 0, 0, '2013-04-29T17:38:15Z', '2024-10-28T19:19:56Z', 'https://avatars.githubusercontent.com/u/4294781?v=4', 'https://api.github.com/users/DzeryCZ', 'https://github.com/DzeryCZ', 'https://api.github.com/users/DzeryCZ/followers', 'https://api.github.com/users/DzeryCZ/following', 'https://api.github.com/users/DzeryCZ/gists', 'https://api.github.com/users/DzeryCZ/starred', 'https://api.github.com/users/DzeryCZ/repos', 'https://api.github.com/users/DzeryCZ/events', 'https://api.github.com/users/DzeryCZ/received_events', 0); -INSERT INTO `developer` VALUES (4298450, 'saurav12', 'B+', 40.243901672343895, 0, 0, 0, 0, 0, 0, 'Saurav Rastogi', '@razorpay', 'http://saurav.design', 'India', 'saurav.rastogi25@gmail.com', 'true', 'A designer who loves to code! Passionate about design systems. Love interaction design. Die-hard football/CR7 fan!', 'rastogi_saurav', 13, 4, 38, 52, 0, 0, 0, '2013-04-30T03:42:54Z', '2024-09-27T08:14:49Z', 'https://avatars.githubusercontent.com/u/4298450?v=4', 'https://api.github.com/users/saurav12', 'https://github.com/saurav12', 'https://api.github.com/users/saurav12/followers', 'https://api.github.com/users/saurav12/following', 'https://api.github.com/users/saurav12/gists', 'https://api.github.com/users/saurav12/starred', 'https://api.github.com/users/saurav12/repos', 'https://api.github.com/users/saurav12/events', 'https://api.github.com/users/saurav12/received_events', 0); -INSERT INTO `developer` VALUES (4497866, 'reinier-vegter', 'A-', 28.074401579438092, 0, 0, 0, 0, 0, 0, 'Reinier Vegter', NULL, '', NULL, NULL, NULL, 'security researcher, (web/api) developer, ethical hacker, secure coding instructor', NULL, 22, 0, 1, 2, 0, 0, 0, '2013-05-22T09:17:37Z', '2024-06-05T14:50:49Z', 'https://avatars.githubusercontent.com/u/4497866?v=4', 'https://api.github.com/users/reinier-vegter', 'https://github.com/reinier-vegter', 'https://api.github.com/users/reinier-vegter/followers', 'https://api.github.com/users/reinier-vegter/following', 'https://api.github.com/users/reinier-vegter/gists', 'https://api.github.com/users/reinier-vegter/starred', 'https://api.github.com/users/reinier-vegter/repos', 'https://api.github.com/users/reinier-vegter/events', 'https://api.github.com/users/reinier-vegter/received_events', 0); -INSERT INTO `developer` VALUES (4546298, 'aditmeno', 'A-', 26.277448236316147, 0, 0, 0, 0, 0, 0, 'Aditya Menon', NULL, '', 'Berlin, Germany', NULL, NULL, NULL, NULL, 21, 0, 5, 3, 0, 0, 0, '2013-05-28T06:50:38Z', '2024-10-28T22:35:11Z', 'https://avatars.githubusercontent.com/u/4546298?v=4', 'https://api.github.com/users/aditmeno', 'https://github.com/aditmeno', 'https://api.github.com/users/aditmeno/followers', 'https://api.github.com/users/aditmeno/following', 'https://api.github.com/users/aditmeno/gists', 'https://api.github.com/users/aditmeno/starred', 'https://api.github.com/users/aditmeno/repos', 'https://api.github.com/users/aditmeno/events', 'https://api.github.com/users/aditmeno/received_events', 0); -INSERT INTO `developer` VALUES (4571133, 'lscieux', 'B+', 48.90997568280602, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 12, 0, 9, 12, 0, 0, 0, '2013-05-30T14:04:46Z', '2019-05-24T12:25:46Z', 'https://avatars.githubusercontent.com/u/4571133?v=4', 'https://api.github.com/users/lscieux', 'https://github.com/lscieux', 'https://api.github.com/users/lscieux/followers', 'https://api.github.com/users/lscieux/following', 'https://api.github.com/users/lscieux/gists', 'https://api.github.com/users/lscieux/starred', 'https://api.github.com/users/lscieux/repos', 'https://api.github.com/users/lscieux/events', 'https://api.github.com/users/lscieux/received_events', 0); -INSERT INTO `developer` VALUES (4622615, 'tstorch', 'B', 55.23507734084734, 0, 0, 0, 0, 0, 0, 'Tristan Storch', NULL, '', 'Münster, Germany', NULL, NULL, NULL, NULL, 10, 0, 9, 0, 0, 0, 0, '2013-06-05T16:21:22Z', '2022-12-30T10:40:02Z', 'https://avatars.githubusercontent.com/u/4622615?v=4', 'https://api.github.com/users/tstorch', 'https://github.com/tstorch', 'https://api.github.com/users/tstorch/followers', 'https://api.github.com/users/tstorch/following', 'https://api.github.com/users/tstorch/gists', 'https://api.github.com/users/tstorch/starred', 'https://api.github.com/users/tstorch/repos', 'https://api.github.com/users/tstorch/events', 'https://api.github.com/users/tstorch/received_events', 0); -INSERT INTO `developer` VALUES (4633773, 'nejtr0n', 'S', -59.55353324807755, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 85, 6, 8, 4, 0, 0, 0, '2013-06-06T19:29:39Z', '2024-10-15T12:59:58Z', 'https://avatars.githubusercontent.com/u/4633773?v=4', 'https://api.github.com/users/nejtr0n', 'https://github.com/nejtr0n', 'https://api.github.com/users/nejtr0n/followers', 'https://api.github.com/users/nejtr0n/following', 'https://api.github.com/users/nejtr0n/gists', 'https://api.github.com/users/nejtr0n/starred', 'https://api.github.com/users/nejtr0n/repos', 'https://api.github.com/users/nejtr0n/events', 'https://api.github.com/users/nejtr0n/received_events', 0); -INSERT INTO `developer` VALUES (4655775, 'austince', 'S', -86.93951418256253, 0, 0, 0, 0, 0, 0, 'Austin Cawley-Edwards', '@confluentinc', '', 'Brooklyn, NY', 'austin.cawley@gmail.com', 'true', 'Engineering, Stream Processing @confluentinc \r\n\r\n', 'austin_space_ce', 149, 10, 105, 398, 0, 0, 0, '2013-06-09T19:24:54Z', '2024-09-16T15:56:29Z', 'https://avatars.githubusercontent.com/u/4655775?v=4', 'https://api.github.com/users/austince', 'https://github.com/austince', 'https://api.github.com/users/austince/followers', 'https://api.github.com/users/austince/following', 'https://api.github.com/users/austince/gists', 'https://api.github.com/users/austince/starred', 'https://api.github.com/users/austince/repos', 'https://api.github.com/users/austince/events', 'https://api.github.com/users/austince/received_events', 0); -INSERT INTO `developer` VALUES (4741312, 'devGregA', 'A', 18.61670952222586, 0, 0, 0, 0, 0, 0, 'Greg Anderson', NULL, '', NULL, NULL, NULL, NULL, NULL, 21, 2, 33, 0, 0, 0, 0, '2013-06-19T18:49:00Z', '2024-10-31T18:06:08Z', 'https://avatars.githubusercontent.com/u/4741312?v=4', 'https://api.github.com/users/devGregA', 'https://github.com/devGregA', 'https://api.github.com/users/devGregA/followers', 'https://api.github.com/users/devGregA/following', 'https://api.github.com/users/devGregA/gists', 'https://api.github.com/users/devGregA/starred', 'https://api.github.com/users/devGregA/repos', 'https://api.github.com/users/devGregA/events', 'https://api.github.com/users/devGregA/received_events', 0); -INSERT INTO `developer` VALUES (4772216, 'craigfurman', 'S', -62.758369033357944, 0, 0, 0, 0, 0, 0, 'Craig Furman', NULL, '', 'London', NULL, NULL, NULL, NULL, 81, 8, 32, 5, 0, 0, 0, '2013-06-22T09:28:51Z', '2024-10-14T14:15:23Z', 'https://avatars.githubusercontent.com/u/4772216?v=4', 'https://api.github.com/users/craigfurman', 'https://github.com/craigfurman', 'https://api.github.com/users/craigfurman/followers', 'https://api.github.com/users/craigfurman/following', 'https://api.github.com/users/craigfurman/gists', 'https://api.github.com/users/craigfurman/starred', 'https://api.github.com/users/craigfurman/repos', 'https://api.github.com/users/craigfurman/events', 'https://api.github.com/users/craigfurman/received_events', 0); -INSERT INTO `developer` VALUES (4787256, 'erickskrauch', 'S', -37.064928009979205, 0, 0, 0, 0, 0, 0, 'ErickSkrauch', '@elyby ', 'https://t.me/erickskrauch', 'Poland, Krakow', 'erickskrauch@ely.by', 'true', NULL, 'erickskrauch', 53, 1, 24, 5, 0, 0, 0, '2013-06-23T14:08:37Z', '2024-10-27T01:34:34Z', 'https://avatars.githubusercontent.com/u/4787256?v=4', 'https://api.github.com/users/erickskrauch', 'https://github.com/erickskrauch', 'https://api.github.com/users/erickskrauch/followers', 'https://api.github.com/users/erickskrauch/following', 'https://api.github.com/users/erickskrauch/gists', 'https://api.github.com/users/erickskrauch/starred', 'https://api.github.com/users/erickskrauch/repos', 'https://api.github.com/users/erickskrauch/events', 'https://api.github.com/users/erickskrauch/received_events', 0); -INSERT INTO `developer` VALUES (4882541, 'Wonong', 'A', 19.414703138276934, 0, 0, 0, 0, 0, 0, 'Wonyeong Choi', 'Samsung Electronics', 'https://www.linkedin.com/in/wonyeongchoi/', 'Korea', 'ciwnyg0815@gmail.com', NULL, 'Serial mistaker.\r\nI learn from mistakes and write codes to prevent same mistakes👨‍💻', NULL, 21, 1, 26, 41, 0, 0, 0, '2013-06-29T12:58:05Z', '2024-10-04T03:01:42Z', 'https://avatars.githubusercontent.com/u/4882541?v=4', 'https://api.github.com/users/Wonong', 'https://github.com/Wonong', 'https://api.github.com/users/Wonong/followers', 'https://api.github.com/users/Wonong/following', 'https://api.github.com/users/Wonong/gists', 'https://api.github.com/users/Wonong/starred', 'https://api.github.com/users/Wonong/repos', 'https://api.github.com/users/Wonong/events', 'https://api.github.com/users/Wonong/received_events', 0); -INSERT INTO `developer` VALUES (4926491, 'huangwei2013', 'S', -18.202894766108855, 0, 0, 0, 0, 0, 0, 'chris', NULL, '', 'shenzhen,china', '38746057@qq.com', 'true', NULL, NULL, 40, 1, 20, 13, 0, 0, 0, '2013-07-03T03:14:24Z', '2024-08-27T14:04:31Z', 'https://avatars.githubusercontent.com/u/4926491?v=4', 'https://api.github.com/users/huangwei2013', 'https://github.com/huangwei2013', 'https://api.github.com/users/huangwei2013/followers', 'https://api.github.com/users/huangwei2013/following', 'https://api.github.com/users/huangwei2013/gists', 'https://api.github.com/users/huangwei2013/starred', 'https://api.github.com/users/huangwei2013/repos', 'https://api.github.com/users/huangwei2013/events', 'https://api.github.com/users/huangwei2013/received_events', 0); -INSERT INTO `developer` VALUES (4952784, 'lifelofranco', 'S', -1.4105837917349984, 0, 0, 0, 0, 0, 0, 'Life Christian', NULL, '', NULL, NULL, NULL, NULL, NULL, 33, 0, 7, 7, 0, 0, 0, '2013-07-06T07:41:05Z', '2024-10-17T16:47:59Z', 'https://avatars.githubusercontent.com/u/4952784?v=4', 'https://api.github.com/users/lifelofranco', 'https://github.com/lifelofranco', 'https://api.github.com/users/lifelofranco/followers', 'https://api.github.com/users/lifelofranco/following', 'https://api.github.com/users/lifelofranco/gists', 'https://api.github.com/users/lifelofranco/starred', 'https://api.github.com/users/lifelofranco/repos', 'https://api.github.com/users/lifelofranco/events', 'https://api.github.com/users/lifelofranco/received_events', 0); -INSERT INTO `developer` VALUES (4971419, 'ccrims0n', 'S', -17.804355120270255, 0, 0, 0, 0, 0, 0, 'Vivek', NULL, '', 'Bangalore', NULL, NULL, NULL, NULL, 39, 1, 28, 7, 0, 0, 0, '2013-07-09T07:44:03Z', '2024-10-20T15:01:15Z', 'https://avatars.githubusercontent.com/u/4971419?v=4', 'https://api.github.com/users/ccrims0n', 'https://github.com/ccrims0n', 'https://api.github.com/users/ccrims0n/followers', 'https://api.github.com/users/ccrims0n/following', 'https://api.github.com/users/ccrims0n/gists', 'https://api.github.com/users/ccrims0n/starred', 'https://api.github.com/users/ccrims0n/repos', 'https://api.github.com/users/ccrims0n/events', 'https://api.github.com/users/ccrims0n/received_events', 0); -INSERT INTO `developer` VALUES (4997180, 'emptywee', 'A', 15.266069636920765, 0, 0, 0, 0, 0, 0, 'Igor', NULL, '', 'Dallas, TX', NULL, NULL, NULL, NULL, 26, 3, 4, 0, 0, 0, 0, '2013-07-12T13:07:20Z', '2023-02-12T20:45:17Z', 'https://avatars.githubusercontent.com/u/4997180?v=4', 'https://api.github.com/users/emptywee', 'https://github.com/emptywee', 'https://api.github.com/users/emptywee/followers', 'https://api.github.com/users/emptywee/following', 'https://api.github.com/users/emptywee/gists', 'https://api.github.com/users/emptywee/starred', 'https://api.github.com/users/emptywee/repos', 'https://api.github.com/users/emptywee/events', 'https://api.github.com/users/emptywee/received_events', 0); -INSERT INTO `developer` VALUES (5000654, 'oxtoacart', 'S', -48.41732829425993, 0, 0, 0, 0, 0, 0, 'Percy Wegmann', NULL, 'https://blog.percywegmann.com/', NULL, NULL, NULL, NULL, NULL, 59, 42, 310, 5, 0, 0, 0, '2013-07-13T01:48:56Z', '2024-10-23T00:01:02Z', 'https://avatars.githubusercontent.com/u/5000654?v=4', 'https://api.github.com/users/oxtoacart', 'https://github.com/oxtoacart', 'https://api.github.com/users/oxtoacart/followers', 'https://api.github.com/users/oxtoacart/following', 'https://api.github.com/users/oxtoacart/gists', 'https://api.github.com/users/oxtoacart/starred', 'https://api.github.com/users/oxtoacart/repos', 'https://api.github.com/users/oxtoacart/events', 'https://api.github.com/users/oxtoacart/received_events', 0); -INSERT INTO `developer` VALUES (5031346, 'oraluben', 'S', -86.55095759233926, 0, 0, 0, 0, 0, 0, 'Yichen Yan', 'Alibaba', '', 'Shanghai', NULL, NULL, 'Software Testing & Compiler.\r\nPreviously @oracle / @graalvm,\r\n@pingcap', NULL, 150, 6, 76, 53, 0, 0, 0, '2013-07-17T13:34:27Z', '2024-10-28T01:47:50Z', 'https://avatars.githubusercontent.com/u/5031346?v=4', 'https://api.github.com/users/oraluben', 'https://github.com/oraluben', 'https://api.github.com/users/oraluben/followers', 'https://api.github.com/users/oraluben/following', 'https://api.github.com/users/oraluben/gists', 'https://api.github.com/users/oraluben/starred', 'https://api.github.com/users/oraluben/repos', 'https://api.github.com/users/oraluben/events', 'https://api.github.com/users/oraluben/received_events', 0); -INSERT INTO `developer` VALUES (5060473, 'ms32035', 'S', -44.6524064171123, 0, 0, 0, 0, 0, 0, 'Marcin Szymański', '@crugroup ', 'www.marcinszymanski.pl', 'London, UK', 'ms32035@gmail.com', NULL, 'Everything about data!', NULL, 60, 1, 23, 9, 0, 0, 0, '2013-07-21T21:51:12Z', '2024-10-30T21:35:39Z', 'https://avatars.githubusercontent.com/u/5060473?v=4', 'https://api.github.com/users/ms32035', 'https://github.com/ms32035', 'https://api.github.com/users/ms32035/followers', 'https://api.github.com/users/ms32035/following', 'https://api.github.com/users/ms32035/gists', 'https://api.github.com/users/ms32035/starred', 'https://api.github.com/users/ms32035/repos', 'https://api.github.com/users/ms32035/events', 'https://api.github.com/users/ms32035/received_events', 0); -INSERT INTO `developer` VALUES (5071988, '4406arthur', 'S', -74.99469022554386, 0, 0, 0, 0, 0, 0, 'ArthurMa', NULL, '', 'Taiwan', '4406arthur@gmail.com', 'true', NULL, NULL, 109, 5, 26, 36, 0, 0, 0, '2013-07-23T09:43:08Z', '2024-10-02T08:56:30Z', 'https://avatars.githubusercontent.com/u/5071988?v=4', 'https://api.github.com/users/4406arthur', 'https://github.com/4406arthur', 'https://api.github.com/users/4406arthur/followers', 'https://api.github.com/users/4406arthur/following', 'https://api.github.com/users/4406arthur/gists', 'https://api.github.com/users/4406arthur/starred', 'https://api.github.com/users/4406arthur/repos', 'https://api.github.com/users/4406arthur/events', 'https://api.github.com/users/4406arthur/received_events', 0); -INSERT INTO `developer` VALUES (5244316, 'YangKeao', 'S', -86.77174286316196, 0, 0, 0, 0, 0, 0, 'YangKeao', '@pingcap ', '', 'Hangzhou,China', 'yangkeao@chunibyo.icu', NULL, NULL, 'YangKeao', 142, 20, 238, 59, 0, 0, 0, '2013-08-16T11:47:33Z', '2024-10-12T10:46:07Z', 'https://avatars.githubusercontent.com/u/5244316?v=4', 'https://api.github.com/users/YangKeao', 'https://github.com/YangKeao', 'https://api.github.com/users/YangKeao/followers', 'https://api.github.com/users/YangKeao/following', 'https://api.github.com/users/YangKeao/gists', 'https://api.github.com/users/YangKeao/starred', 'https://api.github.com/users/YangKeao/repos', 'https://api.github.com/users/YangKeao/events', 'https://api.github.com/users/YangKeao/received_events', 0); -INSERT INTO `developer` VALUES (5372770, 'maxheld83', 'S', -83.26337486834412, 0, 0, 0, 0, 0, 0, 'Max Held', '@dataheld', 'https://www.maxheld.de/', 'Bad Sachsa, Germany', 'info@maxheld.de', 'true', '#rstats shiny developer and data scientist.\r\nCurrently freelance @dataheld, formerly @subugoe, @rstudio, @Jacobs-University.', 'maxheld', 124, 0, 211, 195, 0, 0, 0, '2013-09-03T12:27:51Z', '2024-07-19T13:36:16Z', 'https://avatars.githubusercontent.com/u/5372770?v=4', 'https://api.github.com/users/maxheld83', 'https://github.com/maxheld83', 'https://api.github.com/users/maxheld83/followers', 'https://api.github.com/users/maxheld83/following', 'https://api.github.com/users/maxheld83/gists', 'https://api.github.com/users/maxheld83/starred', 'https://api.github.com/users/maxheld83/repos', 'https://api.github.com/users/maxheld83/events', 'https://api.github.com/users/maxheld83/received_events', 0); -INSERT INTO `developer` VALUES (5380830, 'bgaifullin', 'S', -4.174317681528694, 0, 0, 0, 0, 0, 0, 'Bulat Gaifullin', 'Yandex', '', 'Moscow', 'gaifullinbf@gmail.com', NULL, NULL, NULL, 32, 2, 21, 0, 0, 0, 0, '2013-09-04T09:41:48Z', '2024-10-03T11:27:05Z', 'https://avatars.githubusercontent.com/u/5380830?v=4', 'https://api.github.com/users/bgaifullin', 'https://github.com/bgaifullin', 'https://api.github.com/users/bgaifullin/followers', 'https://api.github.com/users/bgaifullin/following', 'https://api.github.com/users/bgaifullin/gists', 'https://api.github.com/users/bgaifullin/starred', 'https://api.github.com/users/bgaifullin/repos', 'https://api.github.com/users/bgaifullin/events', 'https://api.github.com/users/bgaifullin/received_events', 0); -INSERT INTO `developer` VALUES (5468769, 'madchap', 'S', -68.2135892303708, 0, 0, 0, 0, 0, 0, 'Fred Blaise', NULL, '', 'Vaud, Switzerland', NULL, NULL, 'Product Security', NULL, 89, 22, 43, 14, 0, 0, 0, '2013-09-16T10:09:23Z', '2024-10-28T16:17:54Z', 'https://avatars.githubusercontent.com/u/5468769?v=4', 'https://api.github.com/users/madchap', 'https://github.com/madchap', 'https://api.github.com/users/madchap/followers', 'https://api.github.com/users/madchap/following', 'https://api.github.com/users/madchap/gists', 'https://api.github.com/users/madchap/starred', 'https://api.github.com/users/madchap/repos', 'https://api.github.com/users/madchap/events', 'https://api.github.com/users/madchap/received_events', 0); -INSERT INTO `developer` VALUES (5471749, 'Xfennec', 'B+', 37.77613374325446, 0, 0, 0, 0, 0, 0, 'Julien LOLLIVIER', NULL, '', 'Nantes, France', NULL, 'true', NULL, 'Xfennec', 13, 1, 136, 5, 0, 0, 0, '2013-09-16T17:28:24Z', '2024-01-22T09:39:21Z', 'https://avatars.githubusercontent.com/u/5471749?v=4', 'https://api.github.com/users/Xfennec', 'https://github.com/Xfennec', 'https://api.github.com/users/Xfennec/followers', 'https://api.github.com/users/Xfennec/following', 'https://api.github.com/users/Xfennec/gists', 'https://api.github.com/users/Xfennec/starred', 'https://api.github.com/users/Xfennec/repos', 'https://api.github.com/users/Xfennec/events', 'https://api.github.com/users/Xfennec/received_events', 0); -INSERT INTO `developer` VALUES (5477111, 'JamesCullum', 'S', -2.550378128934594, 0, 0, 0, 0, 0, 0, 'James Cullum (Pseudonym)', NULL, 'https://mailhide.io/e/Wno7k', NULL, NULL, NULL, NULL, NULL, 29, 9, 129, 1, 0, 0, 0, '2013-09-17T10:21:26Z', '2024-09-02T21:27:19Z', 'https://avatars.githubusercontent.com/u/5477111?v=4', 'https://api.github.com/users/JamesCullum', 'https://github.com/JamesCullum', 'https://api.github.com/users/JamesCullum/followers', 'https://api.github.com/users/JamesCullum/following', 'https://api.github.com/users/JamesCullum/gists', 'https://api.github.com/users/JamesCullum/starred', 'https://api.github.com/users/JamesCullum/repos', 'https://api.github.com/users/JamesCullum/events', 'https://api.github.com/users/JamesCullum/received_events', 0); -INSERT INTO `developer` VALUES (5502789, 'Frostweeds', 'B-', 63.60080520166842, 0, 0, 0, 0, 0, 0, 'Frostweeds', NULL, '', NULL, 'romain.jufer@gmail.com', NULL, 'Working @avnu-labs ', NULL, 8, 0, 6, 1, 0, 0, 0, '2013-09-20T15:39:56Z', '2024-10-27T09:34:08Z', 'https://avatars.githubusercontent.com/u/5502789?v=4', 'https://api.github.com/users/Frostweeds', 'https://github.com/Frostweeds', 'https://api.github.com/users/Frostweeds/followers', 'https://api.github.com/users/Frostweeds/following', 'https://api.github.com/users/Frostweeds/gists', 'https://api.github.com/users/Frostweeds/starred', 'https://api.github.com/users/Frostweeds/repos', 'https://api.github.com/users/Frostweeds/events', 'https://api.github.com/users/Frostweeds/received_events', 0); -INSERT INTO `developer` VALUES (5585923, 'mathieubergeron', 'B-', 64.3360993193155, 0, 0, 0, 0, 0, 0, 'Mathieu Bergeron', 'Nu Echo Inc.', '', 'Montréal, Québec, Canada', 'bergeron.mathieu@gmail.com', NULL, NULL, NULL, 8, 0, 5, 8, 0, 0, 0, '2013-10-01T13:29:34Z', '2024-06-25T18:17:53Z', 'https://avatars.githubusercontent.com/u/5585923?v=4', 'https://api.github.com/users/mathieubergeron', 'https://github.com/mathieubergeron', 'https://api.github.com/users/mathieubergeron/followers', 'https://api.github.com/users/mathieubergeron/following', 'https://api.github.com/users/mathieubergeron/gists', 'https://api.github.com/users/mathieubergeron/starred', 'https://api.github.com/users/mathieubergeron/repos', 'https://api.github.com/users/mathieubergeron/events', 'https://api.github.com/users/mathieubergeron/received_events', 0); -INSERT INTO `developer` VALUES (5609770, 'kiblik', 'S', -27.945737166365326, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Earth', NULL, 'true', NULL, NULL, 49, 1, 9, 34, 0, 0, 0, '2013-10-04T08:21:42Z', '2024-10-28T16:27:54Z', 'https://avatars.githubusercontent.com/u/5609770?v=4', 'https://api.github.com/users/kiblik', 'https://github.com/kiblik', 'https://api.github.com/users/kiblik/followers', 'https://api.github.com/users/kiblik/following', 'https://api.github.com/users/kiblik/gists', 'https://api.github.com/users/kiblik/starred', 'https://api.github.com/users/kiblik/repos', 'https://api.github.com/users/kiblik/events', 'https://api.github.com/users/kiblik/received_events', 0); -INSERT INTO `developer` VALUES (5619476, 'aegershman', 'A-', 29.227607055980233, 0, 0, 0, 0, 0, 0, 'Aaron Gershman', NULL, 'https://github.com/aegershman', NULL, NULL, NULL, NULL, NULL, 16, 13, 115, 838, 0, 0, 0, '2013-10-05T20:10:21Z', '2024-09-07T04:20:25Z', 'https://avatars.githubusercontent.com/u/5619476?v=4', 'https://api.github.com/users/aegershman', 'https://github.com/aegershman', 'https://api.github.com/users/aegershman/followers', 'https://api.github.com/users/aegershman/following', 'https://api.github.com/users/aegershman/gists', 'https://api.github.com/users/aegershman/starred', 'https://api.github.com/users/aegershman/repos', 'https://api.github.com/users/aegershman/events', 'https://api.github.com/users/aegershman/received_events', 0); -INSERT INTO `developer` VALUES (5621298, 'at15', 'S', -87.52093458631138, 0, 0, 0, 0, 0, 0, 'Pinglei Guo', '@dyweb, @xephonhq, @benchhub ', 'https://at15.dev', 'Vancouver', NULL, NULL, 'Work account @pingleig. Gopher @dyweb. Previously @google & @paypal & UCSC & SJTU 学业不精 厨艺不佳 挖坑不填', NULL, 146, 8, 312, 644, 0, 0, 0, '2013-10-06T06:24:52Z', '2023-12-19T09:51:57Z', 'https://avatars.githubusercontent.com/u/5621298?v=4', 'https://api.github.com/users/at15', 'https://github.com/at15', 'https://api.github.com/users/at15/followers', 'https://api.github.com/users/at15/following', 'https://api.github.com/users/at15/gists', 'https://api.github.com/users/at15/starred', 'https://api.github.com/users/at15/repos', 'https://api.github.com/users/at15/events', 'https://api.github.com/users/at15/received_events', 0); -INSERT INTO `developer` VALUES (5639877, 'vasicvuk', 'S', -20.711850823887666, 0, 0, 0, 0, 0, 0, 'Vuk Vasić', NULL, '', NULL, 'vuk.vasic@asseco-see.rs', NULL, NULL, NULL, 42, 1, 17, 1, 0, 0, 0, '2013-10-08T16:05:57Z', '2024-09-23T14:51:30Z', 'https://avatars.githubusercontent.com/u/5639877?v=4', 'https://api.github.com/users/vasicvuk', 'https://github.com/vasicvuk', 'https://api.github.com/users/vasicvuk/followers', 'https://api.github.com/users/vasicvuk/following', 'https://api.github.com/users/vasicvuk/gists', 'https://api.github.com/users/vasicvuk/starred', 'https://api.github.com/users/vasicvuk/repos', 'https://api.github.com/users/vasicvuk/events', 'https://api.github.com/users/vasicvuk/received_events', 0); -INSERT INTO `developer` VALUES (5650785, 's4kibs4mi', 'S', -85.12185660805207, 0, 0, 0, 0, 0, 0, 'Sakib Sami', '@fiskaly', 'http://www.sakib.ninja', 'Tallinn', NULL, 'true', 'Senior Software Engineer @fiskaly || Founder @shopemaa || In love with @golang, Java || Distributed Systems || Blockchain || IoT', 's4kibs4mi', 130, 46, 720, 882, 0, 0, 0, '2013-10-09T21:20:48Z', '2024-11-01T17:20:13Z', 'https://avatars.githubusercontent.com/u/5650785?v=4', 'https://api.github.com/users/s4kibs4mi', 'https://github.com/s4kibs4mi', 'https://api.github.com/users/s4kibs4mi/followers', 'https://api.github.com/users/s4kibs4mi/following', 'https://api.github.com/users/s4kibs4mi/gists', 'https://api.github.com/users/s4kibs4mi/starred', 'https://api.github.com/users/s4kibs4mi/repos', 'https://api.github.com/users/s4kibs4mi/events', 'https://api.github.com/users/s4kibs4mi/received_events', 0); -INSERT INTO `developer` VALUES (5691966, 'danhardman', 'B', 54.60903950412669, 0, 0, 0, 0, 0, 0, 'Dan Hardman', NULL, '', NULL, NULL, NULL, NULL, NULL, 13, 1, 10, 3, 0, 0, 0, '2013-10-15T14:18:24Z', '2023-08-18T13:50:42Z', 'https://avatars.githubusercontent.com/u/5691966?v=4', 'https://api.github.com/users/danhardman', 'https://github.com/danhardman', 'https://api.github.com/users/danhardman/followers', 'https://api.github.com/users/danhardman/following', 'https://api.github.com/users/danhardman/gists', 'https://api.github.com/users/danhardman/starred', 'https://api.github.com/users/danhardman/repos', 'https://api.github.com/users/danhardman/events', 'https://api.github.com/users/danhardman/received_events', 0); -INSERT INTO `developer` VALUES (5698706, 'umanghome', 'S', -76.53926166958169, 0, 0, 0, 0, 0, 0, 'Umang Galaiya', '@apolloio', 'https://umanggalaiya.in', 'Bangalore, India', 'umang@apollo.io', 'true', 'I like UX, DX', 'umanghome', 103, 12, 132, 66, 0, 0, 0, '2013-10-16T08:55:03Z', '2024-10-31T04:38:47Z', 'https://avatars.githubusercontent.com/u/5698706?v=4', 'https://api.github.com/users/umanghome', 'https://github.com/umanghome', 'https://api.github.com/users/umanghome/followers', 'https://api.github.com/users/umanghome/following', 'https://api.github.com/users/umanghome/gists', 'https://api.github.com/users/umanghome/starred', 'https://api.github.com/users/umanghome/repos', 'https://api.github.com/users/umanghome/events', 'https://api.github.com/users/umanghome/received_events', 0); -INSERT INTO `developer` VALUES (5728164, 'Knetic', 'S', -24.284229695010318, 0, 0, 0, 0, 0, 0, 'George Lester', '@EpicGames ', '', 'Seattle', NULL, NULL, 'If something is hard, that\'s a pretty good reason to solve it in a way that makes it easy in the future.', NULL, 41, 7, 116, 12, 0, 0, 0, '2013-10-20T01:12:11Z', '2023-11-24T02:01:57Z', 'https://avatars.githubusercontent.com/u/5728164?v=4', 'https://api.github.com/users/Knetic', 'https://github.com/Knetic', 'https://api.github.com/users/Knetic/followers', 'https://api.github.com/users/Knetic/following', 'https://api.github.com/users/Knetic/gists', 'https://api.github.com/users/Knetic/starred', 'https://api.github.com/users/Knetic/repos', 'https://api.github.com/users/Knetic/events', 'https://api.github.com/users/Knetic/received_events', 0); -INSERT INTO `developer` VALUES (5754476, 'MacTynow', 'S', -24.162761890503702, 0, 0, 0, 0, 0, 0, 'Charles Martinot', NULL, 'https://www.mactynow.ovh', NULL, NULL, 'true', NULL, NULL, 47, 2, 7, 11, 0, 0, 0, '2013-10-23T08:41:03Z', '2024-10-09T03:21:05Z', 'https://avatars.githubusercontent.com/u/5754476?v=4', 'https://api.github.com/users/MacTynow', 'https://github.com/MacTynow', 'https://api.github.com/users/MacTynow/followers', 'https://api.github.com/users/MacTynow/following', 'https://api.github.com/users/MacTynow/gists', 'https://api.github.com/users/MacTynow/starred', 'https://api.github.com/users/MacTynow/repos', 'https://api.github.com/users/MacTynow/events', 'https://api.github.com/users/MacTynow/received_events', 0); -INSERT INTO `developer` VALUES (5782063, 'lrita', 'S', -54.206863708484136, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'BeiJing', 'lrita@163.com', NULL, NULL, NULL, 65, 4, 281, 32, 0, 0, 0, '2013-10-26T15:13:43Z', '2024-06-23T15:59:26Z', 'https://avatars.githubusercontent.com/u/5782063?v=4', 'https://api.github.com/users/lrita', 'https://github.com/lrita', 'https://api.github.com/users/lrita/followers', 'https://api.github.com/users/lrita/following', 'https://api.github.com/users/lrita/gists', 'https://api.github.com/users/lrita/starred', 'https://api.github.com/users/lrita/repos', 'https://api.github.com/users/lrita/events', 'https://api.github.com/users/lrita/received_events', 0); -INSERT INTO `developer` VALUES (5803044, 'xthk', 'B', 60.985717004041575, 0, 0, 0, 0, 0, 0, 'Tilmann H.', NULL, '', 'Germany', NULL, NULL, NULL, NULL, 9, 0, 5, 0, 0, 0, 0, '2013-10-29T11:18:32Z', '2024-06-11T07:51:56Z', 'https://avatars.githubusercontent.com/u/5803044?v=4', 'https://api.github.com/users/xthk', 'https://github.com/xthk', 'https://api.github.com/users/xthk/followers', 'https://api.github.com/users/xthk/following', 'https://api.github.com/users/xthk/gists', 'https://api.github.com/users/xthk/starred', 'https://api.github.com/users/xthk/repos', 'https://api.github.com/users/xthk/events', 'https://api.github.com/users/xthk/received_events', 0); -INSERT INTO `developer` VALUES (5840042, 'patriknordlen', 'B+', 45.855356780703026, 0, 0, 0, 0, 0, 0, 'Patrik Nordlén', NULL, '', 'Sweden', 'patriki@gmail.com', NULL, 'Security guy', NULL, 13, 1, 9, 3, 0, 0, 0, '2013-11-02T19:57:08Z', '2024-10-30T16:46:29Z', 'https://avatars.githubusercontent.com/u/5840042?v=4', 'https://api.github.com/users/patriknordlen', 'https://github.com/patriknordlen', 'https://api.github.com/users/patriknordlen/followers', 'https://api.github.com/users/patriknordlen/following', 'https://api.github.com/users/patriknordlen/gists', 'https://api.github.com/users/patriknordlen/starred', 'https://api.github.com/users/patriknordlen/repos', 'https://api.github.com/users/patriknordlen/events', 'https://api.github.com/users/patriknordlen/received_events', 0); -INSERT INTO `developer` VALUES (5852052, 'mestrade', 'B+', 44.24056319581609, 0, 0, 0, 0, 0, 0, 'mestrade', NULL, '', NULL, NULL, 'true', NULL, 'mestrade', 15, 0, 3, 4, 0, 0, 0, '2013-11-04T15:29:24Z', '2024-08-22T15:47:11Z', 'https://avatars.githubusercontent.com/u/5852052?v=4', 'https://api.github.com/users/mestrade', 'https://github.com/mestrade', 'https://api.github.com/users/mestrade/followers', 'https://api.github.com/users/mestrade/following', 'https://api.github.com/users/mestrade/gists', 'https://api.github.com/users/mestrade/starred', 'https://api.github.com/users/mestrade/repos', 'https://api.github.com/users/mestrade/events', 'https://api.github.com/users/mestrade/received_events', 0); -INSERT INTO `developer` VALUES (5874026, 'efournival', 'B', 62.085279924390356, 0, 0, 0, 0, 0, 0, 'Edgar Fournival', NULL, '', 'Cauffry, France', NULL, NULL, NULL, NULL, 7, 0, 19, 21, 0, 0, 0, '2013-11-06T21:41:26Z', '2024-04-17T17:37:58Z', 'https://avatars.githubusercontent.com/u/5874026?v=4', 'https://api.github.com/users/efournival', 'https://github.com/efournival', 'https://api.github.com/users/efournival/followers', 'https://api.github.com/users/efournival/following', 'https://api.github.com/users/efournival/gists', 'https://api.github.com/users/efournival/starred', 'https://api.github.com/users/efournival/repos', 'https://api.github.com/users/efournival/events', 'https://api.github.com/users/efournival/received_events', 0); -INSERT INTO `developer` VALUES (5929526, 'marcosValle', 'S', -35.33612965612862, 0, 0, 0, 0, 0, 0, 'Marcos Valle', NULL, 'https://about.me/marcosvalle', 'Barcelona, ES', NULL, NULL, '@_mvalle_', NULL, 49, 5, 83, 8, 0, 0, 0, '2013-11-13T13:19:34Z', '2024-10-10T11:26:17Z', 'https://avatars.githubusercontent.com/u/5929526?v=4', 'https://api.github.com/users/marcosValle', 'https://github.com/marcosValle', 'https://api.github.com/users/marcosValle/followers', 'https://api.github.com/users/marcosValle/following', 'https://api.github.com/users/marcosValle/gists', 'https://api.github.com/users/marcosValle/starred', 'https://api.github.com/users/marcosValle/repos', 'https://api.github.com/users/marcosValle/events', 'https://api.github.com/users/marcosValle/received_events', 0); -INSERT INTO `developer` VALUES (5957838, 'smithjessk', 'S', -27.20098537041775, 0, 0, 0, 0, 0, 0, 'Jess Smith', NULL, '', 'United States', 'smith.jessk@gmail.com', NULL, 'SDA / KCTT', NULL, 45, 15, 29, 14, 0, 0, 0, '2013-11-16T22:26:08Z', '2023-05-15T20:48:58Z', 'https://avatars.githubusercontent.com/u/5957838?v=4', 'https://api.github.com/users/smithjessk', 'https://github.com/smithjessk', 'https://api.github.com/users/smithjessk/followers', 'https://api.github.com/users/smithjessk/following', 'https://api.github.com/users/smithjessk/gists', 'https://api.github.com/users/smithjessk/starred', 'https://api.github.com/users/smithjessk/repos', 'https://api.github.com/users/smithjessk/events', 'https://api.github.com/users/smithjessk/received_events', 0); -INSERT INTO `developer` VALUES (5961873, 'dhruvdutt', 'S', -75.62921255896083, 0, 0, 0, 0, 0, 0, 'Dhruvdutt Jadhav', '@webpack @googlesummerofcode', 'https://dhruvdutt.js.org', 'India: C-137', NULL, 'true', 'Tooling @razorpay | Ex @treebohotels', NULL, 99, 14, 299, 112, 0, 0, 0, '2013-11-17T16:50:27Z', '2024-10-04T13:47:41Z', 'https://avatars.githubusercontent.com/u/5961873?v=4', 'https://api.github.com/users/dhruvdutt', 'https://github.com/dhruvdutt', 'https://api.github.com/users/dhruvdutt/followers', 'https://api.github.com/users/dhruvdutt/following', 'https://api.github.com/users/dhruvdutt/gists', 'https://api.github.com/users/dhruvdutt/starred', 'https://api.github.com/users/dhruvdutt/repos', 'https://api.github.com/users/dhruvdutt/events', 'https://api.github.com/users/dhruvdutt/received_events', 0); -INSERT INTO `developer` VALUES (6026107, 'benno001', 'S', -15.261718295520609, 0, 0, 0, 0, 0, 0, 'Ben de Haan', 'ENACT-IT', '', 'Netherlands', NULL, NULL, 'Freelance security consultant & engineer.\r\nNOTE: Moving to @bendehaan', 'BJFdeHaan', 40, 1, 10, 7, 0, 0, 0, '2013-11-24T22:44:05Z', '2024-10-27T11:23:38Z', 'https://avatars.githubusercontent.com/u/6026107?v=4', 'https://api.github.com/users/benno001', 'https://github.com/benno001', 'https://api.github.com/users/benno001/followers', 'https://api.github.com/users/benno001/following', 'https://api.github.com/users/benno001/gists', 'https://api.github.com/users/benno001/starred', 'https://api.github.com/users/benno001/repos', 'https://api.github.com/users/benno001/events', 'https://api.github.com/users/benno001/received_events', 0); -INSERT INTO `developer` VALUES (6037730, 'syntaqx', 'S', -58.80537611421055, 0, 0, 0, 0, 0, 0, 'Chase Pierce', NULL, 'https://syntaqx.com', 'USA', 'syntaqx@gmail.com', 'true', 'Hacker, open sorcerer, software engineer, cloudified. Your favorite internet junkie with a love of all things digital and bacon-based.', 'syntaqx', 72, 67, 84, 105, 0, 0, 0, '2013-11-26T05:59:36Z', '2024-11-02T01:42:09Z', 'https://avatars.githubusercontent.com/u/6037730?v=4', 'https://api.github.com/users/syntaqx', 'https://github.com/syntaqx', 'https://api.github.com/users/syntaqx/followers', 'https://api.github.com/users/syntaqx/following', 'https://api.github.com/users/syntaqx/gists', 'https://api.github.com/users/syntaqx/starred', 'https://api.github.com/users/syntaqx/repos', 'https://api.github.com/users/syntaqx/events', 'https://api.github.com/users/syntaqx/received_events', 0); -INSERT INTO `developer` VALUES (6039952, 'gernest', 'S', -93.55887747943503, 0, 0, 0, 0, 0, 0, 'Geofrey Ernest', NULL, '', 'Arusha, Tanzania', 'geofreyernest@live.com', 'true', NULL, NULL, 329, 11, 365, 0, 0, 0, 0, '2013-11-26T11:11:07Z', '2024-10-14T19:38:54Z', 'https://avatars.githubusercontent.com/u/6039952?v=4', 'https://api.github.com/users/gernest', 'https://github.com/gernest', 'https://api.github.com/users/gernest/followers', 'https://api.github.com/users/gernest/following', 'https://api.github.com/users/gernest/gists', 'https://api.github.com/users/gernest/starred', 'https://api.github.com/users/gernest/repos', 'https://api.github.com/users/gernest/events', 'https://api.github.com/users/gernest/received_events', 0); -INSERT INTO `developer` VALUES (6055628, 'aseem2625', 'S', -35.15848950413294, 0, 0, 0, 0, 0, 0, 'Aseem Gupta', 'superkalam', 'https://superkalam.com', NULL, NULL, NULL, 'Building @superkalam ▪ like building products', 'aseemgupta_', 51, 0, 28, 2, 0, 0, 0, '2013-11-28T04:08:25Z', '2024-08-09T16:52:47Z', 'https://avatars.githubusercontent.com/u/6055628?v=4', 'https://api.github.com/users/aseem2625', 'https://github.com/aseem2625', 'https://api.github.com/users/aseem2625/followers', 'https://api.github.com/users/aseem2625/following', 'https://api.github.com/users/aseem2625/gists', 'https://api.github.com/users/aseem2625/starred', 'https://api.github.com/users/aseem2625/repos', 'https://api.github.com/users/aseem2625/events', 'https://api.github.com/users/aseem2625/received_events', 0); -INSERT INTO `developer` VALUES (6133616, 'AdamSLevy', 'S', -57.24469685082158, 0, 0, 0, 0, 0, 0, 'Adam S Levy', NULL, 'https://www.aslevy.com', 'Anchorage, AK', 'adam@aslevy.com', 'true', 'Golang, shell scripting, C, linux, math', NULL, 73, 33, 32, 28, 0, 0, 0, '2013-12-08T04:50:22Z', '2024-10-22T02:41:00Z', 'https://avatars.githubusercontent.com/u/6133616?v=4', 'https://api.github.com/users/AdamSLevy', 'https://github.com/AdamSLevy', 'https://api.github.com/users/AdamSLevy/followers', 'https://api.github.com/users/AdamSLevy/following', 'https://api.github.com/users/AdamSLevy/gists', 'https://api.github.com/users/AdamSLevy/starred', 'https://api.github.com/users/AdamSLevy/repos', 'https://api.github.com/users/AdamSLevy/events', 'https://api.github.com/users/AdamSLevy/received_events', 0); -INSERT INTO `developer` VALUES (6164115, 'lomkju', 'S', 0.6535947712418277, 0, 0, 0, 0, 0, 0, 'Arjun Hemrajani', '@excloud-in ', '', NULL, NULL, NULL, NULL, NULL, 30, 11, 17, 38, 0, 0, 0, '2013-12-11T19:33:30Z', '2024-10-24T11:24:24Z', 'https://avatars.githubusercontent.com/u/6164115?v=4', 'https://api.github.com/users/lomkju', 'https://github.com/lomkju', 'https://api.github.com/users/lomkju/followers', 'https://api.github.com/users/lomkju/following', 'https://api.github.com/users/lomkju/gists', 'https://api.github.com/users/lomkju/starred', 'https://api.github.com/users/lomkju/repos', 'https://api.github.com/users/lomkju/events', 'https://api.github.com/users/lomkju/received_events', 0); -INSERT INTO `developer` VALUES (6198562, 'travisgroth', 'S', -17.66339954476839, 0, 0, 0, 0, 0, 0, 'Travis Groth', '@CapsuleHealth @pomerium @google', '', 'New York, NY', NULL, NULL, NULL, NULL, 41, 0, 12, 1, 0, 0, 0, '2013-12-16T16:07:00Z', '2024-10-16T11:23:37Z', 'https://avatars.githubusercontent.com/u/6198562?v=4', 'https://api.github.com/users/travisgroth', 'https://github.com/travisgroth', 'https://api.github.com/users/travisgroth/followers', 'https://api.github.com/users/travisgroth/following', 'https://api.github.com/users/travisgroth/gists', 'https://api.github.com/users/travisgroth/starred', 'https://api.github.com/users/travisgroth/repos', 'https://api.github.com/users/travisgroth/events', 'https://api.github.com/users/travisgroth/received_events', 0); -INSERT INTO `developer` VALUES (6217829, 'mattvaldes', 'A-', 29.982155809884524, 0, 0, 0, 0, 0, 0, 'Matthew Valdes', NULL, '', NULL, NULL, NULL, NULL, NULL, 18, 0, 13, 5, 0, 0, 0, '2013-12-18T20:35:44Z', '2023-11-15T16:06:13Z', 'https://avatars.githubusercontent.com/u/6217829?v=4', 'https://api.github.com/users/mattvaldes', 'https://github.com/mattvaldes', 'https://api.github.com/users/mattvaldes/followers', 'https://api.github.com/users/mattvaldes/following', 'https://api.github.com/users/mattvaldes/gists', 'https://api.github.com/users/mattvaldes/starred', 'https://api.github.com/users/mattvaldes/repos', 'https://api.github.com/users/mattvaldes/events', 'https://api.github.com/users/mattvaldes/received_events', 0); -INSERT INTO `developer` VALUES (6219280, 'dragonflylee', 'S', -11.318603950745576, 0, 0, 0, 0, 0, 0, 'dragonflylee', NULL, 'https://dragonfly.fun', 'Beijing, China', 'dragonflylee@outlook.com', NULL, NULL, NULL, 34, 1, 65, 13, 0, 0, 0, '2013-12-19T01:56:22Z', '2024-10-19T06:31:36Z', 'https://avatars.githubusercontent.com/u/6219280?v=4', 'https://api.github.com/users/dragonflylee', 'https://github.com/dragonflylee', 'https://api.github.com/users/dragonflylee/followers', 'https://api.github.com/users/dragonflylee/following', 'https://api.github.com/users/dragonflylee/gists', 'https://api.github.com/users/dragonflylee/starred', 'https://api.github.com/users/dragonflylee/repos', 'https://api.github.com/users/dragonflylee/events', 'https://api.github.com/users/dragonflylee/received_events', 0); -INSERT INTO `developer` VALUES (6310792, 'wichmannpas', 'S', -32.33170207864602, 0, 0, 0, 0, 0, 0, 'Pascal Wichmann', NULL, '', 'Hamburg, Germany', NULL, 'true', NULL, NULL, 49, 0, 26, 6, 0, 0, 0, '2014-01-03T12:02:43Z', '2024-10-02T11:24:14Z', 'https://avatars.githubusercontent.com/u/6310792?v=4', 'https://api.github.com/users/wichmannpas', 'https://github.com/wichmannpas', 'https://api.github.com/users/wichmannpas/followers', 'https://api.github.com/users/wichmannpas/following', 'https://api.github.com/users/wichmannpas/gists', 'https://api.github.com/users/wichmannpas/starred', 'https://api.github.com/users/wichmannpas/repos', 'https://api.github.com/users/wichmannpas/events', 'https://api.github.com/users/wichmannpas/received_events', 0); -INSERT INTO `developer` VALUES (6342027, 'jhettler', 'A-', 30.67973309760992, 0, 0, 0, 0, 0, 0, 'Jakub Hettler', NULL, '', NULL, NULL, NULL, NULL, NULL, 19, 4, 6, 0, 0, 0, 0, '2014-01-07T18:14:16Z', '2024-10-16T20:48:50Z', 'https://avatars.githubusercontent.com/u/6342027?v=4', 'https://api.github.com/users/jhettler', 'https://github.com/jhettler', 'https://api.github.com/users/jhettler/followers', 'https://api.github.com/users/jhettler/following', 'https://api.github.com/users/jhettler/gists', 'https://api.github.com/users/jhettler/starred', 'https://api.github.com/users/jhettler/repos', 'https://api.github.com/users/jhettler/events', 'https://api.github.com/users/jhettler/received_events', 0); -INSERT INTO `developer` VALUES (6370064, 'adrianchifor', 'S', -28.081250895825338, 0, 0, 0, 0, 0, 0, 'Adrian Chifor', NULL, '', NULL, 'me@adrianchifor.com', 'true', NULL, NULL, 56, 6, 0, 0, 0, 0, 0, '2014-01-10T15:28:01Z', '2024-10-03T15:32:23Z', 'https://avatars.githubusercontent.com/u/6370064?v=4', 'https://api.github.com/users/adrianchifor', 'https://github.com/adrianchifor', 'https://api.github.com/users/adrianchifor/followers', 'https://api.github.com/users/adrianchifor/following', 'https://api.github.com/users/adrianchifor/gists', 'https://api.github.com/users/adrianchifor/starred', 'https://api.github.com/users/adrianchifor/repos', 'https://api.github.com/users/adrianchifor/events', 'https://api.github.com/users/adrianchifor/received_events', 0); -INSERT INTO `developer` VALUES (6469803, 'Scukerman', 'A', 20.8551502425397, 0, 0, 0, 0, 0, 0, NULL, '@MascotGaming', '', 'Spain', NULL, NULL, 'A picky developer', NULL, 22, 0, 10, 9, 0, 0, 0, '2014-01-22T09:35:48Z', '2024-08-28T18:19:06Z', 'https://avatars.githubusercontent.com/u/6469803?v=4', 'https://api.github.com/users/Scukerman', 'https://github.com/Scukerman', 'https://api.github.com/users/Scukerman/followers', 'https://api.github.com/users/Scukerman/following', 'https://api.github.com/users/Scukerman/gists', 'https://api.github.com/users/Scukerman/starred', 'https://api.github.com/users/Scukerman/repos', 'https://api.github.com/users/Scukerman/events', 'https://api.github.com/users/Scukerman/received_events', 0); -INSERT INTO `developer` VALUES (6577390, 'astorath', 'A', 18.703808368777153, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 26, 6, 1, 0, 0, 0, 0, '2014-02-03T18:00:09Z', '2024-10-17T12:13:39Z', 'https://avatars.githubusercontent.com/u/6577390?v=4', 'https://api.github.com/users/astorath', 'https://github.com/astorath', 'https://api.github.com/users/astorath/followers', 'https://api.github.com/users/astorath/following', 'https://api.github.com/users/astorath/gists', 'https://api.github.com/users/astorath/starred', 'https://api.github.com/users/astorath/repos', 'https://api.github.com/users/astorath/events', 'https://api.github.com/users/astorath/received_events', 0); -INSERT INTO `developer` VALUES (6662648, 'NDevox', 'S', -29.05207545680195, 0, 0, 0, 0, 0, 0, 'Nick Sarbicki', 'NxCodes', 'https://nick.sarbicki.com', 'London', NULL, NULL, 'Consultant Full Stack Developer', NULL, 45, 2, 56, 60, 0, 0, 0, '2014-02-12T15:08:55Z', '2023-08-08T17:43:09Z', 'https://avatars.githubusercontent.com/u/6662648?v=4', 'https://api.github.com/users/NDevox', 'https://github.com/NDevox', 'https://api.github.com/users/NDevox/followers', 'https://api.github.com/users/NDevox/following', 'https://api.github.com/users/NDevox/gists', 'https://api.github.com/users/NDevox/starred', 'https://api.github.com/users/NDevox/repos', 'https://api.github.com/users/NDevox/events', 'https://api.github.com/users/NDevox/received_events', 0); -INSERT INTO `developer` VALUES (6677170, 'malkam03', 'B+', 39.66777247191978, 0, 0, 0, 0, 0, 0, 'Malcolm Davis', NULL, 'http://www.malcolmdavis.xyz', 'Costa Rica', 'me@malcolmdavis.xyz', NULL, 'Computer Engineer, Entrepreneur, Hardware Hacker :nerd_face:', NULL, 14, 1, 19, 19, 0, 0, 0, '2014-02-13T23:10:26Z', '2024-08-27T22:54:45Z', 'https://avatars.githubusercontent.com/u/6677170?v=4', 'https://api.github.com/users/malkam03', 'https://github.com/malkam03', 'https://api.github.com/users/malkam03/followers', 'https://api.github.com/users/malkam03/following', 'https://api.github.com/users/malkam03/gists', 'https://api.github.com/users/malkam03/starred', 'https://api.github.com/users/malkam03/repos', 'https://api.github.com/users/malkam03/events', 'https://api.github.com/users/malkam03/received_events', 0); -INSERT INTO `developer` VALUES (6709831, 'naphta', 'A', 19.002796029150137, 0, 0, 0, 0, 0, 0, 'Jake Hill', NULL, '', 'Kidderminster, UK', 'jake@naphta.uk', NULL, NULL, NULL, 24, 2, 5, 4, 0, 0, 0, '2014-02-17T22:28:20Z', '2024-10-31T12:52:55Z', 'https://avatars.githubusercontent.com/u/6709831?v=4', 'https://api.github.com/users/naphta', 'https://github.com/naphta', 'https://api.github.com/users/naphta/followers', 'https://api.github.com/users/naphta/following', 'https://api.github.com/users/naphta/gists', 'https://api.github.com/users/naphta/starred', 'https://api.github.com/users/naphta/repos', 'https://api.github.com/users/naphta/events', 'https://api.github.com/users/naphta/received_events', 0); -INSERT INTO `developer` VALUES (6712518, 'Ravenons', 'B', 52.24967265265627, 0, 0, 0, 0, 0, 0, 'Carlos Ledesma', NULL, 'https://twitter.com/Ravenons', 'Málaga, Spain', NULL, NULL, NULL, NULL, 10, 0, 18, 12, 0, 0, 0, '2014-02-18T06:05:26Z', '2023-11-28T21:13:56Z', 'https://avatars.githubusercontent.com/u/6712518?v=4', 'https://api.github.com/users/Ravenons', 'https://github.com/Ravenons', 'https://api.github.com/users/Ravenons/followers', 'https://api.github.com/users/Ravenons/following', 'https://api.github.com/users/Ravenons/gists', 'https://api.github.com/users/Ravenons/starred', 'https://api.github.com/users/Ravenons/repos', 'https://api.github.com/users/Ravenons/events', 'https://api.github.com/users/Ravenons/received_events', 0); -INSERT INTO `developer` VALUES (6726054, 'sairoutine', 'S', -59.38514494289346, 0, 0, 0, 0, 0, 0, 'Sai', '@ColorSing', 'https://sai-chan.com/', NULL, 'sairoutine@gmail.com', 'true', 'Gopher, HTML5 Game Developer', 'sairoutine', 72, 1, 126, 19, 0, 0, 0, '2014-02-19T11:08:57Z', '2023-07-24T04:15:21Z', 'https://avatars.githubusercontent.com/u/6726054?v=4', 'https://api.github.com/users/sairoutine', 'https://github.com/sairoutine', 'https://api.github.com/users/sairoutine/followers', 'https://api.github.com/users/sairoutine/following', 'https://api.github.com/users/sairoutine/gists', 'https://api.github.com/users/sairoutine/starred', 'https://api.github.com/users/sairoutine/repos', 'https://api.github.com/users/sairoutine/events', 'https://api.github.com/users/sairoutine/received_events', 0); -INSERT INTO `developer` VALUES (6730584, 'omerlh', 'S', -91.55461116674952, 0, 0, 0, 0, 0, 0, 'Omer Levi Hevroni', '@goledge', '', 'Tel Aviv', NULL, NULL, 'Engineer @goledge , OSS maintainer and a proud father', 'omerlh', 239, 23, 85, 5, 0, 0, 0, '2014-02-19T19:37:33Z', '2024-11-01T11:26:36Z', 'https://avatars.githubusercontent.com/u/6730584?v=4', 'https://api.github.com/users/omerlh', 'https://github.com/omerlh', 'https://api.github.com/users/omerlh/followers', 'https://api.github.com/users/omerlh/following', 'https://api.github.com/users/omerlh/gists', 'https://api.github.com/users/omerlh/starred', 'https://api.github.com/users/omerlh/repos', 'https://api.github.com/users/omerlh/events', 'https://api.github.com/users/omerlh/received_events', 0); -INSERT INTO `developer` VALUES (6744596, 'agabani', 'S', -3.2536869957398906, 0, 0, 0, 0, 0, 0, 'Ahmed Agabani', NULL, '', 'United Kingdom', NULL, NULL, NULL, NULL, 31, 0, 28, 3, 0, 0, 0, '2014-02-21T04:48:12Z', '2024-10-16T05:03:08Z', 'https://avatars.githubusercontent.com/u/6744596?v=4', 'https://api.github.com/users/agabani', 'https://github.com/agabani', 'https://api.github.com/users/agabani/followers', 'https://api.github.com/users/agabani/following', 'https://api.github.com/users/agabani/gists', 'https://api.github.com/users/agabani/starred', 'https://api.github.com/users/agabani/repos', 'https://api.github.com/users/agabani/events', 'https://api.github.com/users/agabani/received_events', 0); -INSERT INTO `developer` VALUES (6751032, 'squ1rr3lly', 'S', -7.198466177446328, 0, 0, 0, 0, 0, 0, 'Jacob', NULL, '', NULL, NULL, NULL, NULL, NULL, 38, 1, 3, 4, 0, 0, 0, '2014-02-21T19:20:37Z', '2024-10-09T20:13:42Z', 'https://avatars.githubusercontent.com/u/6751032?v=4', 'https://api.github.com/users/squ1rr3lly', 'https://github.com/squ1rr3lly', 'https://api.github.com/users/squ1rr3lly/followers', 'https://api.github.com/users/squ1rr3lly/following', 'https://api.github.com/users/squ1rr3lly/gists', 'https://api.github.com/users/squ1rr3lly/starred', 'https://api.github.com/users/squ1rr3lly/repos', 'https://api.github.com/users/squ1rr3lly/events', 'https://api.github.com/users/squ1rr3lly/received_events', 0); -INSERT INTO `developer` VALUES (6762123, 'zeddee', 'S', -62.25529727406496, 0, 0, 0, 0, 0, 0, 'Zed', 'ShootBird', 'https://www.shootbird.work', NULL, 'zed@shootbird.work', NULL, 'Zed writes tech things for people. He\'s a former educator, and documentarian by nature (i.e. asks a lot of questions and writes stuff down).', NULL, 89, 103, 9, 5, 0, 0, 0, '2014-02-23T09:56:52Z', '2024-10-25T19:53:54Z', 'https://avatars.githubusercontent.com/u/6762123?v=4', 'https://api.github.com/users/zeddee', 'https://github.com/zeddee', 'https://api.github.com/users/zeddee/followers', 'https://api.github.com/users/zeddee/following', 'https://api.github.com/users/zeddee/gists', 'https://api.github.com/users/zeddee/starred', 'https://api.github.com/users/zeddee/repos', 'https://api.github.com/users/zeddee/events', 'https://api.github.com/users/zeddee/received_events', 0); -INSERT INTO `developer` VALUES (6770106, 'inaseem', 'S', -56.633244632752586, 0, 0, 0, 0, 0, 0, 'Naseem Ali', '@razorpay @namica @gscdit', '', 'Roorkee Uttarakhand India', 'inaseem@protonmail.com', NULL, 'Software engineer. I like to engineer full-stack apps using a suitable tech stack.', NULL, 71, 4, 44, 7, 0, 0, 0, '2014-02-24T10:35:52Z', '2024-10-02T11:24:31Z', 'https://avatars.githubusercontent.com/u/6770106?v=4', 'https://api.github.com/users/inaseem', 'https://github.com/inaseem', 'https://api.github.com/users/inaseem/followers', 'https://api.github.com/users/inaseem/following', 'https://api.github.com/users/inaseem/gists', 'https://api.github.com/users/inaseem/starred', 'https://api.github.com/users/inaseem/repos', 'https://api.github.com/users/inaseem/events', 'https://api.github.com/users/inaseem/received_events', 0); -INSERT INTO `developer` VALUES (6832571, 'pavkir', 'B-', 62.95201627433279, 0, 0, 0, 0, 0, 0, 'Kirill Pavlov', NULL, '', 'Russia, Saint-Petersburg', NULL, NULL, NULL, NULL, 8, 0, 7, 1, 0, 0, 0, '2014-03-02T17:57:01Z', '2024-10-02T16:45:55Z', 'https://avatars.githubusercontent.com/u/6832571?v=4', 'https://api.github.com/users/pavkir', 'https://github.com/pavkir', 'https://api.github.com/users/pavkir/followers', 'https://api.github.com/users/pavkir/following', 'https://api.github.com/users/pavkir/gists', 'https://api.github.com/users/pavkir/starred', 'https://api.github.com/users/pavkir/repos', 'https://api.github.com/users/pavkir/events', 'https://api.github.com/users/pavkir/received_events', 0); -INSERT INTO `developer` VALUES (6941627, 'nidhi-tandon', 'S', -1.4705882352941124, 0, 0, 0, 0, 0, 0, 'Nidhi Tandon', NULL, '', 'Bangalore', NULL, NULL, NULL, 'nidhitandon08', 30, 0, 30, 14, 0, 0, 0, '2014-03-13T13:56:53Z', '2024-09-18T11:08:43Z', 'https://avatars.githubusercontent.com/u/6941627?v=4', 'https://api.github.com/users/nidhi-tandon', 'https://github.com/nidhi-tandon', 'https://api.github.com/users/nidhi-tandon/followers', 'https://api.github.com/users/nidhi-tandon/following', 'https://api.github.com/users/nidhi-tandon/gists', 'https://api.github.com/users/nidhi-tandon/starred', 'https://api.github.com/users/nidhi-tandon/repos', 'https://api.github.com/users/nidhi-tandon/events', 'https://api.github.com/users/nidhi-tandon/received_events', 0); -INSERT INTO `developer` VALUES (6957843, 'srinidhis05', 'A+', 8.823529411764708, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 30, 0, 2, 0, 0, 0, 0, '2014-03-15T06:41:57Z', '2024-07-24T02:36:08Z', 'https://avatars.githubusercontent.com/u/6957843?v=4', 'https://api.github.com/users/srinidhis05', 'https://github.com/srinidhis05', 'https://api.github.com/users/srinidhis05/followers', 'https://api.github.com/users/srinidhis05/following', 'https://api.github.com/users/srinidhis05/gists', 'https://api.github.com/users/srinidhis05/starred', 'https://api.github.com/users/srinidhis05/repos', 'https://api.github.com/users/srinidhis05/events', 'https://api.github.com/users/srinidhis05/received_events', 0); -INSERT INTO `developer` VALUES (6960810, 'eik18', 'B', 57.269108809741, 0, 0, 0, 0, 0, 0, 'Eric Kelson', NULL, '', NULL, NULL, NULL, NULL, NULL, 12, 1, 0, 1, 0, 0, 0, '2014-03-15T16:16:00Z', '2024-02-22T16:16:00Z', 'https://avatars.githubusercontent.com/u/6960810?v=4', 'https://api.github.com/users/eik18', 'https://github.com/eik18', 'https://api.github.com/users/eik18/followers', 'https://api.github.com/users/eik18/following', 'https://api.github.com/users/eik18/gists', 'https://api.github.com/users/eik18/starred', 'https://api.github.com/users/eik18/repos', 'https://api.github.com/users/eik18/events', 'https://api.github.com/users/eik18/received_events', 0); -INSERT INTO `developer` VALUES (6975054, 'TarlogicSecurity', 'A+', 12.387408307055825, 0, 0, 0, 0, 0, 0, NULL, 'Tarlogic', 'https://www.tarlogic.com/', NULL, 'andres.tarasco@tarlogic.com', NULL, 'Cyber security, cyber intelligence, Red Team', 'tarlogic', 22, 2, 486, 0, 0, 0, 0, '2014-03-17T13:01:27Z', '2024-06-26T07:56:38Z', 'https://avatars.githubusercontent.com/u/6975054?v=4', 'https://api.github.com/users/TarlogicSecurity', 'https://github.com/TarlogicSecurity', 'https://api.github.com/users/TarlogicSecurity/followers', 'https://api.github.com/users/TarlogicSecurity/following', 'https://api.github.com/users/TarlogicSecurity/gists', 'https://api.github.com/users/TarlogicSecurity/starred', 'https://api.github.com/users/TarlogicSecurity/repos', 'https://api.github.com/users/TarlogicSecurity/events', 'https://api.github.com/users/TarlogicSecurity/received_events', 0); -INSERT INTO `developer` VALUES (6987180, 'adr-h', 'B+', 43.38650134277846, 0, 0, 0, 0, 0, 0, 'Adr', NULL, '', NULL, 'adrianhyk@gmail.com', NULL, 'Still figuring it out', NULL, 14, 7, 8, 8, 0, 0, 0, '2014-03-18T13:01:11Z', '2024-09-22T09:47:01Z', 'https://avatars.githubusercontent.com/u/6987180?v=4', 'https://api.github.com/users/adr-h', 'https://github.com/adr-h', 'https://api.github.com/users/adr-h/followers', 'https://api.github.com/users/adr-h/following', 'https://api.github.com/users/adr-h/gists', 'https://api.github.com/users/adr-h/starred', 'https://api.github.com/users/adr-h/repos', 'https://api.github.com/users/adr-h/events', 'https://api.github.com/users/adr-h/received_events', 0); -INSERT INTO `developer` VALUES (7011819, 'andreynering', 'A+', 1.2349133610454754, 0, 0, 0, 0, 0, 0, 'Andrey Nering', '@jobscore', 'andrey.nering.com.br/about', 'Joinville, Santa Catarina, Brazil', NULL, 'true', 'Senior Software Engineer at @jobscore working mostly with Ruby (and Rails), Go, databases and more. Creator of @go-task.', NULL, 27, 8, 215, 85, 0, 0, 0, '2014-03-20T14:12:48Z', '2024-10-06T00:17:57Z', 'https://avatars.githubusercontent.com/u/7011819?v=4', 'https://api.github.com/users/andreynering', 'https://github.com/andreynering', 'https://api.github.com/users/andreynering/followers', 'https://api.github.com/users/andreynering/following', 'https://api.github.com/users/andreynering/gists', 'https://api.github.com/users/andreynering/starred', 'https://api.github.com/users/andreynering/repos', 'https://api.github.com/users/andreynering/events', 'https://api.github.com/users/andreynering/received_events', 0); -INSERT INTO `developer` VALUES (7026262, 'SPoint42', 'S', -80.72408995406046, 0, 0, 0, 0, 0, 0, 'Sebastien gioria', 'Lectra', 'https://www.lectra.com', 'Cestas, bordeaux', NULL, 'true', 'https://www.linkedin.com/in/gioria', 'SPoint', 144, 0, 15, 56, 0, 0, 0, '2014-03-21T20:39:21Z', '2024-10-26T08:35:19Z', 'https://avatars.githubusercontent.com/u/7026262?v=4', 'https://api.github.com/users/SPoint42', 'https://github.com/SPoint42', 'https://api.github.com/users/SPoint42/followers', 'https://api.github.com/users/SPoint42/following', 'https://api.github.com/users/SPoint42/gists', 'https://api.github.com/users/SPoint42/starred', 'https://api.github.com/users/SPoint42/repos', 'https://api.github.com/users/SPoint42/events', 'https://api.github.com/users/SPoint42/received_events', 0); -INSERT INTO `developer` VALUES (7211879, 'dsever', 'S', -27.945737166365326, 0, 0, 0, 0, 0, 0, 'Sever', NULL, '', 'Croatia', NULL, NULL, 'Squad Lead, Deutsche Telekom Cloud Services', NULL, 49, 0, 9, 9, 0, 0, 0, '2014-04-07T17:08:44Z', '2024-10-28T08:34:45Z', 'https://avatars.githubusercontent.com/u/7211879?v=4', 'https://api.github.com/users/dsever', 'https://github.com/dsever', 'https://api.github.com/users/dsever/followers', 'https://api.github.com/users/dsever/following', 'https://api.github.com/users/dsever/gists', 'https://api.github.com/users/dsever/starred', 'https://api.github.com/users/dsever/repos', 'https://api.github.com/users/dsever/events', 'https://api.github.com/users/dsever/received_events', 0); -INSERT INTO `developer` VALUES (7269784, 'k315k1010', 'C', 89.08969480772055, 0, 0, 0, 0, 0, 0, 'Keisuke Iwado', 'AnyReach', '', 'Tokyo, Japan', 'k315k1010@gmail.com', NULL, NULL, 'k315k1010', 2, 1, 2, 4, 0, 0, 0, '2014-04-12T04:15:41Z', '2024-10-21T11:30:25Z', 'https://avatars.githubusercontent.com/u/7269784?v=4', 'https://api.github.com/users/k315k1010', 'https://github.com/k315k1010', 'https://api.github.com/users/k315k1010/followers', 'https://api.github.com/users/k315k1010/following', 'https://api.github.com/users/k315k1010/gists', 'https://api.github.com/users/k315k1010/starred', 'https://api.github.com/users/k315k1010/repos', 'https://api.github.com/users/k315k1010/events', 'https://api.github.com/users/k315k1010/received_events', 0); -INSERT INTO `developer` VALUES (7329312, 'devlinmr', 'A+', 6.560672131203327, 0, 0, 0, 0, 0, 0, 'Martin Devlin', NULL, '', NULL, NULL, NULL, NULL, NULL, 29, 6, 7, 0, 0, 0, 0, '2014-04-17T17:32:08Z', '2024-08-23T11:06:55Z', 'https://avatars.githubusercontent.com/u/7329312?v=4', 'https://api.github.com/users/devlinmr', 'https://github.com/devlinmr', 'https://api.github.com/users/devlinmr/followers', 'https://api.github.com/users/devlinmr/following', 'https://api.github.com/users/devlinmr/gists', 'https://api.github.com/users/devlinmr/starred', 'https://api.github.com/users/devlinmr/repos', 'https://api.github.com/users/devlinmr/events', 'https://api.github.com/users/devlinmr/received_events', 0); -INSERT INTO `developer` VALUES (7380969, 'ch3rub1m', 'A+', 11.074407282347076, 0, 0, 0, 0, 0, 0, 'ch3rub1m', NULL, '', 'China, Shenzhen', NULL, 'true', 'Machine learning learner / Cloud-native developer / Full stack web developer / iOS developer', NULL, 24, 1, 36, 15, 0, 0, 0, '2014-04-23T06:09:47Z', '2024-06-14T04:41:37Z', 'https://avatars.githubusercontent.com/u/7380969?v=4', 'https://api.github.com/users/ch3rub1m', 'https://github.com/ch3rub1m', 'https://api.github.com/users/ch3rub1m/followers', 'https://api.github.com/users/ch3rub1m/following', 'https://api.github.com/users/ch3rub1m/gists', 'https://api.github.com/users/ch3rub1m/starred', 'https://api.github.com/users/ch3rub1m/repos', 'https://api.github.com/users/ch3rub1m/events', 'https://api.github.com/users/ch3rub1m/received_events', 0); -INSERT INTO `developer` VALUES (7596017, 'kync', 'A+', 1.17647058823529, 0, 0, 0, 0, 0, 0, 'Ali Koyuncu', NULL, '', 'Helsinki', NULL, NULL, NULL, NULL, 30, 5, 15, 51, 0, 0, 0, '2014-05-15T19:40:35Z', '2024-10-27T20:22:12Z', 'https://avatars.githubusercontent.com/u/7596017?v=4', 'https://api.github.com/users/kync', 'https://github.com/kync', 'https://api.github.com/users/kync/followers', 'https://api.github.com/users/kync/following', 'https://api.github.com/users/kync/gists', 'https://api.github.com/users/kync/starred', 'https://api.github.com/users/kync/repos', 'https://api.github.com/users/kync/events', 'https://api.github.com/users/kync/received_events', 0); -INSERT INTO `developer` VALUES (7692501, 'renehernandez', 'S', -60.48596803159341, 0, 0, 0, 0, 0, 0, 'Rene Hernandez', '@FullScript', 'renehernandez.io', 'Ottawa, Canada', NULL, NULL, NULL, 'renehernandezio', 78, 0, 29, 40, 0, 0, 0, '2014-05-25T05:01:46Z', '2024-10-07T18:14:10Z', 'https://avatars.githubusercontent.com/u/7692501?v=4', 'https://api.github.com/users/renehernandez', 'https://github.com/renehernandez', 'https://api.github.com/users/renehernandez/followers', 'https://api.github.com/users/renehernandez/following', 'https://api.github.com/users/renehernandez/gists', 'https://api.github.com/users/renehernandez/starred', 'https://api.github.com/users/renehernandez/repos', 'https://api.github.com/users/renehernandez/events', 'https://api.github.com/users/renehernandez/received_events', 0); -INSERT INTO `developer` VALUES (7950060, 'akkhil7', 'A-', 36.06028936778147, 0, 0, 0, 0, 0, 0, 'Akhil R', '@stripe', 'https://twitter.com/akkhil7', 'India', NULL, 'true', 'swe at @stripe, ex-razorpay', NULL, 17, 0, 6, 20, 0, 0, 0, '2014-06-21T11:32:40Z', '2024-09-08T17:48:35Z', 'https://avatars.githubusercontent.com/u/7950060?v=4', 'https://api.github.com/users/akkhil7', 'https://github.com/akkhil7', 'https://api.github.com/users/akkhil7/followers', 'https://api.github.com/users/akkhil7/following', 'https://api.github.com/users/akkhil7/gists', 'https://api.github.com/users/akkhil7/starred', 'https://api.github.com/users/akkhil7/repos', 'https://api.github.com/users/akkhil7/events', 'https://api.github.com/users/akkhil7/received_events', 0); -INSERT INTO `developer` VALUES (8021992, 'tmeneau', 'A', 20.636579966200774, 0, 0, 0, 0, 0, 0, 'Theo Meneau', 'Xetus', '', NULL, NULL, NULL, NULL, NULL, 23, 1, 6, 3, 0, 0, 0, '2014-06-30T02:33:35Z', '2024-07-22T20:09:02Z', 'https://avatars.githubusercontent.com/u/8021992?v=4', 'https://api.github.com/users/tmeneau', 'https://github.com/tmeneau', 'https://api.github.com/users/tmeneau/followers', 'https://api.github.com/users/tmeneau/following', 'https://api.github.com/users/tmeneau/gists', 'https://api.github.com/users/tmeneau/starred', 'https://api.github.com/users/tmeneau/repos', 'https://api.github.com/users/tmeneau/events', 'https://api.github.com/users/tmeneau/received_events', 0); -INSERT INTO `developer` VALUES (8191198, 'aslafy-z', 'S', -93.16688377952819, 0, 0, 0, 0, 0, 0, 'Zadkiel AHARONIAN', 'CCL Consulting', 'go.zadkiel.fr/linkedin', 'Toulouse, France', 'hello@zadkiel.fr', 'true', 'Linux lover and OSS enthusiast. Currently working at @ccl-consulting on scalable @kubernetes platforms.', NULL, 415, 99, 178, 467, 0, 0, 0, '2014-07-17T12:34:55Z', '2024-09-02T09:37:34Z', 'https://avatars.githubusercontent.com/u/8191198?v=4', 'https://api.github.com/users/aslafy-z', 'https://github.com/aslafy-z', 'https://api.github.com/users/aslafy-z/followers', 'https://api.github.com/users/aslafy-z/following', 'https://api.github.com/users/aslafy-z/gists', 'https://api.github.com/users/aslafy-z/starred', 'https://api.github.com/users/aslafy-z/repos', 'https://api.github.com/users/aslafy-z/events', 'https://api.github.com/users/aslafy-z/received_events', 0); -INSERT INTO `developer` VALUES (8268469, 'fb33', 'A-', 34.91456355559149, 0, 0, 0, 0, 0, 0, NULL, 'Lectra', '', NULL, NULL, NULL, NULL, NULL, 18, 0, 4, 16, 0, 0, 0, '2014-07-25T14:50:01Z', '2024-06-14T10:26:45Z', 'https://avatars.githubusercontent.com/u/8268469?v=4', 'https://api.github.com/users/fb33', 'https://github.com/fb33', 'https://api.github.com/users/fb33/followers', 'https://api.github.com/users/fb33/following', 'https://api.github.com/users/fb33/gists', 'https://api.github.com/users/fb33/starred', 'https://api.github.com/users/fb33/repos', 'https://api.github.com/users/fb33/events', 'https://api.github.com/users/fb33/received_events', 0); -INSERT INTO `developer` VALUES (8288964, 'SmotrovaLilit', 'S', -45.66005486854261, 0, 0, 0, 0, 0, 0, 'Lilit', NULL, '', 'Germany', 'smotrovalilit@gmail.com', NULL, 'Golang Developer | 10 years experience | Golang | TTD, DDD, SOLID | Mysql, Postgres | oauth2.0, openid connect, SSO', NULL, 61, 15, 23, 22, 0, 0, 0, '2014-07-28T11:38:20Z', '2024-10-31T14:31:29Z', 'https://avatars.githubusercontent.com/u/8288964?v=4', 'https://api.github.com/users/SmotrovaLilit', 'https://github.com/SmotrovaLilit', 'https://api.github.com/users/SmotrovaLilit/followers', 'https://api.github.com/users/SmotrovaLilit/following', 'https://api.github.com/users/SmotrovaLilit/gists', 'https://api.github.com/users/SmotrovaLilit/starred', 'https://api.github.com/users/SmotrovaLilit/repos', 'https://api.github.com/users/SmotrovaLilit/events', 'https://api.github.com/users/SmotrovaLilit/received_events', 0); -INSERT INTO `developer` VALUES (8300635, 'NShani', 'S', -1.261581313443605, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 36, 14, 1, 0, 0, 0, 0, '2014-07-29T15:12:47Z', '2024-11-01T09:36:09Z', 'https://avatars.githubusercontent.com/u/8300635?v=4', 'https://api.github.com/users/NShani', 'https://github.com/NShani', 'https://api.github.com/users/NShani/followers', 'https://api.github.com/users/NShani/following', 'https://api.github.com/users/NShani/gists', 'https://api.github.com/users/NShani/starred', 'https://api.github.com/users/NShani/repos', 'https://api.github.com/users/NShani/events', 'https://api.github.com/users/NShani/received_events', 0); -INSERT INTO `developer` VALUES (8416556, 'axfor', 'S', -14.589429935409859, 0, 0, 0, 0, 0, 0, 'axx', NULL, '', NULL, 'aixiaoxiang2009@hotmail.com', NULL, NULL, NULL, 36, 0, 55, 172, 0, 0, 0, '2014-08-11T12:38:29Z', '2024-10-10T16:01:13Z', 'https://avatars.githubusercontent.com/u/8416556?v=4', 'https://api.github.com/users/axfor', 'https://github.com/axfor', 'https://api.github.com/users/axfor/followers', 'https://api.github.com/users/axfor/following', 'https://api.github.com/users/axfor/gists', 'https://api.github.com/users/axfor/starred', 'https://api.github.com/users/axfor/repos', 'https://api.github.com/users/axfor/events', 'https://api.github.com/users/axfor/received_events', 0); -INSERT INTO `developer` VALUES (8427788, 'galeone', 'S', -63.8496696038793, 0, 0, 0, 0, 0, 0, 'Paolo Galeone', 'Zuru Tech', 'https://pgaleone.eu/', 'Italy', 'nessuno@nerdz.eu', NULL, 'Researcher in love with: Machine/Deep Learning, PostgreSQL, Tensorflow and Go.\r\nOwner of @nerdzeu ', 'paolo_galeone', 77, 7, 357, 0, 0, 0, 0, '2014-08-12T12:51:59Z', '2024-10-16T11:24:56Z', 'https://avatars.githubusercontent.com/u/8427788?v=4', 'https://api.github.com/users/galeone', 'https://github.com/galeone', 'https://api.github.com/users/galeone/followers', 'https://api.github.com/users/galeone/following', 'https://api.github.com/users/galeone/gists', 'https://api.github.com/users/galeone/starred', 'https://api.github.com/users/galeone/repos', 'https://api.github.com/users/galeone/events', 'https://api.github.com/users/galeone/received_events', 0); -INSERT INTO `developer` VALUES (8619310, 'AakashRaina', 'A-', 25.518077688517394, 0, 0, 0, 0, 0, 0, 'Aakash Raina', '@razorpay ', 'https://aakashraina.com/', 'Bangalore, India', 'aakashraina9@gmail.com', NULL, 'Frontend engineer\r\n', NULL, 18, 7, 45, 60, 0, 0, 0, '2014-09-01T20:28:26Z', '2024-10-11T11:27:30Z', 'https://avatars.githubusercontent.com/u/8619310?v=4', 'https://api.github.com/users/AakashRaina', 'https://github.com/AakashRaina', 'https://api.github.com/users/AakashRaina/followers', 'https://api.github.com/users/AakashRaina/following', 'https://api.github.com/users/AakashRaina/gists', 'https://api.github.com/users/AakashRaina/starred', 'https://api.github.com/users/AakashRaina/repos', 'https://api.github.com/users/AakashRaina/events', 'https://api.github.com/users/AakashRaina/received_events', 0); -INSERT INTO `developer` VALUES (8718109, 'lucklove', 'S', -69.0493616156471, 0, 0, 0, 0, 0, 0, 'SIGSEGV', '@pingcap @tikv', '', 'Hangzhou, China', 'gnu.crazier@gmail.com', 'true', NULL, NULL, 86, 2, 192, 35, 0, 0, 0, '2014-09-10T03:58:32Z', '2024-10-21T10:43:33Z', 'https://avatars.githubusercontent.com/u/8718109?v=4', 'https://api.github.com/users/lucklove', 'https://github.com/lucklove', 'https://api.github.com/users/lucklove/followers', 'https://api.github.com/users/lucklove/following', 'https://api.github.com/users/lucklove/gists', 'https://api.github.com/users/lucklove/starred', 'https://api.github.com/users/lucklove/repos', 'https://api.github.com/users/lucklove/events', 'https://api.github.com/users/lucklove/received_events', 0); -INSERT INTO `developer` VALUES (8865167, 'thenaturalist', 'B+', 45.594367030870316, 0, 0, 0, 0, 0, 0, 'Jan Kyri', NULL, 'jankyri.com', 'Berlin', NULL, NULL, NULL, NULL, 11, 2, 52, 12, 0, 0, 0, '2014-09-22T18:41:47Z', '2024-10-08T17:15:54Z', 'https://avatars.githubusercontent.com/u/8865167?v=4', 'https://api.github.com/users/thenaturalist', 'https://github.com/thenaturalist', 'https://api.github.com/users/thenaturalist/followers', 'https://api.github.com/users/thenaturalist/following', 'https://api.github.com/users/thenaturalist/gists', 'https://api.github.com/users/thenaturalist/starred', 'https://api.github.com/users/thenaturalist/repos', 'https://api.github.com/users/thenaturalist/events', 'https://api.github.com/users/thenaturalist/received_events', 0); -INSERT INTO `developer` VALUES (8880817, 'csteez', 'C+', 80.34921743787537, 0, 0, 0, 0, 0, 0, 'christina stead', 'lyft', '', 'oakland, ca', NULL, NULL, NULL, NULL, 4, 1, 3, 1, 0, 0, 0, '2014-09-23T16:09:30Z', '2020-12-14T23:49:30Z', 'https://avatars.githubusercontent.com/u/8880817?v=4', 'https://api.github.com/users/csteez', 'https://github.com/csteez', 'https://api.github.com/users/csteez/followers', 'https://api.github.com/users/csteez/following', 'https://api.github.com/users/csteez/gists', 'https://api.github.com/users/csteez/starred', 'https://api.github.com/users/csteez/repos', 'https://api.github.com/users/csteez/events', 'https://api.github.com/users/csteez/received_events', 0); -INSERT INTO `developer` VALUES (8891115, 'bycEEE', 'A', 21.300072670705283, 0, 0, 0, 0, 0, 0, 'Brian Choy', NULL, '', NULL, NULL, NULL, NULL, NULL, 21, 0, 16, 20, 0, 0, 0, '2014-09-24T01:27:39Z', '2024-10-07T03:32:58Z', 'https://avatars.githubusercontent.com/u/8891115?v=4', 'https://api.github.com/users/bycEEE', 'https://github.com/bycEEE', 'https://api.github.com/users/bycEEE/followers', 'https://api.github.com/users/bycEEE/following', 'https://api.github.com/users/bycEEE/gists', 'https://api.github.com/users/bycEEE/starred', 'https://api.github.com/users/bycEEE/repos', 'https://api.github.com/users/bycEEE/events', 'https://api.github.com/users/bycEEE/received_events', 0); -INSERT INTO `developer` VALUES (8924921, 'rajeevrai', 'B-', 74.21480528755131, 0, 0, 0, 0, 0, 0, 'Rajeev Rai', 'RazorPay', '', 'Bangalore, India', 'raj.rajeevrai@gmail.com', NULL, NULL, NULL, 6, 1, 2, 0, 0, 0, 0, '2014-09-26T06:02:48Z', '2024-09-30T04:10:49Z', 'https://avatars.githubusercontent.com/u/8924921?v=4', 'https://api.github.com/users/rajeevrai', 'https://github.com/rajeevrai', 'https://api.github.com/users/rajeevrai/followers', 'https://api.github.com/users/rajeevrai/following', 'https://api.github.com/users/rajeevrai/gists', 'https://api.github.com/users/rajeevrai/starred', 'https://api.github.com/users/rajeevrai/repos', 'https://api.github.com/users/rajeevrai/events', 'https://api.github.com/users/rajeevrai/received_events', 0); -INSERT INTO `developer` VALUES (8943871, 'easonlin404', 'S', -72.6624201779519, 0, 0, 0, 0, 0, 0, 'Eason Lin', NULL, '', 'Taiwan', 'easonlin404@gmail.com', 'true', NULL, NULL, 93, 0, 192, 96, 0, 0, 0, '2014-09-28T02:50:17Z', '2024-08-20T08:16:11Z', 'https://avatars.githubusercontent.com/u/8943871?v=4', 'https://api.github.com/users/easonlin404', 'https://github.com/easonlin404', 'https://api.github.com/users/easonlin404/followers', 'https://api.github.com/users/easonlin404/following', 'https://api.github.com/users/easonlin404/gists', 'https://api.github.com/users/easonlin404/starred', 'https://api.github.com/users/easonlin404/repos', 'https://api.github.com/users/easonlin404/events', 'https://api.github.com/users/easonlin404/received_events', 0); -INSERT INTO `developer` VALUES (9150371, 'shubhnik', 'S', -52.29228344338841, 0, 0, 0, 0, 0, 0, 'Shubhnik Singh', NULL, 'https://medium.com/@shubhnik', 'Chandigarh, India', 'shubhniksingh@gmail.com', 'true', NULL, NULL, 65, 18, 60, 149, 0, 0, 0, '2014-10-11T10:22:20Z', '2024-09-18T10:38:10Z', 'https://avatars.githubusercontent.com/u/9150371?v=4', 'https://api.github.com/users/shubhnik', 'https://github.com/shubhnik', 'https://api.github.com/users/shubhnik/followers', 'https://api.github.com/users/shubhnik/following', 'https://api.github.com/users/shubhnik/gists', 'https://api.github.com/users/shubhnik/starred', 'https://api.github.com/users/shubhnik/repos', 'https://api.github.com/users/shubhnik/events', 'https://api.github.com/users/shubhnik/received_events', 0); -INSERT INTO `developer` VALUES (9211413, 'yilmi', 'A', 19.704255101874747, 0, 0, 0, 0, 0, 0, 'Yassine Ilmi', 'Thomson Reuters', '', 'not too far', NULL, NULL, '...', NULL, 22, 1, 13, 10, 0, 0, 0, '2014-10-14T09:24:26Z', '2024-10-26T10:49:43Z', 'https://avatars.githubusercontent.com/u/9211413?v=4', 'https://api.github.com/users/yilmi', 'https://github.com/yilmi', 'https://api.github.com/users/yilmi/followers', 'https://api.github.com/users/yilmi/following', 'https://api.github.com/users/yilmi/gists', 'https://api.github.com/users/yilmi/starred', 'https://api.github.com/users/yilmi/repos', 'https://api.github.com/users/yilmi/events', 'https://api.github.com/users/yilmi/received_events', 0); -INSERT INTO `developer` VALUES (9346360, 'hungtd9', 'S', -71.2026911017546, 0, 0, 0, 0, 0, 0, 'Hung Tran Duc', NULL, '', 'Ho Chi Minh City', 'hungtd9@gmail.com', NULL, 'Software Builder', NULL, 107, 3, 12, 9, 0, 0, 0, '2014-10-22T04:51:47Z', '2024-06-29T11:55:53Z', 'https://avatars.githubusercontent.com/u/9346360?v=4', 'https://api.github.com/users/hungtd9', 'https://github.com/hungtd9', 'https://api.github.com/users/hungtd9/followers', 'https://api.github.com/users/hungtd9/following', 'https://api.github.com/users/hungtd9/gists', 'https://api.github.com/users/hungtd9/starred', 'https://api.github.com/users/hungtd9/repos', 'https://api.github.com/users/hungtd9/events', 'https://api.github.com/users/hungtd9/received_events', 0); -INSERT INTO `developer` VALUES (9461597, 'okleitsa', 'C', 95.96940619427869, 0, 0, 0, 0, 0, 0, 'Olga Kleitsa', NULL, '', NULL, 'o.kleitsa@dotbydot.gr', NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, '2014-10-30T11:02:47Z', '2024-11-01T09:20:19Z', 'https://avatars.githubusercontent.com/u/9461597?v=4', 'https://api.github.com/users/okleitsa', 'https://github.com/okleitsa', 'https://api.github.com/users/okleitsa/followers', 'https://api.github.com/users/okleitsa/following', 'https://api.github.com/users/okleitsa/gists', 'https://api.github.com/users/okleitsa/starred', 'https://api.github.com/users/okleitsa/repos', 'https://api.github.com/users/okleitsa/events', 'https://api.github.com/users/okleitsa/received_events', 0); -INSERT INTO `developer` VALUES (9587680, 'you06', 'S', -83.8828676474505, 0, 0, 0, 0, 0, 0, 'you06', '@Airyworks ', 'https://blog.tongmu.me', 'Moon', NULL, NULL, 'ゲーム馬鹿', NULL, 131, 2, 95, 34, 0, 0, 0, '2014-11-06T08:46:47Z', '2024-10-31T05:52:49Z', 'https://avatars.githubusercontent.com/u/9587680?v=4', 'https://api.github.com/users/you06', 'https://github.com/you06', 'https://api.github.com/users/you06/followers', 'https://api.github.com/users/you06/following', 'https://api.github.com/users/you06/gists', 'https://api.github.com/users/you06/starred', 'https://api.github.com/users/you06/repos', 'https://api.github.com/users/you06/events', 'https://api.github.com/users/you06/received_events', 0); -INSERT INTO `developer` VALUES (9609370, 'AndreyMZ', 'A', 14.333438644600749, 0, 0, 0, 0, 0, 0, 'Andrey', NULL, '', NULL, NULL, NULL, NULL, NULL, 28, 1, 1, 0, 0, 0, 0, '2014-11-07T13:14:23Z', '2024-08-29T12:11:58Z', 'https://avatars.githubusercontent.com/u/9609370?v=4', 'https://api.github.com/users/AndreyMZ', 'https://github.com/AndreyMZ', 'https://api.github.com/users/AndreyMZ/followers', 'https://api.github.com/users/AndreyMZ/following', 'https://api.github.com/users/AndreyMZ/gists', 'https://api.github.com/users/AndreyMZ/starred', 'https://api.github.com/users/AndreyMZ/repos', 'https://api.github.com/users/AndreyMZ/events', 'https://api.github.com/users/AndreyMZ/received_events', 0); -INSERT INTO `developer` VALUES (9717944, 'abelmokadem', 'S', -20.642773112377256, 0, 0, 0, 0, 0, 0, 'Ash', NULL, '', NULL, 'a.belmokadem@gmail.com', NULL, NULL, NULL, 41, 2, 25, 13, 0, 0, 0, '2014-11-13T11:11:57Z', '2024-10-22T13:47:05Z', 'https://avatars.githubusercontent.com/u/9717944?v=4', 'https://api.github.com/users/abelmokadem', 'https://github.com/abelmokadem', 'https://api.github.com/users/abelmokadem/followers', 'https://api.github.com/users/abelmokadem/following', 'https://api.github.com/users/abelmokadem/gists', 'https://api.github.com/users/abelmokadem/starred', 'https://api.github.com/users/abelmokadem/repos', 'https://api.github.com/users/abelmokadem/events', 'https://api.github.com/users/abelmokadem/received_events', 0); -INSERT INTO `developer` VALUES (9831992, 'rachmari', 'A', 17.5066784473645, 0, 0, 0, 0, 0, 0, 'Rachael Sewell', NULL, '', 'Seattle, WA', NULL, NULL, NULL, NULL, 20, 0, 378, 14, 0, 0, 0, '2014-11-18T22:43:39Z', '2024-10-30T20:34:22Z', 'https://avatars.githubusercontent.com/u/9831992?v=4', 'https://api.github.com/users/rachmari', 'https://github.com/rachmari', 'https://api.github.com/users/rachmari/followers', 'https://api.github.com/users/rachmari/following', 'https://api.github.com/users/rachmari/gists', 'https://api.github.com/users/rachmari/starred', 'https://api.github.com/users/rachmari/repos', 'https://api.github.com/users/rachmari/events', 'https://api.github.com/users/rachmari/received_events', 1); -INSERT INTO `developer` VALUES (10055613, 'joshthoward', 'S', -27.945737166365326, 0, 0, 0, 0, 0, 0, 'Josh Howard', 'Cloudflare', 'joshthoward.github.io', 'Atlanta, GA', 'joshthoward@gmail.com', 'true', NULL, NULL, 49, 2, 9, 3, 0, 0, 0, '2014-12-03T03:15:14Z', '2024-11-01T19:45:36Z', 'https://avatars.githubusercontent.com/u/10055613?v=4', 'https://api.github.com/users/joshthoward', 'https://github.com/joshthoward', 'https://api.github.com/users/joshthoward/followers', 'https://api.github.com/users/joshthoward/following', 'https://api.github.com/users/joshthoward/gists', 'https://api.github.com/users/joshthoward/starred', 'https://api.github.com/users/joshthoward/repos', 'https://api.github.com/users/joshthoward/events', 'https://api.github.com/users/joshthoward/received_events', 0); -INSERT INTO `developer` VALUES (10064471, 'madnight', 'S', -91.56390983848999, 0, 0, 0, 0, 0, 0, 'Fabian Beuke', NULL, 'https://beuke.org', 'Bremen, Germany', NULL, 'true', 'Interested in distributed computing, category theory and theoretical physics.', NULL, 197, 9, 245, 240, 0, 0, 0, '2014-12-03T17:36:08Z', '2024-08-14T11:24:46Z', 'https://avatars.githubusercontent.com/u/10064471?v=4', 'https://api.github.com/users/madnight', 'https://github.com/madnight', 'https://api.github.com/users/madnight/followers', 'https://api.github.com/users/madnight/following', 'https://api.github.com/users/madnight/gists', 'https://api.github.com/users/madnight/starred', 'https://api.github.com/users/madnight/repos', 'https://api.github.com/users/madnight/events', 'https://api.github.com/users/madnight/received_events', 0); -INSERT INTO `developer` VALUES (10104826, 'sidag95', 'S', -0.026500746752300408, 0, 0, 0, 0, 0, 0, 'Siddhant Agarwal', 'Razorpay', '', 'India', NULL, NULL, 'Software Engineer | Improving Developer Experience @razorpay | Loves all things Javascript', 'sidag95', 33, 0, 5, 3, 0, 0, 0, '2014-12-07T10:41:13Z', '2024-09-01T16:56:40Z', 'https://avatars.githubusercontent.com/u/10104826?v=4', 'https://api.github.com/users/sidag95', 'https://github.com/sidag95', 'https://api.github.com/users/sidag95/followers', 'https://api.github.com/users/sidag95/following', 'https://api.github.com/users/sidag95/gists', 'https://api.github.com/users/sidag95/starred', 'https://api.github.com/users/sidag95/repos', 'https://api.github.com/users/sidag95/events', 'https://api.github.com/users/sidag95/received_events', 0); -INSERT INTO `developer` VALUES (10126593, 'k-nguyen', 'C', 92.0308712783088, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, 'true', NULL, NULL, 2, 0, 0, 0, 0, 0, 0, '2014-12-09T07:59:47Z', '2021-05-05T06:03:37Z', 'https://avatars.githubusercontent.com/u/10126593?v=4', 'https://api.github.com/users/k-nguyen', 'https://github.com/k-nguyen', 'https://api.github.com/users/k-nguyen/followers', 'https://api.github.com/users/k-nguyen/following', 'https://api.github.com/users/k-nguyen/gists', 'https://api.github.com/users/k-nguyen/starred', 'https://api.github.com/users/k-nguyen/repos', 'https://api.github.com/users/k-nguyen/events', 'https://api.github.com/users/k-nguyen/received_events', 0); -INSERT INTO `developer` VALUES (10212325, 'vidhan13j07', 'S', -11.07638941787361, 0, 0, 0, 0, 0, 0, 'Vidhan Jain', NULL, '', 'Jaipur', 'vidhanj1307@gmail.com', 'true', 'Google Code-in\'17 Mentor and GSoC\'17 @OSGeo @pgRouting ', NULL, 34, 6, 58, 16, 0, 0, 0, '2014-12-16T19:10:58Z', '2022-12-07T09:26:18Z', 'https://avatars.githubusercontent.com/u/10212325?v=4', 'https://api.github.com/users/vidhan13j07', 'https://github.com/vidhan13j07', 'https://api.github.com/users/vidhan13j07/followers', 'https://api.github.com/users/vidhan13j07/following', 'https://api.github.com/users/vidhan13j07/gists', 'https://api.github.com/users/vidhan13j07/starred', 'https://api.github.com/users/vidhan13j07/repos', 'https://api.github.com/users/vidhan13j07/events', 'https://api.github.com/users/vidhan13j07/received_events', 0); -INSERT INTO `developer` VALUES (10229647, 'krishnaacc123', 'B-', 69.8895457719804, 0, 0, 0, 0, 0, 0, 'Krishna Kumar', NULL, '', NULL, NULL, NULL, NULL, NULL, 6, 0, 7, 3, 0, 0, 0, '2014-12-18T07:08:55Z', '2024-08-27T08:38:20Z', 'https://avatars.githubusercontent.com/u/10229647?v=4', 'https://api.github.com/users/krishnaacc123', 'https://github.com/krishnaacc123', 'https://api.github.com/users/krishnaacc123/followers', 'https://api.github.com/users/krishnaacc123/following', 'https://api.github.com/users/krishnaacc123/gists', 'https://api.github.com/users/krishnaacc123/starred', 'https://api.github.com/users/krishnaacc123/repos', 'https://api.github.com/users/krishnaacc123/events', 'https://api.github.com/users/krishnaacc123/received_events', 0); -INSERT INTO `developer` VALUES (10308834, 'InTheCloudDan', 'S', -63.431119174530636, 0, 0, 0, 0, 0, 0, 'Dan O\'Brien', NULL, '', NULL, NULL, NULL, NULL, NULL, 84, 21, 23, 9, 0, 0, 0, '2014-12-26T16:08:24Z', '2024-05-16T21:41:32Z', 'https://avatars.githubusercontent.com/u/10308834?v=4', 'https://api.github.com/users/InTheCloudDan', 'https://github.com/InTheCloudDan', 'https://api.github.com/users/InTheCloudDan/followers', 'https://api.github.com/users/InTheCloudDan/following', 'https://api.github.com/users/InTheCloudDan/gists', 'https://api.github.com/users/InTheCloudDan/starred', 'https://api.github.com/users/InTheCloudDan/repos', 'https://api.github.com/users/InTheCloudDan/events', 'https://api.github.com/users/InTheCloudDan/received_events', 0); -INSERT INTO `developer` VALUES (10369376, 'sdesapriya', 'B-', 70.21845226049196, 0, 0, 0, 0, 0, 0, 'Thushara Desapriya', NULL, '', NULL, 'sdesapriya@gmail.com', NULL, NULL, NULL, 8, 0, 0, 0, 0, 0, 0, '2015-01-02T05:45:42Z', '2023-02-04T13:53:40Z', 'https://avatars.githubusercontent.com/u/10369376?v=4', 'https://api.github.com/users/sdesapriya', 'https://github.com/sdesapriya', 'https://api.github.com/users/sdesapriya/followers', 'https://api.github.com/users/sdesapriya/following', 'https://api.github.com/users/sdesapriya/gists', 'https://api.github.com/users/sdesapriya/starred', 'https://api.github.com/users/sdesapriya/repos', 'https://api.github.com/users/sdesapriya/events', 'https://api.github.com/users/sdesapriya/received_events', 0); -INSERT INTO `developer` VALUES (10498732, 'ericsyh', 'S', -40.03571009886138, 0, 0, 0, 0, 0, 0, 'Eric Shen', 'StreamNative', '', NULL, 'ericshenyuhao@outlook.com', NULL, 'Technical Product Manager', 'diffsyh', 56, 9, 21, 67, 0, 0, 0, '2015-01-12T12:50:33Z', '2024-11-01T11:29:24Z', 'https://avatars.githubusercontent.com/u/10498732?v=4', 'https://api.github.com/users/ericsyh', 'https://github.com/ericsyh', 'https://api.github.com/users/ericsyh/followers', 'https://api.github.com/users/ericsyh/following', 'https://api.github.com/users/ericsyh/gists', 'https://api.github.com/users/ericsyh/starred', 'https://api.github.com/users/ericsyh/repos', 'https://api.github.com/users/ericsyh/events', 'https://api.github.com/users/ericsyh/received_events', 0); -INSERT INTO `developer` VALUES (10544393, 'CanardMandarin', 'S', -11.3861456450012, 0, 0, 0, 0, 0, 0, 'CanardMandarin', NULL, '', NULL, NULL, NULL, NULL, NULL, 37, 6, 13, 9, 0, 0, 0, '2015-01-15T08:50:14Z', '2024-10-29T08:21:42Z', 'https://avatars.githubusercontent.com/u/10544393?v=4', 'https://api.github.com/users/CanardMandarin', 'https://github.com/CanardMandarin', 'https://api.github.com/users/CanardMandarin/followers', 'https://api.github.com/users/CanardMandarin/following', 'https://api.github.com/users/CanardMandarin/gists', 'https://api.github.com/users/CanardMandarin/starred', 'https://api.github.com/users/CanardMandarin/repos', 'https://api.github.com/users/CanardMandarin/events', 'https://api.github.com/users/CanardMandarin/received_events', 0); -INSERT INTO `developer` VALUES (10559371, 'RaymondKYLiu', 'A', 24.636662847581714, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Taipei, Taiwan', NULL, NULL, NULL, NULL, 22, 0, 4, 0, 0, 0, 0, '2015-01-16T09:15:48Z', '2024-10-15T11:25:41Z', 'https://avatars.githubusercontent.com/u/10559371?v=4', 'https://api.github.com/users/RaymondKYLiu', 'https://github.com/RaymondKYLiu', 'https://api.github.com/users/RaymondKYLiu/followers', 'https://api.github.com/users/RaymondKYLiu/following', 'https://api.github.com/users/RaymondKYLiu/gists', 'https://api.github.com/users/RaymondKYLiu/starred', 'https://api.github.com/users/RaymondKYLiu/repos', 'https://api.github.com/users/RaymondKYLiu/events', 'https://api.github.com/users/RaymondKYLiu/received_events', 0); -INSERT INTO `developer` VALUES (10602147, 'mohcer', 'A+', 10.160427807486627, 0, 0, 0, 0, 0, 0, NULL, 'Telepathy Labs Pte Ltd', 'https://mohcer.github.io/', 'National University Of Singapore', 'msayyed456@gmail.com', NULL, 'IoT | M2M | Making Sense Out Of Data', NULL, 30, 1, 1, 5, 0, 0, 0, '2015-01-19T18:18:45Z', '2024-08-20T07:48:10Z', 'https://avatars.githubusercontent.com/u/10602147?v=4', 'https://api.github.com/users/mohcer', 'https://github.com/mohcer', 'https://api.github.com/users/mohcer/followers', 'https://api.github.com/users/mohcer/following', 'https://api.github.com/users/mohcer/gists', 'https://api.github.com/users/mohcer/starred', 'https://api.github.com/users/mohcer/repos', 'https://api.github.com/users/mohcer/events', 'https://api.github.com/users/mohcer/received_events', 0); -INSERT INTO `developer` VALUES (10768439, 'af12066', 'S', -50.302099960194504, 0, 0, 0, 0, 0, 0, 'Takuma Hashimoto', 'freee K.K.', 'https://8tak4.com/', 'Saitama, Japan', 'takumaxd+github@gmail.com', 'true', 'Database reliability eng.', NULL, 72, 7, 7, 5, 0, 0, 0, '2015-01-30T05:23:02Z', '2024-10-01T04:01:26Z', 'https://avatars.githubusercontent.com/u/10768439?v=4', 'https://api.github.com/users/af12066', 'https://github.com/af12066', 'https://api.github.com/users/af12066/followers', 'https://api.github.com/users/af12066/following', 'https://api.github.com/users/af12066/gists', 'https://api.github.com/users/af12066/starred', 'https://api.github.com/users/af12066/repos', 'https://api.github.com/users/af12066/events', 'https://api.github.com/users/af12066/received_events', 0); -INSERT INTO `developer` VALUES (10799507, 'fishi0x01', 'S', -45.21410551578686, 0, 0, 0, 0, 0, 0, 'Karl Fischer', 'Red Hat', 'https://fishi.devtail.io', 'Berlin, Germany', NULL, NULL, NULL, NULL, 59, 25, 37, 40, 0, 0, 0, '2015-02-01T17:46:08Z', '2024-10-02T13:01:54Z', 'https://avatars.githubusercontent.com/u/10799507?v=4', 'https://api.github.com/users/fishi0x01', 'https://github.com/fishi0x01', 'https://api.github.com/users/fishi0x01/followers', 'https://api.github.com/users/fishi0x01/following', 'https://api.github.com/users/fishi0x01/gists', 'https://api.github.com/users/fishi0x01/starred', 'https://api.github.com/users/fishi0x01/repos', 'https://api.github.com/users/fishi0x01/events', 'https://api.github.com/users/fishi0x01/received_events', 0); -INSERT INTO `developer` VALUES (10820281, 'millaguie', 'S', -33.71725965466139, 0, 0, 0, 0, 0, 0, 'Millaguie', NULL, '', NULL, NULL, NULL, 'SecDevOps lemur', NULL, 51, 6, 19, 20, 0, 0, 0, '2015-02-02T23:56:25Z', '2024-08-20T00:02:35Z', 'https://avatars.githubusercontent.com/u/10820281?v=4', 'https://api.github.com/users/millaguie', 'https://github.com/millaguie', 'https://api.github.com/users/millaguie/followers', 'https://api.github.com/users/millaguie/following', 'https://api.github.com/users/millaguie/gists', 'https://api.github.com/users/millaguie/starred', 'https://api.github.com/users/millaguie/repos', 'https://api.github.com/users/millaguie/events', 'https://api.github.com/users/millaguie/received_events', 0); -INSERT INTO `developer` VALUES (10864240, 'strainovic', 'B+', 48.28846212709219, 0, 0, 0, 0, 0, 0, 'Nenad Strainović', 'ASEE Solutions d.o.o.', '', 'Serbia', 'nenad.strainovic@asseco-see.rs', NULL, NULL, NULL, 14, 0, 2, 2, 0, 0, 0, '2015-02-05T10:33:46Z', '2024-11-01T15:33:29Z', 'https://avatars.githubusercontent.com/u/10864240?v=4', 'https://api.github.com/users/strainovic', 'https://github.com/strainovic', 'https://api.github.com/users/strainovic/followers', 'https://api.github.com/users/strainovic/following', 'https://api.github.com/users/strainovic/gists', 'https://api.github.com/users/strainovic/starred', 'https://api.github.com/users/strainovic/repos', 'https://api.github.com/users/strainovic/events', 'https://api.github.com/users/strainovic/received_events', 0); -INSERT INTO `developer` VALUES (10966923, 'jbrockopp', 'A', 16.52601584339163, 0, 0, 0, 0, 0, 0, 'Jordan Brockopp', '@cargill @go-vela', 'https://go-vela.github.io/docs/', 'Ramsey, Minnesota', 'jordan_brockopp@cargill.com', NULL, 'Lead Engineer @ Cargill', NULL, 24, 0, 9, 15, 0, 0, 0, '2015-02-11T22:15:13Z', '2024-07-10T18:19:49Z', 'https://avatars.githubusercontent.com/u/10966923?v=4', 'https://api.github.com/users/jbrockopp', 'https://github.com/jbrockopp', 'https://api.github.com/users/jbrockopp/followers', 'https://api.github.com/users/jbrockopp/following', 'https://api.github.com/users/jbrockopp/gists', 'https://api.github.com/users/jbrockopp/starred', 'https://api.github.com/users/jbrockopp/repos', 'https://api.github.com/users/jbrockopp/events', 'https://api.github.com/users/jbrockopp/received_events', 0); -INSERT INTO `developer` VALUES (10994794, 'maxaudron', 'S', -49.235272310991654, 0, 0, 0, 0, 0, 0, 'Max Audron', 'cocaine.farm', 'https://cocaine.farm', 'Germany', 'audron@cocaine.farm', NULL, NULL, NULL, 67, 11, 14, 0, 0, 0, 0, '2015-02-13T15:39:44Z', '2024-08-27T17:38:24Z', 'https://avatars.githubusercontent.com/u/10994794?v=4', 'https://api.github.com/users/maxaudron', 'https://github.com/maxaudron', 'https://api.github.com/users/maxaudron/followers', 'https://api.github.com/users/maxaudron/following', 'https://api.github.com/users/maxaudron/gists', 'https://api.github.com/users/maxaudron/starred', 'https://api.github.com/users/maxaudron/repos', 'https://api.github.com/users/maxaudron/events', 'https://api.github.com/users/maxaudron/received_events', 0); -INSERT INTO `developer` VALUES (11025519, 'xwjdsh', 'S', -81.50358848665655, 0, 0, 0, 0, 0, 0, 'Wen Sun', NULL, 'heyws.com', 'Tokyo, Japan', 'i@hey.ws', NULL, NULL, NULL, 119, 1, 123, 24, 0, 0, 0, '2015-02-16T07:09:31Z', '2024-10-24T01:08:34Z', 'https://avatars.githubusercontent.com/u/11025519?v=4', 'https://api.github.com/users/xwjdsh', 'https://github.com/xwjdsh', 'https://api.github.com/users/xwjdsh/followers', 'https://api.github.com/users/xwjdsh/following', 'https://api.github.com/users/xwjdsh/gists', 'https://api.github.com/users/xwjdsh/starred', 'https://api.github.com/users/xwjdsh/repos', 'https://api.github.com/users/xwjdsh/events', 'https://api.github.com/users/xwjdsh/received_events', 0); -INSERT INTO `developer` VALUES (11150054, 'cablespaghetti', 'S', -62.45331015238822, 0, 0, 0, 0, 0, 0, 'Sam Weston', 'tails.com', 'https://cablespaghetti.dev', 'Romsey, UK', NULL, NULL, 'DevOps guy/professional YAML wrangler. Occasional coder and whitespace enthusiast.', NULL, 78, 7, 59, 7, 0, 0, 0, '2015-02-22T19:52:36Z', '2024-10-26T12:30:17Z', 'https://avatars.githubusercontent.com/u/11150054?v=4', 'https://api.github.com/users/cablespaghetti', 'https://github.com/cablespaghetti', 'https://api.github.com/users/cablespaghetti/followers', 'https://api.github.com/users/cablespaghetti/following', 'https://api.github.com/users/cablespaghetti/gists', 'https://api.github.com/users/cablespaghetti/starred', 'https://api.github.com/users/cablespaghetti/repos', 'https://api.github.com/users/cablespaghetti/events', 'https://api.github.com/users/cablespaghetti/received_events', 0); -INSERT INTO `developer` VALUES (11299391, 'sidx1024', 'S', -52.57751830029647, 0, 0, 0, 0, 0, 0, 'Sid', '@apolloio', '', 'India', 'sid@apollo.io', 'true', 'Staff Frontend Engineer', 'sidx1024', 67, 4, 34, 16, 0, 0, 0, '2015-03-03T17:51:31Z', '2024-10-30T11:48:00Z', 'https://avatars.githubusercontent.com/u/11299391?v=4', 'https://api.github.com/users/sidx1024', 'https://github.com/sidx1024', 'https://api.github.com/users/sidx1024/followers', 'https://api.github.com/users/sidx1024/following', 'https://api.github.com/users/sidx1024/gists', 'https://api.github.com/users/sidx1024/starred', 'https://api.github.com/users/sidx1024/repos', 'https://api.github.com/users/sidx1024/events', 'https://api.github.com/users/sidx1024/received_events', 0); -INSERT INTO `developer` VALUES (11384858, 'kamleshchandnani', 'S', -61.808958637024915, 0, 0, 0, 0, 0, 0, 'Kamlesh Chandnani', 'Razorpay', 'https://kamleshchandnani.com', 'Bangalore, India', 'kamlesh.chandnani@gmail.com', NULL, 'Design System and Dev Tools @razorpay • Past: Frontend Architect \r\n@treebohotels', '_kamlesh_', 74, 24, 450, 23, 0, 0, 0, '2015-03-09T06:22:46Z', '2024-10-30T06:18:09Z', 'https://avatars.githubusercontent.com/u/11384858?v=4', 'https://api.github.com/users/kamleshchandnani', 'https://github.com/kamleshchandnani', 'https://api.github.com/users/kamleshchandnani/followers', 'https://api.github.com/users/kamleshchandnani/following', 'https://api.github.com/users/kamleshchandnani/gists', 'https://api.github.com/users/kamleshchandnani/starred', 'https://api.github.com/users/kamleshchandnani/repos', 'https://api.github.com/users/kamleshchandnani/events', 'https://api.github.com/users/kamleshchandnani/received_events', 0); -INSERT INTO `developer` VALUES (11450812, 'WheelsVT', 'C+', 79.14255453813475, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 5, 1, 1, 0, 0, 0, 0, '2015-03-13T01:52:24Z', '2024-08-28T15:53:46Z', 'https://avatars.githubusercontent.com/u/11450812?v=4', 'https://api.github.com/users/WheelsVT', 'https://github.com/WheelsVT', 'https://api.github.com/users/WheelsVT/followers', 'https://api.github.com/users/WheelsVT/following', 'https://api.github.com/users/WheelsVT/gists', 'https://api.github.com/users/WheelsVT/starred', 'https://api.github.com/users/WheelsVT/repos', 'https://api.github.com/users/WheelsVT/events', 'https://api.github.com/users/WheelsVT/received_events', 0); -INSERT INTO `developer` VALUES (11583233, 'alran', 'A', 14.64918500821758, 0, 0, 0, 0, 0, 0, 'Alyssa', NULL, '', NULL, NULL, NULL, NULL, NULL, 23, 2, 25, 17, 0, 0, 0, '2015-03-21T08:14:10Z', '2024-09-20T21:01:25Z', 'https://avatars.githubusercontent.com/u/11583233?v=4', 'https://api.github.com/users/alran', 'https://github.com/alran', 'https://api.github.com/users/alran/followers', 'https://api.github.com/users/alran/following', 'https://api.github.com/users/alran/gists', 'https://api.github.com/users/alran/starred', 'https://api.github.com/users/alran/repos', 'https://api.github.com/users/alran/events', 'https://api.github.com/users/alran/received_events', 0); -INSERT INTO `developer` VALUES (11647838, 'dvelardez', 'B', 58.79084796928675, 0, 0, 0, 0, 0, 0, 'Daniel Velardez', NULL, '', NULL, NULL, NULL, NULL, NULL, 11, 0, 1, 4, 0, 0, 0, '2015-03-25T12:48:40Z', '2024-08-07T15:21:34Z', 'https://avatars.githubusercontent.com/u/11647838?v=4', 'https://api.github.com/users/dvelardez', 'https://github.com/dvelardez', 'https://api.github.com/users/dvelardez/followers', 'https://api.github.com/users/dvelardez/following', 'https://api.github.com/users/dvelardez/gists', 'https://api.github.com/users/dvelardez/starred', 'https://api.github.com/users/dvelardez/repos', 'https://api.github.com/users/dvelardez/events', 'https://api.github.com/users/dvelardez/received_events', 0); -INSERT INTO `developer` VALUES (11683992, 'vavdoshka', 'S', -4.479524869970075, 0, 0, 0, 0, 0, 0, 'Vladimir Avdoshka', '@kyriba ', '', 'Paris', NULL, NULL, NULL, NULL, 35, 1, 6, 0, 0, 0, 0, '2015-03-27T17:45:02Z', '2024-09-01T18:08:27Z', 'https://avatars.githubusercontent.com/u/11683992?v=4', 'https://api.github.com/users/vavdoshka', 'https://github.com/vavdoshka', 'https://api.github.com/users/vavdoshka/followers', 'https://api.github.com/users/vavdoshka/following', 'https://api.github.com/users/vavdoshka/gists', 'https://api.github.com/users/vavdoshka/starred', 'https://api.github.com/users/vavdoshka/repos', 'https://api.github.com/users/vavdoshka/events', 'https://api.github.com/users/vavdoshka/received_events', 0); -INSERT INTO `developer` VALUES (11695998, 'secfigo', 'S', -68.82269545841623, 0, 0, 0, 0, 0, 0, 'Mohammed A Imran', 'Practical DevSecOps', 'https://www.practical-devsecops.com', 'Singapore', NULL, NULL, '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 ', NULL, 85, 16, 320, 6, 0, 0, 0, '2015-03-28T15:26:15Z', '2024-07-12T07:28:36Z', 'https://avatars.githubusercontent.com/u/11695998?v=4', 'https://api.github.com/users/secfigo', 'https://github.com/secfigo', 'https://api.github.com/users/secfigo/followers', 'https://api.github.com/users/secfigo/following', 'https://api.github.com/users/secfigo/gists', 'https://api.github.com/users/secfigo/starred', 'https://api.github.com/users/secfigo/repos', 'https://api.github.com/users/secfigo/events', 'https://api.github.com/users/secfigo/received_events', 0); -INSERT INTO `developer` VALUES (11711101, 'YSaxon', 'S', -59.49078706082393, 0, 0, 0, 0, 0, 0, 'Yaakov Saxon', 'North American Bancard', '', NULL, 'ysaxon@gmail.com', NULL, NULL, NULL, 84, 27, 9, 1, 0, 0, 0, '2015-03-29T23:07:25Z', '2024-08-22T20:53:11Z', 'https://avatars.githubusercontent.com/u/11711101?v=4', 'https://api.github.com/users/YSaxon', 'https://github.com/YSaxon', 'https://api.github.com/users/YSaxon/followers', 'https://api.github.com/users/YSaxon/following', 'https://api.github.com/users/YSaxon/gists', 'https://api.github.com/users/YSaxon/starred', 'https://api.github.com/users/YSaxon/repos', 'https://api.github.com/users/YSaxon/events', 'https://api.github.com/users/YSaxon/received_events', 0); -INSERT INTO `developer` VALUES (11719334, 'johncming', 'S', -82.69242575807192, 0, 0, 0, 0, 0, 0, 'johncming', NULL, '', 'Beijing', NULL, NULL, NULL, NULL, 147, 10, 22, 92, 0, 0, 0, '2015-03-30T12:05:39Z', '2024-10-24T10:33:01Z', 'https://avatars.githubusercontent.com/u/11719334?v=4', 'https://api.github.com/users/johncming', 'https://github.com/johncming', 'https://api.github.com/users/johncming/followers', 'https://api.github.com/users/johncming/following', 'https://api.github.com/users/johncming/gists', 'https://api.github.com/users/johncming/starred', 'https://api.github.com/users/johncming/repos', 'https://api.github.com/users/johncming/events', 'https://api.github.com/users/johncming/received_events', 0); -INSERT INTO `developer` VALUES (11940780, 'bojan-embroker', 'C+', 80.74683261300105, 0, 0, 0, 0, 0, 0, 'Bojan Petrovic', NULL, 'https://www.embroker.com', NULL, NULL, NULL, NULL, NULL, 5, 0, 0, 0, 0, 0, 0, '2015-04-14T09:44:16Z', '2022-04-18T21:30:48Z', 'https://avatars.githubusercontent.com/u/11940780?v=4', 'https://api.github.com/users/bojan-embroker', 'https://github.com/bojan-embroker', 'https://api.github.com/users/bojan-embroker/followers', 'https://api.github.com/users/bojan-embroker/following', 'https://api.github.com/users/bojan-embroker/gists', 'https://api.github.com/users/bojan-embroker/starred', 'https://api.github.com/users/bojan-embroker/repos', 'https://api.github.com/users/bojan-embroker/events', 'https://api.github.com/users/bojan-embroker/received_events', 0); -INSERT INTO `developer` VALUES (12074633, 'jef', 'A-', 31.125461385861332, 0, 0, 0, 0, 0, 0, 'Jef LeCompte', '@GreenlightMe ', 'https://jef.buzz', 'Seattle, WA', NULL, 'true', 'Currently working on tools at @GreenlightMe. Owner of streetmerchant and maintainer of @beetbox.', 'litterboxbidet', 15, 6, 374, 11, 0, 0, 0, '2015-04-22T20:57:32Z', '2024-10-21T19:09:25Z', 'https://avatars.githubusercontent.com/u/12074633?v=4', 'https://api.github.com/users/jef', 'https://github.com/jef', 'https://api.github.com/users/jef/followers', 'https://api.github.com/users/jef/following', 'https://api.github.com/users/jef/gists', 'https://api.github.com/users/jef/starred', 'https://api.github.com/users/jef/repos', 'https://api.github.com/users/jef/events', 'https://api.github.com/users/jef/received_events', 0); -INSERT INTO `developer` VALUES (12264132, 'vugardzhamalov', 'C+', 81.48043915733238, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 4, 0, 2, 2, 0, 0, 0, '2015-05-06T00:47:36Z', '2024-03-26T14:16:06Z', 'https://avatars.githubusercontent.com/u/12264132?v=4', 'https://api.github.com/users/vugardzhamalov', 'https://github.com/vugardzhamalov', 'https://api.github.com/users/vugardzhamalov/followers', 'https://api.github.com/users/vugardzhamalov/following', 'https://api.github.com/users/vugardzhamalov/gists', 'https://api.github.com/users/vugardzhamalov/starred', 'https://api.github.com/users/vugardzhamalov/repos', 'https://api.github.com/users/vugardzhamalov/events', 'https://api.github.com/users/vugardzhamalov/received_events', 0); -INSERT INTO `developer` VALUES (12499813, 'andrew-demb', 'S', -85.83231160987359, 0, 0, 0, 0, 0, 0, 'Andrii Dembitskyi', NULL, '', 'Ukraine', NULL, NULL, NULL, NULL, 175, 0, 24, 49, 0, 0, 0, '2015-05-18T16:45:12Z', '2024-10-09T11:01:13Z', 'https://avatars.githubusercontent.com/u/12499813?v=4', 'https://api.github.com/users/andrew-demb', 'https://github.com/andrew-demb', 'https://api.github.com/users/andrew-demb/followers', 'https://api.github.com/users/andrew-demb/following', 'https://api.github.com/users/andrew-demb/gists', 'https://api.github.com/users/andrew-demb/starred', 'https://api.github.com/users/andrew-demb/repos', 'https://api.github.com/users/andrew-demb/events', 'https://api.github.com/users/andrew-demb/received_events', 0); -INSERT INTO `developer` VALUES (12694873, 'jaroslaw-osmanski', 'B-', 66.14605407044671, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 8, 1, 3, 0, 0, 0, 0, '2015-06-01T10:56:41Z', '2024-02-29T14:59:00Z', 'https://avatars.githubusercontent.com/u/12694873?v=4', 'https://api.github.com/users/jaroslaw-osmanski', 'https://github.com/jaroslaw-osmanski', 'https://api.github.com/users/jaroslaw-osmanski/followers', 'https://api.github.com/users/jaroslaw-osmanski/following', 'https://api.github.com/users/jaroslaw-osmanski/gists', 'https://api.github.com/users/jaroslaw-osmanski/starred', 'https://api.github.com/users/jaroslaw-osmanski/repos', 'https://api.github.com/users/jaroslaw-osmanski/events', 'https://api.github.com/users/jaroslaw-osmanski/received_events', 0); -INSERT INTO `developer` VALUES (12775766, 'wowinter13', 'S', -24.764412800191682, 0, 0, 0, 0, 0, 0, 'Vladislav Dyachenko', NULL, 'https://vladyachenko.com', 'Tbilisi, Georgia | Madrid, Spain ', 'gotta.go.vlad@gmail.com', 'true', 'Software Engineer aka glorious code invoker. ', NULL, 43, 26, 34, 6, 0, 0, 0, '2015-06-06T14:42:01Z', '2024-08-09T07:27:33Z', 'https://avatars.githubusercontent.com/u/12775766?v=4', 'https://api.github.com/users/wowinter13', 'https://github.com/wowinter13', 'https://api.github.com/users/wowinter13/followers', 'https://api.github.com/users/wowinter13/following', 'https://api.github.com/users/wowinter13/gists', 'https://api.github.com/users/wowinter13/starred', 'https://api.github.com/users/wowinter13/repos', 'https://api.github.com/users/wowinter13/events', 'https://api.github.com/users/wowinter13/received_events', 0); -INSERT INTO `developer` VALUES (12932925, 'jsalado', 'B+', 44.611991538856884, 0, 0, 0, 0, 0, 0, 'Javier Salado', 'Anyverse', '', 'Madrid, Spain', NULL, NULL, NULL, NULL, 14, 0, 6, 1, 0, 0, 0, '2015-06-17T08:12:16Z', '2024-10-06T11:29:25Z', 'https://avatars.githubusercontent.com/u/12932925?v=4', 'https://api.github.com/users/jsalado', 'https://github.com/jsalado', 'https://api.github.com/users/jsalado/followers', 'https://api.github.com/users/jsalado/following', 'https://api.github.com/users/jsalado/gists', 'https://api.github.com/users/jsalado/starred', 'https://api.github.com/users/jsalado/repos', 'https://api.github.com/users/jsalado/events', 'https://api.github.com/users/jsalado/received_events', 0); -INSERT INTO `developer` VALUES (13314548, 'tsthght', 'S', -59.28741543452711, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, '781181214@qq.com', NULL, 'CS Master of NPU', NULL, 81, 0, 13, 2, 0, 0, 0, '2015-07-13T12:24:37Z', '2024-10-30T14:08:19Z', 'https://avatars.githubusercontent.com/u/13314548?v=4', 'https://api.github.com/users/tsthght', 'https://github.com/tsthght', 'https://api.github.com/users/tsthght/followers', 'https://api.github.com/users/tsthght/following', 'https://api.github.com/users/tsthght/gists', 'https://api.github.com/users/tsthght/starred', 'https://api.github.com/users/tsthght/repos', 'https://api.github.com/users/tsthght/events', 'https://api.github.com/users/tsthght/received_events', 0); -INSERT INTO `developer` VALUES (13323303, 'suzuki-shunsuke', 'S', -93.61221786805099, 0, 0, 0, 0, 0, 0, 'Shunsuke Suzuki', NULL, 'https://suzuki-shunsuke.github.io/profile/', 'Tokyo, Japan', NULL, NULL, 'Platform Engineer / OSS Developer / Go', 'szkdash_en', 514, 36, 340, 0, 0, 0, 0, '2015-07-13T23:22:32Z', '2024-08-01T02:05:21Z', 'https://avatars.githubusercontent.com/u/13323303?v=4', 'https://api.github.com/users/suzuki-shunsuke', 'https://github.com/suzuki-shunsuke', 'https://api.github.com/users/suzuki-shunsuke/followers', 'https://api.github.com/users/suzuki-shunsuke/following', 'https://api.github.com/users/suzuki-shunsuke/gists', 'https://api.github.com/users/suzuki-shunsuke/starred', 'https://api.github.com/users/suzuki-shunsuke/repos', 'https://api.github.com/users/suzuki-shunsuke/events', 'https://api.github.com/users/suzuki-shunsuke/received_events', 0); -INSERT INTO `developer` VALUES (13362741, 'ianmuge', 'S', -44.307400379506646, 0, 0, 0, 0, 0, 0, 'Ian Muge', NULL, 'https://ian-muge.medium.com/', NULL, NULL, NULL, NULL, NULL, 60, 19, 21, 39, 0, 0, 0, '2015-07-16T08:36:44Z', '2024-10-03T08:58:09Z', 'https://avatars.githubusercontent.com/u/13362741?v=4', 'https://api.github.com/users/ianmuge', 'https://github.com/ianmuge', 'https://api.github.com/users/ianmuge/followers', 'https://api.github.com/users/ianmuge/following', 'https://api.github.com/users/ianmuge/gists', 'https://api.github.com/users/ianmuge/starred', 'https://api.github.com/users/ianmuge/repos', 'https://api.github.com/users/ianmuge/events', 'https://api.github.com/users/ianmuge/received_events', 0); -INSERT INTO `developer` VALUES (13482895, 'liboz', 'S', -1.4105837917349984, 0, 0, 0, 0, 0, 0, 'Libo Zeng', NULL, 'libozeng.com', NULL, NULL, NULL, NULL, NULL, 33, 9, 7, 0, 0, 0, 0, '2015-07-24T11:01:49Z', '2024-11-02T11:25:48Z', 'https://avatars.githubusercontent.com/u/13482895?v=4', 'https://api.github.com/users/liboz', 'https://github.com/liboz', 'https://api.github.com/users/liboz/followers', 'https://api.github.com/users/liboz/following', 'https://api.github.com/users/liboz/gists', 'https://api.github.com/users/liboz/starred', 'https://api.github.com/users/liboz/repos', 'https://api.github.com/users/liboz/events', 'https://api.github.com/users/liboz/received_events', 0); -INSERT INTO `developer` VALUES (13682642, 'rohitkeshwani07', 'A+', 11.480011400261159, 0, 0, 0, 0, 0, 0, 'Rohit Keshwani', '@razorpay ', 'rkeshwani.com', 'Bangaluru', NULL, NULL, NULL, NULL, 27, 0, 6, 33, 0, 0, 0, '2015-08-06T17:57:41Z', '2024-10-21T10:55:14Z', 'https://avatars.githubusercontent.com/u/13682642?v=4', 'https://api.github.com/users/rohitkeshwani07', 'https://github.com/rohitkeshwani07', 'https://api.github.com/users/rohitkeshwani07/followers', 'https://api.github.com/users/rohitkeshwani07/following', 'https://api.github.com/users/rohitkeshwani07/gists', 'https://api.github.com/users/rohitkeshwani07/starred', 'https://api.github.com/users/rohitkeshwani07/repos', 'https://api.github.com/users/rohitkeshwani07/events', 'https://api.github.com/users/rohitkeshwani07/received_events', 0); -INSERT INTO `developer` VALUES (13701856, 'dpaolella', 'A', 21.371874083847832, 0, 0, 0, 0, 0, 0, 'David Paolella', 'Yale University', '', 'New Haven, CT', 'ddpaolella@gmail.com', NULL, 'I am a master\'s student at the Yale studying clean energy and data science.', NULL, 23, 0, 5, 5, 0, 0, 0, '2015-08-08T01:45:08Z', '2021-06-15T23:20:48Z', 'https://avatars.githubusercontent.com/u/13701856?v=4', 'https://api.github.com/users/dpaolella', 'https://github.com/dpaolella', 'https://api.github.com/users/dpaolella/followers', 'https://api.github.com/users/dpaolella/following', 'https://api.github.com/users/dpaolella/gists', 'https://api.github.com/users/dpaolella/starred', 'https://api.github.com/users/dpaolella/repos', 'https://api.github.com/users/dpaolella/events', 'https://api.github.com/users/dpaolella/received_events', 0); -INSERT INTO `developer` VALUES (13718901, 'J12934', 'S', -47.821350762527224, 0, 0, 0, 0, 0, 0, 'Jannik Hollenbach', '@iteratec', '', 'Hamburg, Germany', NULL, NULL, NULL, NULL, 60, 9, 71, 12, 0, 0, 0, '2015-08-09T14:48:52Z', '2024-10-09T06:29:22Z', 'https://avatars.githubusercontent.com/u/13718901?v=4', 'https://api.github.com/users/J12934', 'https://github.com/J12934', 'https://api.github.com/users/J12934/followers', 'https://api.github.com/users/J12934/following', 'https://api.github.com/users/J12934/gists', 'https://api.github.com/users/J12934/starred', 'https://api.github.com/users/J12934/repos', 'https://api.github.com/users/J12934/events', 'https://api.github.com/users/J12934/received_events', 0); -INSERT INTO `developer` VALUES (13828605, 'shonge', 'S', -51.818738129751594, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, 'im.songge@gmail.com', NULL, NULL, NULL, 67, 0, 27, 50, 0, 0, 0, '2015-08-17T07:02:28Z', '2024-10-05T11:27:58Z', 'https://avatars.githubusercontent.com/u/13828605?v=4', 'https://api.github.com/users/shonge', 'https://github.com/shonge', 'https://api.github.com/users/shonge/followers', 'https://api.github.com/users/shonge/following', 'https://api.github.com/users/shonge/gists', 'https://api.github.com/users/shonge/starred', 'https://api.github.com/users/shonge/repos', 'https://api.github.com/users/shonge/events', 'https://api.github.com/users/shonge/received_events', 0); -INSERT INTO `developer` VALUES (14014254, 'ankitjain28may', 'S', -93.02973847295357, 0, 0, 0, 0, 0, 0, 'Ankit Jain', '@Razorpay', 'https://ankitjain28.me/', 'Bangalore', 'ankitjain28may77@gmail.com', 'true', 'DevOps Engineer @razorpay | GSoC alum @drupal | #GitHubCampusExpert | GCI mentor @drupal | Speaker | Writer', 'ankitjain28may', 275, 8, 216, 157, 0, 0, 0, '2015-08-28T10:29:36Z', '2024-10-20T11:37:59Z', 'https://avatars.githubusercontent.com/u/14014254?v=4', 'https://api.github.com/users/ankitjain28may', 'https://github.com/ankitjain28may', 'https://api.github.com/users/ankitjain28may/followers', 'https://api.github.com/users/ankitjain28may/following', 'https://api.github.com/users/ankitjain28may/gists', 'https://api.github.com/users/ankitjain28may/starred', 'https://api.github.com/users/ankitjain28may/repos', 'https://api.github.com/users/ankitjain28may/events', 'https://api.github.com/users/ankitjain28may/received_events', 0); -INSERT INTO `developer` VALUES (14102616, 'ogugu9', 'A-', 28.612042547188132, 0, 0, 0, 0, 0, 0, 'ogugu', 'freee', '', 'Tokyo', 'e.cos.isin@gmail.com', 'true', NULL, 'ogugudayo', 18, 0, 18, 13, 0, 0, 0, '2015-09-03T02:09:23Z', '2024-10-22T11:32:25Z', 'https://avatars.githubusercontent.com/u/14102616?v=4', 'https://api.github.com/users/ogugu9', 'https://github.com/ogugu9', 'https://api.github.com/users/ogugu9/followers', 'https://api.github.com/users/ogugu9/following', 'https://api.github.com/users/ogugu9/gists', 'https://api.github.com/users/ogugu9/starred', 'https://api.github.com/users/ogugu9/repos', 'https://api.github.com/users/ogugu9/events', 'https://api.github.com/users/ogugu9/received_events', 0); -INSERT INTO `developer` VALUES (14179520, 'eerkunt', 'S', -17.841741376547194, 0, 0, 0, 0, 0, 0, 'Emre Erkunt', NULL, '', 'London, UK', NULL, NULL, 'Jack of all trades, master of none.', NULL, 37, 9, 135, 12, 0, 0, 0, '2015-09-08T12:28:48Z', '2024-11-02T11:26:08Z', 'https://avatars.githubusercontent.com/u/14179520?v=4', 'https://api.github.com/users/eerkunt', 'https://github.com/eerkunt', 'https://api.github.com/users/eerkunt/followers', 'https://api.github.com/users/eerkunt/following', 'https://api.github.com/users/eerkunt/gists', 'https://api.github.com/users/eerkunt/starred', 'https://api.github.com/users/eerkunt/repos', 'https://api.github.com/users/eerkunt/events', 'https://api.github.com/users/eerkunt/received_events', 0); -INSERT INTO `developer` VALUES (14851307, 'fllaca', 'S', -60.706694220755764, 0, 0, 0, 0, 0, 0, 'Fernando Llaca', NULL, 'http://twitter.com/NandoLlaca', NULL, NULL, NULL, 'Code is a metaphore', NULL, 78, 5, 31, 9, 0, 0, 0, '2015-09-26T15:40:30Z', '2024-10-31T10:42:07Z', 'https://avatars.githubusercontent.com/u/14851307?v=4', 'https://api.github.com/users/fllaca', 'https://github.com/fllaca', 'https://api.github.com/users/fllaca/followers', 'https://api.github.com/users/fllaca/following', 'https://api.github.com/users/fllaca/gists', 'https://api.github.com/users/fllaca/starred', 'https://api.github.com/users/fllaca/repos', 'https://api.github.com/users/fllaca/events', 'https://api.github.com/users/fllaca/received_events', 0); -INSERT INTO `developer` VALUES (14923414, 'awwithro', 'A', 15.95253367435644, 0, 0, 0, 0, 0, 0, 'Alex Withrow', 'Artisan Insight', '', 'Denver, CO', 'alex@artisaninsight.com', NULL, 'Cofounder @ Artisan Insight', NULL, 25, 0, 6, 1, 0, 0, 0, '2015-10-01T10:59:20Z', '2024-10-28T13:51:48Z', 'https://avatars.githubusercontent.com/u/14923414?v=4', 'https://api.github.com/users/awwithro', 'https://github.com/awwithro', 'https://api.github.com/users/awwithro/followers', 'https://api.github.com/users/awwithro/following', 'https://api.github.com/users/awwithro/gists', 'https://api.github.com/users/awwithro/starred', 'https://api.github.com/users/awwithro/repos', 'https://api.github.com/users/awwithro/events', 'https://api.github.com/users/awwithro/received_events', 0); -INSERT INTO `developer` VALUES (14986757, 'jinhyukchang', 'B+', 47.15724040763518, 0, 0, 0, 0, 0, 0, 'Jin Hyuk Chang', 'Lyft', '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 14, 0, 3, 0, 0, 0, 0, '2015-10-05T21:51:11Z', '2023-07-01T00:11:31Z', 'https://avatars.githubusercontent.com/u/14986757?v=4', 'https://api.github.com/users/jinhyukchang', 'https://github.com/jinhyukchang', 'https://api.github.com/users/jinhyukchang/followers', 'https://api.github.com/users/jinhyukchang/following', 'https://api.github.com/users/jinhyukchang/gists', 'https://api.github.com/users/jinhyukchang/starred', 'https://api.github.com/users/jinhyukchang/repos', 'https://api.github.com/users/jinhyukchang/events', 'https://api.github.com/users/jinhyukchang/received_events', 0); -INSERT INTO `developer` VALUES (15024405, 'slaterx', 'S', -48.01224315184338, 0, 0, 0, 0, 0, 0, 'Gleidson Nascimento', 'Urvin Finance', '', 'Wellington, NZ', 'slaterx@live.com', 'true', NULL, 'slaterx', 64, 3, 20, 1, 0, 0, 0, '2015-10-08T01:45:11Z', '2024-10-05T23:23:14Z', 'https://avatars.githubusercontent.com/u/15024405?v=4', 'https://api.github.com/users/slaterx', 'https://github.com/slaterx', 'https://api.github.com/users/slaterx/followers', 'https://api.github.com/users/slaterx/following', 'https://api.github.com/users/slaterx/gists', 'https://api.github.com/users/slaterx/starred', 'https://api.github.com/users/slaterx/repos', 'https://api.github.com/users/slaterx/events', 'https://api.github.com/users/slaterx/received_events', 0); -INSERT INTO `developer` VALUES (15034155, 'g1eny0ung', 'S', -62.02596986553826, 0, 0, 0, 0, 0, 0, 'Yue Yang', NULL, 'https://g1en.site', 'Beijing, China', 'g1enyy0ung@gmail.com', 'true', 'Enjoy life in your own way. 🎐\r\n\r\nMaintainer of @chaos-mesh.\r\n\r\nFormer @pingcap.', 'g1eny0ung', 75, 2, 187, 87, 0, 0, 0, '2015-10-08T14:12:01Z', '2024-09-02T10:14:27Z', 'https://avatars.githubusercontent.com/u/15034155?v=4', 'https://api.github.com/users/g1eny0ung', 'https://github.com/g1eny0ung', 'https://api.github.com/users/g1eny0ung/followers', 'https://api.github.com/users/g1eny0ung/following', 'https://api.github.com/users/g1eny0ung/gists', 'https://api.github.com/users/g1eny0ung/starred', 'https://api.github.com/users/g1eny0ung/repos', 'https://api.github.com/users/g1eny0ung/events', 'https://api.github.com/users/g1eny0ung/received_events', 0); -INSERT INTO `developer` VALUES (15171720, 'lukeplausin', 'A+', 11.484557031878762, 0, 0, 0, 0, 0, 0, 'Luke Plausin', NULL, 'https://luke.plaus.in/', 'London, GB', NULL, NULL, 'Cloud, Python, NodeJS, Embedded, IoT, Emerging Tech. \r\n\r\nRead my blog!\r\nhttps://luke.plaus.in/', NULL, 26, 22, 10, 9, 0, 0, 0, '2015-10-17T14:09:20Z', '2024-09-03T23:10:32Z', 'https://avatars.githubusercontent.com/u/15171720?v=4', 'https://api.github.com/users/lukeplausin', 'https://github.com/lukeplausin', 'https://api.github.com/users/lukeplausin/followers', 'https://api.github.com/users/lukeplausin/following', 'https://api.github.com/users/lukeplausin/gists', 'https://api.github.com/users/lukeplausin/starred', 'https://api.github.com/users/lukeplausin/repos', 'https://api.github.com/users/lukeplausin/events', 'https://api.github.com/users/lukeplausin/received_events', 0); -INSERT INTO `developer` VALUES (15193941, 'afoninsky', 'S', -41.61585770602463, 0, 0, 0, 0, 0, 0, 'Andrey Afoninsky', NULL, '', 'Saint Petersburg', 'vkfont@gmail.com', NULL, NULL, NULL, 59, 18, 14, 4, 0, 0, 0, '2015-10-19T10:32:57Z', '2024-09-05T12:15:13Z', 'https://avatars.githubusercontent.com/u/15193941?v=4', 'https://api.github.com/users/afoninsky', 'https://github.com/afoninsky', 'https://api.github.com/users/afoninsky/followers', 'https://api.github.com/users/afoninsky/following', 'https://api.github.com/users/afoninsky/gists', 'https://api.github.com/users/afoninsky/starred', 'https://api.github.com/users/afoninsky/repos', 'https://api.github.com/users/afoninsky/events', 'https://api.github.com/users/afoninsky/received_events', 0); -INSERT INTO `developer` VALUES (15611634, 'BeyondEvil', 'S', -30.02170981884289, 0, 0, 0, 0, 0, 0, 'Jim Brännlund', NULL, '', 'Sweden', NULL, NULL, NULL, NULL, 48, 24, 20, 0, 0, 0, 0, '2015-11-02T13:08:12Z', '2024-09-28T12:48:21Z', 'https://avatars.githubusercontent.com/u/15611634?v=4', 'https://api.github.com/users/BeyondEvil', 'https://github.com/BeyondEvil', 'https://api.github.com/users/BeyondEvil/followers', 'https://api.github.com/users/BeyondEvil/following', 'https://api.github.com/users/BeyondEvil/gists', 'https://api.github.com/users/BeyondEvil/starred', 'https://api.github.com/users/BeyondEvil/repos', 'https://api.github.com/users/BeyondEvil/events', 'https://api.github.com/users/BeyondEvil/received_events', 0); -INSERT INTO `developer` VALUES (15668291, 'vanneback', 'B+', 42.521724703039055, 0, 0, 0, 0, 0, 0, 'Emil', 'elastisys', '', 'Umeå, Sweden', 'emil.vanneback@elastisys.com', NULL, 'Working mainly in the CNCF landscape. Running infrastructure with kubernetes and related tools.', NULL, 16, 0, 2, 0, 0, 0, 0, '2015-11-05T09:13:27Z', '2023-11-16T14:43:43Z', 'https://avatars.githubusercontent.com/u/15668291?v=4', 'https://api.github.com/users/vanneback', 'https://github.com/vanneback', 'https://api.github.com/users/vanneback/followers', 'https://api.github.com/users/vanneback/following', 'https://api.github.com/users/vanneback/gists', 'https://api.github.com/users/vanneback/starred', 'https://api.github.com/users/vanneback/repos', 'https://api.github.com/users/vanneback/events', 'https://api.github.com/users/vanneback/received_events', 0); -INSERT INTO `developer` VALUES (16011087, 'ttrolololll', 'C+', 75.55170368327325, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 6, 0, 1, 0, 0, 0, 0, '2015-11-25T05:05:44Z', '2024-10-28T06:44:46Z', 'https://avatars.githubusercontent.com/u/16011087?v=4', 'https://api.github.com/users/ttrolololll', 'https://github.com/ttrolololll', 'https://api.github.com/users/ttrolololll/followers', 'https://api.github.com/users/ttrolololll/following', 'https://api.github.com/users/ttrolololll/gists', 'https://api.github.com/users/ttrolololll/starred', 'https://api.github.com/users/ttrolololll/repos', 'https://api.github.com/users/ttrolololll/events', 'https://api.github.com/users/ttrolololll/received_events', 0); -INSERT INTO `developer` VALUES (16047455, 'paichinger', 'B-', 63.59421046778232, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 10, 0, 0, 2, 0, 0, 0, '2015-11-27T13:35:05Z', '2024-09-13T09:49:31Z', 'https://avatars.githubusercontent.com/u/16047455?v=4', 'https://api.github.com/users/paichinger', 'https://github.com/paichinger', 'https://api.github.com/users/paichinger/followers', 'https://api.github.com/users/paichinger/following', 'https://api.github.com/users/paichinger/gists', 'https://api.github.com/users/paichinger/starred', 'https://api.github.com/users/paichinger/repos', 'https://api.github.com/users/paichinger/events', 'https://api.github.com/users/paichinger/received_events', 0); -INSERT INTO `developer` VALUES (16238479, 'premsvmm', 'A-', 31.757739696606457, 0, 0, 0, 0, 0, 0, 'Premkumar', 'Razorpay', 'https://premsvmm.com', 'Bengaluru', 'prem.svmm@gmail.com', NULL, 'Staff SDET at Razorpay', 'PremSvmm', 20, 4, 2, 1, 0, 0, 0, '2015-12-10T09:50:33Z', '2024-10-29T01:36:14Z', 'https://avatars.githubusercontent.com/u/16238479?v=4', 'https://api.github.com/users/premsvmm', 'https://github.com/premsvmm', 'https://api.github.com/users/premsvmm/followers', 'https://api.github.com/users/premsvmm/following', 'https://api.github.com/users/premsvmm/gists', 'https://api.github.com/users/premsvmm/starred', 'https://api.github.com/users/premsvmm/repos', 'https://api.github.com/users/premsvmm/events', 'https://api.github.com/users/premsvmm/received_events', 0); -INSERT INTO `developer` VALUES (16321214, 'alles-klar', 'B-', 62.7956717551728, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 9, 0, 3, 0, 0, 0, 0, '2015-12-16T12:30:46Z', '2024-10-18T11:36:09Z', 'https://avatars.githubusercontent.com/u/16321214?v=4', 'https://api.github.com/users/alles-klar', 'https://github.com/alles-klar', 'https://api.github.com/users/alles-klar/followers', 'https://api.github.com/users/alles-klar/following', 'https://api.github.com/users/alles-klar/gists', 'https://api.github.com/users/alles-klar/starred', 'https://api.github.com/users/alles-klar/repos', 'https://api.github.com/users/alles-klar/events', 'https://api.github.com/users/alles-klar/received_events', 0); -INSERT INTO `developer` VALUES (16437100, 'fewdan', 'B+', 48.440666841117, 0, 0, 0, 0, 0, 0, 'Yihao Fu', NULL, '', 'China', NULL, NULL, NULL, NULL, 11, 0, 21, 0, 0, 0, 0, '2015-12-25T14:12:50Z', '2024-04-09T16:53:29Z', 'https://avatars.githubusercontent.com/u/16437100?v=4', 'https://api.github.com/users/fewdan', 'https://github.com/fewdan', 'https://api.github.com/users/fewdan/followers', 'https://api.github.com/users/fewdan/following', 'https://api.github.com/users/fewdan/gists', 'https://api.github.com/users/fewdan/starred', 'https://api.github.com/users/fewdan/repos', 'https://api.github.com/users/fewdan/events', 'https://api.github.com/users/fewdan/received_events', 0); -INSERT INTO `developer` VALUES (17157801, 'harmjanblok', 'A-', 26.277448236316147, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 21, 2, 5, 0, 0, 0, 0, '2016-02-10T09:25:17Z', '2024-10-22T15:33:41Z', 'https://avatars.githubusercontent.com/u/17157801?v=4', 'https://api.github.com/users/harmjanblok', 'https://github.com/harmjanblok', 'https://api.github.com/users/harmjanblok/followers', 'https://api.github.com/users/harmjanblok/following', 'https://api.github.com/users/harmjanblok/gists', 'https://api.github.com/users/harmjanblok/starred', 'https://api.github.com/users/harmjanblok/repos', 'https://api.github.com/users/harmjanblok/events', 'https://api.github.com/users/harmjanblok/received_events', 0); -INSERT INTO `developer` VALUES (17161846, 'AsierRF', 'B-', 67.27727578990373, 0, 0, 0, 0, 0, 0, 'Asier', NULL, '', NULL, NULL, NULL, NULL, NULL, 8, 0, 2, 0, 0, 0, 0, '2016-02-10T14:30:29Z', '2024-10-21T12:11:56Z', 'https://avatars.githubusercontent.com/u/17161846?v=4', 'https://api.github.com/users/AsierRF', 'https://github.com/AsierRF', 'https://api.github.com/users/AsierRF/followers', 'https://api.github.com/users/AsierRF/following', 'https://api.github.com/users/AsierRF/gists', 'https://api.github.com/users/AsierRF/starred', 'https://api.github.com/users/AsierRF/repos', 'https://api.github.com/users/AsierRF/events', 'https://api.github.com/users/AsierRF/received_events', 0); -INSERT INTO `developer` VALUES (17177924, 'no-sec-marko', 'B+', 47.643440360543146, 0, 0, 0, 0, 0, 0, 'Marko', NULL, '', NULL, NULL, NULL, NULL, NULL, 12, 0, 12, 6, 0, 0, 0, '2016-02-11T13:02:52Z', '2024-07-25T11:06:59Z', 'https://avatars.githubusercontent.com/u/17177924?v=4', 'https://api.github.com/users/no-sec-marko', 'https://github.com/no-sec-marko', 'https://api.github.com/users/no-sec-marko/followers', 'https://api.github.com/users/no-sec-marko/following', 'https://api.github.com/users/no-sec-marko/gists', 'https://api.github.com/users/no-sec-marko/starred', 'https://api.github.com/users/no-sec-marko/repos', 'https://api.github.com/users/no-sec-marko/events', 'https://api.github.com/users/no-sec-marko/received_events', 0); -INSERT INTO `developer` VALUES (17189683, 'chrismellard', 'S', -76.04310469799938, 0, 0, 0, 0, 0, 0, 'Chris Mellard', NULL, '', 'New Zealand', NULL, NULL, NULL, NULL, 119, 4, 16, 2, 0, 0, 0, '2016-02-12T03:22:37Z', '2024-10-13T11:27:55Z', 'https://avatars.githubusercontent.com/u/17189683?v=4', 'https://api.github.com/users/chrismellard', 'https://github.com/chrismellard', 'https://api.github.com/users/chrismellard/followers', 'https://api.github.com/users/chrismellard/following', 'https://api.github.com/users/chrismellard/gists', 'https://api.github.com/users/chrismellard/starred', 'https://api.github.com/users/chrismellard/repos', 'https://api.github.com/users/chrismellard/events', 'https://api.github.com/users/chrismellard/received_events', 0); -INSERT INTO `developer` VALUES (17215988, 'propersam', 'S', -56.281333530122566, 0, 0, 0, 0, 0, 0, 'Samuel Ameh', NULL, '', 'Lagos, Nigeria', 'propersam2012@gmail.com', NULL, 'Simple, straight to the point and a fast learner | Software Developer | Data-science / Machine-learning enthusiasts | Bug Researcher in the making', NULL, 76, 1, 14, 5, 0, 0, 0, '2016-02-13T10:48:09Z', '2024-09-17T19:13:47Z', 'https://avatars.githubusercontent.com/u/17215988?v=4', 'https://api.github.com/users/propersam', 'https://github.com/propersam', 'https://api.github.com/users/propersam/followers', 'https://api.github.com/users/propersam/following', 'https://api.github.com/users/propersam/gists', 'https://api.github.com/users/propersam/starred', 'https://api.github.com/users/propersam/repos', 'https://api.github.com/users/propersam/events', 'https://api.github.com/users/propersam/received_events', 0); -INSERT INTO `developer` VALUES (17292393, 'sterchelen', 'S', -14.237179098512186, 0, 0, 0, 0, 0, 0, 'Nicolas Sterchele', NULL, 'https://www.sterchelen.net', NULL, 'nicolas@sterchelen.net', NULL, 'Street-fighting unix geek', NULL, 38, 5, 17, 12, 0, 0, 0, '2016-02-17T10:58:40Z', '2024-10-05T05:20:05Z', 'https://avatars.githubusercontent.com/u/17292393?v=4', 'https://api.github.com/users/sterchelen', 'https://github.com/sterchelen', 'https://api.github.com/users/sterchelen/followers', 'https://api.github.com/users/sterchelen/following', 'https://api.github.com/users/sterchelen/gists', 'https://api.github.com/users/sterchelen/starred', 'https://api.github.com/users/sterchelen/repos', 'https://api.github.com/users/sterchelen/events', 'https://api.github.com/users/sterchelen/received_events', 0); -INSERT INTO `developer` VALUES (17579850, 'Evesy', 'S', -61.401079559114955, 0, 0, 0, 0, 0, 0, 'Mike Eves', '@autotraderuk ', '', 'Manchester, United Kingdom', NULL, NULL, NULL, NULL, 94, 19, 4, 1, 0, 0, 0, '2016-03-01T21:49:06Z', '2024-10-28T09:41:17Z', 'https://avatars.githubusercontent.com/u/17579850?v=4', 'https://api.github.com/users/Evesy', 'https://github.com/Evesy', 'https://api.github.com/users/Evesy/followers', 'https://api.github.com/users/Evesy/following', 'https://api.github.com/users/Evesy/gists', 'https://api.github.com/users/Evesy/starred', 'https://api.github.com/users/Evesy/repos', 'https://api.github.com/users/Evesy/events', 'https://api.github.com/users/Evesy/received_events', 0); -INSERT INTO `developer` VALUES (17654553, 'macedogm', 'B+', 47.39203006892085, 0, 0, 0, 0, 0, 0, 'Guilherme Macedo', '@suse @rancher', 'gmacedo.com', 'Brazil', 'guilherme.macedo@suse.com', NULL, 'Security tech lead @SUSE @rancher', NULL, 11, 0, 28, 40, 0, 0, 0, '2016-03-04T20:16:26Z', '2024-10-28T10:04:35Z', 'https://avatars.githubusercontent.com/u/17654553?v=4', 'https://api.github.com/users/macedogm', 'https://github.com/macedogm', 'https://api.github.com/users/macedogm/followers', 'https://api.github.com/users/macedogm/following', 'https://api.github.com/users/macedogm/gists', 'https://api.github.com/users/macedogm/starred', 'https://api.github.com/users/macedogm/repos', 'https://api.github.com/users/macedogm/events', 'https://api.github.com/users/macedogm/received_events', 0); -INSERT INTO `developer` VALUES (17666471, 'aimuz', 'S', -79.52208289809444, 0, 0, 0, 0, 0, 0, 'aimuz', NULL, '', NULL, 'mr.imuz@gmail.com', 'true', 'I am actively seeking job opportunities in the field of cloud-native technologies.', NULL, 125, 8, 27, 36, 0, 0, 0, '2016-03-05T06:40:45Z', '2024-10-24T07:12:17Z', 'https://avatars.githubusercontent.com/u/17666471?v=4', 'https://api.github.com/users/aimuz', 'https://github.com/aimuz', 'https://api.github.com/users/aimuz/followers', 'https://api.github.com/users/aimuz/following', 'https://api.github.com/users/aimuz/gists', 'https://api.github.com/users/aimuz/starred', 'https://api.github.com/users/aimuz/repos', 'https://api.github.com/users/aimuz/events', 'https://api.github.com/users/aimuz/received_events', 0); -INSERT INTO `developer` VALUES (17730030, '37b', 'C+', 77.80565614241281, 0, 0, 0, 0, 0, 0, 'Chris Fort', 'LexisNexis', 'http://chrisfort.com', 'Apex, NC', NULL, NULL, NULL, NULL, 5, 0, 2, 6, 0, 0, 0, '2016-03-08T18:59:08Z', '2024-10-25T14:11:41Z', 'https://avatars.githubusercontent.com/u/17730030?v=4', 'https://api.github.com/users/37b', 'https://github.com/37b', 'https://api.github.com/users/37b/followers', 'https://api.github.com/users/37b/following', 'https://api.github.com/users/37b/gists', 'https://api.github.com/users/37b/starred', 'https://api.github.com/users/37b/repos', 'https://api.github.com/users/37b/events', 'https://api.github.com/users/37b/received_events', 0); -INSERT INTO `developer` VALUES (17787069, 'Apipia', 'B+', 45.855356780703026, 0, 0, 0, 0, 0, 0, 'Anthony', NULL, '', NULL, NULL, NULL, 'Cybersecurity Engineer and Pentester. ', NULL, 13, 0, 9, 3, 0, 0, 0, '2016-03-11T17:03:06Z', '2023-10-20T18:11:30Z', 'https://avatars.githubusercontent.com/u/17787069?v=4', 'https://api.github.com/users/Apipia', 'https://github.com/Apipia', 'https://api.github.com/users/Apipia/followers', 'https://api.github.com/users/Apipia/following', 'https://api.github.com/users/Apipia/gists', 'https://api.github.com/users/Apipia/starred', 'https://api.github.com/users/Apipia/repos', 'https://api.github.com/users/Apipia/events', 'https://api.github.com/users/Apipia/received_events', 0); -INSERT INTO `developer` VALUES (18187486, 'jamesallured', 'B', 59.92433461343314, 0, 0, 0, 0, 0, 0, 'James Allured', NULL, 'allured.me', NULL, NULL, NULL, NULL, 'jamesallured', 8, 0, 14, 20, 0, 0, 0, '2016-03-31T09:44:59Z', '2024-09-22T09:35:13Z', 'https://avatars.githubusercontent.com/u/18187486?v=4', 'https://api.github.com/users/jamesallured', 'https://github.com/jamesallured', 'https://api.github.com/users/jamesallured/followers', 'https://api.github.com/users/jamesallured/following', 'https://api.github.com/users/jamesallured/gists', 'https://api.github.com/users/jamesallured/starred', 'https://api.github.com/users/jamesallured/repos', 'https://api.github.com/users/jamesallured/events', 'https://api.github.com/users/jamesallured/received_events', 0); -INSERT INTO `developer` VALUES (18326194, 'bakalor', 'B-', 67.27727578990373, 0, 0, 0, 0, 0, 0, 'I', NULL, '', NULL, NULL, NULL, NULL, NULL, 8, 0, 2, 0, 0, 0, 0, '2016-04-07T09:41:33Z', '2023-09-21T09:27:35Z', 'https://avatars.githubusercontent.com/u/18326194?v=4', 'https://api.github.com/users/bakalor', 'https://github.com/bakalor', 'https://api.github.com/users/bakalor/followers', 'https://api.github.com/users/bakalor/following', 'https://api.github.com/users/bakalor/gists', 'https://api.github.com/users/bakalor/starred', 'https://api.github.com/users/bakalor/repos', 'https://api.github.com/users/bakalor/events', 'https://api.github.com/users/bakalor/received_events', 0); -INSERT INTO `developer` VALUES (18365222, 'FreakyFreddie', 'A', 20.308086443643457, 0, 0, 0, 0, 0, 0, 'FreakyFreddie', NULL, 'https://www.freaky-it.be', NULL, NULL, NULL, NULL, NULL, 26, 1, 0, 2, 0, 0, 0, '2016-04-09T13:00:38Z', '2021-03-05T22:15:27Z', 'https://avatars.githubusercontent.com/u/18365222?v=4', 'https://api.github.com/users/FreakyFreddie', 'https://github.com/FreakyFreddie', 'https://api.github.com/users/FreakyFreddie/followers', 'https://api.github.com/users/FreakyFreddie/following', 'https://api.github.com/users/FreakyFreddie/gists', 'https://api.github.com/users/FreakyFreddie/starred', 'https://api.github.com/users/FreakyFreddie/repos', 'https://api.github.com/users/FreakyFreddie/events', 'https://api.github.com/users/FreakyFreddie/received_events', 0); -INSERT INTO `developer` VALUES (18365890, 'peter-evans', 'S', -76.75805016956885, 0, 0, 0, 0, 0, 0, 'Peter Evans', NULL, 'https://peterevans.dev', 'United Kingdom', NULL, NULL, NULL, 'peterevans0', 101, 2, 692, 23, 0, 0, 0, '2016-04-09T13:51:46Z', '2024-10-11T14:29:44Z', 'https://avatars.githubusercontent.com/u/18365890?v=4', 'https://api.github.com/users/peter-evans', 'https://github.com/peter-evans', 'https://api.github.com/users/peter-evans/followers', 'https://api.github.com/users/peter-evans/following', 'https://api.github.com/users/peter-evans/gists', 'https://api.github.com/users/peter-evans/starred', 'https://api.github.com/users/peter-evans/repos', 'https://api.github.com/users/peter-evans/events', 'https://api.github.com/users/peter-evans/received_events', 1); -INSERT INTO `developer` VALUES (18528990, 'MathiasGr', 'A-', 30.626517977149447, 0, 0, 0, 0, 0, 0, 'Mathias Griffe', '@bigbluedisco ', '', 'Paris, FR', NULL, NULL, 'CTO @ bigblue', NULL, 20, 0, 3, 0, 0, 0, 0, '2016-04-18T10:16:28Z', '2024-10-29T09:19:05Z', 'https://avatars.githubusercontent.com/u/18528990?v=4', 'https://api.github.com/users/MathiasGr', 'https://github.com/MathiasGr', 'https://api.github.com/users/MathiasGr/followers', 'https://api.github.com/users/MathiasGr/following', 'https://api.github.com/users/MathiasGr/gists', 'https://api.github.com/users/MathiasGr/starred', 'https://api.github.com/users/MathiasGr/repos', 'https://api.github.com/users/MathiasGr/events', 'https://api.github.com/users/MathiasGr/received_events', 0); -INSERT INTO `developer` VALUES (18605580, 'gkkachi', 'A', 18.497782543134722, 0, 0, 0, 0, 0, 0, 'Konosuke Kachi', NULL, '', NULL, NULL, NULL, NULL, NULL, 25, 6, 3, 7, 0, 0, 0, '2016-04-22T01:05:05Z', '2024-09-27T06:14:41Z', 'https://avatars.githubusercontent.com/u/18605580?v=4', 'https://api.github.com/users/gkkachi', 'https://github.com/gkkachi', 'https://api.github.com/users/gkkachi/followers', 'https://api.github.com/users/gkkachi/following', 'https://api.github.com/users/gkkachi/gists', 'https://api.github.com/users/gkkachi/starred', 'https://api.github.com/users/gkkachi/repos', 'https://api.github.com/users/gkkachi/events', 'https://api.github.com/users/gkkachi/received_events', 0); -INSERT INTO `developer` VALUES (19528243, 'QueenyJin', 'S', -10.318625215990828, 0, 0, 0, 0, 0, 0, 'Queeny', 'PingCAP', '', NULL, 'jinkun@pingcap.com', NULL, 'On my way to be a hacker', NULL, 35, 0, 24, 12, 0, 0, 0, '2016-05-23T08:25:12Z', '2022-01-23T14:46:51Z', 'https://avatars.githubusercontent.com/u/19528243?v=4', 'https://api.github.com/users/QueenyJin', 'https://github.com/QueenyJin', 'https://api.github.com/users/QueenyJin/followers', 'https://api.github.com/users/QueenyJin/following', 'https://api.github.com/users/QueenyJin/gists', 'https://api.github.com/users/QueenyJin/starred', 'https://api.github.com/users/QueenyJin/repos', 'https://api.github.com/users/QueenyJin/events', 'https://api.github.com/users/QueenyJin/received_events', 0); -INSERT INTO `developer` VALUES (19572671, 'AdrienGuillerme', 'C', 92.0308712783088, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 2, 0, 0, 0, 0, 0, 0, '2016-05-25T13:38:25Z', '2019-10-21T17:03:40Z', 'https://avatars.githubusercontent.com/u/19572671?v=4', 'https://api.github.com/users/AdrienGuillerme', 'https://github.com/AdrienGuillerme', 'https://api.github.com/users/AdrienGuillerme/followers', 'https://api.github.com/users/AdrienGuillerme/following', 'https://api.github.com/users/AdrienGuillerme/gists', 'https://api.github.com/users/AdrienGuillerme/starred', 'https://api.github.com/users/AdrienGuillerme/repos', 'https://api.github.com/users/AdrienGuillerme/events', 'https://api.github.com/users/AdrienGuillerme/received_events', 0); -INSERT INTO `developer` VALUES (19744238, 'pawan0912', 'B-', 74.21480528755131, 0, 0, 0, 0, 0, 0, 'Pawan Verma', 'KodeKloud', '', 'Bengaluru, Karnataka', 'pawanverma0912@gmail.com', NULL, 'Senior Frontend Engineer 👨‍💻 ', NULL, 6, 0, 2, 3, 0, 0, 0, '2016-06-04T07:44:59Z', '2024-06-18T04:27:04Z', 'https://avatars.githubusercontent.com/u/19744238?v=4', 'https://api.github.com/users/pawan0912', 'https://github.com/pawan0912', 'https://api.github.com/users/pawan0912/followers', 'https://api.github.com/users/pawan0912/following', 'https://api.github.com/users/pawan0912/gists', 'https://api.github.com/users/pawan0912/starred', 'https://api.github.com/users/pawan0912/repos', 'https://api.github.com/users/pawan0912/events', 'https://api.github.com/users/pawan0912/received_events', 0); -INSERT INTO `developer` VALUES (19924096, 'mehuled', 'S', -56.49999073008654, 0, 0, 0, 0, 0, 0, 'Mehul Sharma', '@razorpay ', '', 'Bangalore', 'mehulcse0209@gmail.com', 'true', 'Show me what\'s under the hood.', NULL, 74, 11, 21, 92, 0, 0, 0, '2016-06-14T07:21:15Z', '2024-10-01T06:24:55Z', 'https://avatars.githubusercontent.com/u/19924096?v=4', 'https://api.github.com/users/mehuled', 'https://github.com/mehuled', 'https://api.github.com/users/mehuled/followers', 'https://api.github.com/users/mehuled/following', 'https://api.github.com/users/mehuled/gists', 'https://api.github.com/users/mehuled/starred', 'https://api.github.com/users/mehuled/repos', 'https://api.github.com/users/mehuled/events', 'https://api.github.com/users/mehuled/received_events', 0); -INSERT INTO `developer` VALUES (19945677, 'pritishvaidya', 'S', -5.745569499704284, 0, 0, 0, 0, 0, 0, 'Pritish', '@razorpay', 'https://pritishvaidya.dev', NULL, 'contact@pritishvaidya.dev', 'true', NULL, 'PritishVaidya', 31, 3, 72, 32, 0, 0, 0, '2016-06-15T06:45:25Z', '2024-10-26T14:05:37Z', 'https://avatars.githubusercontent.com/u/19945677?v=4', 'https://api.github.com/users/pritishvaidya', 'https://github.com/pritishvaidya', 'https://api.github.com/users/pritishvaidya/followers', 'https://api.github.com/users/pritishvaidya/following', 'https://api.github.com/users/pritishvaidya/gists', 'https://api.github.com/users/pritishvaidya/starred', 'https://api.github.com/users/pritishvaidya/repos', 'https://api.github.com/users/pritishvaidya/events', 'https://api.github.com/users/pritishvaidya/received_events', 0); -INSERT INTO `developer` VALUES (19959240, 'jordanpotti', 'S', -54.96324783065454, 0, 0, 0, 0, 0, 0, 'JP', NULL, 'https://jordanpotti.com', NULL, NULL, NULL, NULL, 'ok_bye_now', 66, 17, 226, 10, 0, 0, 0, '2016-06-15T19:02:12Z', '2024-10-02T20:47:46Z', 'https://avatars.githubusercontent.com/u/19959240?v=4', 'https://api.github.com/users/jordanpotti', 'https://github.com/jordanpotti', 'https://api.github.com/users/jordanpotti/followers', 'https://api.github.com/users/jordanpotti/following', 'https://api.github.com/users/jordanpotti/gists', 'https://api.github.com/users/jordanpotti/starred', 'https://api.github.com/users/jordanpotti/repos', 'https://api.github.com/users/jordanpotti/events', 'https://api.github.com/users/jordanpotti/received_events', 0); -INSERT INTO `developer` VALUES (20150605, 'tegk', 'B-', 66.86186411108072, 0, 0, 0, 0, 0, 0, 'Till Knuesting', NULL, '', NULL, NULL, 'true', 'Go, Microservices, Kubernetes, Distributed systems', 'knuesting', 6, 5, 14, 10, 0, 0, 0, '2016-06-26T10:06:01Z', '2022-08-02T17:08:17Z', 'https://avatars.githubusercontent.com/u/20150605?v=4', 'https://api.github.com/users/tegk', 'https://github.com/tegk', 'https://api.github.com/users/tegk/followers', 'https://api.github.com/users/tegk/following', 'https://api.github.com/users/tegk/gists', 'https://api.github.com/users/tegk/starred', 'https://api.github.com/users/tegk/repos', 'https://api.github.com/users/tegk/events', 'https://api.github.com/users/tegk/received_events', 0); -INSERT INTO `developer` VALUES (20198261, 'FWangZil', 'A+', 3.391776106143518, 0, 0, 0, 0, 0, 0, 'Togo', NULL, 'blog.cyberdoge.xyz', NULL, 'acewzk@gmail.com', 'true', NULL, 'chickenpunk_eth', 27, 3, 50, 476, 0, 0, 0, '2016-06-29T02:45:50Z', '2024-10-16T11:30:41Z', 'https://avatars.githubusercontent.com/u/20198261?v=4', 'https://api.github.com/users/FWangZil', 'https://github.com/FWangZil', 'https://api.github.com/users/FWangZil/followers', 'https://api.github.com/users/FWangZil/following', 'https://api.github.com/users/FWangZil/gists', 'https://api.github.com/users/FWangZil/starred', 'https://api.github.com/users/FWangZil/repos', 'https://api.github.com/users/FWangZil/events', 'https://api.github.com/users/FWangZil/received_events', 0); -INSERT INTO `developer` VALUES (20221408, 'STRRL', 'S', -91.53926538418627, 0, 0, 0, 0, 0, 0, 'Zhiqiang ZHOU', NULL, 'https://strrl.dev', 'Great Vancouver, Canada', 'im@strrl.dev', 'true', 'Chaos Mesh Maintainer.\r\n\r\n👷‍♂️ Developer First. | Keep Sharp. | Coding with Love and Passion! | \r\n\r\n❤️ Cloud Computing | Cloud Native | Full Stack', 'strrl_the_dev', 189, 5, 511, 146, 0, 0, 0, '2016-06-30T08:00:11Z', '2024-11-01T00:08:51Z', 'https://avatars.githubusercontent.com/u/20221408?v=4', 'https://api.github.com/users/STRRL', 'https://github.com/STRRL', 'https://api.github.com/users/STRRL/followers', 'https://api.github.com/users/STRRL/following', 'https://api.github.com/users/STRRL/gists', 'https://api.github.com/users/STRRL/starred', 'https://api.github.com/users/STRRL/repos', 'https://api.github.com/users/STRRL/events', 'https://api.github.com/users/STRRL/received_events', 0); -INSERT INTO `developer` VALUES (20466436, 'Jasstkn', 'S', -37.96421705831252, 0, 0, 0, 0, 0, 0, 'Maria Kotliarevskaia', '@microsoft', 'https://www.linkedin.com/in/maria-kotliarevskaia/', 'Prague', 'mariia.kotliarevskaia@gmail.com', 'true', 'engineering out there', NULL, 51, 14, 86, 40, 0, 0, 0, '2016-07-14T22:15:38Z', '2024-10-25T14:48:40Z', 'https://avatars.githubusercontent.com/u/20466436?v=4', 'https://api.github.com/users/Jasstkn', 'https://github.com/Jasstkn', 'https://api.github.com/users/Jasstkn/followers', 'https://api.github.com/users/Jasstkn/following', 'https://api.github.com/users/Jasstkn/gists', 'https://api.github.com/users/Jasstkn/starred', 'https://api.github.com/users/Jasstkn/repos', 'https://api.github.com/users/Jasstkn/events', 'https://api.github.com/users/Jasstkn/received_events', 0); -INSERT INTO `developer` VALUES (20478023, 'H4ckd4ddy', 'S', -21.599901678974696, 0, 0, 0, 0, 0, 0, 'Etienne Sellan', NULL, '', NULL, NULL, 'true', '🚀', NULL, 39, 2, 198, 31, 0, 0, 0, '2016-07-15T14:16:37Z', '2024-09-08T07:40:49Z', 'https://avatars.githubusercontent.com/u/20478023?v=4', 'https://api.github.com/users/H4ckd4ddy', 'https://github.com/H4ckd4ddy', 'https://api.github.com/users/H4ckd4ddy/followers', 'https://api.github.com/users/H4ckd4ddy/following', 'https://api.github.com/users/H4ckd4ddy/gists', 'https://api.github.com/users/H4ckd4ddy/starred', 'https://api.github.com/users/H4ckd4ddy/repos', 'https://api.github.com/users/H4ckd4ddy/events', 'https://api.github.com/users/H4ckd4ddy/received_events', 0); -INSERT INTO `developer` VALUES (20766601, 'haquezameer', 'S', -71.82351850843698, 0, 0, 0, 0, 0, 0, 'Zameer Haque', '@Multiplier-Core', 'https://haquezameer.github.io/blog/', NULL, NULL, 'true', 'Figuring out', NULL, 97, 2, 40, 20, 0, 0, 0, '2016-08-01T06:50:18Z', '2024-09-10T11:39:29Z', 'https://avatars.githubusercontent.com/u/20766601?v=4', 'https://api.github.com/users/haquezameer', 'https://github.com/haquezameer', 'https://api.github.com/users/haquezameer/followers', 'https://api.github.com/users/haquezameer/following', 'https://api.github.com/users/haquezameer/gists', 'https://api.github.com/users/haquezameer/starred', 'https://api.github.com/users/haquezameer/repos', 'https://api.github.com/users/haquezameer/events', 'https://api.github.com/users/haquezameer/received_events', 0); -INSERT INTO `developer` VALUES (21107799, 'blenderskool', 'S', -28.498941182607386, 0, 0, 0, 0, 0, 0, 'Akash Hamirwasia', '@elevenlabs', 'akashhamirwasia.com', 'Bangalore, India, Earth', 'akash.hamirwasia@gmail.com', NULL, 'Frontend @elevenlabs.\r\nPassionate about programming and building innovative products on the web.\r\nPrev @razorpay @akamai @smallcase', 'blenderskool', 43, 4, 629, 5, 0, 0, 0, '2016-08-18T16:23:17Z', '2024-10-14T07:05:15Z', 'https://avatars.githubusercontent.com/u/21107799?v=4', 'https://api.github.com/users/blenderskool', 'https://github.com/blenderskool', 'https://api.github.com/users/blenderskool/followers', 'https://api.github.com/users/blenderskool/following', 'https://api.github.com/users/blenderskool/gists', 'https://api.github.com/users/blenderskool/starred', 'https://api.github.com/users/blenderskool/repos', 'https://api.github.com/users/blenderskool/events', 'https://api.github.com/users/blenderskool/received_events', 0); -INSERT INTO `developer` VALUES (21198777, 'SantiEich', 'A', 23.83918766040737, 0, 0, 0, 0, 0, 0, 'Santiago Hernandez', 'Strike Security', 'linkedin.com/in/santieich', 'Montevideo, Uruguay', 'me@santieich.com', 'true', 'Head of Cloud Infrastructure at @strikesecurity ', NULL, 20, 2, 16, 22, 0, 0, 0, '2016-08-23T13:51:49Z', '2024-10-21T19:18:11Z', 'https://avatars.githubusercontent.com/u/21198777?v=4', 'https://api.github.com/users/SantiEich', 'https://github.com/SantiEich', 'https://api.github.com/users/SantiEich/followers', 'https://api.github.com/users/SantiEich/following', 'https://api.github.com/users/SantiEich/gists', 'https://api.github.com/users/SantiEich/starred', 'https://api.github.com/users/SantiEich/repos', 'https://api.github.com/users/SantiEich/events', 'https://api.github.com/users/SantiEich/received_events', 0); -INSERT INTO `developer` VALUES (21218732, 'gupta-ji6', 'S', -77.18550008802427, 0, 0, 0, 0, 0, 0, 'ayush gupta', '@leapwallet', 'ayushgupta.tech', 'Remote', 'ayushgupta197@gmail.com', 'true', '🎞️ + 🛠️ == i do art & crafts.\r\n\r\ncapturing art && crafting mobile apps with frontend engineering. developer with an eye for design.', '_guptaji_', 104, 7, 172, 474, 0, 0, 0, '2016-08-24T11:24:14Z', '2024-10-28T11:41:33Z', 'https://avatars.githubusercontent.com/u/21218732?v=4', 'https://api.github.com/users/gupta-ji6', 'https://github.com/gupta-ji6', 'https://api.github.com/users/gupta-ji6/followers', 'https://api.github.com/users/gupta-ji6/following', 'https://api.github.com/users/gupta-ji6/gists', 'https://api.github.com/users/gupta-ji6/starred', 'https://api.github.com/users/gupta-ji6/repos', 'https://api.github.com/users/gupta-ji6/events', 'https://api.github.com/users/gupta-ji6/received_events', 0); -INSERT INTO `developer` VALUES (22191698, 'orbiran88', 'B', 60.395126044153045, 0, 0, 0, 0, 0, 0, 'Or Biran', 'TailorMed', '', 'Israel', 'orbiran@outlook.com', NULL, NULL, NULL, 11, 0, 0, 0, 0, 0, 0, '2016-09-14T09:00:52Z', '2021-01-11T11:01:34Z', 'https://avatars.githubusercontent.com/u/22191698?v=4', 'https://api.github.com/users/orbiran88', 'https://github.com/orbiran88', 'https://api.github.com/users/orbiran88/followers', 'https://api.github.com/users/orbiran88/following', 'https://api.github.com/users/orbiran88/gists', 'https://api.github.com/users/orbiran88/starred', 'https://api.github.com/users/orbiran88/repos', 'https://api.github.com/users/orbiran88/events', 'https://api.github.com/users/orbiran88/received_events', 0); -INSERT INTO `developer` VALUES (22477652, 'Baryczka', 'C+', 81.48043915733238, 0, 0, 0, 0, 0, 0, 'Baryczka', NULL, '', 'Zurich', NULL, NULL, NULL, NULL, 4, 0, 2, 1, 0, 0, 0, '2016-09-27T15:25:58Z', '2024-09-23T15:09:56Z', 'https://avatars.githubusercontent.com/u/22477652?v=4', 'https://api.github.com/users/Baryczka', 'https://github.com/Baryczka', 'https://api.github.com/users/Baryczka/followers', 'https://api.github.com/users/Baryczka/following', 'https://api.github.com/users/Baryczka/gists', 'https://api.github.com/users/Baryczka/starred', 'https://api.github.com/users/Baryczka/repos', 'https://api.github.com/users/Baryczka/events', 'https://api.github.com/users/Baryczka/received_events', 0); -INSERT INTO `developer` VALUES (22611118, 'tsauvajon', 'S', -88.08728789807039, 0, 0, 0, 0, 0, 0, 'Thomas Sauvajon', 'Beat', 'https://thomas.sauvajon.tech', 'Remote', 'thomas@sauvajon.tech', NULL, 'Software Engineer', NULL, 179, 7, 45, 31, 0, 0, 0, '2016-10-04T07:55:04Z', '2024-09-20T16:17:46Z', 'https://avatars.githubusercontent.com/u/22611118?v=4', 'https://api.github.com/users/tsauvajon', 'https://github.com/tsauvajon', 'https://api.github.com/users/tsauvajon/followers', 'https://api.github.com/users/tsauvajon/following', 'https://api.github.com/users/tsauvajon/gists', 'https://api.github.com/users/tsauvajon/starred', 'https://api.github.com/users/tsauvajon/repos', 'https://api.github.com/users/tsauvajon/events', 'https://api.github.com/users/tsauvajon/received_events', 0); -INSERT INTO `developer` VALUES (23056537, 'KeisukeYamashita', 'S', -92.80712322850277, 0, 0, 0, 0, 0, 0, 'KeisukeYamashita', NULL, 'https://keisukeyamashita.com', 'Nirvana', NULL, 'true', 'Site Reliability Engineer based in Vienna, Austria', '_k_e_k_e', 304, 1, 143, 139, 0, 0, 0, '2016-10-25T14:20:57Z', '2024-11-01T12:59:16Z', 'https://avatars.githubusercontent.com/u/23056537?v=4', 'https://api.github.com/users/KeisukeYamashita', 'https://github.com/KeisukeYamashita', 'https://api.github.com/users/KeisukeYamashita/followers', 'https://api.github.com/users/KeisukeYamashita/following', 'https://api.github.com/users/KeisukeYamashita/gists', 'https://api.github.com/users/KeisukeYamashita/starred', 'https://api.github.com/users/KeisukeYamashita/repos', 'https://api.github.com/users/KeisukeYamashita/events', 'https://api.github.com/users/KeisukeYamashita/received_events', 0); -INSERT INTO `developer` VALUES (23224163, 'jpbowie', 'C+', 85.24111615355426, 0, 0, 0, 0, 0, 0, 'James Bowie', NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 0, 2, 0, 0, 0, 0, '2016-11-02T22:19:43Z', '2024-08-20T22:29:53Z', 'https://avatars.githubusercontent.com/u/23224163?v=4', 'https://api.github.com/users/jpbowie', 'https://github.com/jpbowie', 'https://api.github.com/users/jpbowie/followers', 'https://api.github.com/users/jpbowie/following', 'https://api.github.com/users/jpbowie/gists', 'https://api.github.com/users/jpbowie/starred', 'https://api.github.com/users/jpbowie/repos', 'https://api.github.com/users/jpbowie/events', 'https://api.github.com/users/jpbowie/received_events', 0); -INSERT INTO `developer` VALUES (23261497, 'RikiyaFujii', 'C+', 79.89851833713233, 0, 0, 0, 0, 0, 0, 'Rikiya Fujii', '@abema ', '', 'Tokyo', 'ridai22hanriku@gmail.com', NULL, NULL, 'rikiyafujii', 2, 0, 22, 23, 0, 0, 0, '2016-11-04T13:50:47Z', '2024-07-29T02:42:19Z', 'https://avatars.githubusercontent.com/u/23261497?v=4', 'https://api.github.com/users/RikiyaFujii', 'https://github.com/RikiyaFujii', 'https://api.github.com/users/RikiyaFujii/followers', 'https://api.github.com/users/RikiyaFujii/following', 'https://api.github.com/users/RikiyaFujii/gists', 'https://api.github.com/users/RikiyaFujii/starred', 'https://api.github.com/users/RikiyaFujii/repos', 'https://api.github.com/users/RikiyaFujii/events', 'https://api.github.com/users/RikiyaFujii/received_events', 0); -INSERT INTO `developer` VALUES (23509619, 'bfreezy', 'A-', 36.639371761862584, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'San Francisco, CA', 'brandonfriess@me.com', NULL, NULL, NULL, 16, 2, 10, 0, 0, 0, 0, '2016-11-16T20:48:00Z', '2024-10-31T15:35:45Z', 'https://avatars.githubusercontent.com/u/23509619?v=4', 'https://api.github.com/users/bfreezy', 'https://github.com/bfreezy', 'https://api.github.com/users/bfreezy/followers', 'https://api.github.com/users/bfreezy/following', 'https://api.github.com/users/bfreezy/gists', 'https://api.github.com/users/bfreezy/starred', 'https://api.github.com/users/bfreezy/repos', 'https://api.github.com/users/bfreezy/events', 'https://api.github.com/users/bfreezy/received_events', 0); -INSERT INTO `developer` VALUES (23624531, 'imohammedzen', 'B', 54.21448990763802, 0, 0, 0, 0, 0, 0, 'Imran Mohammed', NULL, '', NULL, NULL, NULL, 'Security Engineer at Zendesk', NULL, 13, 1, 0, 0, 0, 0, 0, '2016-11-21T04:00:08Z', '2018-09-03T06:46:26Z', 'https://avatars.githubusercontent.com/u/23624531?v=4', 'https://api.github.com/users/imohammedzen', 'https://github.com/imohammedzen', 'https://api.github.com/users/imohammedzen/followers', 'https://api.github.com/users/imohammedzen/following', 'https://api.github.com/users/imohammedzen/gists', 'https://api.github.com/users/imohammedzen/starred', 'https://api.github.com/users/imohammedzen/repos', 'https://api.github.com/users/imohammedzen/events', 'https://api.github.com/users/imohammedzen/received_events', 0); -INSERT INTO `developer` VALUES (23663000, 'machine424', 'S', -23.322510903708004, 0, 0, 0, 0, 0, 0, 'Ayoub Mrini', 'Red Hat', '', NULL, 'ayoubmrini424@gmail.com', NULL, 'Working on monitoring for @openshift\r\n@prometheus maintainer', NULL, 45, 1, 11, 1, 0, 0, 0, '2016-11-22T17:42:00Z', '2024-09-18T20:56:28Z', 'https://avatars.githubusercontent.com/u/23663000?v=4', 'https://api.github.com/users/machine424', 'https://github.com/machine424', 'https://api.github.com/users/machine424/followers', 'https://api.github.com/users/machine424/following', 'https://api.github.com/users/machine424/gists', 'https://api.github.com/users/machine424/starred', 'https://api.github.com/users/machine424/repos', 'https://api.github.com/users/machine424/events', 'https://api.github.com/users/machine424/received_events', 0); -INSERT INTO `developer` VALUES (23718447, 'ctas582', 'B-', 66.04487064702845, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 6, 0, 17, 0, 0, 0, 0, '2016-11-24T10:00:43Z', '2024-07-24T16:23:38Z', 'https://avatars.githubusercontent.com/u/23718447?v=4', 'https://api.github.com/users/ctas582', 'https://github.com/ctas582', 'https://api.github.com/users/ctas582/followers', 'https://api.github.com/users/ctas582/following', 'https://api.github.com/users/ctas582/gists', 'https://api.github.com/users/ctas582/starred', 'https://api.github.com/users/ctas582/repos', 'https://api.github.com/users/ctas582/events', 'https://api.github.com/users/ctas582/received_events', 0); -INSERT INTO `developer` VALUES (24317933, 'benpaxton-hf', 'B', 59.52181227773708, 0, 0, 0, 0, 0, 0, 'Ben Paxton', '@headforwards', '', NULL, NULL, NULL, NULL, NULL, 10, 0, 3, 1, 0, 0, 0, '2016-12-02T14:00:31Z', '2024-04-15T18:22:25Z', 'https://avatars.githubusercontent.com/u/24317933?v=4', 'https://api.github.com/users/benpaxton-hf', 'https://github.com/benpaxton-hf', 'https://api.github.com/users/benpaxton-hf/followers', 'https://api.github.com/users/benpaxton-hf/following', 'https://api.github.com/users/benpaxton-hf/gists', 'https://api.github.com/users/benpaxton-hf/starred', 'https://api.github.com/users/benpaxton-hf/repos', 'https://api.github.com/users/benpaxton-hf/events', 'https://api.github.com/users/benpaxton-hf/received_events', 0); -INSERT INTO `developer` VALUES (24440859, 'neeraj719714', 'B', 50.651461750917484, 0, 0, 0, 0, 0, 0, 'Neeraj Kumar Singh', '@razorpay', 'https://www.linkedin.com/in/neeraj719714/', NULL, 'neerajkr.singh.eee16@itbhu.ac.in', NULL, 'Frontend @ Razorpay | IIT BHU 2020 Graduate', 'neeraj_singh__', 12, 0, 6, 7, 0, 0, 0, '2016-12-07T19:11:51Z', '2024-08-27T11:15:37Z', 'https://avatars.githubusercontent.com/u/24440859?v=4', 'https://api.github.com/users/neeraj719714', 'https://github.com/neeraj719714', 'https://api.github.com/users/neeraj719714/followers', 'https://api.github.com/users/neeraj719714/following', 'https://api.github.com/users/neeraj719714/gists', 'https://api.github.com/users/neeraj719714/starred', 'https://api.github.com/users/neeraj719714/repos', 'https://api.github.com/users/neeraj719714/events', 'https://api.github.com/users/neeraj719714/received_events', 0); -INSERT INTO `developer` VALUES (24610197, 'mish24', 'S', -8.102211419669114, 0, 0, 0, 0, 0, 0, 'Poonam Mishra', 'BITS Pilani', '', NULL, NULL, 'true', NULL, NULL, 32, 0, 90, 32, 0, 0, 0, '2016-12-16T16:05:54Z', '2022-12-07T21:57:45Z', 'https://avatars.githubusercontent.com/u/24610197?v=4', 'https://api.github.com/users/mish24', 'https://github.com/mish24', 'https://api.github.com/users/mish24/followers', 'https://api.github.com/users/mish24/following', 'https://api.github.com/users/mish24/gists', 'https://api.github.com/users/mish24/starred', 'https://api.github.com/users/mish24/repos', 'https://api.github.com/users/mish24/events', 'https://api.github.com/users/mish24/received_events', 0); -INSERT INTO `developer` VALUES (24660299, 'naseemkullah', 'S', -109.13268316322285, 0, 44, 86, 157, 0, 0, 'Naseem', NULL, '', NULL, NULL, NULL, NULL, NULL, 110, 0, 32, 3, 0, 0, 0, '2016-12-19T21:28:55Z', '2024-10-05T11:32:36Z', 'https://avatars.githubusercontent.com/u/24660299?v=4', 'https://api.github.com/users/naseemkullah', 'https://github.com/naseemkullah', 'https://api.github.com/users/naseemkullah/followers', 'https://api.github.com/users/naseemkullah/following', 'https://api.github.com/users/naseemkullah/gists', 'https://api.github.com/users/naseemkullah/starred', 'https://api.github.com/users/naseemkullah/repos', 'https://api.github.com/users/naseemkullah/events', 'https://api.github.com/users/naseemkullah/received_events', 0); -INSERT INTO `developer` VALUES (24780504, 'kalioz', 'A', 19.843132163603915, 0, 0, 0, 0, 0, 0, 'Clément Loiselet', NULL, '', NULL, NULL, NULL, 'Automate Everything. the build, the deployment, the programming, the automation - wait no, not that, keep that manual', NULL, 24, 0, 4, 6, 0, 0, 0, '2016-12-26T18:07:27Z', '2024-10-16T08:10:12Z', 'https://avatars.githubusercontent.com/u/24780504?v=4', 'https://api.github.com/users/kalioz', 'https://github.com/kalioz', 'https://api.github.com/users/kalioz/followers', 'https://api.github.com/users/kalioz/following', 'https://api.github.com/users/kalioz/gists', 'https://api.github.com/users/kalioz/starred', 'https://api.github.com/users/kalioz/repos', 'https://api.github.com/users/kalioz/events', 'https://api.github.com/users/kalioz/received_events', 0); -INSERT INTO `developer` VALUES (25064349, 'SupaJuke', 'B', 54.32793233915276, 0, 0, 0, 0, 0, 0, 'Supanat Wangsutthitham', NULL, '', 'Toronto, Canada', NULL, NULL, 'University of Toronto CS \'23 // A natural born gamer', NULL, 12, 0, 2, 2, 0, 0, 0, '2017-01-11T19:23:46Z', '2024-10-26T10:55:13Z', 'https://avatars.githubusercontent.com/u/25064349?v=4', 'https://api.github.com/users/SupaJuke', 'https://github.com/SupaJuke', 'https://api.github.com/users/SupaJuke/followers', 'https://api.github.com/users/SupaJuke/following', 'https://api.github.com/users/SupaJuke/gists', 'https://api.github.com/users/SupaJuke/starred', 'https://api.github.com/users/SupaJuke/repos', 'https://api.github.com/users/SupaJuke/events', 'https://api.github.com/users/SupaJuke/received_events', 0); -INSERT INTO `developer` VALUES (25148195, 'EndPositive', 'A', 16.665991730906647, 0, 0, 0, 0, 0, 0, 'Jop Zitman', NULL, '', NULL, 'jop-zitman@hotmail.com', 'true', 'Advanced Computing at Tsinghua University', NULL, 23, 0, 15, 7, 0, 0, 0, '2017-01-16T09:20:52Z', '2024-10-25T11:33:14Z', 'https://avatars.githubusercontent.com/u/25148195?v=4', 'https://api.github.com/users/EndPositive', 'https://github.com/EndPositive', 'https://api.github.com/users/EndPositive/followers', 'https://api.github.com/users/EndPositive/following', 'https://api.github.com/users/EndPositive/gists', 'https://api.github.com/users/EndPositive/starred', 'https://api.github.com/users/EndPositive/repos', 'https://api.github.com/users/EndPositive/events', 'https://api.github.com/users/EndPositive/received_events', 0); -INSERT INTO `developer` VALUES (25150124, 'yeya24', 'S', -89.45132718456222, 0, 0, 0, 0, 0, 0, 'Ben Ye', 'AWS', 'https://yeya24.github.io/', NULL, 'benye@amazon.com', 'true', NULL, NULL, 163, 7, 293, 343, 0, 0, 0, '2017-01-16T11:10:02Z', '2024-10-18T11:41:15Z', 'https://avatars.githubusercontent.com/u/25150124?v=4', 'https://api.github.com/users/yeya24', 'https://github.com/yeya24', 'https://api.github.com/users/yeya24/followers', 'https://api.github.com/users/yeya24/following', 'https://api.github.com/users/yeya24/gists', 'https://api.github.com/users/yeya24/starred', 'https://api.github.com/users/yeya24/repos', 'https://api.github.com/users/yeya24/events', 'https://api.github.com/users/yeya24/received_events', 0); -INSERT INTO `developer` VALUES (25360476, 'verdan', 'A+', 4.173010837114122, 0, 0, 0, 0, 0, 0, 'Verdan Mahmood', NULL, 'https://www.linkedin.com/in/verdan/', 'Amsterdam, The Netherlands', 'verdan.mahmood@gmail.com', 'true', 'Pythonista, Apache Airflow contributor, Open source advocate', NULL, 28, 3, 20, 1, 0, 0, 0, '2017-01-26T05:35:01Z', '2024-10-05T11:32:58Z', 'https://avatars.githubusercontent.com/u/25360476?v=4', 'https://api.github.com/users/verdan', 'https://github.com/verdan', 'https://api.github.com/users/verdan/followers', 'https://api.github.com/users/verdan/following', 'https://api.github.com/users/verdan/gists', 'https://api.github.com/users/verdan/starred', 'https://api.github.com/users/verdan/repos', 'https://api.github.com/users/verdan/events', 'https://api.github.com/users/verdan/received_events', 0); -INSERT INTO `developer` VALUES (25447002, 'wi1dcard', 'S', -31.05232038475232, 0, 0, 0, 0, 0, 0, NULL, '@subscan-explorer ', 'https://wi1dcard.dev/', 'Ningbo, China', 'wi1dcard.cn@gmail.com', 'true', 'trying to get over bipolar and BPD', NULL, 45, 1, 252, 49, 0, 0, 0, '2017-01-31T02:32:20Z', '2024-11-01T07:10:52Z', 'https://avatars.githubusercontent.com/u/25447002?v=4', 'https://api.github.com/users/wi1dcard', 'https://github.com/wi1dcard', 'https://api.github.com/users/wi1dcard/followers', 'https://api.github.com/users/wi1dcard/following', 'https://api.github.com/users/wi1dcard/gists', 'https://api.github.com/users/wi1dcard/starred', 'https://api.github.com/users/wi1dcard/repos', 'https://api.github.com/users/wi1dcard/events', 'https://api.github.com/users/wi1dcard/received_events', 0); -INSERT INTO `developer` VALUES (25586785, 'mrrobot47', 'S', -22.2911247607289, 0, 0, 0, 0, 0, 0, 'Riddhesh Sanghvi', '@easyengine @rtcamp', '', NULL, 'riddhesh.sanghvi@rtcamp.com', NULL, NULL, NULL, 41, 4, 42, 3, 0, 0, 0, '2017-02-06T13:54:53Z', '2024-10-25T04:39:20Z', 'https://avatars.githubusercontent.com/u/25586785?v=4', 'https://api.github.com/users/mrrobot47', 'https://github.com/mrrobot47', 'https://api.github.com/users/mrrobot47/followers', 'https://api.github.com/users/mrrobot47/following', 'https://api.github.com/users/mrrobot47/gists', 'https://api.github.com/users/mrrobot47/starred', 'https://api.github.com/users/mrrobot47/repos', 'https://api.github.com/users/mrrobot47/events', 'https://api.github.com/users/mrrobot47/received_events', 0); -INSERT INTO `developer` VALUES (25833688, 'nicleary', 'A+', 1.1624944626838163, 0, 0, 0, 0, 0, 0, 'Nick Cleary', 'Sherwin Williams', '', 'Cleveland', NULL, 'true', '99 Bugs in the code. \r\n99 Bugs in the code. \r\nTake one down, patch it around. \r\n127 Bugs in the code. ', NULL, 32, 6, 6, 7, 0, 0, 0, '2017-02-17T01:19:15Z', '2024-08-31T03:25:54Z', 'https://avatars.githubusercontent.com/u/25833688?v=4', 'https://api.github.com/users/nicleary', 'https://github.com/nicleary', 'https://api.github.com/users/nicleary/followers', 'https://api.github.com/users/nicleary/following', 'https://api.github.com/users/nicleary/gists', 'https://api.github.com/users/nicleary/starred', 'https://api.github.com/users/nicleary/repos', 'https://api.github.com/users/nicleary/events', 'https://api.github.com/users/nicleary/received_events', 0); -INSERT INTO `developer` VALUES (25858316, 'Momo733', 'A-', 35.396111510956395, 0, 0, 0, 153, 0, 0, 'Hit', NULL, '', NULL, 'chengmomo733@gmail.com', NULL, NULL, NULL, 14, 0, 1, 0, 0, 0, 0, '2017-02-18T04:40:46Z', '2024-10-22T06:31:36Z', 'https://avatars.githubusercontent.com/u/25858316?v=4', 'https://api.github.com/users/Momo733', 'https://github.com/Momo733', 'https://api.github.com/users/Momo733/followers', 'https://api.github.com/users/Momo733/following', 'https://api.github.com/users/Momo733/gists', 'https://api.github.com/users/Momo733/starred', 'https://api.github.com/users/Momo733/repos', 'https://api.github.com/users/Momo733/events', 'https://api.github.com/users/Momo733/received_events', 0); -INSERT INTO `developer` VALUES (26171442, 'susheelachoudry', 'C', 87.95847308826355, 0, 0, 0, 0, 0, 0, 'Susheela Choudry', 'SDE II @Razorpay | Ex BookMyShow', '', 'Bengaluru', 'susheelachoudry@gmail.com', NULL, NULL, NULL, 2, 0, 3, 2, 0, 0, 0, '2017-03-03T18:13:07Z', '2024-04-30T05:09:38Z', 'https://avatars.githubusercontent.com/u/26171442?v=4', 'https://api.github.com/users/susheelachoudry', 'https://github.com/susheelachoudry', 'https://api.github.com/users/susheelachoudry/followers', 'https://api.github.com/users/susheelachoudry/following', 'https://api.github.com/users/susheelachoudry/gists', 'https://api.github.com/users/susheelachoudry/starred', 'https://api.github.com/users/susheelachoudry/repos', 'https://api.github.com/users/susheelachoudry/events', 'https://api.github.com/users/susheelachoudry/received_events', 0); -INSERT INTO `developer` VALUES (26420009, 'jonasrutishauser', 'A+', 10.831222472925528, 0, 0, 0, 0, 0, 0, 'Jonas Rutishauser', NULL, '', NULL, NULL, NULL, NULL, NULL, 27, 0, 7, 0, 0, 0, 0, '2017-03-14T21:36:27Z', '2023-10-08T15:32:50Z', 'https://avatars.githubusercontent.com/u/26420009?v=4', 'https://api.github.com/users/jonasrutishauser', 'https://github.com/jonasrutishauser', 'https://api.github.com/users/jonasrutishauser/followers', 'https://api.github.com/users/jonasrutishauser/following', 'https://api.github.com/users/jonasrutishauser/gists', 'https://api.github.com/users/jonasrutishauser/starred', 'https://api.github.com/users/jonasrutishauser/repos', 'https://api.github.com/users/jonasrutishauser/events', 'https://api.github.com/users/jonasrutishauser/received_events', 0); -INSERT INTO `developer` VALUES (26802527, 'felipemgurian', 'C+', 76.57847837301865, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 4, 0, 8, 13, 0, 0, 0, '2017-03-30T20:34:50Z', '2024-04-19T14:41:01Z', 'https://avatars.githubusercontent.com/u/26802527?v=4', 'https://api.github.com/users/felipemgurian', 'https://github.com/felipemgurian', 'https://api.github.com/users/felipemgurian/followers', 'https://api.github.com/users/felipemgurian/following', 'https://api.github.com/users/felipemgurian/gists', 'https://api.github.com/users/felipemgurian/starred', 'https://api.github.com/users/felipemgurian/repos', 'https://api.github.com/users/felipemgurian/events', 'https://api.github.com/users/felipemgurian/received_events', 0); -INSERT INTO `developer` VALUES (26911387, 'sambonfire', 'C', 91.89700800423344, 0, 0, 0, 0, 0, 0, 'Sam Christiansen', 'Bonfire Studios', 'https://bonfirestudios.com', 'California', NULL, NULL, NULL, NULL, 1, 0, 3, 0, 0, 0, 0, '2017-04-04T22:22:12Z', '2024-07-22T16:34:00Z', 'https://avatars.githubusercontent.com/u/26911387?v=4', 'https://api.github.com/users/sambonfire', 'https://github.com/sambonfire', 'https://api.github.com/users/sambonfire/followers', 'https://api.github.com/users/sambonfire/following', 'https://api.github.com/users/sambonfire/gists', 'https://api.github.com/users/sambonfire/starred', 'https://api.github.com/users/sambonfire/repos', 'https://api.github.com/users/sambonfire/events', 'https://api.github.com/users/sambonfire/received_events', 0); -INSERT INTO `developer` VALUES (26996495, 'ac-mercury', 'C+', 83.14027581741979, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 0, 4, 0, 0, 0, 0, '2017-04-07T06:00:35Z', '2019-08-21T13:05:31Z', 'https://avatars.githubusercontent.com/u/26996495?v=4', 'https://api.github.com/users/ac-mercury', 'https://github.com/ac-mercury', 'https://api.github.com/users/ac-mercury/followers', 'https://api.github.com/users/ac-mercury/following', 'https://api.github.com/users/ac-mercury/gists', 'https://api.github.com/users/ac-mercury/starred', 'https://api.github.com/users/ac-mercury/repos', 'https://api.github.com/users/ac-mercury/events', 'https://api.github.com/users/ac-mercury/received_events', 0); -INSERT INTO `developer` VALUES (27921616, 'javeeth', 'B', 61.98993239291602, 0, 0, 0, 0, 0, 0, 'javeeth', NULL, '', NULL, NULL, NULL, NULL, NULL, 10, 0, 1, 0, 0, 0, 0, '2017-04-23T15:07:09Z', '2023-08-07T18:06:10Z', 'https://avatars.githubusercontent.com/u/27921616?v=4', 'https://api.github.com/users/javeeth', 'https://github.com/javeeth', 'https://api.github.com/users/javeeth/followers', 'https://api.github.com/users/javeeth/following', 'https://api.github.com/users/javeeth/gists', 'https://api.github.com/users/javeeth/starred', 'https://api.github.com/users/javeeth/repos', 'https://api.github.com/users/javeeth/events', 'https://api.github.com/users/javeeth/received_events', 0); -INSERT INTO `developer` VALUES (28100191, 'xsseng', 'B+', 38.33853683343167, 0, 0, 0, 0, 0, 0, 'Enoch', NULL, '', NULL, NULL, NULL, NULL, NULL, 15, 0, 13, 17, 0, 0, 0, '2017-04-27T12:24:12Z', '2024-03-13T14:55:08Z', 'https://avatars.githubusercontent.com/u/28100191?v=4', 'https://api.github.com/users/xsseng', 'https://github.com/xsseng', 'https://api.github.com/users/xsseng/followers', 'https://api.github.com/users/xsseng/following', 'https://api.github.com/users/xsseng/gists', 'https://api.github.com/users/xsseng/starred', 'https://api.github.com/users/xsseng/repos', 'https://api.github.com/users/xsseng/events', 'https://api.github.com/users/xsseng/received_events', 0); -INSERT INTO `developer` VALUES (28260709, 'toVersus', 'S', -72.05259134530644, 0, 0, 0, 0, 0, 0, 'Tsubasa Nagasawa', NULL, '', 'Tokyo', NULL, NULL, 'Unskilled but lazy programmer in Japan. Gopher/Rustacean/Kubernetes\r\n', 'toversus26', 102, 94, 23, 6, 0, 0, 0, '2017-05-01T13:13:34Z', '2024-10-03T11:39:47Z', 'https://avatars.githubusercontent.com/u/28260709?v=4', 'https://api.github.com/users/toVersus', 'https://github.com/toVersus', 'https://api.github.com/users/toVersus/followers', 'https://api.github.com/users/toVersus/following', 'https://api.github.com/users/toVersus/gists', 'https://api.github.com/users/toVersus/starred', 'https://api.github.com/users/toVersus/repos', 'https://api.github.com/users/toVersus/events', 'https://api.github.com/users/toVersus/received_events', 0); -INSERT INTO `developer` VALUES (28264901, 'mauryaak15', 'A-', 25.542154118669092, 0, 0, 0, 0, 0, 0, 'Abhishek Maurya', NULL, '', 'New Delhi', 'abhishekmaurya.kps@gmail.com', 'true', 'I am a web developer, interested in learning new web technologies currently focusing on MEAN stack development.', NULL, 21, 0, 6, 5, 0, 0, 0, '2017-05-01T15:56:20Z', '2024-10-30T11:40:16Z', 'https://avatars.githubusercontent.com/u/28264901?v=4', 'https://api.github.com/users/mauryaak15', 'https://github.com/mauryaak15', 'https://api.github.com/users/mauryaak15/followers', 'https://api.github.com/users/mauryaak15/following', 'https://api.github.com/users/mauryaak15/gists', 'https://api.github.com/users/mauryaak15/starred', 'https://api.github.com/users/mauryaak15/repos', 'https://api.github.com/users/mauryaak15/events', 'https://api.github.com/users/mauryaak15/received_events', 0); -INSERT INTO `developer` VALUES (28584151, 'jjangga0214', 'S', -89.53825254624263, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 187, 53, 69, 33, 0, 0, 0, '2017-05-10T02:44:00Z', '2024-10-10T03:20:53Z', 'https://avatars.githubusercontent.com/u/28584151?v=4', 'https://api.github.com/users/jjangga0214', 'https://github.com/jjangga0214', 'https://api.github.com/users/jjangga0214/followers', 'https://api.github.com/users/jjangga0214/following', 'https://api.github.com/users/jjangga0214/gists', 'https://api.github.com/users/jjangga0214/starred', 'https://api.github.com/users/jjangga0214/repos', 'https://api.github.com/users/jjangga0214/events', 'https://api.github.com/users/jjangga0214/received_events', 0); -INSERT INTO `developer` VALUES (28626499, 'Akshay090', 'S', -77.7704993443721, 0, 0, 0, 0, 0, 0, 'Akshay Ashok', NULL, 'https://akshayashok.dev', NULL, NULL, 'true', 'Señor Frontend Engineer at @razorpay', '10xAkshay', 109, 12, 73, 184, 0, 0, 0, '2017-05-11T13:02:33Z', '2024-10-19T13:19:06Z', 'https://avatars.githubusercontent.com/u/28626499?v=4', 'https://api.github.com/users/Akshay090', 'https://github.com/Akshay090', 'https://api.github.com/users/Akshay090/followers', 'https://api.github.com/users/Akshay090/following', 'https://api.github.com/users/Akshay090/gists', 'https://api.github.com/users/Akshay090/starred', 'https://api.github.com/users/Akshay090/repos', 'https://api.github.com/users/Akshay090/events', 'https://api.github.com/users/Akshay090/received_events', 0); -INSERT INTO `developer` VALUES (28734962, 'bogo96', 'B-', 74.21480528755131, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, 'bogo96@kaist.ac.kr', NULL, NULL, NULL, 6, 0, 2, 1, 0, 0, 0, '2017-05-16T15:26:03Z', '2024-06-02T12:33:32Z', 'https://avatars.githubusercontent.com/u/28734962?v=4', 'https://api.github.com/users/bogo96', 'https://github.com/bogo96', 'https://api.github.com/users/bogo96/followers', 'https://api.github.com/users/bogo96/following', 'https://api.github.com/users/bogo96/gists', 'https://api.github.com/users/bogo96/starred', 'https://api.github.com/users/bogo96/repos', 'https://api.github.com/users/bogo96/events', 'https://api.github.com/users/bogo96/received_events', 0); -INSERT INTO `developer` VALUES (29060284, 'dechoma', 'A', 15.937716719467065, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 28, 0, 0, 0, 0, 0, 0, '2017-05-30T10:10:11Z', '2024-09-03T09:43:52Z', 'https://avatars.githubusercontent.com/u/29060284?v=4', 'https://api.github.com/users/dechoma', 'https://github.com/dechoma', 'https://api.github.com/users/dechoma/followers', 'https://api.github.com/users/dechoma/following', 'https://api.github.com/users/dechoma/gists', 'https://api.github.com/users/dechoma/starred', 'https://api.github.com/users/dechoma/repos', 'https://api.github.com/users/dechoma/events', 'https://api.github.com/users/dechoma/received_events', 0); -INSERT INTO `developer` VALUES (29266387, 'LithiumBloom', 'C', 92.0308712783088, 0, 0, 0, 0, 0, 0, NULL, 'thomas.newbown', '', NULL, NULL, NULL, NULL, NULL, 2, 0, 0, 0, 0, 0, 0, '2017-06-08T01:02:22Z', '2024-10-09T05:22:43Z', 'https://avatars.githubusercontent.com/u/29266387?v=4', 'https://api.github.com/users/LithiumBloom', 'https://github.com/LithiumBloom', 'https://api.github.com/users/LithiumBloom/followers', 'https://api.github.com/users/LithiumBloom/following', 'https://api.github.com/users/LithiumBloom/gists', 'https://api.github.com/users/LithiumBloom/starred', 'https://api.github.com/users/LithiumBloom/repos', 'https://api.github.com/users/LithiumBloom/events', 'https://api.github.com/users/LithiumBloom/received_events', 0); -INSERT INTO `developer` VALUES (29268173, 'sre-bot', 'A-', 27.003262509374625, 0, 0, 0, 0, 0, 0, 'SRE bot', 'PingCAP', '', NULL, 'sre-bot@pingcap.com', NULL, NULL, NULL, 19, 1, 14, 0, 0, 0, 0, '2017-06-08T03:08:03Z', '2023-08-08T08:45:14Z', 'https://avatars.githubusercontent.com/u/29268173?v=4', 'https://api.github.com/users/sre-bot', 'https://github.com/sre-bot', 'https://api.github.com/users/sre-bot/followers', 'https://api.github.com/users/sre-bot/following', 'https://api.github.com/users/sre-bot/gists', 'https://api.github.com/users/sre-bot/starred', 'https://api.github.com/users/sre-bot/repos', 'https://api.github.com/users/sre-bot/events', 'https://api.github.com/users/sre-bot/received_events', 0); -INSERT INTO `developer` VALUES (29303618, 'sumitd94', 'A+', 2.81554477376571, 0, 0, 0, 0, 0, 0, 'Sumit Dhanania', NULL, '', 'Delhi, India', NULL, NULL, 'Founding Engineer @Multiwoven ', 'DhananiaSumit', 28, 0, 29, 1, 0, 0, 0, '2017-06-09T10:15:50Z', '2024-10-17T15:28:59Z', 'https://avatars.githubusercontent.com/u/29303618?v=4', 'https://api.github.com/users/sumitd94', 'https://github.com/sumitd94', 'https://api.github.com/users/sumitd94/followers', 'https://api.github.com/users/sumitd94/following', 'https://api.github.com/users/sumitd94/gists', 'https://api.github.com/users/sumitd94/starred', 'https://api.github.com/users/sumitd94/repos', 'https://api.github.com/users/sumitd94/events', 'https://api.github.com/users/sumitd94/received_events', 0); -INSERT INTO `developer` VALUES (29480593, 'mfr-itr', 'C+', 80.74683261300105, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 5, 0, 0, 0, 0, 0, 0, '2017-06-16T10:13:20Z', '2019-07-23T09:15:00Z', 'https://avatars.githubusercontent.com/u/29480593?v=4', 'https://api.github.com/users/mfr-itr', 'https://github.com/mfr-itr', 'https://api.github.com/users/mfr-itr/followers', 'https://api.github.com/users/mfr-itr/following', 'https://api.github.com/users/mfr-itr/gists', 'https://api.github.com/users/mfr-itr/starred', 'https://api.github.com/users/mfr-itr/repos', 'https://api.github.com/users/mfr-itr/events', 'https://api.github.com/users/mfr-itr/received_events', 0); -INSERT INTO `developer` VALUES (29686866, 'cseas', 'S', -85.53248381647474, 0, 0, 0, 0, 0, 0, 'Abhijeet Singh', '@razorpay @mozilla @hazel-ui ', 'https://blog.absingh.com/', 'Bangalore, India', 'contact.abhijeetsingh@gmail.com', 'true', 'Mozilla Rep | Software Engineer', 'cse_as', 136, 3, 173, 35, 0, 0, 0, '2017-06-25T08:36:36Z', '2024-08-06T13:42:50Z', 'https://avatars.githubusercontent.com/u/29686866?v=4', 'https://api.github.com/users/cseas', 'https://github.com/cseas', 'https://api.github.com/users/cseas/followers', 'https://api.github.com/users/cseas/following', 'https://api.github.com/users/cseas/gists', 'https://api.github.com/users/cseas/starred', 'https://api.github.com/users/cseas/repos', 'https://api.github.com/users/cseas/events', 'https://api.github.com/users/cseas/received_events', 0); -INSERT INTO `developer` VALUES (30250994, 'rasinfosec', 'A-', 30.67973309760992, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, 'Roy Shoemake', NULL, 19, 0, 6, 0, 0, 0, 0, '2017-07-18T03:18:11Z', '2024-09-26T15:48:57Z', 'https://avatars.githubusercontent.com/u/30250994?v=4', 'https://api.github.com/users/rasinfosec', 'https://github.com/rasinfosec', 'https://api.github.com/users/rasinfosec/followers', 'https://api.github.com/users/rasinfosec/following', 'https://api.github.com/users/rasinfosec/gists', 'https://api.github.com/users/rasinfosec/starred', 'https://api.github.com/users/rasinfosec/repos', 'https://api.github.com/users/rasinfosec/events', 'https://api.github.com/users/rasinfosec/received_events', 0); -INSERT INTO `developer` VALUES (30441101, 'sethp-nr', 'A', 13.69043938481993, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 26, 5, 6, 0, 0, 0, 0, '2017-07-25T15:38:12Z', '2020-06-29T18:57:26Z', 'https://avatars.githubusercontent.com/u/30441101?v=4', 'https://api.github.com/users/sethp-nr', 'https://github.com/sethp-nr', 'https://api.github.com/users/sethp-nr/followers', 'https://api.github.com/users/sethp-nr/following', 'https://api.github.com/users/sethp-nr/gists', 'https://api.github.com/users/sethp-nr/starred', 'https://api.github.com/users/sethp-nr/repos', 'https://api.github.com/users/sethp-nr/events', 'https://api.github.com/users/sethp-nr/received_events', 0); -INSERT INTO `developer` VALUES (30473564, 'MariePMcGarry', 'C', 94.36512811941238, 0, 0, 0, 0, 0, 0, 'Marie McGarry', NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 0, 0, 0, '2017-07-26T15:46:13Z', '2022-11-28T16:57:18Z', 'https://avatars.githubusercontent.com/u/30473564?v=4', 'https://api.github.com/users/MariePMcGarry', 'https://github.com/MariePMcGarry', 'https://api.github.com/users/MariePMcGarry/followers', 'https://api.github.com/users/MariePMcGarry/following', 'https://api.github.com/users/MariePMcGarry/gists', 'https://api.github.com/users/MariePMcGarry/starred', 'https://api.github.com/users/MariePMcGarry/repos', 'https://api.github.com/users/MariePMcGarry/events', 'https://api.github.com/users/MariePMcGarry/received_events', 0); -INSERT INTO `developer` VALUES (30618122, 'rzpamidi', 'C', 89.08969480772055, 0, 0, 0, 0, 0, 0, 'Prashanth Pamidi', '@razorpay ', '', 'Bengaluru', NULL, NULL, 'life.bind(happiness);', NULL, 2, 0, 2, 0, 0, 0, 0, '2017-08-01T07:23:31Z', '2018-11-08T11:38:45Z', 'https://avatars.githubusercontent.com/u/30618122?v=4', 'https://api.github.com/users/rzpamidi', 'https://github.com/rzpamidi', 'https://api.github.com/users/rzpamidi/followers', 'https://api.github.com/users/rzpamidi/following', 'https://api.github.com/users/rzpamidi/gists', 'https://api.github.com/users/rzpamidi/starred', 'https://api.github.com/users/rzpamidi/repos', 'https://api.github.com/users/rzpamidi/events', 'https://api.github.com/users/rzpamidi/received_events', 0); -INSERT INTO `developer` VALUES (30922556, 'lilin90', 'S', -16.187459604921294, 0, 0, 0, 0, 0, 0, 'Lilian Lee', '@PingCAP', 'https://lilianlee.me', 'Beijing, China', 'lilinup90@gmail.com', NULL, 'Senior Technical Writer | Content Strategist 微信公众号:技术传播那些事儿', 'lilianlee90', 36, 0, 148, 12, 0, 0, 0, '2017-08-11T07:25:55Z', '2024-11-01T11:45:48Z', 'https://avatars.githubusercontent.com/u/30922556?v=4', 'https://api.github.com/users/lilin90', 'https://github.com/lilin90', 'https://api.github.com/users/lilin90/followers', 'https://api.github.com/users/lilin90/following', 'https://api.github.com/users/lilin90/gists', 'https://api.github.com/users/lilin90/starred', 'https://api.github.com/users/lilin90/repos', 'https://api.github.com/users/lilin90/events', 'https://api.github.com/users/lilin90/received_events', 0); -INSERT INTO `developer` VALUES (30925288, 'iainrawson', 'A', 24.88514897032661, 0, 0, 0, 0, 0, 0, 'Iain Rawson', '@ovotech ', '', 'Grundisburgh, Suffolk', NULL, NULL, NULL, NULL, 24, 0, 0, 2, 0, 0, 0, '2017-08-11T09:23:11Z', '2024-10-29T09:58:26Z', 'https://avatars.githubusercontent.com/u/30925288?v=4', 'https://api.github.com/users/iainrawson', 'https://github.com/iainrawson', 'https://api.github.com/users/iainrawson/followers', 'https://api.github.com/users/iainrawson/following', 'https://api.github.com/users/iainrawson/gists', 'https://api.github.com/users/iainrawson/starred', 'https://api.github.com/users/iainrawson/repos', 'https://api.github.com/users/iainrawson/events', 'https://api.github.com/users/iainrawson/received_events', 0); -INSERT INTO `developer` VALUES (30938344, 'jfreeland', 'S', -45.13248174694535, 0, 0, 0, 0, 0, 0, 'Joey Freeland', NULL, '', 'Miami, FL', NULL, NULL, NULL, NULL, 59, 0, 36, 17, 0, 0, 0, '2017-08-11T20:14:34Z', '2024-10-14T18:26:05Z', 'https://avatars.githubusercontent.com/u/30938344?v=4', 'https://api.github.com/users/jfreeland', 'https://github.com/jfreeland', 'https://api.github.com/users/jfreeland/followers', 'https://api.github.com/users/jfreeland/following', 'https://api.github.com/users/jfreeland/gists', 'https://api.github.com/users/jfreeland/starred', 'https://api.github.com/users/jfreeland/repos', 'https://api.github.com/users/jfreeland/events', 'https://api.github.com/users/jfreeland/received_events', 0); -INSERT INTO `developer` VALUES (30949385, 'saurabhdaware', 'S', -82.99641917120645, 0, 0, 0, 0, 0, 0, 'Saurabh Daware', 'Frontend @razorpay | Building @abelljs', 'https://saurabhdaware.in/', 'India', 'saurabhdaware99@gmail.com', 'true', 'Frontend @razorpay || Building @abelljs, a static site generator\r\n', 'saurabhdawaree', 120, 3, 1912, 204, 0, 0, 0, '2017-08-12T07:58:05Z', '2024-11-01T06:18:44Z', 'https://avatars.githubusercontent.com/u/30949385?v=4', 'https://api.github.com/users/saurabhdaware', 'https://github.com/saurabhdaware', 'https://api.github.com/users/saurabhdaware/followers', 'https://api.github.com/users/saurabhdaware/following', 'https://api.github.com/users/saurabhdaware/gists', 'https://api.github.com/users/saurabhdaware/starred', 'https://api.github.com/users/saurabhdaware/repos', 'https://api.github.com/users/saurabhdaware/events', 'https://api.github.com/users/saurabhdaware/received_events', 0); -INSERT INTO `developer` VALUES (31490398, 'qb-abdul', 'A+', 6.72268907563025, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 30, 2, 4, 26, 0, 0, 0, '2017-08-30T20:58:24Z', '2023-07-18T08:34:16Z', 'https://avatars.githubusercontent.com/u/31490398?v=4', 'https://api.github.com/users/qb-abdul', 'https://github.com/qb-abdul', 'https://api.github.com/users/qb-abdul/followers', 'https://api.github.com/users/qb-abdul/following', 'https://api.github.com/users/qb-abdul/gists', 'https://api.github.com/users/qb-abdul/starred', 'https://api.github.com/users/qb-abdul/repos', 'https://api.github.com/users/qb-abdul/events', 'https://api.github.com/users/qb-abdul/received_events', 0); -INSERT INTO `developer` VALUES (31586309, 'kadarsh11', 'S', -17.01040210500453, 0, 0, 0, 0, 0, 0, 'Adarsh Kumar', 'razorpay.com', '', 'Delhi', NULL, NULL, NULL, NULL, 43, 1, 5, 2, 0, 0, 0, '2017-09-03T09:09:42Z', '2024-10-17T18:54:38Z', 'https://avatars.githubusercontent.com/u/31586309?v=4', 'https://api.github.com/users/kadarsh11', 'https://github.com/kadarsh11', 'https://api.github.com/users/kadarsh11/followers', 'https://api.github.com/users/kadarsh11/following', 'https://api.github.com/users/kadarsh11/gists', 'https://api.github.com/users/kadarsh11/starred', 'https://api.github.com/users/kadarsh11/repos', 'https://api.github.com/users/kadarsh11/events', 'https://api.github.com/users/kadarsh11/received_events', 0); -INSERT INTO `developer` VALUES (31597172, 'dr3dd589', 'A+', 5.492616442277976, 0, 0, 0, 0, 0, 0, 'Saurabh', 'Nutanix', 'dr3dd.gitlab.io', 'IIT Roorkee', 'skumar1@mt.iitr.ac.in', NULL, 'Application Security Engineer | GSoC\'19 @OWASP\r\n', '_dr3dd_', 27, 0, 25, 37, 0, 0, 0, '2017-09-03T19:02:49Z', '2024-10-08T16:23:08Z', 'https://avatars.githubusercontent.com/u/31597172?v=4', 'https://api.github.com/users/dr3dd589', 'https://github.com/dr3dd589', 'https://api.github.com/users/dr3dd589/followers', 'https://api.github.com/users/dr3dd589/following', 'https://api.github.com/users/dr3dd589/gists', 'https://api.github.com/users/dr3dd589/starred', 'https://api.github.com/users/dr3dd589/repos', 'https://api.github.com/users/dr3dd589/events', 'https://api.github.com/users/dr3dd589/received_events', 0); -INSERT INTO `developer` VALUES (31818562, 'SunatP', 'S', -73.08786414644163, 0, 0, 0, 0, 0, 0, 'Sunat Praphanwong', 'MFEC Public Company Limited', '', 'Thailand, Bangkok', NULL, NULL, 'Hi, I Am Sunat. I code and obfuscate.', 'Sunat_P', 101, 0, 35, 69, 0, 0, 0, '2017-09-10T10:04:02Z', '2024-08-14T09:57:53Z', 'https://avatars.githubusercontent.com/u/31818562?v=4', 'https://api.github.com/users/SunatP', 'https://github.com/SunatP', 'https://api.github.com/users/SunatP/followers', 'https://api.github.com/users/SunatP/following', 'https://api.github.com/users/SunatP/gists', 'https://api.github.com/users/SunatP/starred', 'https://api.github.com/users/SunatP/repos', 'https://api.github.com/users/SunatP/events', 'https://api.github.com/users/SunatP/received_events', 0); -INSERT INTO `developer` VALUES (31823611, 'tarungupta9', 'A', 13.827108117362496, 0, 0, 0, 0, 0, 0, 'Tarun Gupta', NULL, 'https://www.linkedin.com/in/tarungupta2811/', NULL, NULL, NULL, 'software engineer', 'tarun_gupta7', 29, 0, 0, 0, 0, 0, 0, '2017-09-10T14:35:06Z', '2024-10-17T07:15:07Z', 'https://avatars.githubusercontent.com/u/31823611?v=4', 'https://api.github.com/users/tarungupta9', 'https://github.com/tarungupta9', 'https://api.github.com/users/tarungupta9/followers', 'https://api.github.com/users/tarungupta9/following', 'https://api.github.com/users/tarungupta9/gists', 'https://api.github.com/users/tarungupta9/starred', 'https://api.github.com/users/tarungupta9/repos', 'https://api.github.com/users/tarungupta9/events', 'https://api.github.com/users/tarungupta9/received_events', 0); -INSERT INTO `developer` VALUES (32591853, '8BitJonny', 'S', -5.544708667566534, 0, 0, 0, 0, 0, 0, 'Timon Christiansen', '@Hyrule-Technologies @codeuniversity', 'timon.codes', 'Berlin', 'christiansen.timon@gmail.com', NULL, 'Lover of things like Regex, Convey\'s Game of Life and Musicals.\r\nCurrently mostly a Go Backend Dev', NULL, 31, 1, 65, 16, 0, 0, 0, '2017-10-07T09:52:39Z', '2024-10-14T08:37:15Z', 'https://avatars.githubusercontent.com/u/32591853?v=4', 'https://api.github.com/users/8BitJonny', 'https://github.com/8BitJonny', 'https://api.github.com/users/8BitJonny/followers', 'https://api.github.com/users/8BitJonny/following', 'https://api.github.com/users/8BitJonny/gists', 'https://api.github.com/users/8BitJonny/starred', 'https://api.github.com/users/8BitJonny/repos', 'https://api.github.com/users/8BitJonny/events', 'https://api.github.com/users/8BitJonny/received_events', 0); -INSERT INTO `developer` VALUES (33012425, 'michizhou', 'S', -17.443876967678506, 0, 0, 0, 0, 0, 0, NULL, 'Cruise LLC', '', 'Mountain View, CA', 'mizho@alumni.upenn.edu', 'true', NULL, NULL, 42, 0, 8, 0, 0, 0, 0, '2017-10-23T01:33:24Z', '2024-08-08T15:27:38Z', 'https://avatars.githubusercontent.com/u/33012425?v=4', 'https://api.github.com/users/michizhou', 'https://github.com/michizhou', 'https://api.github.com/users/michizhou/followers', 'https://api.github.com/users/michizhou/following', 'https://api.github.com/users/michizhou/gists', 'https://api.github.com/users/michizhou/starred', 'https://api.github.com/users/michizhou/repos', 'https://api.github.com/users/michizhou/events', 'https://api.github.com/users/michizhou/received_events', 0); -INSERT INTO `developer` VALUES (33349461, 'harsh9975', 'S', -5.705015066048502, 0, 0, 0, 0, 0, 0, 'Harish Gautam', 'Intellemo', '', 'Panjim, Goa', NULL, 'true', NULL, NULL, 35, 0, 8, 4, 0, 0, 0, '2017-11-03T12:40:00Z', '2024-10-10T17:32:04Z', 'https://avatars.githubusercontent.com/u/33349461?v=4', 'https://api.github.com/users/harsh9975', 'https://github.com/harsh9975', 'https://api.github.com/users/harsh9975/followers', 'https://api.github.com/users/harsh9975/following', 'https://api.github.com/users/harsh9975/gists', 'https://api.github.com/users/harsh9975/starred', 'https://api.github.com/users/harsh9975/repos', 'https://api.github.com/users/harsh9975/events', 'https://api.github.com/users/harsh9975/received_events', 0); -INSERT INTO `developer` VALUES (33823221, 'iahmedov', 'C+', 86.57801454927618, 0, 0, 0, 0, 0, 0, 'Ikhtiyor', NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 10, 1, 3, 0, 0, 0, '2017-11-20T06:26:56Z', '2024-02-04T19:55:50Z', 'https://avatars.githubusercontent.com/u/33823221?v=4', 'https://api.github.com/users/iahmedov', 'https://github.com/iahmedov', 'https://api.github.com/users/iahmedov/followers', 'https://api.github.com/users/iahmedov/following', 'https://api.github.com/users/iahmedov/gists', 'https://api.github.com/users/iahmedov/starred', 'https://api.github.com/users/iahmedov/repos', 'https://api.github.com/users/iahmedov/events', 'https://api.github.com/users/iahmedov/received_events', 0); -INSERT INTO `developer` VALUES (34321259, 'jalseth', 'A', 17.628558575826435, 0, 0, 0, 0, 0, 0, 'James Alseth', '@Google', 'https://jalseth.me', 'Seattle', 'james@jalseth.me', 'true', NULL, NULL, 23, 1, 12, 6, 0, 0, 0, '2017-12-06T21:52:18Z', '2024-10-18T20:13:38Z', 'https://avatars.githubusercontent.com/u/34321259?v=4', 'https://api.github.com/users/jalseth', 'https://github.com/jalseth', 'https://api.github.com/users/jalseth/followers', 'https://api.github.com/users/jalseth/following', 'https://api.github.com/users/jalseth/gists', 'https://api.github.com/users/jalseth/starred', 'https://api.github.com/users/jalseth/repos', 'https://api.github.com/users/jalseth/events', 'https://api.github.com/users/jalseth/received_events', 0); -INSERT INTO `developer` VALUES (34422744, 'przeszlo', 'C', 88.18229262414249, 0, 0, 0, 0, 0, 0, 'Pawel Przeszlo', NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 0, 0, 0, 0, 0, 0, '2017-12-10T18:10:46Z', '2024-05-28T18:53:43Z', 'https://avatars.githubusercontent.com/u/34422744?v=4', 'https://api.github.com/users/przeszlo', 'https://github.com/przeszlo', 'https://api.github.com/users/przeszlo/followers', 'https://api.github.com/users/przeszlo/following', 'https://api.github.com/users/przeszlo/gists', 'https://api.github.com/users/przeszlo/starred', 'https://api.github.com/users/przeszlo/repos', 'https://api.github.com/users/przeszlo/events', 'https://api.github.com/users/przeszlo/received_events', 0); -INSERT INTO `developer` VALUES (34663482, 'ptrovatelli', 'B+', 43.96320261152125, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 14, 2, 7, 1, 0, 0, 0, '2017-12-18T21:48:50Z', '2024-10-24T07:57:13Z', 'https://avatars.githubusercontent.com/u/34663482?v=4', 'https://api.github.com/users/ptrovatelli', 'https://github.com/ptrovatelli', 'https://api.github.com/users/ptrovatelli/followers', 'https://api.github.com/users/ptrovatelli/following', 'https://api.github.com/users/ptrovatelli/gists', 'https://api.github.com/users/ptrovatelli/starred', 'https://api.github.com/users/ptrovatelli/repos', 'https://api.github.com/users/ptrovatelli/events', 'https://api.github.com/users/ptrovatelli/received_events', 0); -INSERT INTO `developer` VALUES (35055032, 'swaggycorgi', 'C+', 84.42161562792062, 0, 0, 0, 0, 0, 0, 'Cao Wei', NULL, '', NULL, NULL, NULL, 'Application Security Intern', NULL, 4, 0, 0, 0, 0, 0, 0, '2018-01-03T04:53:21Z', '2018-05-25T07:38:52Z', 'https://avatars.githubusercontent.com/u/35055032?v=4', 'https://api.github.com/users/swaggycorgi', 'https://github.com/swaggycorgi', 'https://api.github.com/users/swaggycorgi/followers', 'https://api.github.com/users/swaggycorgi/following', 'https://api.github.com/users/swaggycorgi/gists', 'https://api.github.com/users/swaggycorgi/starred', 'https://api.github.com/users/swaggycorgi/repos', 'https://api.github.com/users/swaggycorgi/events', 'https://api.github.com/users/swaggycorgi/received_events', 0); -INSERT INTO `developer` VALUES (35092582, 'Aniket21mathur', 'S', -14.29189809512219, 0, 0, 0, 0, 0, 0, 'Aniket Mathur', ' @chapel-lang', '', 'IIT Roorkee', 'aniket.m@rigi.club', NULL, 'GSOC\'21 Mentor @chapel-lang | GSOC\'20 @chapel-lang | GSOC\'19 @sugarlabs | GCI\'19 Mentor @sugarlabs', 'aniketmathur320', 35, 0, 135, 119, 0, 0, 0, '2018-01-04T06:23:57Z', '2024-11-02T05:09:11Z', 'https://avatars.githubusercontent.com/u/35092582?v=4', 'https://api.github.com/users/Aniket21mathur', 'https://github.com/Aniket21mathur', 'https://api.github.com/users/Aniket21mathur/followers', 'https://api.github.com/users/Aniket21mathur/following', 'https://api.github.com/users/Aniket21mathur/gists', 'https://api.github.com/users/Aniket21mathur/starred', 'https://api.github.com/users/Aniket21mathur/repos', 'https://api.github.com/users/Aniket21mathur/events', 'https://api.github.com/users/Aniket21mathur/received_events', 0); -INSERT INTO `developer` VALUES (35374649, 'anuraghazra', 'S', -86.82752716352995, 0, 0, 0, 0, 0, 0, 'Anurag Hazra', '@razorpay', 'https://anuraghazra.dev', 'India, West Bengal', 'hazru.anurag@gmail.com', NULL, '❤️ TypeScript Wizard\r\n❄ Reactjs Magician\r\n🎨 Design Systems', 'anuraghazru', 138, 29, 13138, 124, 0, 0, 0, '2018-01-12T14:48:56Z', '2024-10-08T19:27:14Z', 'https://avatars.githubusercontent.com/u/35374649?v=4', 'https://api.github.com/users/anuraghazra', 'https://github.com/anuraghazra', 'https://api.github.com/users/anuraghazra/followers', 'https://api.github.com/users/anuraghazra/following', 'https://api.github.com/users/anuraghazra/gists', 'https://api.github.com/users/anuraghazra/starred', 'https://api.github.com/users/anuraghazra/repos', 'https://api.github.com/users/anuraghazra/events', 'https://api.github.com/users/anuraghazra/received_events', 0); -INSERT INTO `developer` VALUES (35786917, 'adiffpirate', 'A-', 34.074227421137714, 0, 0, 0, 0, 0, 0, 'Luiz Paulo S. Monteiro', 'Opus Software', '', 'São José dos Campos/SP - Brazil', NULL, NULL, 'I love to automate stuff <3', NULL, 18, 0, 5, 1, 0, 0, 0, '2018-01-25T01:02:37Z', '2024-02-16T15:20:28Z', 'https://avatars.githubusercontent.com/u/35786917?v=4', 'https://api.github.com/users/adiffpirate', 'https://github.com/adiffpirate', 'https://api.github.com/users/adiffpirate/followers', 'https://api.github.com/users/adiffpirate/following', 'https://api.github.com/users/adiffpirate/gists', 'https://api.github.com/users/adiffpirate/starred', 'https://api.github.com/users/adiffpirate/repos', 'https://api.github.com/users/adiffpirate/events', 'https://api.github.com/users/adiffpirate/received_events', 0); -INSERT INTO `developer` VALUES (36595353, 'n-insaidoo', 'A+', 7.692307692307699, 0, 0, 0, 0, 0, 0, 'Nana Insaidoo', NULL, '', NULL, NULL, NULL, 'Software Developer @ Meterian', NULL, 30, 0, 3, 4, 0, 0, 0, '2018-02-18T11:31:57Z', '2024-10-18T11:48:38Z', 'https://avatars.githubusercontent.com/u/36595353?v=4', 'https://api.github.com/users/n-insaidoo', 'https://github.com/n-insaidoo', 'https://api.github.com/users/n-insaidoo/followers', 'https://api.github.com/users/n-insaidoo/following', 'https://api.github.com/users/n-insaidoo/gists', 'https://api.github.com/users/n-insaidoo/starred', 'https://api.github.com/users/n-insaidoo/repos', 'https://api.github.com/users/n-insaidoo/events', 'https://api.github.com/users/n-insaidoo/received_events', 0); -INSERT INTO `developer` VALUES (37472890, 'LaumiH', 'A+', 5.349481425349412, 0, 0, 0, 0, 0, 0, 'Laura Spang', NULL, '', 'Darmstadt', NULL, NULL, 'Master degree in Computer Science at TU Darmstadt. Working as a research assistant.', NULL, 28, 0, 15, 2, 0, 0, 0, '2018-03-17T10:42:40Z', '2024-08-14T07:16:41Z', 'https://avatars.githubusercontent.com/u/37472890?v=4', 'https://api.github.com/users/LaumiH', 'https://github.com/LaumiH', 'https://api.github.com/users/LaumiH/followers', 'https://api.github.com/users/LaumiH/following', 'https://api.github.com/users/LaumiH/gists', 'https://api.github.com/users/LaumiH/starred', 'https://api.github.com/users/LaumiH/repos', 'https://api.github.com/users/LaumiH/events', 'https://api.github.com/users/LaumiH/received_events', 0); -INSERT INTO `developer` VALUES (38007400, 'pdmayoSFI', 'B', 54.32793233915276, 0, 0, 0, 0, 0, 0, 'Patrick Mayo', NULL, '', NULL, NULL, NULL, NULL, NULL, 12, 1, 2, 0, 0, 0, 0, '2018-04-02T13:45:00Z', '2020-11-30T21:56:17Z', 'https://avatars.githubusercontent.com/u/38007400?v=4', 'https://api.github.com/users/pdmayoSFI', 'https://github.com/pdmayoSFI', 'https://api.github.com/users/pdmayoSFI/followers', 'https://api.github.com/users/pdmayoSFI/following', 'https://api.github.com/users/pdmayoSFI/gists', 'https://api.github.com/users/pdmayoSFI/starred', 'https://api.github.com/users/pdmayoSFI/repos', 'https://api.github.com/users/pdmayoSFI/events', 'https://api.github.com/users/pdmayoSFI/received_events', 0); -INSERT INTO `developer` VALUES (38182176, 'fabelx', 'B-', 74.21480528755131, 0, 0, 0, 0, 0, 0, 'Vladyslav Novotnyi', NULL, '', 'Canada', NULL, NULL, '💙💛', NULL, 6, 3, 2, 6, 0, 0, 0, '2018-04-08T12:04:23Z', '2024-04-02T17:45:34Z', 'https://avatars.githubusercontent.com/u/38182176?v=4', 'https://api.github.com/users/fabelx', 'https://github.com/fabelx', 'https://api.github.com/users/fabelx/followers', 'https://api.github.com/users/fabelx/following', 'https://api.github.com/users/fabelx/gists', 'https://api.github.com/users/fabelx/starred', 'https://api.github.com/users/fabelx/repos', 'https://api.github.com/users/fabelx/events', 'https://api.github.com/users/fabelx/received_events', 0); -INSERT INTO `developer` VALUES (38254755, 'rinrailin', 'C+', 84.10989443409724, 0, 0, 0, 0, 0, 0, 'Anton Trifonov', NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 0, 3, 0, 0, 0, 0, '2018-04-10T14:45:50Z', '2024-10-06T11:41:42Z', 'https://avatars.githubusercontent.com/u/38254755?v=4', 'https://api.github.com/users/rinrailin', 'https://github.com/rinrailin', 'https://api.github.com/users/rinrailin/followers', 'https://api.github.com/users/rinrailin/following', 'https://api.github.com/users/rinrailin/gists', 'https://api.github.com/users/rinrailin/starred', 'https://api.github.com/users/rinrailin/repos', 'https://api.github.com/users/rinrailin/events', 'https://api.github.com/users/rinrailin/received_events', 0); -INSERT INTO `developer` VALUES (38285208, 'Seppl2202', 'B-', 70.21845226049196, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 8, 1, 0, 0, 0, 0, 0, '2018-04-11T12:03:01Z', '2024-09-27T13:54:03Z', 'https://avatars.githubusercontent.com/u/38285208?v=4', 'https://api.github.com/users/Seppl2202', 'https://github.com/Seppl2202', 'https://api.github.com/users/Seppl2202/followers', 'https://api.github.com/users/Seppl2202/following', 'https://api.github.com/users/Seppl2202/gists', 'https://api.github.com/users/Seppl2202/starred', 'https://api.github.com/users/Seppl2202/repos', 'https://api.github.com/users/Seppl2202/events', 'https://api.github.com/users/Seppl2202/received_events', 0); -INSERT INTO `developer` VALUES (38399884, 'raghunath24', 'C+', 82.40520282911093, 0, 0, 0, 0, 0, 0, 'Raghu', NULL, '', NULL, NULL, NULL, NULL, NULL, 2, 0, 12, 0, 0, 0, 0, '2018-04-15T12:57:20Z', '2019-09-23T06:25:15Z', 'https://avatars.githubusercontent.com/u/38399884?v=4', 'https://api.github.com/users/raghunath24', 'https://github.com/raghunath24', 'https://api.github.com/users/raghunath24/followers', 'https://api.github.com/users/raghunath24/following', 'https://api.github.com/users/raghunath24/gists', 'https://api.github.com/users/raghunath24/starred', 'https://api.github.com/users/raghunath24/repos', 'https://api.github.com/users/raghunath24/events', 'https://api.github.com/users/raghunath24/received_events', 0); -INSERT INTO `developer` VALUES (39210290, 'mszuyev', 'C', 89.08969480772055, 0, 0, 0, 0, 0, 0, 'Mike Zuev', NULL, '', NULL, NULL, NULL, NULL, NULL, 2, 0, 2, 1, 0, 0, 0, '2018-05-12T06:10:33Z', '2023-12-01T06:19:08Z', 'https://avatars.githubusercontent.com/u/39210290?v=4', 'https://api.github.com/users/mszuyev', 'https://github.com/mszuyev', 'https://api.github.com/users/mszuyev/followers', 'https://api.github.com/users/mszuyev/following', 'https://api.github.com/users/mszuyev/gists', 'https://api.github.com/users/mszuyev/starred', 'https://api.github.com/users/mszuyev/repos', 'https://api.github.com/users/mszuyev/events', 'https://api.github.com/users/mszuyev/received_events', 0); -INSERT INTO `developer` VALUES (39501569, 'philippemizrahi', 'C+', 77.80565614241281, 0, 0, 0, 0, 0, 0, 'Philippe Mizrahi', 'Lyft', 'www.linkedin.com/in/philippe-mizrahi/', 'SF', NULL, NULL, 'CEO @Linkup', NULL, 5, 0, 2, 4, 0, 0, 0, '2018-05-21T20:32:19Z', '2024-10-16T19:19:04Z', 'https://avatars.githubusercontent.com/u/39501569?v=4', 'https://api.github.com/users/philippemizrahi', 'https://github.com/philippemizrahi', 'https://api.github.com/users/philippemizrahi/followers', 'https://api.github.com/users/philippemizrahi/following', 'https://api.github.com/users/philippemizrahi/gists', 'https://api.github.com/users/philippemizrahi/starred', 'https://api.github.com/users/philippemizrahi/repos', 'https://api.github.com/users/philippemizrahi/events', 'https://api.github.com/users/philippemizrahi/received_events', 0); -INSERT INTO `developer` VALUES (39844334, 'tohch4', 'S', -68.49533804533809, 0, 0, 0, 0, 0, 0, 'Alexander Stein (Inactive)', NULL, '', NULL, NULL, NULL, 'I am a former employee of Flexion. This account is no longer active as of 5 November 2021.', NULL, 106, 7, 7, 6, 0, 0, 0, '2018-06-01T23:42:56Z', '2024-08-22T21:53:44Z', 'https://avatars.githubusercontent.com/u/39844334?v=4', 'https://api.github.com/users/tohch4', 'https://github.com/tohch4', 'https://api.github.com/users/tohch4/followers', 'https://api.github.com/users/tohch4/following', 'https://api.github.com/users/tohch4/gists', 'https://api.github.com/users/tohch4/starred', 'https://api.github.com/users/tohch4/repos', 'https://api.github.com/users/tohch4/events', 'https://api.github.com/users/tohch4/received_events', 0); -INSERT INTO `developer` VALUES (39970089, 'instazackwu', 'C+', 80.74683261300105, 0, 0, 0, 0, 0, 0, 'Zack Wu', NULL, '', NULL, NULL, NULL, NULL, NULL, 5, 0, 0, 0, 0, 0, 0, '2018-06-05T21:09:10Z', '2023-03-14T00:33:02Z', 'https://avatars.githubusercontent.com/u/39970089?v=4', 'https://api.github.com/users/instazackwu', 'https://github.com/instazackwu', 'https://api.github.com/users/instazackwu/followers', 'https://api.github.com/users/instazackwu/following', 'https://api.github.com/users/instazackwu/gists', 'https://api.github.com/users/instazackwu/starred', 'https://api.github.com/users/instazackwu/repos', 'https://api.github.com/users/instazackwu/events', 'https://api.github.com/users/instazackwu/received_events', 0); -INSERT INTO `developer` VALUES (40307978, 'KarstenSiemer', 'A-', 33.4342389476134, 0, 0, 0, 0, 0, 0, 'Karsten Siemer', 'Aetherize', '', 'Hamburg', 'karsten.siemer@aetherize.com', NULL, 'Freelance DevOps Engineer', NULL, 17, 0, 11, 5, 0, 0, 0, '2018-06-15T23:35:10Z', '2024-10-16T19:21:16Z', 'https://avatars.githubusercontent.com/u/40307978?v=4', 'https://api.github.com/users/KarstenSiemer', 'https://github.com/KarstenSiemer', 'https://api.github.com/users/KarstenSiemer/followers', 'https://api.github.com/users/KarstenSiemer/following', 'https://api.github.com/users/KarstenSiemer/gists', 'https://api.github.com/users/KarstenSiemer/starred', 'https://api.github.com/users/KarstenSiemer/repos', 'https://api.github.com/users/KarstenSiemer/events', 'https://api.github.com/users/KarstenSiemer/received_events', 0); -INSERT INTO `developer` VALUES (40765872, 'ivan-valkov', 'S', -41.12616426470086, 0, 0, 0, 0, 0, 0, 'Ivan Valkov', NULL, '', NULL, NULL, NULL, NULL, NULL, 58, 0, 16, 37, 0, 0, 0, '2018-07-02T13:49:23Z', '2024-08-12T08:59:27Z', 'https://avatars.githubusercontent.com/u/40765872?v=4', 'https://api.github.com/users/ivan-valkov', 'https://github.com/ivan-valkov', 'https://api.github.com/users/ivan-valkov/followers', 'https://api.github.com/users/ivan-valkov/following', 'https://api.github.com/users/ivan-valkov/gists', 'https://api.github.com/users/ivan-valkov/starred', 'https://api.github.com/users/ivan-valkov/repos', 'https://api.github.com/users/ivan-valkov/events', 'https://api.github.com/users/ivan-valkov/received_events', 0); -INSERT INTO `developer` VALUES (41534398, 'TomShawn', 'B-', 73.64714605015101, 0, 0, 0, 0, 0, 0, 'TomShawn', NULL, '', NULL, NULL, NULL, 'Technical Writer', NULL, 7, 0, 0, 0, 0, 0, 0, '2018-07-22T07:27:25Z', '2024-09-10T07:02:22Z', 'https://avatars.githubusercontent.com/u/41534398?v=4', 'https://api.github.com/users/TomShawn', 'https://github.com/TomShawn', 'https://api.github.com/users/TomShawn/followers', 'https://api.github.com/users/TomShawn/following', 'https://api.github.com/users/TomShawn/gists', 'https://api.github.com/users/TomShawn/starred', 'https://api.github.com/users/TomShawn/repos', 'https://api.github.com/users/TomShawn/events', 'https://api.github.com/users/TomShawn/received_events', 0); -INSERT INTO `developer` VALUES (41620285, 'MrBakalo', 'C', 92.0308712783088, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 2, 0, 0, 0, 0, 0, 0, '2018-07-24T09:19:18Z', '2019-09-02T10:54:14Z', 'https://avatars.githubusercontent.com/u/41620285?v=4', 'https://api.github.com/users/MrBakalo', 'https://github.com/MrBakalo', 'https://api.github.com/users/MrBakalo/followers', 'https://api.github.com/users/MrBakalo/following', 'https://api.github.com/users/MrBakalo/gists', 'https://api.github.com/users/MrBakalo/starred', 'https://api.github.com/users/MrBakalo/repos', 'https://api.github.com/users/MrBakalo/events', 'https://api.github.com/users/MrBakalo/received_events', 0); -INSERT INTO `developer` VALUES (41990220, 'krzysztof-pawlik-gat', 'C', 100, 0, 0, 0, 0, 0, 0, 'Krzysztof Pawlik', NULL, '', 'Poland, Kraków', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-08-01T08:55:11Z', '2024-10-26T11:47:20Z', 'https://avatars.githubusercontent.com/u/41990220?v=4', 'https://api.github.com/users/krzysztof-pawlik-gat', 'https://github.com/krzysztof-pawlik-gat', 'https://api.github.com/users/krzysztof-pawlik-gat/followers', 'https://api.github.com/users/krzysztof-pawlik-gat/following', 'https://api.github.com/users/krzysztof-pawlik-gat/gists', 'https://api.github.com/users/krzysztof-pawlik-gat/starred', 'https://api.github.com/users/krzysztof-pawlik-gat/repos', 'https://api.github.com/users/krzysztof-pawlik-gat/events', 'https://api.github.com/users/krzysztof-pawlik-gat/received_events', 0); -INSERT INTO `developer` VALUES (42152126, 'grvsharma1810', 'S', -48.87180672425586, 0, 0, 0, 0, 0, 0, 'Gaurav Kumar Sharma', NULL, 'https://gaurav-sharma.netlify.app/', 'Singrauli', 'gs8280601@gmail.com', NULL, 'On the way', 'sharma_codes', 71, 1, 6, 12, 0, 0, 0, '2018-08-06T17:54:58Z', '2024-10-05T08:51:42Z', 'https://avatars.githubusercontent.com/u/42152126?v=4', 'https://api.github.com/users/grvsharma1810', 'https://github.com/grvsharma1810', 'https://api.github.com/users/grvsharma1810/followers', 'https://api.github.com/users/grvsharma1810/following', 'https://api.github.com/users/grvsharma1810/gists', 'https://api.github.com/users/grvsharma1810/starred', 'https://api.github.com/users/grvsharma1810/repos', 'https://api.github.com/users/grvsharma1810/events', 'https://api.github.com/users/grvsharma1810/received_events', 0); -INSERT INTO `developer` VALUES (42418735, 'prakharrr-sl', 'A-', 32.255363349710755, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 19, 0, 4, 19, 0, 0, 0, '2018-08-15T18:37:09Z', '2021-03-10T18:21:03Z', 'https://avatars.githubusercontent.com/u/42418735?v=4', 'https://api.github.com/users/prakharrr-sl', 'https://github.com/prakharrr-sl', 'https://api.github.com/users/prakharrr-sl/followers', 'https://api.github.com/users/prakharrr-sl/following', 'https://api.github.com/users/prakharrr-sl/gists', 'https://api.github.com/users/prakharrr-sl/starred', 'https://api.github.com/users/prakharrr-sl/repos', 'https://api.github.com/users/prakharrr-sl/events', 'https://api.github.com/users/prakharrr-sl/received_events', 0); -INSERT INTO `developer` VALUES (42688627, 'kj2101', 'B', 60.395126044153045, 0, 0, 0, 0, 0, 0, 'Kamal Jain', NULL, '', 'India', NULL, NULL, 'I am a Front end developer.', NULL, 11, 0, 0, 1, 0, 0, 0, '2018-08-25T03:45:34Z', '2024-01-15T10:12:34Z', 'https://avatars.githubusercontent.com/u/42688627?v=4', 'https://api.github.com/users/kj2101', 'https://github.com/kj2101', 'https://api.github.com/users/kj2101/followers', 'https://api.github.com/users/kj2101/following', 'https://api.github.com/users/kj2101/gists', 'https://api.github.com/users/kj2101/starred', 'https://api.github.com/users/kj2101/repos', 'https://api.github.com/users/kj2101/events', 'https://api.github.com/users/kj2101/received_events', 0); -INSERT INTO `developer` VALUES (42797797, 'BellaXiang', 'B', 51.386755868564514, 0, 0, 0, 0, 0, 0, 'Nan Xiang', 'Moqi', '', 'Beijing', 'nanx@myscale.com', NULL, NULL, 'Bella07316236', 12, 1, 5, 0, 0, 0, 0, '2018-08-29T06:55:49Z', '2024-10-24T08:46:23Z', 'https://avatars.githubusercontent.com/u/42797797?v=4', 'https://api.github.com/users/BellaXiang', 'https://github.com/BellaXiang', 'https://api.github.com/users/BellaXiang/followers', 'https://api.github.com/users/BellaXiang/following', 'https://api.github.com/users/BellaXiang/gists', 'https://api.github.com/users/BellaXiang/starred', 'https://api.github.com/users/BellaXiang/repos', 'https://api.github.com/users/BellaXiang/events', 'https://api.github.com/users/BellaXiang/received_events', 0); -INSERT INTO `developer` VALUES (42899277, 'carnei-ro', 'S', -74.38194512750462, 0, 0, 0, 0, 0, 0, 'Leandro Carneiro', NULL, '', NULL, NULL, NULL, NULL, NULL, 109, 5, 22, 2, 0, 0, 0, '2018-09-01T21:01:08Z', '2024-10-30T01:46:59Z', 'https://avatars.githubusercontent.com/u/42899277?v=4', 'https://api.github.com/users/carnei-ro', 'https://github.com/carnei-ro', 'https://api.github.com/users/carnei-ro/followers', 'https://api.github.com/users/carnei-ro/following', 'https://api.github.com/users/carnei-ro/gists', 'https://api.github.com/users/carnei-ro/starred', 'https://api.github.com/users/carnei-ro/repos', 'https://api.github.com/users/carnei-ro/events', 'https://api.github.com/users/carnei-ro/received_events', 0); -INSERT INTO `developer` VALUES (42941224, 'ricardomeulendijks', 'C+', 84.42161562792062, 0, 0, 0, 0, 0, 0, 'Ricardo Meulendijks', NULL, 'ricardomeulendijks.nl', 'Eindhoven', NULL, NULL, NULL, NULL, 4, 0, 0, 0, 0, 0, 0, '2018-09-03T15:02:57Z', '2024-08-10T13:31:42Z', 'https://avatars.githubusercontent.com/u/42941224?v=4', 'https://api.github.com/users/ricardomeulendijks', 'https://github.com/ricardomeulendijks', 'https://api.github.com/users/ricardomeulendijks/followers', 'https://api.github.com/users/ricardomeulendijks/following', 'https://api.github.com/users/ricardomeulendijks/gists', 'https://api.github.com/users/ricardomeulendijks/starred', 'https://api.github.com/users/ricardomeulendijks/repos', 'https://api.github.com/users/ricardomeulendijks/events', 'https://api.github.com/users/ricardomeulendijks/received_events', 0); -INSERT INTO `developer` VALUES (43136153, 'jonathan-cowling', 'B', 57.269108809741, 0, 0, 0, 0, 0, 0, 'jonathan cowling msm', NULL, '', NULL, NULL, NULL, NULL, NULL, 12, 0, 0, 1, 0, 0, 0, '2018-09-10T10:30:56Z', '2019-07-25T23:33:36Z', 'https://avatars.githubusercontent.com/u/43136153?v=4', 'https://api.github.com/users/jonathan-cowling', 'https://github.com/jonathan-cowling', 'https://api.github.com/users/jonathan-cowling/followers', 'https://api.github.com/users/jonathan-cowling/following', 'https://api.github.com/users/jonathan-cowling/gists', 'https://api.github.com/users/jonathan-cowling/starred', 'https://api.github.com/users/jonathan-cowling/repos', 'https://api.github.com/users/jonathan-cowling/events', 'https://api.github.com/users/jonathan-cowling/received_events', 0); -INSERT INTO `developer` VALUES (43420401, 'teresy', 'S', -72.0621361227558, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 123, 0, 5, 0, 0, 0, 0, '2018-09-19T18:38:14Z', '2024-10-20T12:01:48Z', 'https://avatars.githubusercontent.com/u/43420401?v=4', 'https://api.github.com/users/teresy', 'https://github.com/teresy', 'https://api.github.com/users/teresy/followers', 'https://api.github.com/users/teresy/following', 'https://api.github.com/users/teresy/gists', 'https://api.github.com/users/teresy/starred', 'https://api.github.com/users/teresy/repos', 'https://api.github.com/users/teresy/events', 'https://api.github.com/users/teresy/received_events', 0); -INSERT INTO `developer` VALUES (43565572, 'parichay28', 'B+', 45.31464960670495, 0, 0, 0, 0, 0, 0, 'Parichay Agrawal', '@razorpay ', 'parichay.hashnode.dev', 'Bengaluru', NULL, NULL, 'Frontend @razorpay JS | React {Native} | NodeJS\r\n', 'Parichay101', 12, 1, 21, 125, 0, 0, 0, '2018-09-25T06:58:19Z', '2024-08-29T19:13:49Z', 'https://avatars.githubusercontent.com/u/43565572?v=4', 'https://api.github.com/users/parichay28', 'https://github.com/parichay28', 'https://api.github.com/users/parichay28/followers', 'https://api.github.com/users/parichay28/following', 'https://api.github.com/users/parichay28/gists', 'https://api.github.com/users/parichay28/starred', 'https://api.github.com/users/parichay28/repos', 'https://api.github.com/users/parichay28/events', 'https://api.github.com/users/parichay28/received_events', 0); -INSERT INTO `developer` VALUES (43874676, 'bgoareguer', 'B-', 65.26379187035174, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 9, 0, 1, 1, 0, 0, 0, '2018-10-05T07:30:46Z', '2024-10-25T08:40:29Z', 'https://avatars.githubusercontent.com/u/43874676?v=4', 'https://api.github.com/users/bgoareguer', 'https://github.com/bgoareguer', 'https://api.github.com/users/bgoareguer/followers', 'https://api.github.com/users/bgoareguer/following', 'https://api.github.com/users/bgoareguer/gists', 'https://api.github.com/users/bgoareguer/starred', 'https://api.github.com/users/bgoareguer/repos', 'https://api.github.com/users/bgoareguer/events', 'https://api.github.com/users/bgoareguer/received_events', 0); -INSERT INTO `developer` VALUES (44541855, 'ankit2001', 'S', -66.97799246930309, 0, 0, 0, 0, 0, 0, 'Ankit Choudhary', 'Amazon', '', 'Kurukshetra,Haryana', 'ankitchoudhary202.ac@gmail.com', 'true', 'Software Development Engineer @AWS', NULL, 84, 1, 88, 38, 0, 0, 0, '2018-10-28T07:43:26Z', '2024-10-15T14:15:50Z', 'https://avatars.githubusercontent.com/u/44541855?v=4', 'https://api.github.com/users/ankit2001', 'https://github.com/ankit2001', 'https://api.github.com/users/ankit2001/followers', 'https://api.github.com/users/ankit2001/following', 'https://api.github.com/users/ankit2001/gists', 'https://api.github.com/users/ankit2001/starred', 'https://api.github.com/users/ankit2001/repos', 'https://api.github.com/users/ankit2001/events', 'https://api.github.com/users/ankit2001/received_events', 0); -INSERT INTO `developer` VALUES (44571635, 'dikshathakur3119', 'B-', 65.26379187035174, 0, 0, 0, 0, 0, 0, 'Diksha Thakur', NULL, '', 'United States', NULL, NULL, 'An enthusiastic Software Developer who keeps on exploring new technologies. Areas of interest: Machine Learning, Data Visualization, NLP.', NULL, 9, 0, 1, 0, 0, 0, 0, '2018-10-29T10:51:00Z', '2021-07-24T04:35:10Z', 'https://avatars.githubusercontent.com/u/44571635?v=4', 'https://api.github.com/users/dikshathakur3119', 'https://github.com/dikshathakur3119', 'https://api.github.com/users/dikshathakur3119/followers', 'https://api.github.com/users/dikshathakur3119/following', 'https://api.github.com/users/dikshathakur3119/gists', 'https://api.github.com/users/dikshathakur3119/starred', 'https://api.github.com/users/dikshathakur3119/repos', 'https://api.github.com/users/dikshathakur3119/events', 'https://api.github.com/users/dikshathakur3119/received_events', 0); -INSERT INTO `developer` VALUES (45755515, 'vishalashank', 'C', 92.0308712783088, 0, 0, 0, 0, 0, 0, 'Vishal Ashank', '@razorpay ', 'https://github.com/saavan251', 'Bengaluru', NULL, NULL, NULL, NULL, 2, 0, 0, 0, 0, 0, 0, '2018-12-10T09:36:34Z', '2020-09-17T15:55:07Z', 'https://avatars.githubusercontent.com/u/45755515?v=4', 'https://api.github.com/users/vishalashank', 'https://github.com/vishalashank', 'https://api.github.com/users/vishalashank/followers', 'https://api.github.com/users/vishalashank/following', 'https://api.github.com/users/vishalashank/gists', 'https://api.github.com/users/vishalashank/starred', 'https://api.github.com/users/vishalashank/repos', 'https://api.github.com/users/vishalashank/events', 'https://api.github.com/users/vishalashank/received_events', 0); -INSERT INTO `developer` VALUES (46459665, 'Maffooch', 'B-', 65.39127587578662, 0, 0, 0, 0, 0, 0, 'Cody Maffucci', '@DefectDojo-Inc ', 'https://www.linkedin.com/in/cody-maffucci/', 'Cypress, TX', NULL, NULL, NULL, NULL, 6, 2, 20, 3, 0, 0, 0, '2019-01-07T20:07:01Z', '2024-11-01T18:38:58Z', 'https://avatars.githubusercontent.com/u/46459665?v=4', 'https://api.github.com/users/Maffooch', 'https://github.com/Maffooch', 'https://api.github.com/users/Maffooch/followers', 'https://api.github.com/users/Maffooch/following', 'https://api.github.com/users/Maffooch/gists', 'https://api.github.com/users/Maffooch/starred', 'https://api.github.com/users/Maffooch/repos', 'https://api.github.com/users/Maffooch/events', 'https://api.github.com/users/Maffooch/received_events', 0); -INSERT INTO `developer` VALUES (47112778, 'dev-cj', 'A+', 3.9215686274509887, 0, 0, 0, 0, 0, 0, 'CJ', NULL, 'https://devcj.in', 'India', NULL, 'true', NULL, NULL, 30, 0, 8, 28, 0, 0, 0, '2019-01-28T14:51:20Z', '2024-09-27T21:33:39Z', 'https://avatars.githubusercontent.com/u/47112778?v=4', 'https://api.github.com/users/dev-cj', 'https://github.com/dev-cj', 'https://api.github.com/users/dev-cj/followers', 'https://api.github.com/users/dev-cj/following', 'https://api.github.com/users/dev-cj/gists', 'https://api.github.com/users/dev-cj/starred', 'https://api.github.com/users/dev-cj/repos', 'https://api.github.com/users/dev-cj/events', 'https://api.github.com/users/dev-cj/received_events', 0); -INSERT INTO `developer` VALUES (47610842, 'SoaAlex', 'B+', 41.073658351738686, 0, 0, 0, 0, 0, 0, 'SoaAlex', '@adeo ', '', 'Lille', NULL, NULL, 'Freelance - DevOps Engineer at Adeo - Graduated from CentraleSupelec & ECE Paris -🎂 25', NULL, 17, 0, 1, 0, 0, 0, 0, '2019-02-13T19:45:59Z', '2024-09-27T13:25:02Z', 'https://avatars.githubusercontent.com/u/47610842?v=4', 'https://api.github.com/users/SoaAlex', 'https://github.com/SoaAlex', 'https://api.github.com/users/SoaAlex/followers', 'https://api.github.com/users/SoaAlex/following', 'https://api.github.com/users/SoaAlex/gists', 'https://api.github.com/users/SoaAlex/starred', 'https://api.github.com/users/SoaAlex/repos', 'https://api.github.com/users/SoaAlex/events', 'https://api.github.com/users/SoaAlex/received_events', 0); -INSERT INTO `developer` VALUES (47991713, 'manuel-sommer', 'A-', 27.67171170723559, 0, 0, 0, 0, 0, 0, 'manuelsommer', NULL, '', NULL, NULL, NULL, NULL, NULL, 19, 0, 12, 10, 0, 0, 0, '2019-02-25T20:12:52Z', '2024-05-21T06:56:36Z', 'https://avatars.githubusercontent.com/u/47991713?v=4', 'https://api.github.com/users/manuel-sommer', 'https://github.com/manuel-sommer', 'https://api.github.com/users/manuel-sommer/followers', 'https://api.github.com/users/manuel-sommer/following', 'https://api.github.com/users/manuel-sommer/gists', 'https://api.github.com/users/manuel-sommer/starred', 'https://api.github.com/users/manuel-sommer/repos', 'https://api.github.com/users/manuel-sommer/events', 'https://api.github.com/users/manuel-sommer/received_events', 0); -INSERT INTO `developer` VALUES (48921037, 'Jaynil1611', 'S', -52.94070102147774, 0, 0, 0, 0, 0, 0, 'Jaynil Gaglani', 'Frontend @Salesforce', 'https://bit.ly/jaynil-profile', 'Mumbai, India', 'g.jaynil2401@gmail.com', 'true', 'Software Engineer @salesforce | Ex -@razorpay |\r\n\r\n \r\nJavaScript | TypeScript | React | Next JS', 'Jaynil_Gaglani', 64, 10, 175, 32, 0, 0, 0, '2019-03-25T15:43:43Z', '2024-10-26T04:14:37Z', 'https://avatars.githubusercontent.com/u/48921037?v=4', 'https://api.github.com/users/Jaynil1611', 'https://github.com/Jaynil1611', 'https://api.github.com/users/Jaynil1611/followers', 'https://api.github.com/users/Jaynil1611/following', 'https://api.github.com/users/Jaynil1611/gists', 'https://api.github.com/users/Jaynil1611/starred', 'https://api.github.com/users/Jaynil1611/repos', 'https://api.github.com/users/Jaynil1611/events', 'https://api.github.com/users/Jaynil1611/received_events', 0); -INSERT INTO `developer` VALUES (48948013, 'lakshay-dutt', 'B-', 63.92689347462981, 0, 0, 0, 0, 0, 0, 'Lakshay Dutt', NULL, '', 'Delhi, IN', NULL, 'true', NULL, NULL, 9, 1, 2, 2, 0, 0, 0, '2019-03-26T10:20:03Z', '2024-10-03T10:00:23Z', 'https://avatars.githubusercontent.com/u/48948013?v=4', 'https://api.github.com/users/lakshay-dutt', 'https://github.com/lakshay-dutt', 'https://api.github.com/users/lakshay-dutt/followers', 'https://api.github.com/users/lakshay-dutt/following', 'https://api.github.com/users/lakshay-dutt/gists', 'https://api.github.com/users/lakshay-dutt/starred', 'https://api.github.com/users/lakshay-dutt/repos', 'https://api.github.com/users/lakshay-dutt/events', 'https://api.github.com/users/lakshay-dutt/received_events', 0); -INSERT INTO `developer` VALUES (49230384, 'Amishakumari544', 'S', -51.299440383677286, 0, 0, 0, 0, 0, 0, 'Amisha Kumari', NULL, 'https://amishatech.vercel.app/', 'india', 'amishakumari544@gmail.com', 'true', 'Curious geek.Technical writer at @scaleracademy ✍️\r\nContributor @cncf multiple projects', NULL, 64, 0, 58, 21, 0, 0, 0, '2019-04-03T08:42:43Z', '2024-10-05T11:46:32Z', 'https://avatars.githubusercontent.com/u/49230384?v=4', 'https://api.github.com/users/Amishakumari544', 'https://github.com/Amishakumari544', 'https://api.github.com/users/Amishakumari544/followers', 'https://api.github.com/users/Amishakumari544/following', 'https://api.github.com/users/Amishakumari544/gists', 'https://api.github.com/users/Amishakumari544/starred', 'https://api.github.com/users/Amishakumari544/repos', 'https://api.github.com/users/Amishakumari544/events', 'https://api.github.com/users/Amishakumari544/received_events', 0); -INSERT INTO `developer` VALUES (49285004, 'AlexanderTyutin', 'A', 24.893365191333437, 0, 0, 0, 0, 0, 0, 'Alexander', 'TYUTIN.NET', '', NULL, NULL, 'true', 'Cybersecurity enthusiast', NULL, 21, 1, 7, 6, 0, 0, 0, '2019-04-04T16:30:35Z', '2024-01-31T11:26:59Z', 'https://avatars.githubusercontent.com/u/49285004?v=4', 'https://api.github.com/users/AlexanderTyutin', 'https://github.com/AlexanderTyutin', 'https://api.github.com/users/AlexanderTyutin/followers', 'https://api.github.com/users/AlexanderTyutin/following', 'https://api.github.com/users/AlexanderTyutin/gists', 'https://api.github.com/users/AlexanderTyutin/starred', 'https://api.github.com/users/AlexanderTyutin/repos', 'https://api.github.com/users/AlexanderTyutin/events', 'https://api.github.com/users/AlexanderTyutin/received_events', 0); -INSERT INTO `developer` VALUES (49308957, 'twsagarcia', 'C', 90.42659320344248, 0, 0, 0, 0, 0, 0, 'agarcia@theworkshop.com', NULL, '', NULL, NULL, NULL, NULL, NULL, 2, 0, 1, 1, 0, 0, 0, '2019-04-05T11:17:51Z', '2024-03-18T09:26:44Z', 'https://avatars.githubusercontent.com/u/49308957?v=4', 'https://api.github.com/users/twsagarcia', 'https://github.com/twsagarcia', 'https://api.github.com/users/twsagarcia/followers', 'https://api.github.com/users/twsagarcia/following', 'https://api.github.com/users/twsagarcia/gists', 'https://api.github.com/users/twsagarcia/starred', 'https://api.github.com/users/twsagarcia/repos', 'https://api.github.com/users/twsagarcia/events', 'https://api.github.com/users/twsagarcia/received_events', 0); -INSERT INTO `developer` VALUES (49511527, 'tuxmithun12', 'C', 100, 0, 0, 0, 0, 0, 0, 'Mithun Nair', NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-04-11T06:51:07Z', '2022-05-13T04:22:06Z', 'https://avatars.githubusercontent.com/u/49511527?v=4', 'https://api.github.com/users/tuxmithun12', 'https://github.com/tuxmithun12', 'https://api.github.com/users/tuxmithun12/followers', 'https://api.github.com/users/tuxmithun12/following', 'https://api.github.com/users/tuxmithun12/gists', 'https://api.github.com/users/tuxmithun12/starred', 'https://api.github.com/users/tuxmithun12/repos', 'https://api.github.com/users/tuxmithun12/events', 'https://api.github.com/users/tuxmithun12/received_events', 0); -INSERT INTO `developer` VALUES (50197097, 'flkhndlr', 'B', 59.02493269031608, 0, 0, 0, 0, 0, 0, 'Falk', '@telekom-mms', '', 'Dresden', NULL, NULL, NULL, NULL, 9, 0, 8, 14, 0, 0, 0, '2019-05-02T08:29:48Z', '2024-10-25T08:54:27Z', 'https://avatars.githubusercontent.com/u/50197097?v=4', 'https://api.github.com/users/flkhndlr', 'https://github.com/flkhndlr', 'https://api.github.com/users/flkhndlr/followers', 'https://api.github.com/users/flkhndlr/following', 'https://api.github.com/users/flkhndlr/gists', 'https://api.github.com/users/flkhndlr/starred', 'https://api.github.com/users/flkhndlr/repos', 'https://api.github.com/users/flkhndlr/events', 'https://api.github.com/users/flkhndlr/received_events', 0); -INSERT INTO `developer` VALUES (50290814, 'shivam1646', 'A+', 6.175863446641028, 0, 0, 0, 0, 0, 0, 'Shivam Kotak', 'CleverTap', '', 'Mumbai', 'shivamkotak16.sk@gmail.com', 'true', NULL, NULL, 32, 0, 1, 0, 0, 0, 0, '2019-05-05T09:51:38Z', '2024-04-12T06:22:14Z', 'https://avatars.githubusercontent.com/u/50290814?v=4', 'https://api.github.com/users/shivam1646', 'https://github.com/shivam1646', 'https://api.github.com/users/shivam1646/followers', 'https://api.github.com/users/shivam1646/following', 'https://api.github.com/users/shivam1646/gists', 'https://api.github.com/users/shivam1646/starred', 'https://api.github.com/users/shivam1646/repos', 'https://api.github.com/users/shivam1646/events', 'https://api.github.com/users/shivam1646/received_events', 0); -INSERT INTO `developer` VALUES (51051860, 'dudicoco', 'B+', 41.80094429304795, 0, 29, 12, 101, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 9, 0, 3, 0, 0, 0, 0, '2019-05-26T13:26:07Z', '2024-10-20T07:30:46Z', 'https://avatars.githubusercontent.com/u/51051860?v=4', 'https://api.github.com/users/dudicoco', 'https://github.com/dudicoco', 'https://api.github.com/users/dudicoco/followers', 'https://api.github.com/users/dudicoco/following', 'https://api.github.com/users/dudicoco/gists', 'https://api.github.com/users/dudicoco/starred', 'https://api.github.com/users/dudicoco/repos', 'https://api.github.com/users/dudicoco/events', 'https://api.github.com/users/dudicoco/received_events', 0); -INSERT INTO `developer` VALUES (51085015, 'harshsinghatz', 'S', -50.6689877537424, 0, 0, 0, 0, 0, 0, 'Harsh Singh', NULL, '', 'India', NULL, NULL, '- Software Developer', 'HarshSinghAtZ', 66, 0, 25, 178, 0, 0, 0, '2019-05-27T12:53:24Z', '2024-10-29T12:11:19Z', 'https://avatars.githubusercontent.com/u/51085015?v=4', 'https://api.github.com/users/harshsinghatz', 'https://github.com/harshsinghatz', 'https://api.github.com/users/harshsinghatz/followers', 'https://api.github.com/users/harshsinghatz/following', 'https://api.github.com/users/harshsinghatz/gists', 'https://api.github.com/users/harshsinghatz/starred', 'https://api.github.com/users/harshsinghatz/repos', 'https://api.github.com/users/harshsinghatz/events', 'https://api.github.com/users/harshsinghatz/received_events', 0); -INSERT INTO `developer` VALUES (51089488, 'vseryozhenko', 'C', 95.96940619427869, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, '2019-05-27T15:04:39Z', '2024-07-16T12:38:59Z', 'https://avatars.githubusercontent.com/u/51089488?v=4', 'https://api.github.com/users/vseryozhenko', 'https://github.com/vseryozhenko', 'https://api.github.com/users/vseryozhenko/followers', 'https://api.github.com/users/vseryozhenko/following', 'https://api.github.com/users/vseryozhenko/gists', 'https://api.github.com/users/vseryozhenko/starred', 'https://api.github.com/users/vseryozhenko/repos', 'https://api.github.com/users/vseryozhenko/events', 'https://api.github.com/users/vseryozhenko/received_events', 0); -INSERT INTO `developer` VALUES (51818964, 'a-hat', 'A-', 28.81656322601822, 0, 0, 0, 0, 0, 0, 'Andreas Kappler', NULL, '', NULL, NULL, NULL, NULL, NULL, 20, 0, 5, 0, 0, 0, 0, '2019-06-14T09:10:31Z', '2024-10-04T06:19:22Z', 'https://avatars.githubusercontent.com/u/51818964?v=4', 'https://api.github.com/users/a-hat', 'https://github.com/a-hat', 'https://api.github.com/users/a-hat/followers', 'https://api.github.com/users/a-hat/following', 'https://api.github.com/users/a-hat/gists', 'https://api.github.com/users/a-hat/starred', 'https://api.github.com/users/a-hat/repos', 'https://api.github.com/users/a-hat/events', 'https://api.github.com/users/a-hat/received_events', 0); -INSERT INTO `developer` VALUES (51924754, 'parryd', 'C', 88.70297020811952, 0, 0, 0, 0, 0, 0, 'Paridhi', NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 7, 8, 0, 0, 0, '2019-06-17T17:05:10Z', '2024-08-28T06:30:17Z', 'https://avatars.githubusercontent.com/u/51924754?v=4', 'https://api.github.com/users/parryd', 'https://github.com/parryd', 'https://api.github.com/users/parryd/followers', 'https://api.github.com/users/parryd/following', 'https://api.github.com/users/parryd/gists', 'https://api.github.com/users/parryd/starred', 'https://api.github.com/users/parryd/repos', 'https://api.github.com/users/parryd/events', 'https://api.github.com/users/parryd/received_events', 0); -INSERT INTO `developer` VALUES (51951473, 'gaurav1308', 'B-', 72.0428679752847, 0, 0, 0, 0, 0, 0, 'Gaurav singh', 'Razorpay', '', 'Bangalore', NULL, NULL, NULL, NULL, 7, 0, 1, 0, 0, 0, 0, '2019-06-18T09:37:09Z', '2023-09-25T07:13:25Z', 'https://avatars.githubusercontent.com/u/51951473?v=4', 'https://api.github.com/users/gaurav1308', 'https://github.com/gaurav1308', 'https://api.github.com/users/gaurav1308/followers', 'https://api.github.com/users/gaurav1308/following', 'https://api.github.com/users/gaurav1308/gists', 'https://api.github.com/users/gaurav1308/starred', 'https://api.github.com/users/gaurav1308/repos', 'https://api.github.com/users/gaurav1308/events', 'https://api.github.com/users/gaurav1308/received_events', 0); -INSERT INTO `developer` VALUES (52004626, 'Aka-shi', 'A-', 34.91456355559149, 0, 0, 0, 0, 0, 0, 'Tanmay Krishna', '@razorpay ', 'https://www.linkedin.com/in/tanmay-krishna-57894216b/', 'Bangalore, India', 'tanmaykrishna266@gmail.com', NULL, 'Software Engineer', NULL, 18, 0, 4, 1, 0, 0, 0, '2019-06-19T15:05:36Z', '2024-10-28T07:21:04Z', 'https://avatars.githubusercontent.com/u/52004626?v=4', 'https://api.github.com/users/Aka-shi', 'https://github.com/Aka-shi', 'https://api.github.com/users/Aka-shi/followers', 'https://api.github.com/users/Aka-shi/following', 'https://api.github.com/users/Aka-shi/gists', 'https://api.github.com/users/Aka-shi/starred', 'https://api.github.com/users/Aka-shi/repos', 'https://api.github.com/users/Aka-shi/events', 'https://api.github.com/users/Aka-shi/received_events', 0); -INSERT INTO `developer` VALUES (52169987, 'tahir59', 'B-', 68.61417418562566, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 8, 0, 1, 0, 0, 0, 0, '2019-06-24T15:28:55Z', '2022-10-31T06:15:38Z', 'https://avatars.githubusercontent.com/u/52169987?v=4', 'https://api.github.com/users/tahir59', 'https://github.com/tahir59', 'https://api.github.com/users/tahir59/followers', 'https://api.github.com/users/tahir59/following', 'https://api.github.com/users/tahir59/gists', 'https://api.github.com/users/tahir59/starred', 'https://api.github.com/users/tahir59/repos', 'https://api.github.com/users/tahir59/events', 'https://api.github.com/users/tahir59/received_events', 0); -INSERT INTO `developer` VALUES (52323235, 'thboop', 'S', -41.8499533367763, 0, 0, 0, 0, 0, 0, 'Thomas Boop', NULL, '', NULL, NULL, NULL, NULL, NULL, 54, 0, 101, 0, 0, 0, 0, '2019-06-28T13:36:43Z', '2024-06-12T14:29:55Z', 'https://avatars.githubusercontent.com/u/52323235?v=4', 'https://api.github.com/users/thboop', 'https://github.com/thboop', 'https://api.github.com/users/thboop/followers', 'https://api.github.com/users/thboop/following', 'https://api.github.com/users/thboop/gists', 'https://api.github.com/users/thboop/starred', 'https://api.github.com/users/thboop/repos', 'https://api.github.com/users/thboop/events', 'https://api.github.com/users/thboop/received_events', 1); -INSERT INTO `developer` VALUES (52580251, 'friendtocephalopods', 'B+', 48.90997568280602, 0, 0, 0, 0, 0, 0, 'hoskins', 'Square', '', NULL, NULL, NULL, 'A friend to cephalopods and other lifeforms', NULL, 12, 1, 9, 5, 0, 0, 0, '2019-07-05T17:49:13Z', '2024-07-18T17:34:26Z', 'https://avatars.githubusercontent.com/u/52580251?v=4', 'https://api.github.com/users/friendtocephalopods', 'https://github.com/friendtocephalopods', 'https://api.github.com/users/friendtocephalopods/followers', 'https://api.github.com/users/friendtocephalopods/following', 'https://api.github.com/users/friendtocephalopods/gists', 'https://api.github.com/users/friendtocephalopods/starred', 'https://api.github.com/users/friendtocephalopods/repos', 'https://api.github.com/users/friendtocephalopods/events', 'https://api.github.com/users/friendtocephalopods/received_events', 0); -INSERT INTO `developer` VALUES (53452532, 'macklin-10x', 'C+', 86.57801454927618, 0, 0, 0, 0, 0, 0, 'Chris Macklin', NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 0, 1, 0, 0, 0, 0, '2019-07-29T22:22:04Z', '2024-04-17T05:08:04Z', 'https://avatars.githubusercontent.com/u/53452532?v=4', 'https://api.github.com/users/macklin-10x', 'https://github.com/macklin-10x', 'https://api.github.com/users/macklin-10x/followers', 'https://api.github.com/users/macklin-10x/following', 'https://api.github.com/users/macklin-10x/gists', 'https://api.github.com/users/macklin-10x/starred', 'https://api.github.com/users/macklin-10x/repos', 'https://api.github.com/users/macklin-10x/events', 'https://api.github.com/users/macklin-10x/received_events', 0); -INSERT INTO `developer` VALUES (53913163, 'import-yuv', 'A', 24.636662847581714, 0, 0, 0, 0, 0, 0, 'Rakesh Sinha', '@razorpay ', '', 'India', NULL, NULL, '👨🏻‍💻', NULL, 22, 0, 4, 3, 0, 0, 0, '2019-08-08T17:05:05Z', '2024-07-22T08:33:12Z', 'https://avatars.githubusercontent.com/u/53913163?v=4', 'https://api.github.com/users/import-yuv', 'https://github.com/import-yuv', 'https://api.github.com/users/import-yuv/followers', 'https://api.github.com/users/import-yuv/following', 'https://api.github.com/users/import-yuv/gists', 'https://api.github.com/users/import-yuv/starred', 'https://api.github.com/users/import-yuv/repos', 'https://api.github.com/users/import-yuv/events', 'https://api.github.com/users/import-yuv/received_events', 0); -INSERT INTO `developer` VALUES (55234737, 'tfulcrand', 'C', 90.42659320344248, 0, 0, 0, 0, 0, 0, 'Timothé Fulcrand', NULL, '', NULL, NULL, NULL, NULL, NULL, 2, 0, 1, 0, 0, 0, 0, '2019-09-12T09:28:13Z', '2022-06-02T14:44:06Z', 'https://avatars.githubusercontent.com/u/55234737?v=4', 'https://api.github.com/users/tfulcrand', 'https://github.com/tfulcrand', 'https://api.github.com/users/tfulcrand/followers', 'https://api.github.com/users/tfulcrand/following', 'https://api.github.com/users/tfulcrand/gists', 'https://api.github.com/users/tfulcrand/starred', 'https://api.github.com/users/tfulcrand/repos', 'https://api.github.com/users/tfulcrand/events', 'https://api.github.com/users/tfulcrand/received_events', 0); -INSERT INTO `developer` VALUES (55280762, 'abhishek-jaiswal', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-09-13T11:28:21Z', '2019-09-13T11:28:22Z', 'https://avatars.githubusercontent.com/u/55280762?v=4', 'https://api.github.com/users/abhishek-jaiswal', 'https://github.com/abhishek-jaiswal', 'https://api.github.com/users/abhishek-jaiswal/followers', 'https://api.github.com/users/abhishek-jaiswal/following', 'https://api.github.com/users/abhishek-jaiswal/gists', 'https://api.github.com/users/abhishek-jaiswal/starred', 'https://api.github.com/users/abhishek-jaiswal/repos', 'https://api.github.com/users/abhishek-jaiswal/events', 'https://api.github.com/users/abhishek-jaiswal/received_events', 0); -INSERT INTO `developer` VALUES (55456592, 'TanguyChiffoleau', 'C', 89.08969480772055, 0, 0, 0, 0, 0, 0, 'Tanguy Chiffoleau', NULL, '', 'France', NULL, NULL, NULL, NULL, 2, 0, 2, 1, 0, 0, 0, '2019-09-17T17:06:12Z', '2024-10-05T11:50:20Z', 'https://avatars.githubusercontent.com/u/55456592?v=4', 'https://api.github.com/users/TanguyChiffoleau', 'https://github.com/TanguyChiffoleau', 'https://api.github.com/users/TanguyChiffoleau/followers', 'https://api.github.com/users/TanguyChiffoleau/following', 'https://api.github.com/users/TanguyChiffoleau/gists', 'https://api.github.com/users/TanguyChiffoleau/starred', 'https://api.github.com/users/TanguyChiffoleau/repos', 'https://api.github.com/users/TanguyChiffoleau/events', 'https://api.github.com/users/TanguyChiffoleau/received_events', 0); -INSERT INTO `developer` VALUES (55986325, 'Sanketmundada', 'S', 0.3817299661019957, 0, 0, 0, 0, 0, 0, 'Sanket Mundada', NULL, '', NULL, NULL, NULL, 'I\'m a Computer student who loves Web Development and Competitive Coding.', NULL, 29, 0, 32, 61, 0, 0, 0, '2019-09-30T13:05:30Z', '2024-10-02T06:57:28Z', 'https://avatars.githubusercontent.com/u/55986325?v=4', 'https://api.github.com/users/Sanketmundada', 'https://github.com/Sanketmundada', 'https://api.github.com/users/Sanketmundada/followers', 'https://api.github.com/users/Sanketmundada/following', 'https://api.github.com/users/Sanketmundada/gists', 'https://api.github.com/users/Sanketmundada/starred', 'https://api.github.com/users/Sanketmundada/repos', 'https://api.github.com/users/Sanketmundada/events', 'https://api.github.com/users/Sanketmundada/received_events', 0); -INSERT INTO `developer` VALUES (56015232, 'eric-therond-sonarsource', 'C+', 75.55170368327325, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 6, 0, 1, 0, 0, 0, 0, '2019-10-01T05:49:19Z', '2022-01-31T10:00:07Z', 'https://avatars.githubusercontent.com/u/56015232?v=4', 'https://api.github.com/users/eric-therond-sonarsource', 'https://github.com/eric-therond-sonarsource', 'https://api.github.com/users/eric-therond-sonarsource/followers', 'https://api.github.com/users/eric-therond-sonarsource/following', 'https://api.github.com/users/eric-therond-sonarsource/gists', 'https://api.github.com/users/eric-therond-sonarsource/starred', 'https://api.github.com/users/eric-therond-sonarsource/repos', 'https://api.github.com/users/eric-therond-sonarsource/events', 'https://api.github.com/users/eric-therond-sonarsource/received_events', 0); -INSERT INTO `developer` VALUES (56016386, 'ShankarParimi', 'B-', 70.70596957956276, 0, 0, 0, 0, 0, 0, 'Shankar Parimi', '@razorpay ', '', NULL, NULL, NULL, NULL, NULL, 7, 4, 2, 2, 0, 0, 0, '2019-10-01T06:29:17Z', '2024-09-04T06:27:50Z', 'https://avatars.githubusercontent.com/u/56016386?v=4', 'https://api.github.com/users/ShankarParimi', 'https://github.com/ShankarParimi', 'https://api.github.com/users/ShankarParimi/followers', 'https://api.github.com/users/ShankarParimi/following', 'https://api.github.com/users/ShankarParimi/gists', 'https://api.github.com/users/ShankarParimi/starred', 'https://api.github.com/users/ShankarParimi/repos', 'https://api.github.com/users/ShankarParimi/events', 'https://api.github.com/users/ShankarParimi/received_events', 0); -INSERT INTO `developer` VALUES (56041085, 'gogo02', 'C', 95.96940619427869, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, '2019-10-01T16:38:26Z', '2019-10-01T16:38:28Z', 'https://avatars.githubusercontent.com/u/56041085?v=4', 'https://api.github.com/users/gogo02', 'https://github.com/gogo02', 'https://api.github.com/users/gogo02/followers', 'https://api.github.com/users/gogo02/following', 'https://api.github.com/users/gogo02/gists', 'https://api.github.com/users/gogo02/starred', 'https://api.github.com/users/gogo02/repos', 'https://api.github.com/users/gogo02/events', 'https://api.github.com/users/gogo02/received_events', 0); -INSERT INTO `developer` VALUES (58219367, 'Homopatrol', 'A+', 3.9755136963132487, 0, 0, 0, 0, 0, 0, 'Panda', NULL, '', 'UK', NULL, 'true', '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. <----', NULL, 34, 0, 0, 9, 0, 0, 0, '2019-11-26T13:06:09Z', '2024-09-07T20:02:18Z', 'https://avatars.githubusercontent.com/u/58219367?v=4', 'https://api.github.com/users/Homopatrol', 'https://github.com/Homopatrol', 'https://api.github.com/users/Homopatrol/followers', 'https://api.github.com/users/Homopatrol/following', 'https://api.github.com/users/Homopatrol/gists', 'https://api.github.com/users/Homopatrol/starred', 'https://api.github.com/users/Homopatrol/repos', 'https://api.github.com/users/Homopatrol/events', 'https://api.github.com/users/Homopatrol/received_events', 0); -INSERT INTO `developer` VALUES (58720047, 'PriyaJ28', 'B', 53.19671061969575, 0, 0, 0, 0, 0, 0, 'Priyanshi Jaiswal', 'Indian Institute of Technology, Roorkee', 'https://www.linkedin.com/in/priyanshi-jaiswal-8043541a1/', 'Roorkee, Uttarakhand-247667', 'pjaiswal1@ma.iitr.ac.in', NULL, 'Data Science Enthusiast, exploring the intricacy of the programming paradigms aka ML/DL.', NULL, 12, 0, 3, 0, 0, 0, 0, '2019-12-10T05:38:21Z', '2022-07-17T15:06:37Z', 'https://avatars.githubusercontent.com/u/58720047?v=4', 'https://api.github.com/users/PriyaJ28', 'https://github.com/PriyaJ28', 'https://api.github.com/users/PriyaJ28/followers', 'https://api.github.com/users/PriyaJ28/following', 'https://api.github.com/users/PriyaJ28/gists', 'https://api.github.com/users/PriyaJ28/starred', 'https://api.github.com/users/PriyaJ28/repos', 'https://api.github.com/users/PriyaJ28/events', 'https://api.github.com/users/PriyaJ28/received_events', 0); -INSERT INTO `developer` VALUES (59192045, 'jis0324', 'C+', 81.73675363124997, 0, 0, 0, 0, 0, 0, 'jis0324', NULL, '', NULL, NULL, NULL, 'TRY EVERYTHING!', NULL, 2, 0, 14, 50, 0, 0, 0, '2019-12-24T06:23:11Z', '2024-07-15T17:02:40Z', 'https://avatars.githubusercontent.com/u/59192045?v=4', 'https://api.github.com/users/jis0324', 'https://github.com/jis0324', 'https://api.github.com/users/jis0324/followers', 'https://api.github.com/users/jis0324/following', 'https://api.github.com/users/jis0324/gists', 'https://api.github.com/users/jis0324/starred', 'https://api.github.com/users/jis0324/repos', 'https://api.github.com/users/jis0324/events', 'https://api.github.com/users/jis0324/received_events', 0); -INSERT INTO `developer` VALUES (60056554, 'Chaitanya-019', 'A', 18.0976584590847, 0, 0, 0, 0, 0, 0, 'chaitanya', 'Razorpay', '', 'Vizag', NULL, 'true', 'Presently a B.tech student in MME from IIT Madras and highly dedicated to coding and have coding experience in python, c,c++, Machine learning, Deep learning.', NULL, 27, 0, 0, 0, 0, 0, 0, '2020-01-19T05:56:11Z', '2024-10-14T16:16:14Z', 'https://avatars.githubusercontent.com/u/60056554?v=4', 'https://api.github.com/users/Chaitanya-019', 'https://github.com/Chaitanya-019', 'https://api.github.com/users/Chaitanya-019/followers', 'https://api.github.com/users/Chaitanya-019/following', 'https://api.github.com/users/Chaitanya-019/gists', 'https://api.github.com/users/Chaitanya-019/starred', 'https://api.github.com/users/Chaitanya-019/repos', 'https://api.github.com/users/Chaitanya-019/events', 'https://api.github.com/users/Chaitanya-019/received_events', 0); -INSERT INTO `developer` VALUES (63398163, 'Priyanshu-C', 'A', 16.687827792003507, 0, 0, 0, 0, 0, 0, 'Priyanshu Chauhan', '@razorpay ', 'iamstacklesss.com', 'Bangalore', NULL, NULL, NULL, 'iamstackless', 25, 0, 5, 14, 0, 0, 0, '2020-04-09T09:39:31Z', '2024-09-04T11:54:44Z', 'https://avatars.githubusercontent.com/u/63398163?v=4', 'https://api.github.com/users/Priyanshu-C', 'https://github.com/Priyanshu-C', 'https://api.github.com/users/Priyanshu-C/followers', 'https://api.github.com/users/Priyanshu-C/following', 'https://api.github.com/users/Priyanshu-C/gists', 'https://api.github.com/users/Priyanshu-C/starred', 'https://api.github.com/users/Priyanshu-C/repos', 'https://api.github.com/users/Priyanshu-C/events', 'https://api.github.com/users/Priyanshu-C/received_events', 0); -INSERT INTO `developer` VALUES (64553331, 'rzpcibot', 'C', 98.3957219251337, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2020-04-29T18:34:49Z', '2024-08-16T05:25:12Z', 'https://avatars.githubusercontent.com/u/64553331?v=4', 'https://api.github.com/users/rzpcibot', 'https://github.com/rzpcibot', 'https://api.github.com/users/rzpcibot/followers', 'https://api.github.com/users/rzpcibot/following', 'https://api.github.com/users/rzpcibot/gists', 'https://api.github.com/users/rzpcibot/starred', 'https://api.github.com/users/rzpcibot/repos', 'https://api.github.com/users/rzpcibot/events', 'https://api.github.com/users/rzpcibot/received_events', 0); -INSERT INTO `developer` VALUES (65395607, 'harshalkaigaonkar', 'S', -52.920500057048955, 0, 0, 0, 0, 0, 0, 'Harshal Kaigaonkar', '@zuddl', 'harshal.wtf', 'IDR', NULL, 'true', 'Krte kuch 🤔\r\n', 'Hkking31', 68, 0, 29, 87, 0, 0, 0, '2020-05-15T09:31:01Z', '2024-09-28T08:29:34Z', 'https://avatars.githubusercontent.com/u/65395607?v=4', 'https://api.github.com/users/harshalkaigaonkar', 'https://github.com/harshalkaigaonkar', 'https://api.github.com/users/harshalkaigaonkar/followers', 'https://api.github.com/users/harshalkaigaonkar/following', 'https://api.github.com/users/harshalkaigaonkar/gists', 'https://api.github.com/users/harshalkaigaonkar/starred', 'https://api.github.com/users/harshalkaigaonkar/repos', 'https://api.github.com/users/harshalkaigaonkar/events', 'https://api.github.com/users/harshalkaigaonkar/received_events', 0); -INSERT INTO `developer` VALUES (65696990, 'jonathanyang-grabtaxi', 'C', 100, 0, 0, 0, 0, 0, 0, 'Jonathan Yang', NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-05-21T03:38:21Z', '2020-05-21T03:44:55Z', 'https://avatars.githubusercontent.com/u/65696990?v=4', 'https://api.github.com/users/jonathanyang-grabtaxi', 'https://github.com/jonathanyang-grabtaxi', 'https://api.github.com/users/jonathanyang-grabtaxi/followers', 'https://api.github.com/users/jonathanyang-grabtaxi/following', 'https://api.github.com/users/jonathanyang-grabtaxi/gists', 'https://api.github.com/users/jonathanyang-grabtaxi/starred', 'https://api.github.com/users/jonathanyang-grabtaxi/repos', 'https://api.github.com/users/jonathanyang-grabtaxi/events', 'https://api.github.com/users/jonathanyang-grabtaxi/received_events', 0); -INSERT INTO `developer` VALUES (67396122, 'sc-tibco', 'C', 95.96940619427869, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, '2020-06-24T22:33:37Z', '2020-09-02T20:55:02Z', 'https://avatars.githubusercontent.com/u/67396122?v=4', 'https://api.github.com/users/sc-tibco', 'https://github.com/sc-tibco', 'https://api.github.com/users/sc-tibco/followers', 'https://api.github.com/users/sc-tibco/following', 'https://api.github.com/users/sc-tibco/gists', 'https://api.github.com/users/sc-tibco/starred', 'https://api.github.com/users/sc-tibco/repos', 'https://api.github.com/users/sc-tibco/events', 'https://api.github.com/users/sc-tibco/received_events', 0); -INSERT INTO `developer` VALUES (68654745, 'ansidorov', 'B-', 74.86447967182458, 0, 0, 0, 0, 0, 0, 'Andrey Sidorov', NULL, '', NULL, NULL, NULL, 'DevOps', NULL, 5, 0, 5, 1, 0, 0, 0, '2020-07-22T15:30:14Z', '2023-06-30T08:28:07Z', 'https://avatars.githubusercontent.com/u/68654745?v=4', 'https://api.github.com/users/ansidorov', 'https://github.com/ansidorov', 'https://api.github.com/users/ansidorov/followers', 'https://api.github.com/users/ansidorov/following', 'https://api.github.com/users/ansidorov/gists', 'https://api.github.com/users/ansidorov/starred', 'https://api.github.com/users/ansidorov/repos', 'https://api.github.com/users/ansidorov/events', 'https://api.github.com/users/ansidorov/received_events', 0); -INSERT INTO `developer` VALUES (69264599, 'raxod502-plaid', 'A-', 29.678679654304407, 0, 0, 0, 0, 0, 0, 'Radon Rosborough', '@plaid', 'https://github.com/raxod502', 'San Francisco, CA', NULL, NULL, 'This GitHub account is for my work at Plaid. Please see below link to the account I use for open-source work.', NULL, 22, 0, 0, 0, 0, 0, 0, '2020-08-05T18:50:52Z', '2024-09-04T22:29:05Z', 'https://avatars.githubusercontent.com/u/69264599?v=4', 'https://api.github.com/users/raxod502-plaid', 'https://github.com/raxod502-plaid', 'https://api.github.com/users/raxod502-plaid/followers', 'https://api.github.com/users/raxod502-plaid/following', 'https://api.github.com/users/raxod502-plaid/gists', 'https://api.github.com/users/raxod502-plaid/starred', 'https://api.github.com/users/raxod502-plaid/repos', 'https://api.github.com/users/raxod502-plaid/events', 'https://api.github.com/users/raxod502-plaid/received_events', 0); -INSERT INTO `developer` VALUES (69266720, 'almed4', 'C', 88.18229262414249, 0, 0, 0, 0, 0, 0, 'Alex Meddin', NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 0, 0, 1, 0, 0, 0, '2020-08-05T19:14:46Z', '2021-12-16T20:24:08Z', 'https://avatars.githubusercontent.com/u/69266720?v=4', 'https://api.github.com/users/almed4', 'https://github.com/almed4', 'https://api.github.com/users/almed4/followers', 'https://api.github.com/users/almed4/following', 'https://api.github.com/users/almed4/gists', 'https://api.github.com/users/almed4/starred', 'https://api.github.com/users/almed4/repos', 'https://api.github.com/users/almed4/events', 'https://api.github.com/users/almed4/received_events', 0); -INSERT INTO `developer` VALUES (69401277, 'telnet-harsha', 'C', 95.96940619427869, 0, 0, 0, 0, 0, 0, 'SRIHARSHA ROUTHU', NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, '2020-08-08T19:29:55Z', '2024-10-27T11:06:30Z', 'https://avatars.githubusercontent.com/u/69401277?v=4', 'https://api.github.com/users/telnet-harsha', 'https://github.com/telnet-harsha', 'https://api.github.com/users/telnet-harsha/followers', 'https://api.github.com/users/telnet-harsha/following', 'https://api.github.com/users/telnet-harsha/gists', 'https://api.github.com/users/telnet-harsha/starred', 'https://api.github.com/users/telnet-harsha/repos', 'https://api.github.com/users/telnet-harsha/events', 'https://api.github.com/users/telnet-harsha/received_events', 0); -INSERT INTO `developer` VALUES (69458381, 'pablosnt', 'B-', 71.50007362100703, 0, 0, 8, 16, 3, 0, 'Pablo Santiago', NULL, '', NULL, NULL, NULL, 'Application Security Engineer', 'rekonosec', 2, 0, 47, 3, 0, 0, 0, '2020-08-10T09:40:34Z', '2024-10-04T18:14:33Z', 'https://avatars.githubusercontent.com/u/69458381?v=4', 'https://api.github.com/users/pablosnt', 'https://github.com/pablosnt', 'https://api.github.com/users/pablosnt/followers', 'https://api.github.com/users/pablosnt/following', 'https://api.github.com/users/pablosnt/gists', 'https://api.github.com/users/pablosnt/starred', 'https://api.github.com/users/pablosnt/repos', 'https://api.github.com/users/pablosnt/events', 'https://api.github.com/users/pablosnt/received_events', 0); -INSERT INTO `developer` VALUES (71253024, 'n0t4u', 'B+', 41.04652539970217, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 15, 0, 7, 8, 0, 0, 0, '2020-09-14T07:30:22Z', '2024-10-23T07:53:08Z', 'https://avatars.githubusercontent.com/u/71253024?v=4', 'https://api.github.com/users/n0t4u', 'https://github.com/n0t4u', 'https://api.github.com/users/n0t4u/followers', 'https://api.github.com/users/n0t4u/following', 'https://api.github.com/users/n0t4u/gists', 'https://api.github.com/users/n0t4u/starred', 'https://api.github.com/users/n0t4u/repos', 'https://api.github.com/users/n0t4u/events', 'https://api.github.com/users/n0t4u/received_events', 0); -INSERT INTO `developer` VALUES (75153839, 'PranjalMaithani', 'A-', 30.67973309760992, 0, 0, 0, 0, 0, 0, NULL, '@getBild', '', NULL, NULL, NULL, NULL, NULL, 19, 0, 6, 34, 0, 0, 0, '2020-11-28T04:45:22Z', '2024-10-15T07:56:20Z', 'https://avatars.githubusercontent.com/u/75153839?v=4', 'https://api.github.com/users/PranjalMaithani', 'https://github.com/PranjalMaithani', 'https://api.github.com/users/PranjalMaithani/followers', 'https://api.github.com/users/PranjalMaithani/following', 'https://api.github.com/users/PranjalMaithani/gists', 'https://api.github.com/users/PranjalMaithani/starred', 'https://api.github.com/users/PranjalMaithani/repos', 'https://api.github.com/users/PranjalMaithani/events', 'https://api.github.com/users/PranjalMaithani/received_events', 0); -INSERT INTO `developer` VALUES (76145248, 'suchith-r', 'C', 92.0308712783088, 0, 0, 0, 0, 0, 0, 'Suchith', NULL, '', NULL, NULL, NULL, NULL, NULL, 2, 0, 0, 0, 0, 0, 0, '2020-12-17T05:11:11Z', '2024-03-19T09:14:57Z', 'https://avatars.githubusercontent.com/u/76145248?v=4', 'https://api.github.com/users/suchith-r', 'https://github.com/suchith-r', 'https://api.github.com/users/suchith-r/followers', 'https://api.github.com/users/suchith-r/following', 'https://api.github.com/users/suchith-r/gists', 'https://api.github.com/users/suchith-r/starred', 'https://api.github.com/users/suchith-r/repos', 'https://api.github.com/users/suchith-r/events', 'https://api.github.com/users/suchith-r/received_events', 0); -INSERT INTO `developer` VALUES (80741657, 'AditiTiwariRazorpay', 'C', 95.96940619427869, 0, 0, 0, 0, 0, 0, 'Aditi Tiwari', NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, '2021-03-16T06:25:35Z', '2022-06-29T09:45:11Z', 'https://avatars.githubusercontent.com/u/80741657?v=4', 'https://api.github.com/users/AditiTiwariRazorpay', 'https://github.com/AditiTiwariRazorpay', 'https://api.github.com/users/AditiTiwariRazorpay/followers', 'https://api.github.com/users/AditiTiwariRazorpay/following', 'https://api.github.com/users/AditiTiwariRazorpay/gists', 'https://api.github.com/users/AditiTiwariRazorpay/starred', 'https://api.github.com/users/AditiTiwariRazorpay/repos', 'https://api.github.com/users/AditiTiwariRazorpay/events', 'https://api.github.com/users/AditiTiwariRazorpay/received_events', 0); -INSERT INTO `developer` VALUES (80888956, 'devsecopsale', 'C+', 86.57801454927618, 0, 0, 0, 0, 0, 0, 'Alejandro Mendiondo', NULL, '', NULL, NULL, NULL, NULL, NULL, 3, 0, 1, 0, 0, 0, 0, '2021-03-18T09:54:42Z', '2024-08-08T12:47:20Z', 'https://avatars.githubusercontent.com/u/80888956?v=4', 'https://api.github.com/users/devsecopsale', 'https://github.com/devsecopsale', 'https://api.github.com/users/devsecopsale/followers', 'https://api.github.com/users/devsecopsale/following', 'https://api.github.com/users/devsecopsale/gists', 'https://api.github.com/users/devsecopsale/starred', 'https://api.github.com/users/devsecopsale/repos', 'https://api.github.com/users/devsecopsale/events', 'https://api.github.com/users/devsecopsale/received_events', 0); -INSERT INTO `developer` VALUES (81617047, 'kokhanevych-macpaw', 'C', 95.96940619427869, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, '2021-03-30T08:33:46Z', '2024-05-10T09:47:46Z', 'https://avatars.githubusercontent.com/u/81617047?v=4', 'https://api.github.com/users/kokhanevych-macpaw', 'https://github.com/kokhanevych-macpaw', 'https://api.github.com/users/kokhanevych-macpaw/followers', 'https://api.github.com/users/kokhanevych-macpaw/following', 'https://api.github.com/users/kokhanevych-macpaw/gists', 'https://api.github.com/users/kokhanevych-macpaw/starred', 'https://api.github.com/users/kokhanevych-macpaw/repos', 'https://api.github.com/users/kokhanevych-macpaw/events', 'https://api.github.com/users/kokhanevych-macpaw/received_events', 0); -INSERT INTO `developer` VALUES (83279947, 'rk9595', 'A-', 26.277448236316147, 0, 0, 0, 0, 0, 0, 'Rakesh Kariya', NULL, 'https://rakeshkariya.vercel.app/', 'India', NULL, NULL, 'Software Developer, ex. Product Manager.\r\n\r\n\r\n \r\n', NULL, 21, 0, 5, 21, 0, 0, 0, '2021-04-27T10:03:46Z', '2024-11-02T05:40:00Z', 'https://avatars.githubusercontent.com/u/83279947?v=4', 'https://api.github.com/users/rk9595', 'https://github.com/rk9595', 'https://api.github.com/users/rk9595/followers', 'https://api.github.com/users/rk9595/following', 'https://api.github.com/users/rk9595/gists', 'https://api.github.com/users/rk9595/starred', 'https://api.github.com/users/rk9595/repos', 'https://api.github.com/users/rk9595/events', 'https://api.github.com/users/rk9595/received_events', 0); -INSERT INTO `developer` VALUES (84492897, 'root-lib', 'C+', 77.15598175813956, 0, 0, 0, 0, 0, 0, 'Libin Babu', 'RazorPay', '', 'Bangalore', NULL, NULL, '\r\nSenior Security Engineer\r\n', NULL, 6, 0, 0, 0, 0, 0, 0, '2021-05-20T05:36:56Z', '2022-02-16T04:35:45Z', 'https://avatars.githubusercontent.com/u/84492897?v=4', 'https://api.github.com/users/root-lib', 'https://github.com/root-lib', 'https://api.github.com/users/root-lib/followers', 'https://api.github.com/users/root-lib/following', 'https://api.github.com/users/root-lib/gists', 'https://api.github.com/users/root-lib/starred', 'https://api.github.com/users/root-lib/repos', 'https://api.github.com/users/root-lib/events', 'https://api.github.com/users/root-lib/received_events', 0); -INSERT INTO `developer` VALUES (84763889, 'sofiya02', 'C', 94.36512811941238, 0, 0, 0, 0, 0, 0, 'Sofiya', NULL, '', NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 0, 0, 0, '2021-05-25T06:02:52Z', '2023-10-09T11:33:15Z', 'https://avatars.githubusercontent.com/u/84763889?v=4', 'https://api.github.com/users/sofiya02', 'https://github.com/sofiya02', 'https://api.github.com/users/sofiya02/followers', 'https://api.github.com/users/sofiya02/following', 'https://api.github.com/users/sofiya02/gists', 'https://api.github.com/users/sofiya02/starred', 'https://api.github.com/users/sofiya02/repos', 'https://api.github.com/users/sofiya02/events', 'https://api.github.com/users/sofiya02/received_events', 0); -INSERT INTO `developer` VALUES (85965351, 'pritipsingh', 'S', -46.06958177122158, 0, 0, 0, 0, 0, 0, 'Priti', NULL, 'https://linktr.ee/pritisinghhhh', 'India', 'mail2pritipriya@gmail.com', NULL, 'Software Engineer', 'pritisinghhhh', 57, 0, 221, 19, 0, 0, 0, '2021-06-15T20:13:05Z', '2024-10-22T11:19:12Z', 'https://avatars.githubusercontent.com/u/85965351?v=4', 'https://api.github.com/users/pritipsingh', 'https://github.com/pritipsingh', 'https://api.github.com/users/pritipsingh/followers', 'https://api.github.com/users/pritipsingh/following', 'https://api.github.com/users/pritipsingh/gists', 'https://api.github.com/users/pritipsingh/starred', 'https://api.github.com/users/pritipsingh/repos', 'https://api.github.com/users/pritipsingh/events', 'https://api.github.com/users/pritipsingh/received_events', 0); -INSERT INTO `developer` VALUES (86047367, 'Sumitmaithani', 'S', -64.01681111449733, 0, 0, 0, 0, 0, 0, 'Sumit Maithani', 'Hemvati Nandan Bahuguna Garhwal University', 'https://sumitmaithani.onrender.com/', 'India', NULL, NULL, 'prev Software Engineer Intern @interviewstreet | @Daffodil-Health | C4GT\'23 @KarmayogiBharat ', 'shakesofpeer', 98, 0, 5, 7, 0, 0, 0, '2021-06-17T08:33:23Z', '2024-10-29T07:01:59Z', 'https://avatars.githubusercontent.com/u/86047367?v=4', 'https://api.github.com/users/Sumitmaithani', 'https://github.com/Sumitmaithani', 'https://api.github.com/users/Sumitmaithani/followers', 'https://api.github.com/users/Sumitmaithani/following', 'https://api.github.com/users/Sumitmaithani/gists', 'https://api.github.com/users/Sumitmaithani/starred', 'https://api.github.com/users/Sumitmaithani/repos', 'https://api.github.com/users/Sumitmaithani/events', 'https://api.github.com/users/Sumitmaithani/received_events', 0); -INSERT INTO `developer` VALUES (86551248, 'harshcut', 'C+', 86.9969040247678, 0, 0, 0, 0, 0, 0, 'Harsh Karande', NULL, 'harshcut.vercel.app', NULL, NULL, NULL, NULL, NULL, 0, 0, 28, 3, 0, 0, 0, '2021-06-27T08:48:53Z', '2024-10-27T12:11:52Z', 'https://avatars.githubusercontent.com/u/86551248?v=4', 'https://api.github.com/users/harshcut', 'https://github.com/harshcut', 'https://api.github.com/users/harshcut/followers', 'https://api.github.com/users/harshcut/following', 'https://api.github.com/users/harshcut/gists', 'https://api.github.com/users/harshcut/starred', 'https://api.github.com/users/harshcut/repos', 'https://api.github.com/users/harshcut/events', 'https://api.github.com/users/harshcut/received_events', 0); -INSERT INTO `developer` VALUES (86592481, 'rahul-rzp', 'B', 60.395126044153045, 0, 0, 0, 0, 0, 0, 'Rahul Makhija', NULL, '', NULL, NULL, NULL, 'Lead Frontend @ Razorpay\r\nPersonal Github: rahuls360', 'rahuls360', 11, 0, 0, 0, 0, 0, 0, '2021-06-28T07:23:18Z', '2024-10-04T05:09:46Z', 'https://avatars.githubusercontent.com/u/86592481?v=4', 'https://api.github.com/users/rahul-rzp', 'https://github.com/rahul-rzp', 'https://api.github.com/users/rahul-rzp/followers', 'https://api.github.com/users/rahul-rzp/following', 'https://api.github.com/users/rahul-rzp/gists', 'https://api.github.com/users/rahul-rzp/starred', 'https://api.github.com/users/rahul-rzp/repos', 'https://api.github.com/users/rahul-rzp/events', 'https://api.github.com/users/rahul-rzp/received_events', 0); -INSERT INTO `developer` VALUES (88023922, 'kabilansakthivelu', 'A', 20.812750780281362, 0, 0, 0, 0, 0, 0, 'Kabilan Sakthivelu', NULL, '', NULL, NULL, NULL, NULL, NULL, 24, 0, 3, 3, 0, 0, 0, '2021-07-27T07:03:42Z', '2024-10-18T16:55:19Z', 'https://avatars.githubusercontent.com/u/88023922?v=4', 'https://api.github.com/users/kabilansakthivelu', 'https://github.com/kabilansakthivelu', 'https://api.github.com/users/kabilansakthivelu/followers', 'https://api.github.com/users/kabilansakthivelu/following', 'https://api.github.com/users/kabilansakthivelu/gists', 'https://api.github.com/users/kabilansakthivelu/starred', 'https://api.github.com/users/kabilansakthivelu/repos', 'https://api.github.com/users/kabilansakthivelu/events', 'https://api.github.com/users/kabilansakthivelu/received_events', 0); -INSERT INTO `developer` VALUES (88091269, 'santoshrohannarava', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2021-07-28T12:00:56Z', '2024-09-23T12:33:10Z', 'https://avatars.githubusercontent.com/u/88091269?v=4', 'https://api.github.com/users/santoshrohannarava', 'https://github.com/santoshrohannarava', 'https://api.github.com/users/santoshrohannarava/followers', 'https://api.github.com/users/santoshrohannarava/following', 'https://api.github.com/users/santoshrohannarava/gists', 'https://api.github.com/users/santoshrohannarava/starred', 'https://api.github.com/users/santoshrohannarava/repos', 'https://api.github.com/users/santoshrohannarava/events', 'https://api.github.com/users/santoshrohannarava/received_events', 0); -INSERT INTO `developer` VALUES (88297302, 'ed-wp', 'C+', 84.42161562792062, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 4, 0, 0, 0, 0, 0, 0, '2021-08-02T01:28:13Z', '2023-08-07T04:24:27Z', 'https://avatars.githubusercontent.com/u/88297302?v=4', 'https://api.github.com/users/ed-wp', 'https://github.com/ed-wp', 'https://api.github.com/users/ed-wp/followers', 'https://api.github.com/users/ed-wp/following', 'https://api.github.com/users/ed-wp/gists', 'https://api.github.com/users/ed-wp/starred', 'https://api.github.com/users/ed-wp/repos', 'https://api.github.com/users/ed-wp/events', 'https://api.github.com/users/ed-wp/received_events', 0); -INSERT INTO `developer` VALUES (89454448, 'ankitdas13', 'A', 19.384562007245588, 0, 0, 0, 0, 0, 0, 'Ankit Das', 'Razorpay', '', 'Bhopal', NULL, NULL, NULL, NULL, 22, 0, 14, 1, 0, 0, 0, '2021-08-24T10:06:16Z', '2024-07-01T13:55:47Z', 'https://avatars.githubusercontent.com/u/89454448?v=4', 'https://api.github.com/users/ankitdas13', 'https://github.com/ankitdas13', 'https://api.github.com/users/ankitdas13/followers', 'https://api.github.com/users/ankitdas13/following', 'https://api.github.com/users/ankitdas13/gists', 'https://api.github.com/users/ankitdas13/starred', 'https://api.github.com/users/ankitdas13/repos', 'https://api.github.com/users/ankitdas13/events', 'https://api.github.com/users/ankitdas13/received_events', 0); -INSERT INTO `developer` VALUES (90435670, 'devEricA', 'B+', 48.31296138586133, 0, 0, 0, 0, 0, 0, 'Eric Anderson', NULL, '', NULL, NULL, NULL, 'New account after making a critical mistake with my 2FA. Old account can be viewed at https://github.com/devEricA-zz', NULL, 15, 0, 0, 0, 0, 0, 0, '2021-09-10T03:32:35Z', '2024-09-28T00:29:11Z', 'https://avatars.githubusercontent.com/u/90435670?v=4', 'https://api.github.com/users/devEricA', 'https://github.com/devEricA', 'https://api.github.com/users/devEricA/followers', 'https://api.github.com/users/devEricA/following', 'https://api.github.com/users/devEricA/gists', 'https://api.github.com/users/devEricA/starred', 'https://api.github.com/users/devEricA/repos', 'https://api.github.com/users/devEricA/events', 'https://api.github.com/users/devEricA/received_events', 0); -INSERT INTO `developer` VALUES (96723258, 'technopahadi', 'C', 88.18229262414249, 0, 0, 0, 0, 0, 0, 'Rishabh', NULL, '', 'India', NULL, NULL, 'I write softwares', NULL, 3, 0, 0, 1, 0, 0, 0, '2021-12-27T09:59:46Z', '2024-10-16T04:10:06Z', 'https://avatars.githubusercontent.com/u/96723258?v=4', 'https://api.github.com/users/technopahadi', 'https://github.com/technopahadi', 'https://api.github.com/users/technopahadi/followers', 'https://api.github.com/users/technopahadi/following', 'https://api.github.com/users/technopahadi/gists', 'https://api.github.com/users/technopahadi/starred', 'https://api.github.com/users/technopahadi/repos', 'https://api.github.com/users/technopahadi/events', 'https://api.github.com/users/technopahadi/received_events', 0); -INSERT INTO `developer` VALUES (97019020, 'vimalkumar0233', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-01-03T08:11:50Z', '2024-01-23T11:15:35Z', 'https://avatars.githubusercontent.com/u/97019020?v=4', 'https://api.github.com/users/vimalkumar0233', 'https://github.com/vimalkumar0233', 'https://api.github.com/users/vimalkumar0233/followers', 'https://api.github.com/users/vimalkumar0233/following', 'https://api.github.com/users/vimalkumar0233/gists', 'https://api.github.com/users/vimalkumar0233/starred', 'https://api.github.com/users/vimalkumar0233/repos', 'https://api.github.com/users/vimalkumar0233/events', 'https://api.github.com/users/vimalkumar0233/received_events', 0); -INSERT INTO `developer` VALUES (98820380, 'fhoeborn', 'B-', 72.0428679752847, 0, 0, 0, 0, 0, 0, 'Felix Hoeborn', 'BioNTech SE', '', 'Germany', NULL, NULL, NULL, 'FHoeborn', 7, 0, 1, 0, 0, 0, 0, '2022-02-01T12:50:27Z', '2024-08-14T20:57:01Z', 'https://avatars.githubusercontent.com/u/98820380?v=4', 'https://api.github.com/users/fhoeborn', 'https://github.com/fhoeborn', 'https://api.github.com/users/fhoeborn/followers', 'https://api.github.com/users/fhoeborn/following', 'https://api.github.com/users/fhoeborn/gists', 'https://api.github.com/users/fhoeborn/starred', 'https://api.github.com/users/fhoeborn/repos', 'https://api.github.com/users/fhoeborn/events', 'https://api.github.com/users/fhoeborn/received_events', 0); -INSERT INTO `developer` VALUES (100116271, 'moveecar', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-02-21T06:51:23Z', '2024-03-19T13:27:51Z', 'https://avatars.githubusercontent.com/u/100116271?v=4', 'https://api.github.com/users/moveecar', 'https://github.com/moveecar', 'https://api.github.com/users/moveecar/followers', 'https://api.github.com/users/moveecar/following', 'https://api.github.com/users/moveecar/gists', 'https://api.github.com/users/moveecar/starred', 'https://api.github.com/users/moveecar/repos', 'https://api.github.com/users/moveecar/events', 'https://api.github.com/users/moveecar/received_events', 0); -INSERT INTO `developer` VALUES (100941492, 'Harnoor-se7en', 'C+', 80.74683261300105, 0, 0, 0, 0, 0, 0, 'Noob', NULL, 'https://github.com/Harnoor7', NULL, NULL, NULL, 'Moved to: https://github.com/Harnoor7', NULL, 5, 0, 0, 1, 0, 0, 0, '2022-03-04T12:23:02Z', '2024-10-29T12:10:16Z', 'https://avatars.githubusercontent.com/u/100941492?v=4', 'https://api.github.com/users/Harnoor-se7en', 'https://github.com/Harnoor-se7en', 'https://api.github.com/users/Harnoor-se7en/followers', 'https://api.github.com/users/Harnoor-se7en/following', 'https://api.github.com/users/Harnoor-se7en/gists', 'https://api.github.com/users/Harnoor-se7en/starred', 'https://api.github.com/users/Harnoor-se7en/repos', 'https://api.github.com/users/Harnoor-se7en/events', 'https://api.github.com/users/Harnoor-se7en/received_events', 0); -INSERT INTO `developer` VALUES (103994803, 'himanshu-garg-razorpay', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-04-19T08:55:40Z', '2023-05-05T14:16:25Z', 'https://avatars.githubusercontent.com/u/103994803?v=4', 'https://api.github.com/users/himanshu-garg-razorpay', 'https://github.com/himanshu-garg-razorpay', 'https://api.github.com/users/himanshu-garg-razorpay/followers', 'https://api.github.com/users/himanshu-garg-razorpay/following', 'https://api.github.com/users/himanshu-garg-razorpay/gists', 'https://api.github.com/users/himanshu-garg-razorpay/starred', 'https://api.github.com/users/himanshu-garg-razorpay/repos', 'https://api.github.com/users/himanshu-garg-razorpay/events', 'https://api.github.com/users/himanshu-garg-razorpay/received_events', 0); -INSERT INTO `developer` VALUES (105697320, 'garimaprachi', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 3, 0, 0, 0, '2022-05-17T05:20:07Z', '2023-05-14T08:45:42Z', 'https://avatars.githubusercontent.com/u/105697320?v=4', 'https://api.github.com/users/garimaprachi', 'https://github.com/garimaprachi', 'https://api.github.com/users/garimaprachi/followers', 'https://api.github.com/users/garimaprachi/following', 'https://api.github.com/users/garimaprachi/gists', 'https://api.github.com/users/garimaprachi/starred', 'https://api.github.com/users/garimaprachi/repos', 'https://api.github.com/users/garimaprachi/events', 'https://api.github.com/users/garimaprachi/received_events', 0); -INSERT INTO `developer` VALUES (105702910, 'AnmolSidhu16', 'C', 100, 0, 0, 0, 0, 0, 0, 'Anmol', NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2022-05-17T07:00:30Z', '2024-08-02T09:41:49Z', 'https://avatars.githubusercontent.com/u/105702910?v=4', 'https://api.github.com/users/AnmolSidhu16', 'https://github.com/AnmolSidhu16', 'https://api.github.com/users/AnmolSidhu16/followers', 'https://api.github.com/users/AnmolSidhu16/following', 'https://api.github.com/users/AnmolSidhu16/gists', 'https://api.github.com/users/AnmolSidhu16/starred', 'https://api.github.com/users/AnmolSidhu16/repos', 'https://api.github.com/users/AnmolSidhu16/events', 'https://api.github.com/users/AnmolSidhu16/received_events', 0); -INSERT INTO `developer` VALUES (106141896, 'sraghu1c', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 2, 0, 0, 0, '2022-05-24T07:12:31Z', '2024-10-03T07:46:51Z', 'https://avatars.githubusercontent.com/u/106141896?v=4', 'https://api.github.com/users/sraghu1c', 'https://github.com/sraghu1c', 'https://api.github.com/users/sraghu1c/followers', 'https://api.github.com/users/sraghu1c/following', 'https://api.github.com/users/sraghu1c/gists', 'https://api.github.com/users/sraghu1c/starred', 'https://api.github.com/users/sraghu1c/repos', 'https://api.github.com/users/sraghu1c/events', 'https://api.github.com/users/sraghu1c/received_events', 0); -INSERT INTO `developer` VALUES (107583107, 'joguas-MSFT', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-06-15T19:55:21Z', '2024-04-05T14:43:17Z', 'https://avatars.githubusercontent.com/u/107583107?v=4', 'https://api.github.com/users/joguas-MSFT', 'https://github.com/joguas-MSFT', 'https://api.github.com/users/joguas-MSFT/followers', 'https://api.github.com/users/joguas-MSFT/following', 'https://api.github.com/users/joguas-MSFT/gists', 'https://api.github.com/users/joguas-MSFT/starred', 'https://api.github.com/users/joguas-MSFT/repos', 'https://api.github.com/users/joguas-MSFT/events', 'https://api.github.com/users/joguas-MSFT/received_events', 0); -INSERT INTO `developer` VALUES (133931559, 'CharithaCS', 'A', 16.49338038421838, 0, 0, 0, 0, 0, 0, 'Charitha C S', NULL, '', 'Bengaluru', NULL, NULL, 'Sophomore', NULL, 27, 0, 1, 10, 0, 0, 0, '2023-05-18T01:27:29Z', '2024-10-18T13:11:32Z', 'https://avatars.githubusercontent.com/u/133931559?v=4', 'https://api.github.com/users/CharithaCS', 'https://github.com/CharithaCS', 'https://api.github.com/users/CharithaCS/followers', 'https://api.github.com/users/CharithaCS/following', 'https://api.github.com/users/CharithaCS/gists', 'https://api.github.com/users/CharithaCS/starred', 'https://api.github.com/users/CharithaCS/repos', 'https://api.github.com/users/CharithaCS/events', 'https://api.github.com/users/CharithaCS/received_events', 0); -INSERT INTO `developer` VALUES (159462365, 'nwse-fwn', 'C', 100, 0, 0, 0, 0, 0, 0, 'Felix Wiedemann', 'New Work SE', '', 'Hamburg', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2024-02-08T15:38:51Z', '2024-06-06T08:57:54Z', 'https://avatars.githubusercontent.com/u/159462365?v=4', 'https://api.github.com/users/nwse-fwn', 'https://github.com/nwse-fwn', 'https://api.github.com/users/nwse-fwn/followers', 'https://api.github.com/users/nwse-fwn/following', 'https://api.github.com/users/nwse-fwn/gists', 'https://api.github.com/users/nwse-fwn/starred', 'https://api.github.com/users/nwse-fwn/repos', 'https://api.github.com/users/nwse-fwn/events', 'https://api.github.com/users/nwse-fwn/received_events', 0); -INSERT INTO `developer` VALUES (159902581, 'razortanmayshah', 'C', 100, 0, 0, 0, 0, 0, 0, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2024-02-13T10:45:19Z', '2024-09-23T05:27:58Z', 'https://avatars.githubusercontent.com/u/159902581?v=4', 'https://api.github.com/users/razortanmayshah', 'https://github.com/razortanmayshah', 'https://api.github.com/users/razortanmayshah/followers', 'https://api.github.com/users/razortanmayshah/following', 'https://api.github.com/users/razortanmayshah/gists', 'https://api.github.com/users/razortanmayshah/starred', 'https://api.github.com/users/razortanmayshah/repos', 'https://api.github.com/users/razortanmayshah/events', 'https://api.github.com/users/razortanmayshah/received_events', 0); -INSERT INTO `developer` VALUES (185833355, 'ilya-radostev-acronis', 'C', 100, 0, 0, 0, 0, 0, 0, 'Ilya Radostev', '@acronis ', '', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2024-10-21T17:15:53Z', '2024-10-21T18:42:22Z', 'https://avatars.githubusercontent.com/u/185833355?v=4', 'https://api.github.com/users/ilya-radostev-acronis', 'https://github.com/ilya-radostev-acronis', 'https://api.github.com/users/ilya-radostev-acronis/followers', 'https://api.github.com/users/ilya-radostev-acronis/following', 'https://api.github.com/users/ilya-radostev-acronis/gists', 'https://api.github.com/users/ilya-radostev-acronis/starred', 'https://api.github.com/users/ilya-radostev-acronis/repos', 'https://api.github.com/users/ilya-radostev-acronis/events', 'https://api.github.com/users/ilya-radostev-acronis/received_events', 0); +INSERT INTO `developer` VALUES (1, 'mojombo', 'S', 100, 0, 0, 0, 0, 0, 0, 'Tom Preston-Werner', '@chatterbugapp, @redwoodjs, @preston-werner-ventures ', 'http://tom.preston-werner.com', 'San Francisco', 'tom@mojombo.com', NULL, NULL, 'mojombo', 0, 0, 24058, 11, 0, 0, 0, '2007-10-20T05:24:19Z', '2024-10-22T16:56:44Z', 'https://avatars.githubusercontent.com/u/1?v=4', 'https://api.github.com/users/mojombo', 'https://github.com/mojombo', 'https://api.github.com/users/mojombo/followers', 'https://api.github.com/users/mojombo/following', 'https://api.github.com/users/mojombo/gists', 'https://api.github.com/users/mojombo/starred', 'https://api.github.com/users/mojombo/repos', 'https://api.github.com/users/mojombo/events', 'https://api.github.com/users/mojombo/received_events', 0); +INSERT INTO `developer` VALUES (2, 'defunkt', 'S', 100, 0, 0, 0, 0, 0, 0, 'Chris Wanstrath', NULL, 'http://chriswanstrath.com/', '未知', NULL, NULL, '🍔', NULL, 0, 0, 22405, 215, 0, 0, 0, '2007-10-20T05:24:19Z', '2024-11-04T04:50:16Z', 'https://avatars.githubusercontent.com/u/2?v=4', 'https://api.github.com/users/defunkt', 'https://github.com/defunkt', 'https://api.github.com/users/defunkt/followers', 'https://api.github.com/users/defunkt/following', 'https://api.github.com/users/defunkt/gists', 'https://api.github.com/users/defunkt/starred', 'https://api.github.com/users/defunkt/repos', 'https://api.github.com/users/defunkt/events', 'https://api.github.com/users/defunkt/received_events', 0); +INSERT INTO `developer` VALUES (3, 'pjhyett', 'S', 100, 0, 0, 0, 0, 0, 0, 'PJ Hyett', 'GitHub, Inc.', 'https://hyett.com', 'San Francisco', 'pj@hyett.com', NULL, NULL, NULL, 0, 0, 8310, 30, 0, 0, 0, '2008-01-07T17:54:22Z', '2024-01-22T12:11:10Z', 'https://avatars.githubusercontent.com/u/3?v=4', 'https://api.github.com/users/pjhyett', 'https://github.com/pjhyett', 'https://api.github.com/users/pjhyett/followers', 'https://api.github.com/users/pjhyett/following', 'https://api.github.com/users/pjhyett/gists', 'https://api.github.com/users/pjhyett/starred', 'https://api.github.com/users/pjhyett/repos', 'https://api.github.com/users/pjhyett/events', 'https://api.github.com/users/pjhyett/received_events', 0); +INSERT INTO `developer` VALUES (4, 'wycats', 'S', 100, 0, 0, 0, 0, 0, 0, 'Yehuda Katz', '@tildeio ', 'http://yehudakatz.com', 'Portland, OR', 'wycats@gmail.com', NULL, NULL, 'wycats', 0, 0, 10231, 13, 0, 0, 0, '2008-01-12T05:38:33Z', '2024-10-16T16:33:04Z', 'https://avatars.githubusercontent.com/u/4?v=4', 'https://api.github.com/users/wycats', 'https://github.com/wycats', 'https://api.github.com/users/wycats/followers', 'https://api.github.com/users/wycats/following', 'https://api.github.com/users/wycats/gists', 'https://api.github.com/users/wycats/starred', 'https://api.github.com/users/wycats/repos', 'https://api.github.com/users/wycats/events', 'https://api.github.com/users/wycats/received_events', 0); +INSERT INTO `developer` VALUES (5, 'ezmobius', 'C', 4.75327610215181, 0, 0, 0, 0, 0, 0, 'Ezra Zygmuntowicz', 'Stuffstr PBC', 'http://stuffstr.com', 'In the NW', NULL, NULL, NULL, NULL, 0, 0, 562, 13, 0, 0, 0, '2008-01-12T07:51:46Z', '2024-10-22T11:18:21Z', 'https://avatars.githubusercontent.com/u/5?v=4', 'https://api.github.com/users/ezmobius', 'https://github.com/ezmobius', 'https://api.github.com/users/ezmobius/followers', 'https://api.github.com/users/ezmobius/following', 'https://api.github.com/users/ezmobius/gists', 'https://api.github.com/users/ezmobius/starred', 'https://api.github.com/users/ezmobius/repos', 'https://api.github.com/users/ezmobius/events', 'https://api.github.com/users/ezmobius/received_events', 0); +INSERT INTO `developer` VALUES (6, 'ivey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael D. Ivey', '@RiotGames ', 'https://gweezlebur.com', 'West Hartford, CT', 'ivey@gweezlebur.com', NULL, NULL, 'ivey', 0, 0, 159, 3, 0, 0, 0, '2008-01-12T15:15:00Z', '2024-10-22T11:18:21Z', 'https://avatars.githubusercontent.com/u/6?v=4', 'https://api.github.com/users/ivey', 'https://github.com/ivey', 'https://api.github.com/users/ivey/followers', 'https://api.github.com/users/ivey/following', 'https://api.github.com/users/ivey/gists', 'https://api.github.com/users/ivey/starred', 'https://api.github.com/users/ivey/repos', 'https://api.github.com/users/ivey/events', 'https://api.github.com/users/ivey/received_events', 0); +INSERT INTO `developer` VALUES (7, 'evanphx', 'C+', 23.7709885369716, 0, 0, 0, 0, 0, 0, 'Evan Phoenix', NULL, 'https://evanphx.dev', 'Los Angeles, CA', 'evan@phx.io', NULL, NULL, 'evanphx', 0, 0, 1671, 10, 0, 0, 0, '2008-01-12T16:46:24Z', '2024-11-03T22:46:03Z', 'https://avatars.githubusercontent.com/u/7?v=4', 'https://api.github.com/users/evanphx', 'https://github.com/evanphx', 'https://api.github.com/users/evanphx/followers', 'https://api.github.com/users/evanphx/following', 'https://api.github.com/users/evanphx/gists', 'https://api.github.com/users/evanphx/starred', 'https://api.github.com/users/evanphx/repos', 'https://api.github.com/users/evanphx/events', 'https://api.github.com/users/evanphx/received_events', 0); +INSERT INTO `developer` VALUES (17, 'vanpelt', 'C', 2.2152946410577368, 0, 0, 0, 0, 0, 0, 'Chris Van Pelt', 'crowdflower.com', 'wandb.com', 'San Francisco', 'vanpelt@wandb.com', NULL, NULL, NULL, 0, 0, 414, 20, 0, 0, 0, '2008-01-13T05:57:18Z', '2024-11-02T05:30:02Z', 'https://avatars.githubusercontent.com/u/17?v=4', 'https://api.github.com/users/vanpelt', 'https://github.com/vanpelt', 'https://api.github.com/users/vanpelt/followers', 'https://api.github.com/users/vanpelt/following', 'https://api.github.com/users/vanpelt/gists', 'https://api.github.com/users/vanpelt/starred', 'https://api.github.com/users/vanpelt/repos', 'https://api.github.com/users/vanpelt/events', 'https://api.github.com/users/vanpelt/received_events', 0); +INSERT INTO `developer` VALUES (18, 'wayneeseguin', 'C', 7.977198498676715, 0, 0, 0, 0, 0, 0, 'Wayne E Seguin', 'FiveTwenty Inc.', '', 'Buffalo, NY', 'wayneeseguin@gmail.com', NULL, 'R&D', 'wayneeseguin', 0, 0, 750, 19, 0, 0, 0, '2008-01-13T06:02:21Z', '2024-10-22T11:18:21Z', 'https://avatars.githubusercontent.com/u/18?v=4', 'https://api.github.com/users/wayneeseguin', 'https://github.com/wayneeseguin', 'https://api.github.com/users/wayneeseguin/followers', 'https://api.github.com/users/wayneeseguin/following', 'https://api.github.com/users/wayneeseguin/gists', 'https://api.github.com/users/wayneeseguin/starred', 'https://api.github.com/users/wayneeseguin/repos', 'https://api.github.com/users/wayneeseguin/events', 'https://api.github.com/users/wayneeseguin/received_events', 0); +INSERT INTO `developer` VALUES (19, 'brynary', 'C', 7.051178235845095, 0, 0, 0, 0, 0, 0, 'Bryan Helmkamp', 'Code Climate', 'http://codeclimate.com', 'New York City', NULL, NULL, 'Co-founder and CEO, Code Climate', NULL, 0, 0, 696, 30, 0, 0, 0, '2008-01-13T10:19:47Z', '2024-10-19T16:02:32Z', 'https://avatars.githubusercontent.com/u/19?v=4', 'https://api.github.com/users/brynary', 'https://github.com/brynary', 'https://api.github.com/users/brynary/followers', 'https://api.github.com/users/brynary/following', 'https://api.github.com/users/brynary/gists', 'https://api.github.com/users/brynary/starred', 'https://api.github.com/users/brynary/repos', 'https://api.github.com/users/brynary/events', 'https://api.github.com/users/brynary/received_events', 0); +INSERT INTO `developer` VALUES (20, 'kevinclark', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Clark', 'Cue', 'http://glu.ttono.us', '未知', 'kevin.clark@gmail.com', NULL, NULL, NULL, 0, 0, 118, 6, 0, 0, 0, '2008-01-13T18:33:26Z', '2024-07-03T11:19:32Z', 'https://avatars.githubusercontent.com/u/20?v=4', 'https://api.github.com/users/kevinclark', 'https://github.com/kevinclark', 'https://api.github.com/users/kevinclark/followers', 'https://api.github.com/users/kevinclark/following', 'https://api.github.com/users/kevinclark/gists', 'https://api.github.com/users/kevinclark/starred', 'https://api.github.com/users/kevinclark/repos', 'https://api.github.com/users/kevinclark/events', 'https://api.github.com/users/kevinclark/received_events', 0); +INSERT INTO `developer` VALUES (21, 'technoweenie', 'B', 40.83376930581352, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'technoweenie@hey.com', NULL, NULL, NULL, 0, 0, 2666, 18, 0, 0, 0, '2008-01-14T04:33:35Z', '2024-08-18T11:40:36Z', 'https://avatars.githubusercontent.com/u/21?v=4', 'https://api.github.com/users/technoweenie', 'https://github.com/technoweenie', 'https://api.github.com/users/technoweenie/followers', 'https://api.github.com/users/technoweenie/following', 'https://api.github.com/users/technoweenie/gists', 'https://api.github.com/users/technoweenie/starred', 'https://api.github.com/users/technoweenie/repos', 'https://api.github.com/users/technoweenie/events', 'https://api.github.com/users/technoweenie/received_events', 0); +INSERT INTO `developer` VALUES (22, 'macournoyer', 'C+', 16.414272004475936, 0, 0, 0, 0, 0, 0, 'Marc-André Cournoyer', '@Shopify ', 'http://macournoyer.com', 'Montreal, QC, Canada', 'macournoyer@gmail.com', NULL, 'I enjoy walks in the park, VMs, neural nets, servers, anything with a loop.', 'macournoyer', 0, 0, 1242, 56, 0, 0, 0, '2008-01-14T10:49:35Z', '2024-10-08T19:54:45Z', 'https://avatars.githubusercontent.com/u/22?v=4', 'https://api.github.com/users/macournoyer', 'https://github.com/macournoyer', 'https://api.github.com/users/macournoyer/followers', 'https://api.github.com/users/macournoyer/following', 'https://api.github.com/users/macournoyer/gists', 'https://api.github.com/users/macournoyer/starred', 'https://api.github.com/users/macournoyer/repos', 'https://api.github.com/users/macournoyer/events', 'https://api.github.com/users/macournoyer/received_events', 0); +INSERT INTO `developer` VALUES (23, 'takeo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Toby Sterrett', NULL, 'takeo.blog', 'Portland, OR', 'toby@takeo.email', NULL, NULL, NULL, 0, 0, 102, 11, 0, 0, 0, '2008-01-14T11:25:49Z', '2024-10-30T03:07:34Z', 'https://avatars.githubusercontent.com/u/23?v=4', 'https://api.github.com/users/takeo', 'https://github.com/takeo', 'https://api.github.com/users/takeo/followers', 'https://api.github.com/users/takeo/following', 'https://api.github.com/users/takeo/gists', 'https://api.github.com/users/takeo/starred', 'https://api.github.com/users/takeo/repos', 'https://api.github.com/users/takeo/events', 'https://api.github.com/users/takeo/received_events', 0); +INSERT INTO `developer` VALUES (25, 'caged', 'B', 49.71145624562297, 0, 0, 0, 1314, 110, 0, 'Justin Palmer', 'ScaleRotate', 'http://scalerotate.com', 'Places', 'encytemedia@gmail.com', NULL, 'A series of hacks. Previously @github. \r\n', 'caged', 0, 0, 2384, 44, 0, 0, 0, '2008-01-15T04:47:24Z', '2024-10-21T20:38:52Z', 'https://avatars.githubusercontent.com/u/25?v=4', 'https://api.github.com/users/caged', 'https://github.com/caged', 'https://api.github.com/users/caged/followers', 'https://api.github.com/users/caged/following', 'https://api.github.com/users/caged/gists', 'https://api.github.com/users/caged/starred', 'https://api.github.com/users/caged/repos', 'https://api.github.com/users/caged/events', 'https://api.github.com/users/caged/received_events', 0); +INSERT INTO `developer` VALUES (26, 'topfunky', 'C+', 18.64358004462614, 0, 0, 0, 0, 0, 0, 'Geoffrey Grosenbach', '@datadog', 'https://topfunky.com', 'Seattle, USA', NULL, NULL, 'DevRel visionary. GitHub user 26. Currently: Director of Education Engineering at @DataDog. Previously: HashiCorp, PeepCode, Pluralsight', NULL, 0, 0, 1372, 252, 0, 0, 0, '2008-01-15T05:40:05Z', '2024-10-23T20:28:47Z', 'https://avatars.githubusercontent.com/u/26?v=4', 'https://api.github.com/users/topfunky', 'https://github.com/topfunky', 'https://api.github.com/users/topfunky/followers', 'https://api.github.com/users/topfunky/following', 'https://api.github.com/users/topfunky/gists', 'https://api.github.com/users/topfunky/starred', 'https://api.github.com/users/topfunky/repos', 'https://api.github.com/users/topfunky/events', 'https://api.github.com/users/topfunky/received_events', 0); +INSERT INTO `developer` VALUES (27, 'anotherjesse', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesse Andrews', 'Planet Labs', 'https://m4ke.org', 'San Francisco, CA', 'anotherjesse@gmail.com', NULL, NULL, NULL, 0, 0, 268, 39, 0, 0, 0, '2008-01-15T07:49:30Z', '2024-10-29T15:42:50Z', 'https://avatars.githubusercontent.com/u/27?v=4', 'https://api.github.com/users/anotherjesse', 'https://github.com/anotherjesse', 'https://api.github.com/users/anotherjesse/followers', 'https://api.github.com/users/anotherjesse/following', 'https://api.github.com/users/anotherjesse/gists', 'https://api.github.com/users/anotherjesse/starred', 'https://api.github.com/users/anotherjesse/repos', 'https://api.github.com/users/anotherjesse/events', 'https://api.github.com/users/anotherjesse/received_events', 0); +INSERT INTO `developer` VALUES (28, 'roland', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roland', NULL, 'http://rolandmai.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 29, 1, 0, 0, 0, '2008-01-15T08:12:51Z', '2024-10-30T13:56:19Z', 'https://avatars.githubusercontent.com/u/28?v=4', 'https://api.github.com/users/roland', 'https://github.com/roland', 'https://api.github.com/users/roland/followers', 'https://api.github.com/users/roland/following', 'https://api.github.com/users/roland/gists', 'https://api.github.com/users/roland/starred', 'https://api.github.com/users/roland/repos', 'https://api.github.com/users/roland/events', 'https://api.github.com/users/roland/received_events', 0); +INSERT INTO `developer` VALUES (29, 'lukas', 'C', 6.399534347185805, 0, 0, 0, 0, 0, 0, 'Lukas Biewald', 'Weights and Biases', 'lukasbiewald.com', '未知', 'lukas@wandb.com', NULL, 'Founder of Weights and Biases (wandb.ai)', 'l2k', 0, 0, 658, 19, 0, 0, 0, '2008-01-15T12:50:02Z', '2024-10-24T00:15:28Z', 'https://avatars.githubusercontent.com/u/29?v=4', 'https://api.github.com/users/lukas', 'https://github.com/lukas', 'https://api.github.com/users/lukas/followers', 'https://api.github.com/users/lukas/following', 'https://api.github.com/users/lukas/gists', 'https://api.github.com/users/lukas/starred', 'https://api.github.com/users/lukas/repos', 'https://api.github.com/users/lukas/events', 'https://api.github.com/users/lukas/received_events', 0); +INSERT INTO `developer` VALUES (30, 'fanvsfan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Amsterdam', NULL, NULL, NULL, NULL, 0, 0, 29, 0, 0, 0, 0, '2008-01-15T14:15:23Z', '2024-01-13T00:07:58Z', 'https://avatars.githubusercontent.com/u/30?v=4', 'https://api.github.com/users/fanvsfan', 'https://github.com/fanvsfan', 'https://api.github.com/users/fanvsfan/followers', 'https://api.github.com/users/fanvsfan/following', 'https://api.github.com/users/fanvsfan/gists', 'https://api.github.com/users/fanvsfan/starred', 'https://api.github.com/users/fanvsfan/repos', 'https://api.github.com/users/fanvsfan/events', 'https://api.github.com/users/fanvsfan/received_events', 0); +INSERT INTO `developer` VALUES (31, 'tomtt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom ten Thij', 'Freelance', 'tomtenthij.nl', '未知', NULL, 'true', NULL, NULL, 0, 0, 63, 12, 0, 0, 0, '2008-01-15T15:44:31Z', '2024-10-16T09:55:50Z', 'https://avatars.githubusercontent.com/u/31?v=4', 'https://api.github.com/users/tomtt', 'https://github.com/tomtt', 'https://api.github.com/users/tomtt/followers', 'https://api.github.com/users/tomtt/following', 'https://api.github.com/users/tomtt/gists', 'https://api.github.com/users/tomtt/starred', 'https://api.github.com/users/tomtt/repos', 'https://api.github.com/users/tomtt/events', 'https://api.github.com/users/tomtt/received_events', 0); +INSERT INTO `developer` VALUES (32, 'railsjitsu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 23, 0, 0, 0, 0, '2008-01-16T04:57:23Z', '2022-12-01T11:13:33Z', 'https://avatars.githubusercontent.com/u/32?v=4', 'https://api.github.com/users/railsjitsu', 'https://github.com/railsjitsu', 'https://api.github.com/users/railsjitsu/followers', 'https://api.github.com/users/railsjitsu/following', 'https://api.github.com/users/railsjitsu/gists', 'https://api.github.com/users/railsjitsu/starred', 'https://api.github.com/users/railsjitsu/repos', 'https://api.github.com/users/railsjitsu/events', 'https://api.github.com/users/railsjitsu/received_events', 0); +INSERT INTO `developer` VALUES (34, 'nitay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nitay Joffe', 'ActionIQ', 'https://www.actioniq.com/', 'New York', NULL, NULL, 'Founder/CTO of @ActionIQ.\r\nPartner at Verissimo VC.\r\nHosts of Tech on the Rocks.', 'nitayj', 0, 0, 54, 0, 0, 0, 0, '2008-01-18T14:09:11Z', '2024-10-22T02:52:00Z', 'https://avatars.githubusercontent.com/u/34?v=4', 'https://api.github.com/users/nitay', 'https://github.com/nitay', 'https://api.github.com/users/nitay/followers', 'https://api.github.com/users/nitay/following', 'https://api.github.com/users/nitay/gists', 'https://api.github.com/users/nitay/starred', 'https://api.github.com/users/nitay/repos', 'https://api.github.com/users/nitay/events', 'https://api.github.com/users/nitay/received_events', 0); +INSERT INTO `developer` VALUES (35, 'kevwil', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Williams', 'KunAI', 'https://kevwil.github.io/', '未知', NULL, NULL, 'I enjoy learning and solving problems.', NULL, 0, 0, 61, 23, 0, 0, 0, '2008-01-19T05:50:12Z', '2024-10-29T22:40:35Z', 'https://avatars.githubusercontent.com/u/35?v=4', 'https://api.github.com/users/kevwil', 'https://github.com/kevwil', 'https://api.github.com/users/kevwil/followers', 'https://api.github.com/users/kevwil/following', 'https://api.github.com/users/kevwil/gists', 'https://api.github.com/users/kevwil/starred', 'https://api.github.com/users/kevwil/repos', 'https://api.github.com/users/kevwil/events', 'https://api.github.com/users/kevwil/received_events', 0); +INSERT INTO `developer` VALUES (36, 'KirinDave', 'C', 2.3010372579865903, 0, 0, 0, 0, 0, 0, 'Dave Fayram', 'Google', 'http://kirindave.tumblr.com', 'Frederick, CO', NULL, NULL, 'No.', NULL, 0, 0, 419, 10, 0, 0, 0, '2008-01-19T08:01:02Z', '2023-02-10T05:48:17Z', 'https://avatars.githubusercontent.com/u/36?v=4', 'https://api.github.com/users/KirinDave', 'https://github.com/KirinDave', 'https://api.github.com/users/KirinDave/followers', 'https://api.github.com/users/KirinDave/following', 'https://api.github.com/users/KirinDave/gists', 'https://api.github.com/users/KirinDave/starred', 'https://api.github.com/users/KirinDave/repos', 'https://api.github.com/users/KirinDave/events', 'https://api.github.com/users/KirinDave/received_events', 0); +INSERT INTO `developer` VALUES (37, 'jamesgolick', 'C', 6.228049113328097, 0, 0, 0, 0, 0, 0, 'James Golick', 'Normal', 'http://jamesgolick.com', 'New York', 'jamesgolick@gmail.com', NULL, NULL, NULL, 0, 0, 648, 30, 0, 0, 0, '2008-01-19T22:52:30Z', '2019-06-05T00:04:42Z', 'https://avatars.githubusercontent.com/u/37?v=4', 'https://api.github.com/users/jamesgolick', 'https://github.com/jamesgolick', 'https://api.github.com/users/jamesgolick/followers', 'https://api.github.com/users/jamesgolick/following', 'https://api.github.com/users/jamesgolick/gists', 'https://api.github.com/users/jamesgolick/starred', 'https://api.github.com/users/jamesgolick/repos', 'https://api.github.com/users/jamesgolick/events', 'https://api.github.com/users/jamesgolick/received_events', 0); +INSERT INTO `developer` VALUES (38, 'atmos', 'C+', 18.129124343053014, 0, 0, 0, 0, 0, 0, 'Corey Donohoe', NULL, 'https://atmos.org', 'San Francisco, CA', 'atmos@atmos.org', NULL, NULL, NULL, 0, 0, 1342, 167, 0, 0, 0, '2008-01-22T09:14:11Z', '2024-08-10T06:25:44Z', 'https://avatars.githubusercontent.com/u/38?v=4', 'https://api.github.com/users/atmos', 'https://github.com/atmos', 'https://api.github.com/users/atmos/followers', 'https://api.github.com/users/atmos/following', 'https://api.github.com/users/atmos/gists', 'https://api.github.com/users/atmos/starred', 'https://api.github.com/users/atmos/repos', 'https://api.github.com/users/atmos/events', 'https://api.github.com/users/atmos/received_events', 0); +INSERT INTO `developer` VALUES (44, 'errfree', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'GMT +/- 8', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-01-24T02:08:37Z', '2020-05-13T06:35:19Z', 'https://avatars.githubusercontent.com/u/44?v=4', 'https://api.github.com/users/errfree', 'https://github.com/errfree', 'https://api.github.com/users/errfree/followers', 'https://api.github.com/users/errfree/following', 'https://api.github.com/users/errfree/gists', 'https://api.github.com/users/errfree/starred', 'https://api.github.com/users/errfree/repos', 'https://api.github.com/users/errfree/events', 'https://api.github.com/users/errfree/received_events', 0); +INSERT INTO `developer` VALUES (45, 'mojodna', 'C', 5.524959654511496, 0, 0, 0, 0, 0, 0, 'Seth Fitzsimmons', 'AWS', 'http://mojodna.net/', '未知', NULL, NULL, NULL, 'mojodna', 0, 0, 607, 114, 0, 0, 0, '2008-01-24T04:40:22Z', '2024-09-06T16:41:44Z', 'https://avatars.githubusercontent.com/u/45?v=4', 'https://api.github.com/users/mojodna', 'https://github.com/mojodna', 'https://api.github.com/users/mojodna/followers', 'https://api.github.com/users/mojodna/following', 'https://api.github.com/users/mojodna/gists', 'https://api.github.com/users/mojodna/starred', 'https://api.github.com/users/mojodna/repos', 'https://api.github.com/users/mojodna/events', 'https://api.github.com/users/mojodna/received_events', 0); +INSERT INTO `developer` VALUES (46, 'bmizerany', 'C+', 20.101204532416652, 0, 0, 0, 0, 0, 0, 'Blake Mizerany', NULL, '', 'Bend, OR', 'blake.mizerany@gmail.com', NULL, NULL, NULL, 0, 0, 1457, 45, 0, 0, 0, '2008-01-24T04:44:30Z', '2024-10-20T05:21:58Z', 'https://avatars.githubusercontent.com/u/46?v=4', 'https://api.github.com/users/bmizerany', 'https://github.com/bmizerany', 'https://api.github.com/users/bmizerany/followers', 'https://api.github.com/users/bmizerany/following', 'https://api.github.com/users/bmizerany/gists', 'https://api.github.com/users/bmizerany/starred', 'https://api.github.com/users/bmizerany/repos', 'https://api.github.com/users/bmizerany/events', 'https://api.github.com/users/bmizerany/received_events', 0); +INSERT INTO `developer` VALUES (47, 'jnewland', 'C', 8.080089638991339, 0, 0, 0, 0, 0, 0, 'Jesse Newland', '@urcomputeringpal', 'http://jnewland.com', '未知', 'jesse@jnewland.com', 'true', '💻🛠️🎵🌱✈️🐶', 'jnewland', 0, 0, 756, 102, 0, 0, 0, '2008-01-25T02:28:12Z', '2024-09-19T23:37:44Z', 'https://avatars.githubusercontent.com/u/47?v=4', 'https://api.github.com/users/jnewland', 'https://github.com/jnewland', 'https://api.github.com/users/jnewland/followers', 'https://api.github.com/users/jnewland/following', 'https://api.github.com/users/jnewland/gists', 'https://api.github.com/users/jnewland/starred', 'https://api.github.com/users/jnewland/repos', 'https://api.github.com/users/jnewland/events', 'https://api.github.com/users/jnewland/received_events', 0); +INSERT INTO `developer` VALUES (48, 'joshknowles', 'C', 0, 0, 0, 0, 129, 26, 0, 'Josh Knowles', NULL, 'http://joshknowles.com', 'Austin, TX', 'joshknowles@gmail.com', NULL, NULL, NULL, 0, 0, 123, 43, 0, 0, 0, '2008-01-25T21:30:42Z', '2024-11-03T03:05:29Z', 'https://avatars.githubusercontent.com/u/48?v=4', 'https://api.github.com/users/joshknowles', 'https://github.com/joshknowles', 'https://api.github.com/users/joshknowles/followers', 'https://api.github.com/users/joshknowles/following', 'https://api.github.com/users/joshknowles/gists', 'https://api.github.com/users/joshknowles/starred', 'https://api.github.com/users/joshknowles/repos', 'https://api.github.com/users/joshknowles/events', 'https://api.github.com/users/joshknowles/received_events', 0); +INSERT INTO `developer` VALUES (49, 'hornbeck', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Hornbeck', 'Hashicorp', 'twitter.com/hornbeck', 'Lawton, OK', 'hornbeck@gmail.com', 'true', NULL, 'hornbeck', 0, 0, 83, 35, 0, 0, 0, '2008-01-25T21:49:23Z', '2023-10-04T20:27:27Z', 'https://avatars.githubusercontent.com/u/49?v=4', 'https://api.github.com/users/hornbeck', 'https://github.com/hornbeck', 'https://api.github.com/users/hornbeck/followers', 'https://api.github.com/users/hornbeck/following', 'https://api.github.com/users/hornbeck/gists', 'https://api.github.com/users/hornbeck/starred', 'https://api.github.com/users/hornbeck/repos', 'https://api.github.com/users/hornbeck/events', 'https://api.github.com/users/hornbeck/received_events', 0); +INSERT INTO `developer` VALUES (50, 'jwhitmire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Whitmire', '@galileo-inc ', '', 'Webster, NY', 'jeff@jwhitmire.com', NULL, 'I like my codez shaken with a twist.', NULL, 0, 0, 50, 55, 0, 0, 0, '2008-01-25T22:07:48Z', '2024-10-20T11:21:00Z', 'https://avatars.githubusercontent.com/u/50?v=4', 'https://api.github.com/users/jwhitmire', 'https://github.com/jwhitmire', 'https://api.github.com/users/jwhitmire/followers', 'https://api.github.com/users/jwhitmire/following', 'https://api.github.com/users/jwhitmire/gists', 'https://api.github.com/users/jwhitmire/starred', 'https://api.github.com/users/jwhitmire/repos', 'https://api.github.com/users/jwhitmire/events', 'https://api.github.com/users/jwhitmire/received_events', 0); +INSERT INTO `developer` VALUES (51, 'elbowdonkey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Buffington', 'mx.com', 'http://michaelbuffington.co', '未知', NULL, NULL, NULL, NULL, 0, 0, 36, 10, 0, 0, 0, '2008-01-25T22:08:20Z', '2024-10-03T16:15:27Z', 'https://avatars.githubusercontent.com/u/51?v=4', 'https://api.github.com/users/elbowdonkey', 'https://github.com/elbowdonkey', 'https://api.github.com/users/elbowdonkey/followers', 'https://api.github.com/users/elbowdonkey/following', 'https://api.github.com/users/elbowdonkey/gists', 'https://api.github.com/users/elbowdonkey/starred', 'https://api.github.com/users/elbowdonkey/repos', 'https://api.github.com/users/elbowdonkey/events', 'https://api.github.com/users/elbowdonkey/received_events', 0); +INSERT INTO `developer` VALUES (52, 'reinh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rein Henrichs', '@procore ', 'http://reinh.com', 'Portland, OR', NULL, NULL, NULL, NULL, 0, 0, 206, 1, 0, 0, 0, '2008-01-25T22:16:29Z', '2024-10-23T18:51:50Z', 'https://avatars.githubusercontent.com/u/52?v=4', 'https://api.github.com/users/reinh', 'https://github.com/reinh', 'https://api.github.com/users/reinh/followers', 'https://api.github.com/users/reinh/following', 'https://api.github.com/users/reinh/gists', 'https://api.github.com/users/reinh/starred', 'https://api.github.com/users/reinh/repos', 'https://api.github.com/users/reinh/events', 'https://api.github.com/users/reinh/received_events', 0); +INSERT INTO `developer` VALUES (53, 'knzai', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kenzi Connor', 'Cloud City Development', 'knz.ai', 'Oakland, CA', 'git@knz.ai', 'true', 'CEO/CTO Cloud City. Rust, ruby, and js.', 'knzconnor', 0, 0, 65, 11, 0, 0, 0, '2008-01-25T22:33:10Z', '2024-10-22T16:00:41Z', 'https://avatars.githubusercontent.com/u/53?v=4', 'https://api.github.com/users/knzai', 'https://github.com/knzai', 'https://api.github.com/users/knzai/followers', 'https://api.github.com/users/knzai/following', 'https://api.github.com/users/knzai/gists', 'https://api.github.com/users/knzai/starred', 'https://api.github.com/users/knzai/repos', 'https://api.github.com/users/knzai/events', 'https://api.github.com/users/knzai/received_events', 0); +INSERT INTO `developer` VALUES (68, 'bs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Britt Selvitelle', NULL, 'https://bri.tt', 'San Fransico, CA', 'yap@bri.tt', NULL, NULL, NULL, 0, 0, 145, 53, 0, 0, 0, '2008-01-27T01:46:29Z', '2024-10-25T16:23:37Z', 'https://avatars.githubusercontent.com/u/68?v=4', 'https://api.github.com/users/bs', 'https://github.com/bs', 'https://api.github.com/users/bs/followers', 'https://api.github.com/users/bs/following', 'https://api.github.com/users/bs/gists', 'https://api.github.com/users/bs/starred', 'https://api.github.com/users/bs/repos', 'https://api.github.com/users/bs/events', 'https://api.github.com/users/bs/received_events', 0); +INSERT INTO `developer` VALUES (69, 'rsanheim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Sanheim', 'Doximity', 'https://rsanheim.com', 'Madison, WI, NORTH AMERICA', NULL, NULL, 'Software Engineer @ Doximity.com. Formerly GitHub, Cognitect, and others. Human centered software development.', NULL, 0, 0, 219, 32, 0, 0, 0, '2008-01-27T07:09:47Z', '2024-11-02T07:59:55Z', 'https://avatars.githubusercontent.com/u/69?v=4', 'https://api.github.com/users/rsanheim', 'https://github.com/rsanheim', 'https://api.github.com/users/rsanheim/followers', 'https://api.github.com/users/rsanheim/following', 'https://api.github.com/users/rsanheim/gists', 'https://api.github.com/users/rsanheim/starred', 'https://api.github.com/users/rsanheim/repos', 'https://api.github.com/users/rsanheim/events', 'https://api.github.com/users/rsanheim/received_events', 0); +INSERT INTO `developer` VALUES (70, 'schacon', 'S', 100, 0, 0, 0, 0, 0, 0, 'Scott Chacon', '@gitbutlerapp ', 'http://scottchacon.com', 'Berlin, Germany', 'schacon@gmail.com', NULL, NULL, 'chacon', 0, 0, 13760, 26, 0, 0, 0, '2008-01-27T17:19:28Z', '2024-10-28T12:59:32Z', 'https://avatars.githubusercontent.com/u/70?v=4', 'https://api.github.com/users/schacon', 'https://github.com/schacon', 'https://api.github.com/users/schacon/followers', 'https://api.github.com/users/schacon/following', 'https://api.github.com/users/schacon/gists', 'https://api.github.com/users/schacon/starred', 'https://api.github.com/users/schacon/repos', 'https://api.github.com/users/schacon/events', 'https://api.github.com/users/schacon/received_events', 0); +INSERT INTO `developer` VALUES (71, 'uggedal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eivind Uggedal', '@vippsas ', '', 'Oslo, Norway', NULL, 'true', 'created_at: 2008-01-27T22:18:57Z', NULL, 0, 0, 189, 0, 0, 0, 0, '2008-01-27T22:18:57Z', '2024-10-31T10:02:42Z', 'https://avatars.githubusercontent.com/u/71?v=4', 'https://api.github.com/users/uggedal', 'https://github.com/uggedal', 'https://api.github.com/users/uggedal/followers', 'https://api.github.com/users/uggedal/following', 'https://api.github.com/users/uggedal/gists', 'https://api.github.com/users/uggedal/starred', 'https://api.github.com/users/uggedal/repos', 'https://api.github.com/users/uggedal/events', 'https://api.github.com/users/uggedal/received_events', 0); +INSERT INTO `developer` VALUES (72, 'bruce', 'C', 1.323571424997656, 0, 0, 0, 0, 0, 0, 'Bruce Williams', '@github', '', 'Vancouver, WA', 'brwcodes@gmail.com', NULL, 'Polyglot programmer, technical book author, collector of dusty projects.', 'wbruce', 0, 0, 362, 43, 0, 0, 0, '2008-01-28T07:16:45Z', '2024-09-10T16:52:40Z', 'https://avatars.githubusercontent.com/u/72?v=4', 'https://api.github.com/users/bruce', 'https://github.com/bruce', 'https://api.github.com/users/bruce/followers', 'https://api.github.com/users/bruce/following', 'https://api.github.com/users/bruce/gists', 'https://api.github.com/users/bruce/starred', 'https://api.github.com/users/bruce/repos', 'https://api.github.com/users/bruce/events', 'https://api.github.com/users/bruce/received_events', 0); +INSERT INTO `developer` VALUES (73, 'sam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Smoot', 'Wieck Media', 'http://www.ssmoot.me', 'Dallas, TX', 'ssmoot@gmail.com', 'true', NULL, NULL, 0, 0, 184, 5, 0, 0, 0, '2008-01-28T19:01:26Z', '2024-10-31T19:58:43Z', 'https://avatars.githubusercontent.com/u/73?v=4', 'https://api.github.com/users/sam', 'https://github.com/sam', 'https://api.github.com/users/sam/followers', 'https://api.github.com/users/sam/following', 'https://api.github.com/users/sam/gists', 'https://api.github.com/users/sam/starred', 'https://api.github.com/users/sam/repos', 'https://api.github.com/users/sam/events', 'https://api.github.com/users/sam/received_events', 0); +INSERT INTO `developer` VALUES (74, 'mmower', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Mower', 'The Art of Navigation', 'http://theartofnavigation.co.uk/', 'Berkshire, England', 'self@mattmower.com', NULL, 'Musician, strategy navigator, programmer', 'sandbags', 0, 0, 67, 1, 0, 0, 0, '2008-01-28T19:47:50Z', '2024-09-22T07:22:16Z', 'https://avatars.githubusercontent.com/u/74?v=4', 'https://api.github.com/users/mmower', 'https://github.com/mmower', 'https://api.github.com/users/mmower/followers', 'https://api.github.com/users/mmower/following', 'https://api.github.com/users/mmower/gists', 'https://api.github.com/users/mmower/starred', 'https://api.github.com/users/mmower/repos', 'https://api.github.com/users/mmower/events', 'https://api.github.com/users/mmower/received_events', 0); +INSERT INTO `developer` VALUES (75, 'abhay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Abhay Kumar', '@helium', 'https://hackshare.com', 'San Francisco, CA', NULL, NULL, 'nostr: npub170uwqlxtwefytnpvek42qsazs0wq0ej856eewectq3dzydruvxkqqtgzs7', 'abhay', 0, 0, 176, 1, 0, 0, 0, '2008-01-28T21:08:23Z', '2024-10-09T01:11:44Z', 'https://avatars.githubusercontent.com/u/75?v=4', 'https://api.github.com/users/abhay', 'https://github.com/abhay', 'https://api.github.com/users/abhay/followers', 'https://api.github.com/users/abhay/following', 'https://api.github.com/users/abhay/gists', 'https://api.github.com/users/abhay/starred', 'https://api.github.com/users/abhay/repos', 'https://api.github.com/users/abhay/events', 'https://api.github.com/users/abhay/received_events', 0); +INSERT INTO `developer` VALUES (76, 'rabble', 'C', 0, 0, 0, 0, 0, 0, 0, 'rabble', 'Hacker turned manager type', 'http://evan.henshaw-plath.com/', 'Pōneke, Aotearoa', 'evan@protest.net', 'true', 'Founder & CEO of Planetary / Nos.social\r\n\r\nNostr: rabble@nos.social / rabble.nos.socail\r\n', 'rabble', 0, 0, 258, 95, 0, 0, 0, '2008-01-28T23:27:02Z', '2024-11-04T11:16:25Z', 'https://avatars.githubusercontent.com/u/76?v=4', 'https://api.github.com/users/rabble', 'https://github.com/rabble', 'https://api.github.com/users/rabble/followers', 'https://api.github.com/users/rabble/following', 'https://api.github.com/users/rabble/gists', 'https://api.github.com/users/rabble/starred', 'https://api.github.com/users/rabble/repos', 'https://api.github.com/users/rabble/events', 'https://api.github.com/users/rabble/received_events', 0); +INSERT INTO `developer` VALUES (77, 'benburkert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Burkert', '@anchordotdev', 'https://benburkert.com', 'NYC', 'ben@benburkert.com', NULL, NULL, 'benburkert', 0, 0, 217, 7, 0, 0, 0, '2008-01-28T23:44:14Z', '2024-10-27T11:19:13Z', 'https://avatars.githubusercontent.com/u/77?v=4', 'https://api.github.com/users/benburkert', 'https://github.com/benburkert', 'https://api.github.com/users/benburkert/followers', 'https://api.github.com/users/benburkert/following', 'https://api.github.com/users/benburkert/gists', 'https://api.github.com/users/benburkert/starred', 'https://api.github.com/users/benburkert/repos', 'https://api.github.com/users/benburkert/events', 'https://api.github.com/users/benburkert/received_events', 0); +INSERT INTO `developer` VALUES (78, 'indirect', 'C+', 12.675893906377908, 0, 0, 0, 0, 0, 0, 'André Arko', NULL, 'https://arko.net', 'San Francisco', 'andre@arko.net', 'true', NULL, NULL, 0, 0, 1024, 0, 0, 0, 0, '2008-01-29T07:59:27Z', '2024-11-01T18:50:08Z', 'https://avatars.githubusercontent.com/u/78?v=4', 'https://api.github.com/users/indirect', 'https://github.com/indirect', 'https://api.github.com/users/indirect/followers', 'https://api.github.com/users/indirect/following', 'https://api.github.com/users/indirect/gists', 'https://api.github.com/users/indirect/starred', 'https://api.github.com/users/indirect/repos', 'https://api.github.com/users/indirect/events', 'https://api.github.com/users/indirect/received_events', 0); +INSERT INTO `developer` VALUES (79, 'fearoffish', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jamie van Dyke', 'Fear of Fish', 'http://www.jamievandyke.com/', 'Skipton, UK', 'me@fearof.fish', 'true', NULL, NULL, 0, 0, 52, 5, 0, 0, 0, '2008-01-29T08:43:10Z', '2024-11-01T11:22:47Z', 'https://avatars.githubusercontent.com/u/79?v=4', 'https://api.github.com/users/fearoffish', 'https://github.com/fearoffish', 'https://api.github.com/users/fearoffish/followers', 'https://api.github.com/users/fearoffish/following', 'https://api.github.com/users/fearoffish/gists', 'https://api.github.com/users/fearoffish/starred', 'https://api.github.com/users/fearoffish/repos', 'https://api.github.com/users/fearoffish/events', 'https://api.github.com/users/fearoffish/received_events', 0); +INSERT INTO `developer` VALUES (80, 'ry', 'S', 100, 0, 0, 0, 0, 0, 0, 'Ryan Dahl', '@denoland ', 'http://tinyclouds.org/', 'New York City', 'ry@tinyclouds.org', NULL, NULL, NULL, 0, 0, 31885, 39, 0, 0, 0, '2008-01-29T08:50:34Z', '2024-11-04T16:22:52Z', 'https://avatars.githubusercontent.com/u/80?v=4', 'https://api.github.com/users/ry', 'https://github.com/ry', 'https://api.github.com/users/ry/followers', 'https://api.github.com/users/ry/following', 'https://api.github.com/users/ry/gists', 'https://api.github.com/users/ry/starred', 'https://api.github.com/users/ry/repos', 'https://api.github.com/users/ry/events', 'https://api.github.com/users/ry/received_events', 0); +INSERT INTO `developer` VALUES (81, 'engineyard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Engine Yard, Inc.', NULL, 'https://www.engineyard.com', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 19, 0, 0, 0, 0, '2008-01-29T09:51:30Z', '2024-02-28T09:42:43Z', 'https://avatars.githubusercontent.com/u/81?v=4', 'https://api.github.com/users/engineyard', 'https://github.com/engineyard', 'https://api.github.com/users/engineyard/followers', 'https://api.github.com/users/engineyard/following', 'https://api.github.com/users/engineyard/gists', 'https://api.github.com/users/engineyard/starred', 'https://api.github.com/users/engineyard/repos', 'https://api.github.com/users/engineyard/events', 'https://api.github.com/users/engineyard/received_events', 0); +INSERT INTO `developer` VALUES (82, 'jsierles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Sierles', '@superfly', 'https://joshua.si', 'Sevilla, Spain', NULL, 'true', 'Tech generalist fighting complexity', 'jsierles', 0, 0, 272, 0, 0, 0, 0, '2008-01-29T11:10:25Z', '2024-09-10T16:09:40Z', 'https://avatars.githubusercontent.com/u/82?v=4', 'https://api.github.com/users/jsierles', 'https://github.com/jsierles', 'https://api.github.com/users/jsierles/followers', 'https://api.github.com/users/jsierles/following', 'https://api.github.com/users/jsierles/gists', 'https://api.github.com/users/jsierles/starred', 'https://api.github.com/users/jsierles/repos', 'https://api.github.com/users/jsierles/events', 'https://api.github.com/users/jsierles/received_events', 0); +INSERT INTO `developer` VALUES (83, 'tweibley', 'C', 9.031275216865053, 0, 25, 103, 284, 0, 0, 'Taylor Weibley', '37signals', '', 'Florida', NULL, NULL, NULL, NULL, 0, 0, 50, 2, 0, 0, 0, '2008-01-29T13:52:07Z', '2024-01-16T19:13:06Z', 'https://avatars.githubusercontent.com/u/83?v=4', 'https://api.github.com/users/tweibley', 'https://github.com/tweibley', 'https://api.github.com/users/tweibley/followers', 'https://api.github.com/users/tweibley/following', 'https://api.github.com/users/tweibley/gists', 'https://api.github.com/users/tweibley/starred', 'https://api.github.com/users/tweibley/repos', 'https://api.github.com/users/tweibley/events', 'https://api.github.com/users/tweibley/received_events', 0); +INSERT INTO `developer` VALUES (84, 'peimei', 'C', 0, 0, 0, 0, 0, 0, 0, 'E. James O\'Kelly', 'RailsJitsu, llc.', 'http://www.railsjitsu.com', 'Palm Springs, CA', 'james@railsjitsu.com', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-01-29T15:44:11Z', '2019-12-15T04:28:34Z', 'https://avatars.githubusercontent.com/u/84?v=4', 'https://api.github.com/users/peimei', 'https://github.com/peimei', 'https://api.github.com/users/peimei/followers', 'https://api.github.com/users/peimei/following', 'https://api.github.com/users/peimei/gists', 'https://api.github.com/users/peimei/starred', 'https://api.github.com/users/peimei/repos', 'https://api.github.com/users/peimei/events', 'https://api.github.com/users/peimei/received_events', 0); +INSERT INTO `developer` VALUES (85, 'brixen', 'C', 1.1692347145257191, 0, 0, 0, 0, 0, 0, 'Brian Shirai', NULL, 'http://brixen.io', 'Portland, OR', 'brixen@gmail.com', 'true', NULL, NULL, 0, 0, 353, 5, 0, 0, 0, '2008-01-29T16:47:55Z', '2024-09-16T02:57:50Z', 'https://avatars.githubusercontent.com/u/85?v=4', 'https://api.github.com/users/brixen', 'https://github.com/brixen', 'https://api.github.com/users/brixen/followers', 'https://api.github.com/users/brixen/following', 'https://api.github.com/users/brixen/gists', 'https://api.github.com/users/brixen/starred', 'https://api.github.com/users/brixen/repos', 'https://api.github.com/users/brixen/events', 'https://api.github.com/users/brixen/received_events', 0); +INSERT INTO `developer` VALUES (87, 'tmornini', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Mornini', 'Subledger', 'http://subledger.com', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 54, 4, 0, 0, 0, '2008-01-29T18:43:39Z', '2024-07-03T22:20:09Z', 'https://avatars.githubusercontent.com/u/87?v=4', 'https://api.github.com/users/tmornini', 'https://github.com/tmornini', 'https://api.github.com/users/tmornini/followers', 'https://api.github.com/users/tmornini/following', 'https://api.github.com/users/tmornini/gists', 'https://api.github.com/users/tmornini/starred', 'https://api.github.com/users/tmornini/repos', 'https://api.github.com/users/tmornini/events', 'https://api.github.com/users/tmornini/received_events', 0); +INSERT INTO `developer` VALUES (88, 'outerim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lee Jensen', 'Big Cartel', 'outerim.tumblr.com', 'SLC, UT', 'lee@outerim.com', NULL, NULL, NULL, 0, 0, 29, 1, 0, 0, 0, '2008-01-29T18:48:32Z', '2024-09-23T22:56:35Z', 'https://avatars.githubusercontent.com/u/88?v=4', 'https://api.github.com/users/outerim', 'https://github.com/outerim', 'https://api.github.com/users/outerim/followers', 'https://api.github.com/users/outerim/following', 'https://api.github.com/users/outerim/gists', 'https://api.github.com/users/outerim/starred', 'https://api.github.com/users/outerim/repos', 'https://api.github.com/users/outerim/events', 'https://api.github.com/users/outerim/received_events', 0); +INSERT INTO `developer` VALUES (89, 'daksis', 'C', 0, 0, 0, 0, 0, 0, 0, 'R', 'Thunderbolt Labs', 'thunderboltlabs.com', 'San Francisco, CA, USA', NULL, NULL, NULL, NULL, 0, 0, 73, 53, 0, 0, 0, '2008-01-29T19:18:16Z', '2024-09-11T13:23:20Z', 'https://avatars.githubusercontent.com/u/89?v=4', 'https://api.github.com/users/daksis', 'https://github.com/daksis', 'https://api.github.com/users/daksis/followers', 'https://api.github.com/users/daksis/following', 'https://api.github.com/users/daksis/gists', 'https://api.github.com/users/daksis/starred', 'https://api.github.com/users/daksis/repos', 'https://api.github.com/users/daksis/events', 'https://api.github.com/users/daksis/received_events', 0); +INSERT INTO `developer` VALUES (90, 'sr', 'C', 5.216286233567622, 0, 0, 0, 0, 0, 0, 'Simon Rozet', '@salesforce', 'http://atonie.org', 'Europe', 'me@simonrozet.com', 'true', NULL, NULL, 0, 0, 589, 201, 0, 0, 0, '2008-01-29T20:37:53Z', '2024-10-04T12:14:06Z', 'https://avatars.githubusercontent.com/u/90?v=4', 'https://api.github.com/users/sr', 'https://github.com/sr', 'https://api.github.com/users/sr/followers', 'https://api.github.com/users/sr/following', 'https://api.github.com/users/sr/gists', 'https://api.github.com/users/sr/starred', 'https://api.github.com/users/sr/repos', 'https://api.github.com/users/sr/events', 'https://api.github.com/users/sr/received_events', 0); +INSERT INTO `developer` VALUES (91, 'lifo', 'C', 5.62785079482612, 0, 0, 0, 0, 0, 0, 'lifo', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 613, 54, 0, 0, 0, '2008-01-29T23:09:30Z', '2024-10-09T15:50:18Z', 'https://avatars.githubusercontent.com/u/91?v=4', 'https://api.github.com/users/lifo', 'https://github.com/lifo', 'https://api.github.com/users/lifo/followers', 'https://api.github.com/users/lifo/following', 'https://api.github.com/users/lifo/gists', 'https://api.github.com/users/lifo/starred', 'https://api.github.com/users/lifo/repos', 'https://api.github.com/users/lifo/events', 'https://api.github.com/users/lifo/received_events', 0); +INSERT INTO `developer` VALUES (92, 'rsl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Russell Norris', '@fracturedatlas', 'http://luckysneaks.com/', 'Atlanta, GA', 'sconds@gmail.com', NULL, NULL, NULL, 0, 0, 68, 9, 0, 0, 0, '2008-01-29T23:13:36Z', '2024-04-09T16:00:41Z', 'https://avatars.githubusercontent.com/u/92?v=4', 'https://api.github.com/users/rsl', 'https://github.com/rsl', 'https://api.github.com/users/rsl/followers', 'https://api.github.com/users/rsl/following', 'https://api.github.com/users/rsl/gists', 'https://api.github.com/users/rsl/starred', 'https://api.github.com/users/rsl/repos', 'https://api.github.com/users/rsl/events', 'https://api.github.com/users/rsl/received_events', 0); +INSERT INTO `developer` VALUES (93, 'imownbey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Ownbey', NULL, 'http://twitter.com/iano', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 89, 66, 0, 0, 0, '2008-01-29T23:13:44Z', '2024-11-04T16:15:50Z', 'https://avatars.githubusercontent.com/u/93?v=4', 'https://api.github.com/users/imownbey', 'https://github.com/imownbey', 'https://api.github.com/users/imownbey/followers', 'https://api.github.com/users/imownbey/following', 'https://api.github.com/users/imownbey/gists', 'https://api.github.com/users/imownbey/starred', 'https://api.github.com/users/imownbey/repos', 'https://api.github.com/users/imownbey/events', 'https://api.github.com/users/imownbey/received_events', 0); +INSERT INTO `developer` VALUES (94, 'dylanegan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dylan Egan', NULL, 'http://dylanegan.com', 'Sydney, Australia', NULL, NULL, NULL, NULL, 0, 0, 127, 0, 0, 0, 0, '2008-01-29T23:15:18Z', '2024-10-07T20:22:35Z', 'https://avatars.githubusercontent.com/u/94?v=4', 'https://api.github.com/users/dylanegan', 'https://github.com/dylanegan', 'https://api.github.com/users/dylanegan/followers', 'https://api.github.com/users/dylanegan/following', 'https://api.github.com/users/dylanegan/gists', 'https://api.github.com/users/dylanegan/starred', 'https://api.github.com/users/dylanegan/repos', 'https://api.github.com/users/dylanegan/events', 'https://api.github.com/users/dylanegan/received_events', 0); +INSERT INTO `developer` VALUES (95, 'jm', 'C', 4.1873748304213745, 0, 0, 0, 0, 0, 0, 'Jeremy McAnally', '@sequoiacapital', 'http://jeremymcanally.com', 'Orlando, FL', 'jeremymcanally@gmail.com', NULL, 'I make stuff.', 'door_holder', 0, 0, 529, 31, 0, 0, 0, '2008-01-29T23:15:32Z', '2024-10-14T22:42:31Z', 'https://avatars.githubusercontent.com/u/95?v=4', 'https://api.github.com/users/jm', 'https://github.com/jm', 'https://api.github.com/users/jm/followers', 'https://api.github.com/users/jm/following', 'https://api.github.com/users/jm/gists', 'https://api.github.com/users/jm/starred', 'https://api.github.com/users/jm/repos', 'https://api.github.com/users/jm/events', 'https://api.github.com/users/jm/received_events', 0); +INSERT INTO `developer` VALUES (100, 'kmarsh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Marsh', NULL, 'https://kevinmarsh.com', 'Perrysburg, OH', 'kevin.marsh@gmail.com', NULL, NULL, 'willcodeforfoo', 0, 0, 69, 23, 0, 0, 0, '2008-01-29T23:48:24Z', '2024-10-13T23:00:46Z', 'https://avatars.githubusercontent.com/u/100?v=4', 'https://api.github.com/users/kmarsh', 'https://github.com/kmarsh', 'https://api.github.com/users/kmarsh/followers', 'https://api.github.com/users/kmarsh/following', 'https://api.github.com/users/kmarsh/gists', 'https://api.github.com/users/kmarsh/starred', 'https://api.github.com/users/kmarsh/repos', 'https://api.github.com/users/kmarsh/events', 'https://api.github.com/users/kmarsh/received_events', 0); +INSERT INTO `developer` VALUES (101, 'jvantuyl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jayson Vantuyl', NULL, 'http://souja.net', 'San Francisco, California, USA', 'jayson@aggressive.ly', 'true', NULL, 'jvantuyl', 0, 0, 62, 15, 0, 0, 0, '2008-01-30T01:11:50Z', '2024-08-09T20:36:48Z', 'https://avatars.githubusercontent.com/u/101?v=4', 'https://api.github.com/users/jvantuyl', 'https://github.com/jvantuyl', 'https://api.github.com/users/jvantuyl/followers', 'https://api.github.com/users/jvantuyl/following', 'https://api.github.com/users/jvantuyl/gists', 'https://api.github.com/users/jvantuyl/starred', 'https://api.github.com/users/jvantuyl/repos', 'https://api.github.com/users/jvantuyl/events', 'https://api.github.com/users/jvantuyl/received_events', 0); +INSERT INTO `developer` VALUES (102, 'BrianTheCoder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Smith', 'DSTLD', 'http://brianthecoder.com', 'Santa Monica,CA', 'wbsmith83@gmail.com', NULL, NULL, NULL, 0, 0, 96, 32, 0, 0, 0, '2008-01-30T02:22:32Z', '2020-11-06T04:09:16Z', 'https://avatars.githubusercontent.com/u/102?v=4', 'https://api.github.com/users/BrianTheCoder', 'https://github.com/BrianTheCoder', 'https://api.github.com/users/BrianTheCoder/followers', 'https://api.github.com/users/BrianTheCoder/following', 'https://api.github.com/users/BrianTheCoder/gists', 'https://api.github.com/users/BrianTheCoder/starred', 'https://api.github.com/users/BrianTheCoder/repos', 'https://api.github.com/users/BrianTheCoder/events', 'https://api.github.com/users/BrianTheCoder/received_events', 0); +INSERT INTO `developer` VALUES (103, 'freeformz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Edward Muller', 'Fastly', 'icanhazdowntime.org', 'PDX Area, OR', 'freeformz@gmail.com', NULL, 'Staff @Fastly - Formerly @SalesForce/@Heroku, @engineyard, Interlix, Geekerz, @learningpatterns & UBS (Via PaineWebber)', NULL, 0, 0, 228, 39, 0, 0, 0, '2008-01-30T06:19:57Z', '2024-10-21T01:25:29Z', 'https://avatars.githubusercontent.com/u/103?v=4', 'https://api.github.com/users/freeformz', 'https://github.com/freeformz', 'https://api.github.com/users/freeformz/followers', 'https://api.github.com/users/freeformz/following', 'https://api.github.com/users/freeformz/gists', 'https://api.github.com/users/freeformz/starred', 'https://api.github.com/users/freeformz/repos', 'https://api.github.com/users/freeformz/events', 'https://api.github.com/users/freeformz/received_events', 0); +INSERT INTO `developer` VALUES (104, 'hassox', 'C', 1.2035317612972607, 0, 0, 0, 0, 0, 0, 'Daniel Neighman', NULL, '', 'Austin', 'dneighman@gmail.com', NULL, NULL, NULL, 0, 0, 355, 77, 0, 0, 0, '2008-01-30T06:31:06Z', '2024-09-04T17:44:44Z', 'https://avatars.githubusercontent.com/u/104?v=4', 'https://api.github.com/users/hassox', 'https://github.com/hassox', 'https://api.github.com/users/hassox/followers', 'https://api.github.com/users/hassox/following', 'https://api.github.com/users/hassox/gists', 'https://api.github.com/users/hassox/starred', 'https://api.github.com/users/hassox/repos', 'https://api.github.com/users/hassox/events', 'https://api.github.com/users/hassox/received_events', 0); +INSERT INTO `developer` VALUES (105, 'automatthew', 'C', 0, 0, 0, 0, 0, 0, 0, 'automatthew', NULL, '', '未知', 'automatthew@gmail.com', NULL, NULL, NULL, 0, 0, 77, 16, 0, 0, 0, '2008-01-30T19:00:58Z', '2021-03-10T15:25:24Z', 'https://avatars.githubusercontent.com/u/105?v=4', 'https://api.github.com/users/automatthew', 'https://github.com/automatthew', 'https://api.github.com/users/automatthew/followers', 'https://api.github.com/users/automatthew/following', 'https://api.github.com/users/automatthew/gists', 'https://api.github.com/users/automatthew/starred', 'https://api.github.com/users/automatthew/repos', 'https://api.github.com/users/automatthew/events', 'https://api.github.com/users/automatthew/received_events', 0); +INSERT INTO `developer` VALUES (106, 'queso', 'C', 1.0491950508253238, 0, 0, 0, 0, 0, 0, 'Josh Owens', 'Kickstand', 'http://joshowens.dev/', 'Cincinnati, Oh', 'Joshua.owens@gmail.com', 'true', NULL, NULL, 0, 0, 346, 23, 0, 0, 0, '2008-01-30T19:48:45Z', '2024-10-28T00:50:14Z', 'https://avatars.githubusercontent.com/u/106?v=4', 'https://api.github.com/users/queso', 'https://github.com/queso', 'https://api.github.com/users/queso/followers', 'https://api.github.com/users/queso/following', 'https://api.github.com/users/queso/gists', 'https://api.github.com/users/queso/starred', 'https://api.github.com/users/queso/repos', 'https://api.github.com/users/queso/events', 'https://api.github.com/users/queso/received_events', 0); +INSERT INTO `developer` VALUES (107, 'lancecarlson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lance Carlson', 'HealPay', 'https://lancecarlson.com', 'Ann Arbor, MI', NULL, 'true', NULL, NULL, 0, 0, 134, 103, 0, 0, 0, '2008-01-30T19:53:29Z', '2024-10-08T13:29:46Z', 'https://avatars.githubusercontent.com/u/107?v=4', 'https://api.github.com/users/lancecarlson', 'https://github.com/lancecarlson', 'https://api.github.com/users/lancecarlson/followers', 'https://api.github.com/users/lancecarlson/following', 'https://api.github.com/users/lancecarlson/gists', 'https://api.github.com/users/lancecarlson/starred', 'https://api.github.com/users/lancecarlson/repos', 'https://api.github.com/users/lancecarlson/events', 'https://api.github.com/users/lancecarlson/received_events', 0); +INSERT INTO `developer` VALUES (108, 'drnic', 'B-', 25.794514296492547, 0, 0, 0, 0, 0, 0, 'Dr Nic Williams', '@mocra ', 'https://mocra.com', 'Brisbane, Australia', 'drnicwilliams@gmail.com', NULL, 'CEO of Mocra Pty Ltd', 'drnic', 0, 0, 1789, 12, 0, 0, 0, '2008-01-30T23:19:18Z', '2024-10-04T04:35:25Z', 'https://avatars.githubusercontent.com/u/108?v=4', 'https://api.github.com/users/drnic', 'https://github.com/drnic', 'https://api.github.com/users/drnic/followers', 'https://api.github.com/users/drnic/following', 'https://api.github.com/users/drnic/gists', 'https://api.github.com/users/drnic/starred', 'https://api.github.com/users/drnic/repos', 'https://api.github.com/users/drnic/events', 'https://api.github.com/users/drnic/received_events', 0); +INSERT INTO `developer` VALUES (109, 'lukesutton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Matthew Sutton', NULL, 'lukematthewsutton.com', 'South Australia', NULL, NULL, NULL, NULL, 0, 0, 56, 4, 0, 0, 0, '2008-01-31T04:01:02Z', '2024-10-21T23:10:13Z', 'https://avatars.githubusercontent.com/u/109?v=4', 'https://api.github.com/users/lukesutton', 'https://github.com/lukesutton', 'https://api.github.com/users/lukesutton/followers', 'https://api.github.com/users/lukesutton/following', 'https://api.github.com/users/lukesutton/gists', 'https://api.github.com/users/lukesutton/starred', 'https://api.github.com/users/lukesutton/repos', 'https://api.github.com/users/lukesutton/events', 'https://api.github.com/users/lukesutton/received_events', 0); +INSERT INTO `developer` VALUES (110, 'danwrong', 'C', 1.2378288080688022, 0, 0, 0, 0, 0, 0, 'Dan Webb', 'Twitter', 'http://danwebb.net', 'London', NULL, NULL, NULL, NULL, 0, 0, 357, 31, 0, 0, 0, '2008-01-31T08:51:31Z', '2024-09-05T17:15:42Z', 'https://avatars.githubusercontent.com/u/110?v=4', 'https://api.github.com/users/danwrong', 'https://github.com/danwrong', 'https://api.github.com/users/danwrong/followers', 'https://api.github.com/users/danwrong/following', 'https://api.github.com/users/danwrong/gists', 'https://api.github.com/users/danwrong/starred', 'https://api.github.com/users/danwrong/repos', 'https://api.github.com/users/danwrong/events', 'https://api.github.com/users/danwrong/received_events', 0); +INSERT INTO `developer` VALUES (111, 'HamptonMakes', 'C', 6.72535629151545, 0, 0, 0, 0, 0, 0, 'Hampton Lintorn-Catlin', NULL, 'https://www.hamptonmakes.com', 'New York, NY', 'hampton@hamptoncatlin.com', 'true', 'I make things.\r\nDeveloper, Leader, Speaker.\r\nInvented: Haml, Sass/SCSS, Wikipedia for iOS & Android, Wordset open-source dictionary', NULL, 0, 0, 677, 6, 0, 0, 0, '2008-01-31T17:03:51Z', '2024-10-16T17:43:38Z', 'https://avatars.githubusercontent.com/u/111?v=4', 'https://api.github.com/users/HamptonMakes', 'https://github.com/HamptonMakes', 'https://api.github.com/users/HamptonMakes/followers', 'https://api.github.com/users/HamptonMakes/following', 'https://api.github.com/users/HamptonMakes/gists', 'https://api.github.com/users/HamptonMakes/starred', 'https://api.github.com/users/HamptonMakes/repos', 'https://api.github.com/users/HamptonMakes/events', 'https://api.github.com/users/HamptonMakes/received_events', 0); +INSERT INTO `developer` VALUES (112, 'jfrost', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Frost', 'PostgreSQL Experts, Inc.', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 24, 1, 0, 0, 0, '2008-01-31T22:14:27Z', '2023-10-12T14:18:42Z', 'https://avatars.githubusercontent.com/u/112?v=4', 'https://api.github.com/users/jfrost', 'https://github.com/jfrost', 'https://api.github.com/users/jfrost/followers', 'https://api.github.com/users/jfrost/following', 'https://api.github.com/users/jfrost/gists', 'https://api.github.com/users/jfrost/starred', 'https://api.github.com/users/jfrost/repos', 'https://api.github.com/users/jfrost/events', 'https://api.github.com/users/jfrost/received_events', 0); +INSERT INTO `developer` VALUES (113, 'mattetti', 'C+', 13.670508262752612, 0, 0, 0, 0, 0, 0, 'Matt Aimonetti', '@Splice', 'https://matt.aimonetti.net', 'Los Angeles, CA', NULL, NULL, 'Splice cofounder', NULL, 0, 0, 1082, 10, 0, 0, 0, '2008-01-31T22:56:31Z', '2024-09-20T23:35:43Z', 'https://avatars.githubusercontent.com/u/113?v=4', 'https://api.github.com/users/mattetti', 'https://github.com/mattetti', 'https://api.github.com/users/mattetti/followers', 'https://api.github.com/users/mattetti/following', 'https://api.github.com/users/mattetti/gists', 'https://api.github.com/users/mattetti/starred', 'https://api.github.com/users/mattetti/repos', 'https://api.github.com/users/mattetti/events', 'https://api.github.com/users/mattetti/received_events', 0); +INSERT INTO `developer` VALUES (114, 'ctennis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Caleb Tennis', NULL, 'https://caleb.tennis', 'Indiana, USA', 'c@leb.tennis', NULL, NULL, NULL, 0, 0, 30, 0, 0, 0, 0, '2008-01-31T23:43:14Z', '2024-08-27T22:21:06Z', 'https://avatars.githubusercontent.com/u/114?v=4', 'https://api.github.com/users/ctennis', 'https://github.com/ctennis', 'https://api.github.com/users/ctennis/followers', 'https://api.github.com/users/ctennis/following', 'https://api.github.com/users/ctennis/gists', 'https://api.github.com/users/ctennis/starred', 'https://api.github.com/users/ctennis/repos', 'https://api.github.com/users/ctennis/events', 'https://api.github.com/users/ctennis/received_events', 0); +INSERT INTO `developer` VALUES (115, 'lawrencepit', 'C', 0, 0, 0, 0, 0, 0, 0, 'L Pit', NULL, '', '未知', 'lawrence.pit@gmail.com', NULL, NULL, NULL, 0, 0, 38, 6, 0, 0, 0, '2008-01-31T23:57:16Z', '2024-10-30T07:16:49Z', 'https://avatars.githubusercontent.com/u/115?v=4', 'https://api.github.com/users/lawrencepit', 'https://github.com/lawrencepit', 'https://api.github.com/users/lawrencepit/followers', 'https://api.github.com/users/lawrencepit/following', 'https://api.github.com/users/lawrencepit/gists', 'https://api.github.com/users/lawrencepit/starred', 'https://api.github.com/users/lawrencepit/repos', 'https://api.github.com/users/lawrencepit/events', 'https://api.github.com/users/lawrencepit/received_events', 0); +INSERT INTO `developer` VALUES (116, 'marcjeanson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Jeanson', 'Redline Software Inc.', 'redlinesoftware.com', 'Earth', 'github@marcjeanson.com', NULL, NULL, NULL, 0, 0, 48, 22, 0, 0, 0, '2008-02-01T01:27:19Z', '2024-10-24T08:46:30Z', 'https://avatars.githubusercontent.com/u/116?v=4', 'https://api.github.com/users/marcjeanson', 'https://github.com/marcjeanson', 'https://api.github.com/users/marcjeanson/followers', 'https://api.github.com/users/marcjeanson/following', 'https://api.github.com/users/marcjeanson/gists', 'https://api.github.com/users/marcjeanson/starred', 'https://api.github.com/users/marcjeanson/repos', 'https://api.github.com/users/marcjeanson/events', 'https://api.github.com/users/marcjeanson/received_events', 0); +INSERT INTO `developer` VALUES (117, 'grempe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Glenn Rempe', 'Truestamp Inc.', 'https://www.truestamp.com/', 'Virginia, US', NULL, NULL, 'CEO @truestamp\r\n; interested in coding, cryptography, data security & integrity: ex silicon valley startups VP Eng, ex @accenture', NULL, 0, 0, 133, 27, 0, 0, 0, '2008-02-01T04:12:42Z', '2024-09-17T15:31:47Z', 'https://avatars.githubusercontent.com/u/117?v=4', 'https://api.github.com/users/grempe', 'https://github.com/grempe', 'https://api.github.com/users/grempe/followers', 'https://api.github.com/users/grempe/following', 'https://api.github.com/users/grempe/gists', 'https://api.github.com/users/grempe/starred', 'https://api.github.com/users/grempe/repos', 'https://api.github.com/users/grempe/events', 'https://api.github.com/users/grempe/received_events', 0); +INSERT INTO `developer` VALUES (118, 'peterc', 'C', 6.828247431830071, 0, 0, 0, 0, 0, 0, 'Peter Cooper', '@realCooperpress ', 'https://twitter.com/cooperx86', 'United Kingdom', 'git@peterc.org', NULL, NULL, NULL, 0, 0, 683, 62, 0, 0, 0, '2008-02-02T01:00:36Z', '2024-07-01T10:20:44Z', 'https://avatars.githubusercontent.com/u/118?v=4', 'https://api.github.com/users/peterc', 'https://github.com/peterc', 'https://api.github.com/users/peterc/followers', 'https://api.github.com/users/peterc/following', 'https://api.github.com/users/peterc/gists', 'https://api.github.com/users/peterc/starred', 'https://api.github.com/users/peterc/repos', 'https://api.github.com/users/peterc/events', 'https://api.github.com/users/peterc/received_events', 0); +INSERT INTO `developer` VALUES (119, 'ministrycentered', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ministry Centered Technologies', NULL, 'https://www.planningcenter.com', 'Carlsbad, CA', NULL, NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-02-02T03:50:26Z', '2024-06-18T01:56:02Z', 'https://avatars.githubusercontent.com/u/119?v=4', 'https://api.github.com/users/ministrycentered', 'https://github.com/ministrycentered', 'https://api.github.com/users/ministrycentered/followers', 'https://api.github.com/users/ministrycentered/following', 'https://api.github.com/users/ministrycentered/gists', 'https://api.github.com/users/ministrycentered/starred', 'https://api.github.com/users/ministrycentered/repos', 'https://api.github.com/users/ministrycentered/events', 'https://api.github.com/users/ministrycentered/received_events', 0); +INSERT INTO `developer` VALUES (120, 'afarnham', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Farnham', '@foreflight ', '', 'Houston, TX', NULL, NULL, 'iOS and Machine Learning developer.\r\n\r\nMy work account is @aaron-foreflight.\r\n\r\n', 'afarnham', 0, 0, 38, 20, 0, 0, 0, '2008-02-02T05:11:03Z', '2024-08-01T03:45:24Z', 'https://avatars.githubusercontent.com/u/120?v=4', 'https://api.github.com/users/afarnham', 'https://github.com/afarnham', 'https://api.github.com/users/afarnham/followers', 'https://api.github.com/users/afarnham/following', 'https://api.github.com/users/afarnham/gists', 'https://api.github.com/users/afarnham/starred', 'https://api.github.com/users/afarnham/repos', 'https://api.github.com/users/afarnham/events', 'https://api.github.com/users/afarnham/received_events', 0); +INSERT INTO `developer` VALUES (121, 'up_the_irons', 'C', 0, 0, 0, 0, 0, 0, 0, 'Garry Dolley', 'ARP Networks, Inc.', 'https://arpnetworks.com', 'Los Angeles', NULL, NULL, NULL, NULL, 0, 0, 45, 8, 0, 0, 0, '2008-02-02T10:59:51Z', '2024-10-30T23:45:53Z', 'https://avatars.githubusercontent.com/u/121?v=4', 'https://api.github.com/users/up_the_irons', 'https://github.com/up_the_irons', 'https://api.github.com/users/up_the_irons/followers', 'https://api.github.com/users/up_the_irons/following', 'https://api.github.com/users/up_the_irons/gists', 'https://api.github.com/users/up_the_irons/starred', 'https://api.github.com/users/up_the_irons/repos', 'https://api.github.com/users/up_the_irons/events', 'https://api.github.com/users/up_the_irons/received_events', 0); +INSERT INTO `developer` VALUES (122, 'cristibalan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cristi Balan', NULL, '', 'Everywhere', 'cristibalan@gmail.com', 'true', NULL, NULL, 0, 0, 96, 33, 0, 0, 0, '2008-02-02T11:29:45Z', '2024-10-15T02:00:57Z', 'https://avatars.githubusercontent.com/u/122?v=4', 'https://api.github.com/users/cristibalan', 'https://github.com/cristibalan', 'https://api.github.com/users/cristibalan/followers', 'https://api.github.com/users/cristibalan/following', 'https://api.github.com/users/cristibalan/gists', 'https://api.github.com/users/cristibalan/starred', 'https://api.github.com/users/cristibalan/repos', 'https://api.github.com/users/cristibalan/events', 'https://api.github.com/users/cristibalan/received_events', 0); +INSERT INTO `developer` VALUES (123, 'heavysixer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Daggett', 'Humansized Inc.', 'http://www.humansized.com', 'Kansas City', NULL, 'true', NULL, NULL, 0, 0, 107, 39, 0, 0, 0, '2008-02-02T15:06:53Z', '2024-10-04T15:58:24Z', 'https://avatars.githubusercontent.com/u/123?v=4', 'https://api.github.com/users/heavysixer', 'https://github.com/heavysixer', 'https://api.github.com/users/heavysixer/followers', 'https://api.github.com/users/heavysixer/following', 'https://api.github.com/users/heavysixer/gists', 'https://api.github.com/users/heavysixer/starred', 'https://api.github.com/users/heavysixer/repos', 'https://api.github.com/users/heavysixer/events', 'https://api.github.com/users/heavysixer/received_events', 0); +INSERT INTO `developer` VALUES (124, 'brosner', 'C', 11.85276478386091, 0, 0, 0, 0, 0, 0, 'Brian Rosner', NULL, 'https://brosner.com', 'Denver, CO', 'brosner@gmail.com', NULL, 'Staff Software Engineer', NULL, 0, 0, 976, 111, 0, 0, 0, '2008-02-02T19:03:54Z', '2024-07-15T20:55:58Z', 'https://avatars.githubusercontent.com/u/124?v=4', 'https://api.github.com/users/brosner', 'https://github.com/brosner', 'https://api.github.com/users/brosner/followers', 'https://api.github.com/users/brosner/following', 'https://api.github.com/users/brosner/gists', 'https://api.github.com/users/brosner/starred', 'https://api.github.com/users/brosner/repos', 'https://api.github.com/users/brosner/events', 'https://api.github.com/users/brosner/received_events', 0); +INSERT INTO `developer` VALUES (125, 'danielmorrison', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Morrison', 'Collective Idea @collectiveidea ', 'http://daniel.collectiveidea.com/blog', 'Holland, MI', 'daniel@collectiveidea.com', NULL, 'Founder of @collectiveidea.', 'danielmorrison', 0, 0, 125, 19, 0, 0, 0, '2008-02-02T19:46:35Z', '2024-11-02T19:16:38Z', 'https://avatars.githubusercontent.com/u/125?v=4', 'https://api.github.com/users/danielmorrison', 'https://github.com/danielmorrison', 'https://api.github.com/users/danielmorrison/followers', 'https://api.github.com/users/danielmorrison/following', 'https://api.github.com/users/danielmorrison/gists', 'https://api.github.com/users/danielmorrison/starred', 'https://api.github.com/users/danielmorrison/repos', 'https://api.github.com/users/danielmorrison/events', 'https://api.github.com/users/danielmorrison/received_events', 0); +INSERT INTO `developer` VALUES (126, 'danielharan', 'C', 0, 0, 0, 0, 70, 12, 0, 'Daniel Haran', NULL, 'https://noc.social/@danielharan', 'Montreal, QC, Canada', 'chebuctonian@gmail.com', NULL, NULL, NULL, 0, 0, 96, 35, 0, 0, 0, '2008-02-02T21:42:21Z', '2023-04-02T23:25:20Z', 'https://avatars.githubusercontent.com/u/126?v=4', 'https://api.github.com/users/danielharan', 'https://github.com/danielharan', 'https://api.github.com/users/danielharan/followers', 'https://api.github.com/users/danielharan/following', 'https://api.github.com/users/danielharan/gists', 'https://api.github.com/users/danielharan/starred', 'https://api.github.com/users/danielharan/repos', 'https://api.github.com/users/danielharan/events', 'https://api.github.com/users/danielharan/received_events', 0); +INSERT INTO `developer` VALUES (127, 'kvnsmth', 'C', 0, 0, 0, 0, 0, 0, 0, 'KLS', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 119, 0, 0, 0, 0, '2008-02-02T22:00:03Z', '2023-06-13T17:20:54Z', 'https://avatars.githubusercontent.com/u/127?v=4', 'https://api.github.com/users/kvnsmth', 'https://github.com/kvnsmth', 'https://api.github.com/users/kvnsmth/followers', 'https://api.github.com/users/kvnsmth/following', 'https://api.github.com/users/kvnsmth/gists', 'https://api.github.com/users/kvnsmth/starred', 'https://api.github.com/users/kvnsmth/repos', 'https://api.github.com/users/kvnsmth/events', 'https://api.github.com/users/kvnsmth/received_events', 0); +INSERT INTO `developer` VALUES (128, 'collectiveidea', 'C', 0, 0, 0, 0, 0, 0, 0, 'Collective Idea', NULL, 'https://collectiveidea.com', 'United States of America', 'info@collectiveidea.com', NULL, 'We build software to solve real problems.', NULL, 0, 0, 50, 0, 0, 0, 0, '2008-02-02T22:34:46Z', '2024-08-19T19:31:58Z', 'https://avatars.githubusercontent.com/u/128?v=4', 'https://api.github.com/users/collectiveidea', 'https://github.com/collectiveidea', 'https://api.github.com/users/collectiveidea/followers', 'https://api.github.com/users/collectiveidea/following', 'https://api.github.com/users/collectiveidea/gists', 'https://api.github.com/users/collectiveidea/starred', 'https://api.github.com/users/collectiveidea/repos', 'https://api.github.com/users/collectiveidea/events', 'https://api.github.com/users/collectiveidea/received_events', 0); +INSERT INTO `developer` VALUES (129, 'canadaduane', 'C', 0, 0, 0, 0, 0, 0, 0, 'Duane Johnson', '@relm-us ', 'https://www.relm.us', 'Salt Lake City, UT, USA', 'duane.johnson@gmail.com', NULL, 'Artist, inventor, software engineer, hardware hacker, founder of Make Salt Lake and Relm', NULL, 0, 0, 182, 22, 0, 0, 0, '2008-02-02T23:25:39Z', '2024-09-27T14:52:49Z', 'https://avatars.githubusercontent.com/u/129?v=4', 'https://api.github.com/users/canadaduane', 'https://github.com/canadaduane', 'https://api.github.com/users/canadaduane/followers', 'https://api.github.com/users/canadaduane/following', 'https://api.github.com/users/canadaduane/gists', 'https://api.github.com/users/canadaduane/starred', 'https://api.github.com/users/canadaduane/repos', 'https://api.github.com/users/canadaduane/events', 'https://api.github.com/users/canadaduane/received_events', 0); +INSERT INTO `developer` VALUES (130, 'corasaurus-hex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cora Sutton', '@acuitymd', 'https://dev.to/corasaurus_hex', 'Milwaukee, WI', 'cora@sutton.me', NULL, 'cljdoc maintainer, CTF Circle member, keyboard cowgirl. Lift while you climb. People > technology.', 'corasaurus_hex', 0, 0, 110, 3, 0, 0, 0, '2008-02-03T04:20:22Z', '2024-10-20T20:35:31Z', 'https://avatars.githubusercontent.com/u/130?v=4', 'https://api.github.com/users/corasaurus-hex', 'https://github.com/corasaurus-hex', 'https://api.github.com/users/corasaurus-hex/followers', 'https://api.github.com/users/corasaurus-hex/following', 'https://api.github.com/users/corasaurus-hex/gists', 'https://api.github.com/users/corasaurus-hex/starred', 'https://api.github.com/users/corasaurus-hex/repos', 'https://api.github.com/users/corasaurus-hex/events', 'https://api.github.com/users/corasaurus-hex/received_events', 0); +INSERT INTO `developer` VALUES (131, 'dstrelau', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dean Strelau', '@honeycombio', '', 'Minneapolis, MN', NULL, NULL, 'I am the old man that yells at the cloud.', NULL, 0, 0, 78, 43, 0, 0, 0, '2008-02-03T14:59:12Z', '2024-08-18T19:50:08Z', 'https://avatars.githubusercontent.com/u/131?v=4', 'https://api.github.com/users/dstrelau', 'https://github.com/dstrelau', 'https://api.github.com/users/dstrelau/followers', 'https://api.github.com/users/dstrelau/following', 'https://api.github.com/users/dstrelau/gists', 'https://api.github.com/users/dstrelau/starred', 'https://api.github.com/users/dstrelau/repos', 'https://api.github.com/users/dstrelau/events', 'https://api.github.com/users/dstrelau/received_events', 0); +INSERT INTO `developer` VALUES (132, 'sunny', 'C', 1.0491950508253238, 0, 0, 0, 0, 0, 0, 'Sunny Ripert', 'Cults.', 'https://sunfox.org/', 'Paris, France', 'sunny@sunfox.org', NULL, 'Ruby, Rails & Internets \r\n@Cults. Previously @KissKissBankBank', NULL, 0, 0, 346, 138, 0, 0, 0, '2008-02-03T15:43:43Z', '2024-10-31T08:45:49Z', 'https://avatars.githubusercontent.com/u/132?v=4', 'https://api.github.com/users/sunny', 'https://github.com/sunny', 'https://api.github.com/users/sunny/followers', 'https://api.github.com/users/sunny/following', 'https://api.github.com/users/sunny/gists', 'https://api.github.com/users/sunny/starred', 'https://api.github.com/users/sunny/repos', 'https://api.github.com/users/sunny/events', 'https://api.github.com/users/sunny/received_events', 0); +INSERT INTO `developer` VALUES (133, 'dkubb', 'C', 4.581790868294103, 0, 0, 0, 0, 0, 0, 'Dan Kubb', 'Betterment', '', 'Mission, BC, Canada', 'github@dan.kubb.ca', 'true', NULL, 'dkubb', 0, 0, 552, 12, 0, 0, 0, '2008-02-03T20:40:13Z', '2024-08-12T16:09:14Z', 'https://avatars.githubusercontent.com/u/133?v=4', 'https://api.github.com/users/dkubb', 'https://github.com/dkubb', 'https://api.github.com/users/dkubb/followers', 'https://api.github.com/users/dkubb/following', 'https://api.github.com/users/dkubb/gists', 'https://api.github.com/users/dkubb/starred', 'https://api.github.com/users/dkubb/repos', 'https://api.github.com/users/dkubb/events', 'https://api.github.com/users/dkubb/received_events', 0); +INSERT INTO `developer` VALUES (134, 'jnicklas', 'C', 9.794941977568417, 0, 0, 0, 0, 0, 0, 'Jonas Nicklas', 'JNicklas Consulting', 'https://blog.jnicklas.com/', 'Gothenburg, Sweden', 'jonas@jnicklas.com', NULL, 'Freelance developer working with Rust, Elixir, Phoenix, Ruby, Rails, JavaScript among other things. Open source enthusiast. Dancer.', NULL, 0, 0, 856, 8, 0, 0, 0, '2008-02-03T20:43:50Z', '2024-07-25T13:44:34Z', 'https://avatars.githubusercontent.com/u/134?v=4', 'https://api.github.com/users/jnicklas', 'https://github.com/jnicklas', 'https://api.github.com/users/jnicklas/followers', 'https://api.github.com/users/jnicklas/following', 'https://api.github.com/users/jnicklas/gists', 'https://api.github.com/users/jnicklas/starred', 'https://api.github.com/users/jnicklas/repos', 'https://api.github.com/users/jnicklas/events', 'https://api.github.com/users/jnicklas/received_events', 0); +INSERT INTO `developer` VALUES (135, 'richcollins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rich Collins', 'Cofactor Software', 'http://www.cofactorsoftware.com/', 'San Francisco, CA', 'richcollins@gmail.com', NULL, NULL, NULL, 0, 0, 60, 4, 0, 0, 0, '2008-02-03T21:11:25Z', '2024-08-27T18:53:13Z', 'https://avatars.githubusercontent.com/u/135?v=4', 'https://api.github.com/users/richcollins', 'https://github.com/richcollins', 'https://api.github.com/users/richcollins/followers', 'https://api.github.com/users/richcollins/following', 'https://api.github.com/users/richcollins/gists', 'https://api.github.com/users/richcollins/starred', 'https://api.github.com/users/richcollins/repos', 'https://api.github.com/users/richcollins/events', 'https://api.github.com/users/richcollins/received_events', 0); +INSERT INTO `developer` VALUES (136, 'simonjefford', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Jefford', NULL, 'http://sjjdev.com', 'Latent Space', NULL, NULL, NULL, NULL, 0, 0, 38, 3, 0, 0, 0, '2008-02-03T21:35:34Z', '2024-09-29T11:56:51Z', 'https://avatars.githubusercontent.com/u/136?v=4', 'https://api.github.com/users/simonjefford', 'https://github.com/simonjefford', 'https://api.github.com/users/simonjefford/followers', 'https://api.github.com/users/simonjefford/following', 'https://api.github.com/users/simonjefford/gists', 'https://api.github.com/users/simonjefford/starred', 'https://api.github.com/users/simonjefford/repos', 'https://api.github.com/users/simonjefford/events', 'https://api.github.com/users/simonjefford/received_events', 0); +INSERT INTO `developer` VALUES (137, 'josh', 'B-', 37.48980724558821, 0, 0, 0, 0, 0, 0, 'Joshua Peek', NULL, '', 'Munich, Germany', NULL, NULL, NULL, NULL, 0, 0, 2471, 250, 0, 0, 0, '2008-02-03T22:05:54Z', '2024-11-05T01:08:24Z', 'https://avatars.githubusercontent.com/u/137?v=4', 'https://api.github.com/users/josh', 'https://github.com/josh', 'https://api.github.com/users/josh/followers', 'https://api.github.com/users/josh/following', 'https://api.github.com/users/josh/gists', 'https://api.github.com/users/josh/starred', 'https://api.github.com/users/josh/repos', 'https://api.github.com/users/josh/events', 'https://api.github.com/users/josh/received_events', 0); +INSERT INTO `developer` VALUES (138, 'stevedekorte', 'C', 6.673910721358135, 0, 0, 0, 0, 0, 0, 'Steve Dekorte', NULL, 'https://dekorte.com', 'New Gillington, WI', 'steve@dekorte.com', NULL, 'Io language author, writing frameworks for low/no code apps', 'stevedekorte', 0, 0, 674, 17, 0, 0, 0, '2008-02-03T23:10:34Z', '2024-08-20T20:34:13Z', 'https://avatars.githubusercontent.com/u/138?v=4', 'https://api.github.com/users/stevedekorte', 'https://github.com/stevedekorte', 'https://api.github.com/users/stevedekorte/followers', 'https://api.github.com/users/stevedekorte/following', 'https://api.github.com/users/stevedekorte/gists', 'https://api.github.com/users/stevedekorte/starred', 'https://api.github.com/users/stevedekorte/repos', 'https://api.github.com/users/stevedekorte/events', 'https://api.github.com/users/stevedekorte/received_events', 0); +INSERT INTO `developer` VALUES (139, 'leahneukirchen', 'C+', 17.18595555683562, 0, 0, 0, 0, 0, 0, 'Leah Neukirchen', NULL, 'http://leahneukirchen.org/', 'USA', 'leah@vuxu.org', NULL, 'she/her · they/them', NULL, 0, 0, 1287, 9, 0, 0, 0, '2008-02-03T23:13:58Z', '2024-10-22T11:18:21Z', 'https://avatars.githubusercontent.com/u/139?v=4', 'https://api.github.com/users/leahneukirchen', 'https://github.com/leahneukirchen', 'https://api.github.com/users/leahneukirchen/followers', 'https://api.github.com/users/leahneukirchen/following', 'https://api.github.com/users/leahneukirchen/gists', 'https://api.github.com/users/leahneukirchen/starred', 'https://api.github.com/users/leahneukirchen/repos', 'https://api.github.com/users/leahneukirchen/events', 'https://api.github.com/users/leahneukirchen/received_events', 0); +INSERT INTO `developer` VALUES (140, 'jwreagor', 'C', 0, 0, 0, 0, 0, 0, 0, 'J R', NULL, '', 'Orlando, FL', NULL, NULL, NULL, NULL, 0, 0, 54, 8, 0, 0, 0, '2008-02-04T15:09:45Z', '2024-08-14T00:13:56Z', 'https://avatars.githubusercontent.com/u/140?v=4', 'https://api.github.com/users/jwreagor', 'https://github.com/jwreagor', 'https://api.github.com/users/jwreagor/followers', 'https://api.github.com/users/jwreagor/following', 'https://api.github.com/users/jwreagor/gists', 'https://api.github.com/users/jwreagor/starred', 'https://api.github.com/users/jwreagor/repos', 'https://api.github.com/users/jwreagor/events', 'https://api.github.com/users/jwreagor/received_events', 0); +INSERT INTO `developer` VALUES (141, 'technomancy', 'B-', 31.453527013796904, 0, 0, 0, 0, 0, 0, 'Phil Hagelberg', NULL, 'https://technomancy.us/colophon', 'GA', 'phil@hagelb.org', NULL, 'https://github.com/technomancy?utm_content=site-enterprise-button&utm_source=corporate-monopoly&utm_medium=website&utm_campaign=stop-using-github-geez', NULL, 0, 0, 2119, 0, 0, 0, 0, '2008-02-05T00:17:41Z', '2024-10-15T18:57:39Z', 'https://avatars.githubusercontent.com/u/141?v=4', 'https://api.github.com/users/technomancy', 'https://github.com/technomancy', 'https://api.github.com/users/technomancy/followers', 'https://api.github.com/users/technomancy/following', 'https://api.github.com/users/technomancy/gists', 'https://api.github.com/users/technomancy/starred', 'https://api.github.com/users/technomancy/repos', 'https://api.github.com/users/technomancy/events', 'https://api.github.com/users/technomancy/received_events', 0); +INSERT INTO `developer` VALUES (142, 'kenphused', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ken Nordquist', NULL, 'http://geekystuff.net', 'Nashville, TN', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-05T03:18:09Z', '2024-10-21T15:42:24Z', 'https://avatars.githubusercontent.com/u/142?v=4', 'https://api.github.com/users/kenphused', 'https://github.com/kenphused', 'https://api.github.com/users/kenphused/followers', 'https://api.github.com/users/kenphused/following', 'https://api.github.com/users/kenphused/gists', 'https://api.github.com/users/kenphused/starred', 'https://api.github.com/users/kenphused/repos', 'https://api.github.com/users/kenphused/events', 'https://api.github.com/users/kenphused/received_events', 0); +INSERT INTO `developer` VALUES (143, 'rubyist', 'C', 1.8723241733423213, 0, 0, 0, 0, 0, 0, 'Scott Barron', '@Frameio', '', 'London, UK', NULL, NULL, 'I\'ve narrowed the activity to terminal 23.', NULL, 0, 0, 394, 0, 0, 0, 0, '2008-02-05T15:03:25Z', '2024-09-29T00:44:14Z', 'https://avatars.githubusercontent.com/u/143?v=4', 'https://api.github.com/users/rubyist', 'https://github.com/rubyist', 'https://api.github.com/users/rubyist/followers', 'https://api.github.com/users/rubyist/following', 'https://api.github.com/users/rubyist/gists', 'https://api.github.com/users/rubyist/starred', 'https://api.github.com/users/rubyist/repos', 'https://api.github.com/users/rubyist/events', 'https://api.github.com/users/rubyist/received_events', 0); +INSERT INTO `developer` VALUES (144, 'ogc', 'C', 0, 0, 0, 0, 0, 0, 0, 'OGC', NULL, 'http://www.ogtastic.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-05T17:24:58Z', '2020-02-17T23:56:23Z', 'https://avatars.githubusercontent.com/u/144?v=4', 'https://api.github.com/users/ogc', 'https://github.com/ogc', 'https://api.github.com/users/ogc/followers', 'https://api.github.com/users/ogc/following', 'https://api.github.com/users/ogc/gists', 'https://api.github.com/users/ogc/starred', 'https://api.github.com/users/ogc/repos', 'https://api.github.com/users/ogc/events', 'https://api.github.com/users/ogc/received_events', 0); +INSERT INTO `developer` VALUES (145, 'lazyatom', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Adam', '@exciting-io ', 'interblah.net', '未知', 'james@lazyatom.com', NULL, 'I\'m interested in simple systems that produce & manage complex behaviours.', 'lazyatom', 0, 0, 215, 18, 0, 0, 0, '2008-02-05T23:18:56Z', '2024-10-10T08:52:22Z', 'https://avatars.githubusercontent.com/u/145?v=4', 'https://api.github.com/users/lazyatom', 'https://github.com/lazyatom', 'https://api.github.com/users/lazyatom/followers', 'https://api.github.com/users/lazyatom/following', 'https://api.github.com/users/lazyatom/gists', 'https://api.github.com/users/lazyatom/starred', 'https://api.github.com/users/lazyatom/repos', 'https://api.github.com/users/lazyatom/events', 'https://api.github.com/users/lazyatom/received_events', 0); +INSERT INTO `developer` VALUES (147, 'jdhuntington', 'C', 0, 0, 0, 0, 0, 0, 0, 'JD Huntington', 'Microsoft', 'http://jdhuntington.com', 'Redmond, WA', 'jdhuntington@gmail.com', NULL, NULL, NULL, 0, 0, 62, 22, 0, 0, 0, '2008-02-06T18:33:55Z', '2024-10-14T14:08:35Z', 'https://avatars.githubusercontent.com/u/147?v=4', 'https://api.github.com/users/jdhuntington', 'https://github.com/jdhuntington', 'https://api.github.com/users/jdhuntington/followers', 'https://api.github.com/users/jdhuntington/following', 'https://api.github.com/users/jdhuntington/gists', 'https://api.github.com/users/jdhuntington/starred', 'https://api.github.com/users/jdhuntington/repos', 'https://api.github.com/users/jdhuntington/events', 'https://api.github.com/users/jdhuntington/received_events', 0); +INSERT INTO `developer` VALUES (148, 'nwebb', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-06T20:03:44Z', '2018-02-10T08:05:35Z', 'https://avatars.githubusercontent.com/u/148?v=4', 'https://api.github.com/users/nwebb', 'https://github.com/nwebb', 'https://api.github.com/users/nwebb/followers', 'https://api.github.com/users/nwebb/following', 'https://api.github.com/users/nwebb/gists', 'https://api.github.com/users/nwebb/starred', 'https://api.github.com/users/nwebb/repos', 'https://api.github.com/users/nwebb/events', 'https://api.github.com/users/nwebb/received_events', 0); +INSERT INTO `developer` VALUES (149, 'nsutton', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-06T20:40:02Z', '2019-06-05T00:07:39Z', 'https://avatars.githubusercontent.com/u/149?v=4', 'https://api.github.com/users/nsutton', 'https://github.com/nsutton', 'https://api.github.com/users/nsutton/followers', 'https://api.github.com/users/nsutton/following', 'https://api.github.com/users/nsutton/gists', 'https://api.github.com/users/nsutton/starred', 'https://api.github.com/users/nsutton/repos', 'https://api.github.com/users/nsutton/events', 'https://api.github.com/users/nsutton/received_events', 0); +INSERT INTO `developer` VALUES (150, 'sevenwire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sevenwire', NULL, 'sevenwire.com', 'Costa Mesa, CA', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-06T20:42:32Z', '2019-11-24T06:56:08Z', 'https://avatars.githubusercontent.com/u/150?v=4', 'https://api.github.com/users/sevenwire', 'https://github.com/sevenwire', 'https://api.github.com/users/sevenwire/followers', 'https://api.github.com/users/sevenwire/following', 'https://api.github.com/users/sevenwire/gists', 'https://api.github.com/users/sevenwire/starred', 'https://api.github.com/users/sevenwire/repos', 'https://api.github.com/users/sevenwire/events', 'https://api.github.com/users/sevenwire/received_events', 0); +INSERT INTO `developer` VALUES (151, 'brandonarbini', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandon Arbini', NULL, '', 'Costa Mesa, CA', 'b@arbini.dev', NULL, NULL, NULL, 0, 0, 30, 5, 0, 0, 0, '2008-02-06T21:03:05Z', '2024-10-13T22:58:33Z', 'https://avatars.githubusercontent.com/u/151?v=4', 'https://api.github.com/users/brandonarbini', 'https://github.com/brandonarbini', 'https://api.github.com/users/brandonarbini/followers', 'https://api.github.com/users/brandonarbini/following', 'https://api.github.com/users/brandonarbini/gists', 'https://api.github.com/users/brandonarbini/starred', 'https://api.github.com/users/brandonarbini/repos', 'https://api.github.com/users/brandonarbini/events', 'https://api.github.com/users/brandonarbini/received_events', 0); +INSERT INTO `developer` VALUES (152, 'al3x', 'C+', 13.24179517810834, 0, 0, 0, 0, 0, 0, 'Alex Payne', NULL, 'https://al3x.net/', 'Portland, Oregon, USA', 'al3x@al3x.net', NULL, NULL, NULL, 0, 0, 1057, 53, 0, 0, 0, '2008-02-07T01:44:36Z', '2024-04-02T19:31:19Z', 'https://avatars.githubusercontent.com/u/152?v=4', 'https://api.github.com/users/al3x', 'https://github.com/al3x', 'https://api.github.com/users/al3x/followers', 'https://api.github.com/users/al3x/following', 'https://api.github.com/users/al3x/gists', 'https://api.github.com/users/al3x/starred', 'https://api.github.com/users/al3x/repos', 'https://api.github.com/users/al3x/events', 'https://api.github.com/users/al3x/received_events', 0); +INSERT INTO `developer` VALUES (153, 'toolmantim', 'C', 3.0212752401889618, 0, 0, 0, 0, 0, 0, 'Tim Lucas', NULL, 'https://toolmantim.com', 'Melbourne, Australia', 't@toolmantim.com', NULL, NULL, NULL, 0, 0, 461, 66, 0, 0, 0, '2008-02-07T03:21:59Z', '2024-10-29T23:09:51Z', 'https://avatars.githubusercontent.com/u/153?v=4', 'https://api.github.com/users/toolmantim', 'https://github.com/toolmantim', 'https://api.github.com/users/toolmantim/followers', 'https://api.github.com/users/toolmantim/following', 'https://api.github.com/users/toolmantim/gists', 'https://api.github.com/users/toolmantim/starred', 'https://api.github.com/users/toolmantim/repos', 'https://api.github.com/users/toolmantim/events', 'https://api.github.com/users/toolmantim/received_events', 0); +INSERT INTO `developer` VALUES (154, 'nicksieger', 'C', 0.0374321710648479, 0, 0, 0, 0, 0, 0, 'Nick Sieger', '@docker', '', 'Minneapolis, MN, USA', 'nick@nicksieger.com', NULL, NULL, 'nicksieger', 0, 0, 287, 21, 0, 0, 0, '2008-02-07T04:07:21Z', '2024-08-26T15:20:18Z', 'https://avatars.githubusercontent.com/u/154?v=4', 'https://api.github.com/users/nicksieger', 'https://github.com/nicksieger', 'https://api.github.com/users/nicksieger/followers', 'https://api.github.com/users/nicksieger/following', 'https://api.github.com/users/nicksieger/gists', 'https://api.github.com/users/nicksieger/starred', 'https://api.github.com/users/nicksieger/repos', 'https://api.github.com/users/nicksieger/events', 'https://api.github.com/users/nicksieger/received_events', 0); +INSERT INTO `developer` VALUES (155, 'jicksta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jay Phillips', NULL, '', 'Austin, TX', NULL, 'true', NULL, NULL, 0, 0, 100, 12, 0, 0, 0, '2008-02-07T04:09:16Z', '2024-03-01T04:32:45Z', 'https://avatars.githubusercontent.com/u/155?v=4', 'https://api.github.com/users/jicksta', 'https://github.com/jicksta', 'https://api.github.com/users/jicksta/followers', 'https://api.github.com/users/jicksta/following', 'https://api.github.com/users/jicksta/gists', 'https://api.github.com/users/jicksta/starred', 'https://api.github.com/users/jicksta/repos', 'https://api.github.com/users/jicksta/events', 'https://api.github.com/users/jicksta/received_events', 0); +INSERT INTO `developer` VALUES (156, 'joshsusser', 'C', 0.10602626460793124, 0, 0, 0, 0, 0, 0, 'Josh Susser', NULL, 'http://blog.hasmanythrough.com', 'San Francisco, CA', 'josh@hasmanythrough.com', NULL, NULL, NULL, 0, 0, 291, 11, 0, 0, 0, '2008-02-07T04:09:59Z', '2023-09-26T22:30:37Z', 'https://avatars.githubusercontent.com/u/156?v=4', 'https://api.github.com/users/joshsusser', 'https://github.com/joshsusser', 'https://api.github.com/users/joshsusser/followers', 'https://api.github.com/users/joshsusser/following', 'https://api.github.com/users/joshsusser/gists', 'https://api.github.com/users/joshsusser/starred', 'https://api.github.com/users/joshsusser/repos', 'https://api.github.com/users/joshsusser/events', 'https://api.github.com/users/joshsusser/received_events', 0); +INSERT INTO `developer` VALUES (157, 'jcrosby', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Crosby', NULL, 'http://joncrosby.me', 'San Francisco, CA', 'jon@joncrosby.me', NULL, NULL, NULL, 0, 0, 193, 19, 0, 0, 0, '2008-02-07T04:11:51Z', '2024-11-01T17:24:47Z', 'https://avatars.githubusercontent.com/u/157?v=4', 'https://api.github.com/users/jcrosby', 'https://github.com/jcrosby', 'https://api.github.com/users/jcrosby/followers', 'https://api.github.com/users/jcrosby/following', 'https://api.github.com/users/jcrosby/gists', 'https://api.github.com/users/jcrosby/starred', 'https://api.github.com/users/jcrosby/repos', 'https://api.github.com/users/jcrosby/events', 'https://api.github.com/users/jcrosby/received_events', 0); +INSERT INTO `developer` VALUES (158, 'thewoolleyman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chad Woolley', NULL, 'http://thewoolleyweb.com', '未知', 'thewoolleyman@gmail.com', NULL, 'Professional full-stack polyglot coder/sysadmin for 25+ years, from mainframes to cloud computing.', NULL, 0, 0, 137, 49, 0, 0, 0, '2008-02-07T04:12:01Z', '2024-10-07T19:25:29Z', 'https://avatars.githubusercontent.com/u/158?v=4', 'https://api.github.com/users/thewoolleyman', 'https://github.com/thewoolleyman', 'https://api.github.com/users/thewoolleyman/followers', 'https://api.github.com/users/thewoolleyman/following', 'https://api.github.com/users/thewoolleyman/gists', 'https://api.github.com/users/thewoolleyman/starred', 'https://api.github.com/users/thewoolleyman/repos', 'https://api.github.com/users/thewoolleyman/events', 'https://api.github.com/users/thewoolleyman/received_events', 0); +INSERT INTO `developer` VALUES (159, 'technicalpickles', 'C', 12.315774915276721, 0, 0, 0, 0, 0, 0, 'Josh Nichols', '@Gusto ', 'https://pickles.dev', 'Austin, TX', 'joshua.nichols@gmail.com', NULL, 'Staff Engineer for @Gusto, Principal Whimsy Engineer for myself. Hobby hobbyist, husband, father, he/him\r\n', 'techpickles', 0, 0, 1003, 191, 0, 0, 0, '2008-02-07T05:38:06Z', '2024-09-16T12:47:24Z', 'https://avatars.githubusercontent.com/u/159?v=4', 'https://api.github.com/users/technicalpickles', 'https://github.com/technicalpickles', 'https://api.github.com/users/technicalpickles/followers', 'https://api.github.com/users/technicalpickles/following', 'https://api.github.com/users/technicalpickles/gists', 'https://api.github.com/users/technicalpickles/starred', 'https://api.github.com/users/technicalpickles/repos', 'https://api.github.com/users/technicalpickles/events', 'https://api.github.com/users/technicalpickles/received_events', 0); +INSERT INTO `developer` VALUES (160, 'halbtuerke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick', NULL, 'http://schreibloga.de', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 61, 34, 0, 0, 0, '2008-02-07T14:18:19Z', '2024-09-12T19:16:13Z', 'https://avatars.githubusercontent.com/u/160?v=4', 'https://api.github.com/users/halbtuerke', 'https://github.com/halbtuerke', 'https://api.github.com/users/halbtuerke/followers', 'https://api.github.com/users/halbtuerke/following', 'https://api.github.com/users/halbtuerke/gists', 'https://api.github.com/users/halbtuerke/starred', 'https://api.github.com/users/halbtuerke/repos', 'https://api.github.com/users/halbtuerke/events', 'https://api.github.com/users/halbtuerke/received_events', 0); +INSERT INTO `developer` VALUES (161, 'ryanb', 'S', 100, 0, 0, 0, 0, 0, 0, 'Ryan Bates', 'RailsCasts', 'http://railscasts.com', '未知', 'ryan@railscasts.com', NULL, NULL, NULL, 0, 0, 7716, 96, 0, 0, 0, '2008-02-07T22:42:25Z', '2024-09-21T11:06:03Z', 'https://avatars.githubusercontent.com/u/161?v=4', 'https://api.github.com/users/ryanb', 'https://github.com/ryanb', 'https://api.github.com/users/ryanb/followers', 'https://api.github.com/users/ryanb/following', 'https://api.github.com/users/ryanb/gists', 'https://api.github.com/users/ryanb/starred', 'https://api.github.com/users/ryanb/repos', 'https://api.github.com/users/ryanb/events', 'https://api.github.com/users/ryanb/received_events', 0); +INSERT INTO `developer` VALUES (162, 'cnix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Claude Nix', NULL, '', 'Southern Oregon', 'claude@seadated.com', NULL, 'freedom tech', NULL, 0, 0, 37, 19, 0, 0, 0, '2008-02-07T23:24:03Z', '2024-11-03T13:43:44Z', 'https://avatars.githubusercontent.com/u/162?v=4', 'https://api.github.com/users/cnix', 'https://github.com/cnix', 'https://api.github.com/users/cnix/followers', 'https://api.github.com/users/cnix/following', 'https://api.github.com/users/cnix/gists', 'https://api.github.com/users/cnix/starred', 'https://api.github.com/users/cnix/repos', 'https://api.github.com/users/cnix/events', 'https://api.github.com/users/cnix/received_events', 0); +INSERT INTO `developer` VALUES (163, 'tpitale', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tony Pitale', '@newrelic', 'http://tpitale.com', 'Ivor, VA', NULL, 'true', NULL, NULL, 0, 0, 131, 71, 0, 0, 0, '2008-02-08T00:12:26Z', '2024-10-03T14:53:02Z', 'https://avatars.githubusercontent.com/u/163?v=4', 'https://api.github.com/users/tpitale', 'https://github.com/tpitale', 'https://api.github.com/users/tpitale/followers', 'https://api.github.com/users/tpitale/following', 'https://api.github.com/users/tpitale/gists', 'https://api.github.com/users/tpitale/starred', 'https://api.github.com/users/tpitale/repos', 'https://api.github.com/users/tpitale/events', 'https://api.github.com/users/tpitale/received_events', 0); +INSERT INTO `developer` VALUES (164, 'cdcarter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Carter', 'Salesforce.com', 'goslings.tech', 'Saint Louis, MO', 'christian.carter@salesforce.com', NULL, NULL, NULL, 0, 0, 43, 15, 0, 0, 0, '2008-02-08T03:54:32Z', '2024-01-13T05:07:48Z', 'https://avatars.githubusercontent.com/u/164?v=4', 'https://api.github.com/users/cdcarter', 'https://github.com/cdcarter', 'https://api.github.com/users/cdcarter/followers', 'https://api.github.com/users/cdcarter/following', 'https://api.github.com/users/cdcarter/gists', 'https://api.github.com/users/cdcarter/starred', 'https://api.github.com/users/cdcarter/repos', 'https://api.github.com/users/cdcarter/events', 'https://api.github.com/users/cdcarter/received_events', 0); +INSERT INTO `developer` VALUES (165, 'atduskgreg', 'C', 7.2226634697028, 0, 0, 0, 0, 0, 0, 'Greg Borenstein', 'Riot Games', 'http://gregborenstein.com', 'Los Angeles, CA', NULL, NULL, NULL, NULL, 0, 0, 706, 39, 0, 0, 0, '2008-02-08T04:27:27Z', '2023-08-30T13:00:21Z', 'https://avatars.githubusercontent.com/u/165?v=4', 'https://api.github.com/users/atduskgreg', 'https://github.com/atduskgreg', 'https://api.github.com/users/atduskgreg/followers', 'https://api.github.com/users/atduskgreg/following', 'https://api.github.com/users/atduskgreg/gists', 'https://api.github.com/users/atduskgreg/starred', 'https://api.github.com/users/atduskgreg/repos', 'https://api.github.com/users/atduskgreg/events', 'https://api.github.com/users/atduskgreg/received_events', 0); +INSERT INTO `developer` VALUES (166, 'heff', 'C', 2.0095123604284866, 0, 0, 0, 0, 0, 0, 'Steve Heffernan', 'Video.js & Mux', 'http://mux.com', 'San Francisco', NULL, NULL, 'Author of @videojs, co-founder of @zencoder and @muxinc. I hack on video.', 'heff', 0, 0, 402, 12, 0, 0, 0, '2008-02-08T04:35:18Z', '2024-09-20T16:30:20Z', 'https://avatars.githubusercontent.com/u/166?v=4', 'https://api.github.com/users/heff', 'https://github.com/heff', 'https://api.github.com/users/heff/followers', 'https://api.github.com/users/heff/following', 'https://api.github.com/users/heff/gists', 'https://api.github.com/users/heff/starred', 'https://api.github.com/users/heff/repos', 'https://api.github.com/users/heff/events', 'https://api.github.com/users/heff/received_events', 0); +INSERT INTO `developer` VALUES (167, 'entryway', 'C', 0, 0, 0, 0, 0, 0, 0, 'entryway', NULL, 'http://www.entryway.net', 'floyd, virginia', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-08T14:25:48Z', '2019-06-05T00:11:06Z', 'https://avatars.githubusercontent.com/u/167?v=4', 'https://api.github.com/users/entryway', 'https://github.com/entryway', 'https://api.github.com/users/entryway/followers', 'https://api.github.com/users/entryway/following', 'https://api.github.com/users/entryway/gists', 'https://api.github.com/users/entryway/starred', 'https://api.github.com/users/entryway/repos', 'https://api.github.com/users/entryway/events', 'https://api.github.com/users/entryway/received_events', 0); +INSERT INTO `developer` VALUES (168, 'aflatter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Flatter', NULL, 'https://alex.flatter.io', 'Hamburg, Germany', 'alex@tevim.com', NULL, 'Software engineer, entrepreneur & product thinker.', 'aflatter', 0, 0, 87, 39, 0, 0, 0, '2008-02-08T16:26:22Z', '2024-11-04T15:42:34Z', 'https://avatars.githubusercontent.com/u/168?v=4', 'https://api.github.com/users/aflatter', 'https://github.com/aflatter', 'https://api.github.com/users/aflatter/followers', 'https://api.github.com/users/aflatter/following', 'https://api.github.com/users/aflatter/gists', 'https://api.github.com/users/aflatter/starred', 'https://api.github.com/users/aflatter/repos', 'https://api.github.com/users/aflatter/events', 'https://api.github.com/users/aflatter/received_events', 0); +INSERT INTO `developer` VALUES (169, 'schofield', 'C', 0, 0, 0, 0, 0, 0, 0, 'Grant Schofield', 'Infra at Humio', 'surlysoft.com', 'North Bay', 'grant@surlysoft.com', NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2008-02-08T19:09:53Z', '2024-08-13T15:57:57Z', 'https://avatars.githubusercontent.com/u/169?v=4', 'https://api.github.com/users/schofield', 'https://github.com/schofield', 'https://api.github.com/users/schofield/followers', 'https://api.github.com/users/schofield/following', 'https://api.github.com/users/schofield/gists', 'https://api.github.com/users/schofield/starred', 'https://api.github.com/users/schofield/repos', 'https://api.github.com/users/schofield/events', 'https://api.github.com/users/schofield/received_events', 0); +INSERT INTO `developer` VALUES (170, 'rbazinet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Bazinet', 'http://stillriversoftware.com', 'https://accidentaltechnologist.com', 'Woodstock, CT', 'rbazinet@stillriversoftware.com', 'true', 'Entrepreneur, Ruby on Rails specialist, Go, long-time .NET and bootstrapping at http://stillriversoftware.com . Community editor at InfoQ. Runner and Dad.', 'rbazinet', 0, 0, 52, 137, 0, 0, 0, '2008-02-08T21:13:43Z', '2024-06-26T14:15:53Z', 'https://avatars.githubusercontent.com/u/170?v=4', 'https://api.github.com/users/rbazinet', 'https://github.com/rbazinet', 'https://api.github.com/users/rbazinet/followers', 'https://api.github.com/users/rbazinet/following', 'https://api.github.com/users/rbazinet/gists', 'https://api.github.com/users/rbazinet/starred', 'https://api.github.com/users/rbazinet/repos', 'https://api.github.com/users/rbazinet/events', 'https://api.github.com/users/rbazinet/received_events', 0); +INSERT INTO `developer` VALUES (171, 'tranqy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Junod', '@ZSuiteTech ', 'www.zsuitetech.com', 'Vernon, CT', 'aaron.junod@zsuitetech.com', NULL, 'Builder of SaaS Fintechs. Somewhere between engineering and product. CTO of ZSuite Technologies.', 'tranqy', 0, 0, 30, 12, 0, 0, 0, '2008-02-08T21:33:59Z', '2024-10-28T17:49:05Z', 'https://avatars.githubusercontent.com/u/171?v=4', 'https://api.github.com/users/tranqy', 'https://github.com/tranqy', 'https://api.github.com/users/tranqy/followers', 'https://api.github.com/users/tranqy/following', 'https://api.github.com/users/tranqy/gists', 'https://api.github.com/users/tranqy/starred', 'https://api.github.com/users/tranqy/repos', 'https://api.github.com/users/tranqy/events', 'https://api.github.com/users/tranqy/received_events', 0); +INSERT INTO `developer` VALUES (172, 'robey', 'C', 4.496048251365249, 0, 0, 0, 0, 0, 0, 'Robey Pointer', NULL, 'http://robey.lag.net', 'San José, CA', 'robeypointer@gmail.com', NULL, 'If you\'re looking for my own projects, they are now hosted on https://code.lag.net', NULL, 0, 0, 547, 17, 0, 0, 0, '2008-02-08T22:53:26Z', '2024-08-01T22:10:56Z', 'https://avatars.githubusercontent.com/u/172?v=4', 'https://api.github.com/users/robey', 'https://github.com/robey', 'https://api.github.com/users/robey/followers', 'https://api.github.com/users/robey/following', 'https://api.github.com/users/robey/gists', 'https://api.github.com/users/robey/starred', 'https://api.github.com/users/robey/repos', 'https://api.github.com/users/robey/events', 'https://api.github.com/users/robey/received_events', 0); +INSERT INTO `developer` VALUES (173, 'bkeepers', 'B-', 29.875862862305997, 0, 0, 0, 0, 0, 0, 'Brandon Keepers', NULL, 'http://opensoul.org', 'Sailing', NULL, 'true', 'Sailing nomad. Working on @flippercloud and @chordbook. Formerly @github', 'bkeepers', 0, 0, 2027, 61, 0, 0, 0, '2008-02-09T16:42:49Z', '2024-10-16T12:54:36Z', 'https://avatars.githubusercontent.com/u/173?v=4', 'https://api.github.com/users/bkeepers', 'https://github.com/bkeepers', 'https://api.github.com/users/bkeepers/followers', 'https://api.github.com/users/bkeepers/following', 'https://api.github.com/users/bkeepers/gists', 'https://api.github.com/users/bkeepers/starred', 'https://api.github.com/users/bkeepers/repos', 'https://api.github.com/users/bkeepers/events', 'https://api.github.com/users/bkeepers/received_events', 0); +INSERT INTO `developer` VALUES (174, 'wilson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wilson Bilkovich', NULL, 'https://twitter.com/defiler', 'New York, NY', 'wilsonb@gmail.com', NULL, 'Software Engineer. Space Barbarian. Feminist. Reader. I like languages for machines, humans, and others. The gods made Heavy Metal and it\'s never gonna die.', NULL, 0, 0, 86, 7, 0, 0, 0, '2008-02-09T19:51:44Z', '2024-04-24T21:59:43Z', 'https://avatars.githubusercontent.com/u/174?v=4', 'https://api.github.com/users/wilson', 'https://github.com/wilson', 'https://api.github.com/users/wilson/followers', 'https://api.github.com/users/wilson/following', 'https://api.github.com/users/wilson/gists', 'https://api.github.com/users/wilson/starred', 'https://api.github.com/users/wilson/repos', 'https://api.github.com/users/wilson/events', 'https://api.github.com/users/wilson/received_events', 0); +INSERT INTO `developer` VALUES (175, 'tommorris', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Morris', NULL, 'https://tommorris.org/', 'London', 'tom@tommorris.org', NULL, 'I hit the keyboard and things sometimes happen.', NULL, 0, 0, 230, 70, 0, 0, 0, '2008-02-09T22:33:01Z', '2024-09-20T09:17:21Z', 'https://avatars.githubusercontent.com/u/175?v=4', 'https://api.github.com/users/tommorris', 'https://github.com/tommorris', 'https://api.github.com/users/tommorris/followers', 'https://api.github.com/users/tommorris/following', 'https://api.github.com/users/tommorris/gists', 'https://api.github.com/users/tommorris/starred', 'https://api.github.com/users/tommorris/repos', 'https://api.github.com/users/tommorris/events', 'https://api.github.com/users/tommorris/received_events', 0); +INSERT INTO `developer` VALUES (176, 'charlesroper', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Roper', 'Field Studies Council', 'https://charlesroper.com', 'UK', 'github@charlie.mozmail.com', NULL, 'A digital practitioner working with people, process, and technology @FieldStudiesCouncil.\r\n\r\nGitHub user #176', NULL, 0, 0, 52, 51, 0, 0, 0, '2008-02-10T19:35:27Z', '2024-11-04T14:13:31Z', 'https://avatars.githubusercontent.com/u/176?v=4', 'https://api.github.com/users/charlesroper', 'https://github.com/charlesroper', 'https://api.github.com/users/charlesroper/followers', 'https://api.github.com/users/charlesroper/following', 'https://api.github.com/users/charlesroper/gists', 'https://api.github.com/users/charlesroper/starred', 'https://api.github.com/users/charlesroper/repos', 'https://api.github.com/users/charlesroper/events', 'https://api.github.com/users/charlesroper/received_events', 0); +INSERT INTO `developer` VALUES (177, 'adamwiggins', 'C', 12.247180821733638, 0, 0, 0, 0, 0, 0, 'Adam Wiggins', 'Muse', 'https://adamwiggins.com/', 'Berlin', 'a@adamwiggins.com', NULL, 'Digital toolmaker', '_adamwiggins_', 0, 0, 999, 16, 0, 0, 0, '2008-02-10T19:58:31Z', '2024-10-28T06:39:47Z', 'https://avatars.githubusercontent.com/u/177?v=4', 'https://api.github.com/users/adamwiggins', 'https://github.com/adamwiggins', 'https://api.github.com/users/adamwiggins/followers', 'https://api.github.com/users/adamwiggins/following', 'https://api.github.com/users/adamwiggins/gists', 'https://api.github.com/users/adamwiggins/starred', 'https://api.github.com/users/adamwiggins/repos', 'https://api.github.com/users/adamwiggins/events', 'https://api.github.com/users/adamwiggins/received_events', 0); +INSERT INTO `developer` VALUES (179, 'myobie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan', 'Shareup', 'https://nathanherald.com', 'Berlin, Germany', 'me@nathanherald.com', NULL, 'Building new.space', NULL, 0, 0, 217, 48, 0, 0, 0, '2008-02-11T02:18:45Z', '2024-11-04T23:51:39Z', 'https://avatars.githubusercontent.com/u/179?v=4', 'https://api.github.com/users/myobie', 'https://github.com/myobie', 'https://api.github.com/users/myobie/followers', 'https://api.github.com/users/myobie/following', 'https://api.github.com/users/myobie/gists', 'https://api.github.com/users/myobie/starred', 'https://api.github.com/users/myobie/repos', 'https://api.github.com/users/myobie/events', 'https://api.github.com/users/myobie/received_events', 0); +INSERT INTO `developer` VALUES (180, 'samgranieri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Granieri', '@CityBaseInc ', '', '未知', 'sam@samgranieri.com', NULL, NULL, 'samgranieri', 0, 0, 49, 111, 0, 0, 0, '2008-02-11T04:31:06Z', '2024-07-08T22:40:02Z', 'https://avatars.githubusercontent.com/u/180?v=4', 'https://api.github.com/users/samgranieri', 'https://github.com/samgranieri', 'https://api.github.com/users/samgranieri/followers', 'https://api.github.com/users/samgranieri/following', 'https://api.github.com/users/samgranieri/gists', 'https://api.github.com/users/samgranieri/starred', 'https://api.github.com/users/samgranieri/repos', 'https://api.github.com/users/samgranieri/events', 'https://api.github.com/users/samgranieri/received_events', 0); +INSERT INTO `developer` VALUES (181, 'adam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam French', NULL, 'http://www.cpanel.net', 'Houston TX', 'adam.french@cpanel.net', NULL, 'Username not for sale, transfer or trade, sorry.', NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-11T04:41:30Z', '2023-04-18T19:08:47Z', 'https://avatars.githubusercontent.com/u/181?v=4', 'https://api.github.com/users/adam', 'https://github.com/adam', 'https://api.github.com/users/adam/followers', 'https://api.github.com/users/adam/following', 'https://api.github.com/users/adam/gists', 'https://api.github.com/users/adam/starred', 'https://api.github.com/users/adam/repos', 'https://api.github.com/users/adam/events', 'https://api.github.com/users/adam/received_events', 0); +INSERT INTO `developer` VALUES (182, 'mtodd', 'C', 9.88068459449727, 0, 0, 0, 0, 0, 0, 'Matt Todd', 'GitHub', 'http://maraby.org/', 'Philadelphia, PA', 'chiology@gmail.com', NULL, 'Principal Engineer @github. Ruby/Go mostly. Perpetual student.', NULL, 0, 0, 861, 502, 0, 0, 0, '2008-02-11T06:28:43Z', '2024-10-02T03:30:03Z', 'https://avatars.githubusercontent.com/u/182?v=4', 'https://api.github.com/users/mtodd', 'https://github.com/mtodd', 'https://api.github.com/users/mtodd/followers', 'https://api.github.com/users/mtodd/following', 'https://api.github.com/users/mtodd/gists', 'https://api.github.com/users/mtodd/starred', 'https://api.github.com/users/mtodd/repos', 'https://api.github.com/users/mtodd/events', 'https://api.github.com/users/mtodd/received_events', 0); +INSERT INTO `developer` VALUES (183, 'timcharper', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Harper', 'Foundational Software', 'http://tim.theenchanter.com/', 'Utah', 'timcharper@gmail.com', NULL, NULL, NULL, 0, 0, 281, 37, 0, 0, 0, '2008-02-11T17:25:21Z', '2024-10-05T13:31:30Z', 'https://avatars.githubusercontent.com/u/183?v=4', 'https://api.github.com/users/timcharper', 'https://github.com/timcharper', 'https://api.github.com/users/timcharper/followers', 'https://api.github.com/users/timcharper/following', 'https://api.github.com/users/timcharper/gists', 'https://api.github.com/users/timcharper/starred', 'https://api.github.com/users/timcharper/repos', 'https://api.github.com/users/timcharper/events', 'https://api.github.com/users/timcharper/received_events', 0); +INSERT INTO `developer` VALUES (184, 'paul', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Sadauskas', NULL, 'http://blog.theamazingrando.com', 'Boulder, CO', 'psadauskas@gmail.com', 'true', 'Software engineer in Boulder, CO. I love making tools for users and fellow developers that are elegant, robust, and reliable.', 'theamazingrando', 0, 0, 130, 3, 0, 0, 0, '2008-02-11T18:44:09Z', '2024-09-09T18:56:04Z', 'https://avatars.githubusercontent.com/u/184?v=4', 'https://api.github.com/users/paul', 'https://github.com/paul', 'https://api.github.com/users/paul/followers', 'https://api.github.com/users/paul/following', 'https://api.github.com/users/paul/gists', 'https://api.github.com/users/paul/starred', 'https://api.github.com/users/paul/repos', 'https://api.github.com/users/paul/events', 'https://api.github.com/users/paul/received_events', 0); +INSERT INTO `developer` VALUES (185, 'DocSavage', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Katz', 'Janelia Research Center', 'billkatz.com', 'Ashburn, VA', 'billkatz@gmail.com', NULL, 'Interested in datastores (esp. branched versioning), computer graphics (esp. sparse volumes), and deep learning.', NULL, 0, 0, 109, 20, 0, 0, 0, '2008-02-11T18:52:20Z', '2024-10-23T18:07:38Z', 'https://avatars.githubusercontent.com/u/185?v=4', 'https://api.github.com/users/DocSavage', 'https://github.com/DocSavage', 'https://api.github.com/users/DocSavage/followers', 'https://api.github.com/users/DocSavage/following', 'https://api.github.com/users/DocSavage/gists', 'https://api.github.com/users/DocSavage/starred', 'https://api.github.com/users/DocSavage/repos', 'https://api.github.com/users/DocSavage/events', 'https://api.github.com/users/DocSavage/received_events', 0); +INSERT INTO `developer` VALUES (186, 'shane', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shane Vitarana', 'CrimsonJet', 'http://shanesbrain.net', 'Chicago, IL', 'shanev@gmail.com', NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-02-11T20:55:14Z', '2019-06-05T00:11:13Z', 'https://avatars.githubusercontent.com/u/186?v=4', 'https://api.github.com/users/shane', 'https://github.com/shane', 'https://api.github.com/users/shane/followers', 'https://api.github.com/users/shane/following', 'https://api.github.com/users/shane/gists', 'https://api.github.com/users/shane/starred', 'https://api.github.com/users/shane/repos', 'https://api.github.com/users/shane/events', 'https://api.github.com/users/shane/received_events', 0); +INSERT INTO `developer` VALUES (187, 'vlucas', 'C', 9.760644930796875, 0, 0, 0, 0, 0, 0, 'Vance Lucas', NULL, 'http://www.vancelucas.com', 'Oklahoma City, OK', 'vance@vancelucas.com', NULL, 'Co-founder of @techlahoma. Creator of BudgetSheet, Frisby.js, phpdotenv, valitron, and many others. Engineering Leader.', 'vlucas', 0, 0, 854, 35, 0, 0, 0, '2008-02-11T22:03:14Z', '2024-10-14T14:35:44Z', 'https://avatars.githubusercontent.com/u/187?v=4', 'https://api.github.com/users/vlucas', 'https://github.com/vlucas', 'https://api.github.com/users/vlucas/followers', 'https://api.github.com/users/vlucas/following', 'https://api.github.com/users/vlucas/gists', 'https://api.github.com/users/vlucas/starred', 'https://api.github.com/users/vlucas/repos', 'https://api.github.com/users/vlucas/events', 'https://api.github.com/users/vlucas/received_events', 0); +INSERT INTO `developer` VALUES (188, 'nex3', 'B-', 33.57994391363248, 0, 0, 0, 0, 0, 0, 'Natalie Weizenbaum', '@google', '', 'Seattle', 'nex342@gmail.com', NULL, 'Lead designer and developer of @sass. Jewish. Antizionist.', NULL, 0, 0, 2243, 0, 0, 0, 0, '2008-02-11T22:53:32Z', '2024-10-24T04:04:35Z', 'https://avatars.githubusercontent.com/u/188?v=4', 'https://api.github.com/users/nex3', 'https://github.com/nex3', 'https://api.github.com/users/nex3/followers', 'https://api.github.com/users/nex3/following', 'https://api.github.com/users/nex3/gists', 'https://api.github.com/users/nex3/starred', 'https://api.github.com/users/nex3/repos', 'https://api.github.com/users/nex3/events', 'https://api.github.com/users/nex3/received_events', 0); +INSERT INTO `developer` VALUES (189, 'max-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-12T00:12:02Z', '2019-06-05T00:11:08Z', 'https://avatars.githubusercontent.com/u/189?v=4', 'https://api.github.com/users/max-xx', 'https://github.com/max-xx', 'https://api.github.com/users/max-xx/followers', 'https://api.github.com/users/max-xx/following', 'https://api.github.com/users/max-xx/gists', 'https://api.github.com/users/max-xx/starred', 'https://api.github.com/users/max-xx/repos', 'https://api.github.com/users/max-xx/events', 'https://api.github.com/users/max-xx/received_events', 0); +INSERT INTO `developer` VALUES (190, 'norbauer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Norbauer Inc', 'Norbauer Inc', '', 'Boston, Massachusetts, USA', 'consulting@norbauer.com', NULL, NULL, NULL, 0, 0, 31, 0, 0, 0, 0, '2008-02-12T00:40:49Z', '2019-06-05T00:11:11Z', 'https://avatars.githubusercontent.com/u/190?v=4', 'https://api.github.com/users/norbauer', 'https://github.com/norbauer', 'https://api.github.com/users/norbauer/followers', 'https://api.github.com/users/norbauer/following', 'https://api.github.com/users/norbauer/gists', 'https://api.github.com/users/norbauer/starred', 'https://api.github.com/users/norbauer/repos', 'https://api.github.com/users/norbauer/events', 'https://api.github.com/users/norbauer/received_events', 0); +INSERT INTO `developer` VALUES (191, 'crigor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Rigor', NULL, '', '未知', 'crigor@gmail.com', NULL, 'Backend Developer and Senior DevOps Engineer \r\nEx Engine Yard', NULL, 0, 0, 46, 0, 0, 0, 0, '2008-02-12T01:43:48Z', '2024-10-22T11:18:21Z', 'https://avatars.githubusercontent.com/u/191?v=4', 'https://api.github.com/users/crigor', 'https://github.com/crigor', 'https://api.github.com/users/crigor/followers', 'https://api.github.com/users/crigor/following', 'https://api.github.com/users/crigor/gists', 'https://api.github.com/users/crigor/starred', 'https://api.github.com/users/crigor/repos', 'https://api.github.com/users/crigor/events', 'https://api.github.com/users/crigor/received_events', 0); +INSERT INTO `developer` VALUES (192, 'knowtheory', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ted Han', 'mozilla', 'http://knowtheory.net', 'Bay Area', 'ted@knowtheory.net', NULL, NULL, NULL, 0, 0, 215, 87, 0, 0, 0, '2008-02-12T20:45:29Z', '2024-08-20T12:30:54Z', 'https://avatars.githubusercontent.com/u/192?v=4', 'https://api.github.com/users/knowtheory', 'https://github.com/knowtheory', 'https://api.github.com/users/knowtheory/followers', 'https://api.github.com/users/knowtheory/following', 'https://api.github.com/users/knowtheory/gists', 'https://api.github.com/users/knowtheory/starred', 'https://api.github.com/users/knowtheory/repos', 'https://api.github.com/users/knowtheory/events', 'https://api.github.com/users/knowtheory/received_events', 0); +INSERT INTO `developer` VALUES (193, 'bernerdschaefer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bernerd Schaefer', NULL, '', 'Portland, OR', 'bj.schaefer@gmail.com', NULL, NULL, NULL, 0, 0, 132, 0, 0, 0, 0, '2008-02-12T21:35:54Z', '2021-08-12T19:00:06Z', 'https://avatars.githubusercontent.com/u/193?v=4', 'https://api.github.com/users/bernerdschaefer', 'https://github.com/bernerdschaefer', 'https://api.github.com/users/bernerdschaefer/followers', 'https://api.github.com/users/bernerdschaefer/following', 'https://api.github.com/users/bernerdschaefer/gists', 'https://api.github.com/users/bernerdschaefer/starred', 'https://api.github.com/users/bernerdschaefer/repos', 'https://api.github.com/users/bernerdschaefer/events', 'https://api.github.com/users/bernerdschaefer/received_events', 0); +INSERT INTO `developer` VALUES (194, 'zapnap', 'C', 0, 0, 0, 0, 0, 0, 0, 'nap', 'Zerosum Labs', 'https://zerosum.org', '未知', 'nap@zerosum.org', 'true', 'Immanentizing the eschaton. Web3, VC, and R&D at @dlabvc', 'zapnap', 0, 0, 219, 53, 0, 0, 0, '2008-02-12T22:52:45Z', '2024-10-31T18:13:40Z', 'https://avatars.githubusercontent.com/u/194?v=4', 'https://api.github.com/users/zapnap', 'https://github.com/zapnap', 'https://api.github.com/users/zapnap/followers', 'https://api.github.com/users/zapnap/following', 'https://api.github.com/users/zapnap/gists', 'https://api.github.com/users/zapnap/starred', 'https://api.github.com/users/zapnap/repos', 'https://api.github.com/users/zapnap/events', 'https://api.github.com/users/zapnap/received_events', 0); +INSERT INTO `developer` VALUES (195, 'testdude', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-13T01:08:24Z', '2019-06-05T00:11:51Z', 'https://avatars.githubusercontent.com/u/195?v=4', 'https://api.github.com/users/testdude', 'https://github.com/testdude', 'https://api.github.com/users/testdude/followers', 'https://api.github.com/users/testdude/following', 'https://api.github.com/users/testdude/gists', 'https://api.github.com/users/testdude/starred', 'https://api.github.com/users/testdude/repos', 'https://api.github.com/users/testdude/events', 'https://api.github.com/users/testdude/received_events', 0); +INSERT INTO `developer` VALUES (196, 'galinv', 'C', 0, 0, 0, 0, 0, 0, 0, 'Galin Vassilev', 'Elearning Experts LLC', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-13T02:02:55Z', '2022-12-09T20:06:04Z', 'https://avatars.githubusercontent.com/u/196?v=4', 'https://api.github.com/users/galinv', 'https://github.com/galinv', 'https://api.github.com/users/galinv/followers', 'https://api.github.com/users/galinv/following', 'https://api.github.com/users/galinv/gists', 'https://api.github.com/users/galinv/starred', 'https://api.github.com/users/galinv/repos', 'https://api.github.com/users/galinv/events', 'https://api.github.com/users/galinv/received_events', 0); +INSERT INTO `developer` VALUES (197, 'NZKoz', 'C', 1.803730079799238, 0, 0, 0, 0, 0, 0, 'Michael Koziarski', 'Vend', 'http://www.koziarski.net/', 'Wellington, New Zealand', 'michael@koziarski.com', NULL, NULL, 'nzkoz', 0, 0, 390, 0, 0, 0, 0, '2008-02-13T02:35:58Z', '2024-03-31T20:46:49Z', 'https://avatars.githubusercontent.com/u/197?v=4', 'https://api.github.com/users/NZKoz', 'https://github.com/NZKoz', 'https://api.github.com/users/NZKoz/followers', 'https://api.github.com/users/NZKoz/following', 'https://api.github.com/users/NZKoz/gists', 'https://api.github.com/users/NZKoz/starred', 'https://api.github.com/users/NZKoz/repos', 'https://api.github.com/users/NZKoz/events', 'https://api.github.com/users/NZKoz/received_events', 0); +INSERT INTO `developer` VALUES (198, 'croaky', 'C', 2.3181857813723608, 0, 0, 0, 0, 0, 0, 'Dan Croak', NULL, 'https://dancroak.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 420, 349, 0, 0, 0, '2008-02-13T02:48:35Z', '2024-10-30T07:07:25Z', 'https://avatars.githubusercontent.com/u/198?v=4', 'https://api.github.com/users/croaky', 'https://github.com/croaky', 'https://api.github.com/users/croaky/followers', 'https://api.github.com/users/croaky/following', 'https://api.github.com/users/croaky/gists', 'https://api.github.com/users/croaky/starred', 'https://api.github.com/users/croaky/repos', 'https://api.github.com/users/croaky/events', 'https://api.github.com/users/croaky/received_events', 0); +INSERT INTO `developer` VALUES (199, 'jeremy', 'C+', 20.52991761706092, 0, 0, 0, 0, 0, 0, 'Jeremy Daer', '@basecamp', 'https://jeremydaer.com', 'San Diego, CA', 'jeremy@hey.com', NULL, '🖖🏼', 'bitsweat', 0, 0, 1482, 128, 0, 0, 0, '2008-02-13T03:02:19Z', '2024-10-15T14:41:33Z', 'https://avatars.githubusercontent.com/u/199?v=4', 'https://api.github.com/users/jeremy', 'https://github.com/jeremy', 'https://api.github.com/users/jeremy/followers', 'https://api.github.com/users/jeremy/following', 'https://api.github.com/users/jeremy/gists', 'https://api.github.com/users/jeremy/starred', 'https://api.github.com/users/jeremy/repos', 'https://api.github.com/users/jeremy/events', 'https://api.github.com/users/jeremy/received_events', 0); +INSERT INTO `developer` VALUES (200, 'ELLIOTTCABLE', 'C', 2.729750342630859, 0, 0, 0, 0, 0, 0, NULL, '@Ahrefs', 'http://ell.io/tt', 'Chicago, IL', 'github-public@from.ec', 'true', '{PL,Q}T. Accidental creator of @Paws.', NULL, 0, 0, 444, 826, 0, 0, 0, '2008-02-13T03:27:01Z', '2024-10-12T18:46:13Z', 'https://avatars.githubusercontent.com/u/200?v=4', 'https://api.github.com/users/ELLIOTTCABLE', 'https://github.com/ELLIOTTCABLE', 'https://api.github.com/users/ELLIOTTCABLE/followers', 'https://api.github.com/users/ELLIOTTCABLE/following', 'https://api.github.com/users/ELLIOTTCABLE/gists', 'https://api.github.com/users/ELLIOTTCABLE/starred', 'https://api.github.com/users/ELLIOTTCABLE/repos', 'https://api.github.com/users/ELLIOTTCABLE/events', 'https://api.github.com/users/ELLIOTTCABLE/received_events', 0); +INSERT INTO `developer` VALUES (201, 'monde', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Mondragon', 'Okta', '', '未知', 'mikemondragon@gmail.com', 'true', 'Developer Community Products @ Okta; #201', NULL, 0, 0, 105, 34, 0, 0, 0, '2008-02-13T03:49:38Z', '2024-07-15T15:10:49Z', 'https://avatars.githubusercontent.com/u/201?v=4', 'https://api.github.com/users/monde', 'https://github.com/monde', 'https://api.github.com/users/monde/followers', 'https://api.github.com/users/monde/following', 'https://api.github.com/users/monde/gists', 'https://api.github.com/users/monde/starred', 'https://api.github.com/users/monde/repos', 'https://api.github.com/users/monde/events', 'https://api.github.com/users/monde/received_events', 0); +INSERT INTO `developer` VALUES (202, 'ryanbriones', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Carmelo Briones', NULL, 'http://ryanbriones.com', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 137, 33, 0, 0, 0, '2008-02-13T04:43:50Z', '2024-09-28T21:18:21Z', 'https://avatars.githubusercontent.com/u/202?v=4', 'https://api.github.com/users/ryanbriones', 'https://github.com/ryanbriones', 'https://api.github.com/users/ryanbriones/followers', 'https://api.github.com/users/ryanbriones/following', 'https://api.github.com/users/ryanbriones/gists', 'https://api.github.com/users/ryanbriones/starred', 'https://api.github.com/users/ryanbriones/repos', 'https://api.github.com/users/ryanbriones/events', 'https://api.github.com/users/ryanbriones/received_events', 0); +INSERT INTO `developer` VALUES (203, 'wfarr', 'C', 0.1403233113794729, 0, 0, 0, 0, 0, 0, 'Will Farrington', '@orderlymeds', '', 'Atlanta, GA', NULL, 'true', NULL, NULL, 0, 0, 293, 34, 0, 0, 0, '2008-02-13T05:53:40Z', '2024-10-18T17:30:12Z', 'https://avatars.githubusercontent.com/u/203?v=4', 'https://api.github.com/users/wfarr', 'https://github.com/wfarr', 'https://api.github.com/users/wfarr/followers', 'https://api.github.com/users/wfarr/following', 'https://api.github.com/users/wfarr/gists', 'https://api.github.com/users/wfarr/starred', 'https://api.github.com/users/wfarr/repos', 'https://api.github.com/users/wfarr/events', 'https://api.github.com/users/wfarr/received_events', 0); +INSERT INTO `developer` VALUES (204, 'jseifer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Seifer', 'Doximity', 'http://www.jasonseifer.com', 'Orlando, FL', 'me@jasonseifer.com', NULL, NULL, NULL, 0, 0, 239, 21, 0, 0, 0, '2008-02-13T06:24:34Z', '2019-06-05T00:12:15Z', 'https://avatars.githubusercontent.com/u/204?v=4', 'https://api.github.com/users/jseifer', 'https://github.com/jseifer', 'https://api.github.com/users/jseifer/followers', 'https://api.github.com/users/jseifer/following', 'https://api.github.com/users/jseifer/gists', 'https://api.github.com/users/jseifer/starred', 'https://api.github.com/users/jseifer/repos', 'https://api.github.com/users/jseifer/events', 'https://api.github.com/users/jseifer/received_events', 0); +INSERT INTO `developer` VALUES (205, 'symlink', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bobby Gaza', NULL, 'http://symlinked.com', 'Oakland, CA', 'bobby@symlinked.com', NULL, NULL, NULL, 0, 0, 25, 19, 0, 0, 0, '2008-02-13T06:32:53Z', '2024-08-20T16:55:26Z', 'https://avatars.githubusercontent.com/u/205?v=4', 'https://api.github.com/users/symlink', 'https://github.com/symlink', 'https://api.github.com/users/symlink/followers', 'https://api.github.com/users/symlink/following', 'https://api.github.com/users/symlink/gists', 'https://api.github.com/users/symlink/starred', 'https://api.github.com/users/symlink/repos', 'https://api.github.com/users/symlink/events', 'https://api.github.com/users/symlink/received_events', 0); +INSERT INTO `developer` VALUES (206, 'sprsquish', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Smick', 'Datastax', '', 'California', 'jeff@squishtech.com', NULL, NULL, NULL, 0, 0, 186, 58, 0, 0, 0, '2008-02-13T06:39:11Z', '2024-04-11T14:12:08Z', 'https://avatars.githubusercontent.com/u/206?v=4', 'https://api.github.com/users/sprsquish', 'https://github.com/sprsquish', 'https://api.github.com/users/sprsquish/followers', 'https://api.github.com/users/sprsquish/following', 'https://api.github.com/users/sprsquish/gists', 'https://api.github.com/users/sprsquish/starred', 'https://api.github.com/users/sprsquish/repos', 'https://api.github.com/users/sprsquish/events', 'https://api.github.com/users/sprsquish/received_events', 0); +INSERT INTO `developer` VALUES (207, 'codahale', 'B-', 31.65930929442616, 0, 0, 0, 0, 0, 0, 'Coda Hale', NULL, 'https://codahale.com', 'Fort Collins, CO', NULL, NULL, 'A real person.', NULL, 0, 0, 2131, 18, 0, 0, 0, '2008-02-13T06:53:24Z', '2024-08-31T16:31:13Z', 'https://avatars.githubusercontent.com/u/207?v=4', 'https://api.github.com/users/codahale', 'https://github.com/codahale', 'https://api.github.com/users/codahale/followers', 'https://api.github.com/users/codahale/following', 'https://api.github.com/users/codahale/gists', 'https://api.github.com/users/codahale/starred', 'https://api.github.com/users/codahale/repos', 'https://api.github.com/users/codahale/events', 'https://api.github.com/users/codahale/received_events', 0); +INSERT INTO `developer` VALUES (208, 'zackchandler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zack Chandler', 'Urbandoor', '', 'San Francisco Bay Area', 'zackchandler@gmail.com', NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2008-02-13T06:57:06Z', '2024-09-14T22:36:27Z', 'https://avatars.githubusercontent.com/u/208?v=4', 'https://api.github.com/users/zackchandler', 'https://github.com/zackchandler', 'https://api.github.com/users/zackchandler/followers', 'https://api.github.com/users/zackchandler/following', 'https://api.github.com/users/zackchandler/gists', 'https://api.github.com/users/zackchandler/starred', 'https://api.github.com/users/zackchandler/repos', 'https://api.github.com/users/zackchandler/events', 'https://api.github.com/users/zackchandler/received_events', 0); +INSERT INTO `developer` VALUES (209, 'jakehow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jake Howerton', '@zipmark Inc', '', 'Austin, TX', NULL, NULL, NULL, NULL, 0, 0, 46, 12, 0, 0, 0, '2008-02-13T07:05:03Z', '2024-10-08T01:16:35Z', 'https://avatars.githubusercontent.com/u/209?v=4', 'https://api.github.com/users/jakehow', 'https://github.com/jakehow', 'https://api.github.com/users/jakehow/followers', 'https://api.github.com/users/jakehow/following', 'https://api.github.com/users/jakehow/gists', 'https://api.github.com/users/jakehow/starred', 'https://api.github.com/users/jakehow/repos', 'https://api.github.com/users/jakehow/events', 'https://api.github.com/users/jakehow/received_events', 0); +INSERT INTO `developer` VALUES (210, 'evan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Evan Weaver', NULL, 'https://evan.vc', 'Boston', NULL, NULL, 'Engineer/Founder/Investor', 'evan', 0, 0, 211, 7, 0, 0, 0, '2008-02-13T07:14:02Z', '2024-09-04T13:10:50Z', 'https://avatars.githubusercontent.com/u/210?v=4', 'https://api.github.com/users/evan', 'https://github.com/evan', 'https://api.github.com/users/evan/followers', 'https://api.github.com/users/evan/following', 'https://api.github.com/users/evan/gists', 'https://api.github.com/users/evan/starred', 'https://api.github.com/users/evan/repos', 'https://api.github.com/users/evan/events', 'https://api.github.com/users/evan/received_events', 0); +INSERT INTO `developer` VALUES (211, 'olleolleolle', 'C', 1.3921655185407393, 0, 0, 0, 0, 0, 0, 'Olle Jonsson', 'Auctionet ✨ ', 'http://ollehost.dk/', 'sunny Malmö in Sweden', 'olle.jonsson@gmail.com', NULL, NULL, NULL, 0, 0, 366, 334, 0, 0, 0, '2008-02-13T08:24:32Z', '2024-08-02T07:03:57Z', 'https://avatars.githubusercontent.com/u/211?v=4', 'https://api.github.com/users/olleolleolle', 'https://github.com/olleolleolle', 'https://api.github.com/users/olleolleolle/followers', 'https://api.github.com/users/olleolleolle/following', 'https://api.github.com/users/olleolleolle/gists', 'https://api.github.com/users/olleolleolle/starred', 'https://api.github.com/users/olleolleolle/repos', 'https://api.github.com/users/olleolleolle/events', 'https://api.github.com/users/olleolleolle/received_events', 0); +INSERT INTO `developer` VALUES (212, 'chrismcg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris McGrath', NULL, 'http://chrismcg.com', 'Banbridge, Northern Ireland', 'chris@chrismcg.com', NULL, NULL, NULL, 0, 0, 71, 14, 0, 0, 0, '2008-02-13T08:54:43Z', '2024-10-27T18:31:00Z', 'https://avatars.githubusercontent.com/u/212?v=4', 'https://api.github.com/users/chrismcg', 'https://github.com/chrismcg', 'https://api.github.com/users/chrismcg/followers', 'https://api.github.com/users/chrismcg/following', 'https://api.github.com/users/chrismcg/gists', 'https://api.github.com/users/chrismcg/starred', 'https://api.github.com/users/chrismcg/repos', 'https://api.github.com/users/chrismcg/events', 'https://api.github.com/users/chrismcg/received_events', 0); +INSERT INTO `developer` VALUES (213, 'chuyeow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cheah Chu Yeow', 'Wego.com', 'https://chuyeow.wtf/', 'Singapore', 'chuyeow@gmail.com', 'true', NULL, 'chuyeow', 0, 0, 137, 56, 0, 0, 0, '2008-02-13T09:34:14Z', '2024-10-28T11:18:32Z', 'https://avatars.githubusercontent.com/u/213?v=4', 'https://api.github.com/users/chuyeow', 'https://github.com/chuyeow', 'https://api.github.com/users/chuyeow/followers', 'https://api.github.com/users/chuyeow/following', 'https://api.github.com/users/chuyeow/gists', 'https://api.github.com/users/chuyeow/starred', 'https://api.github.com/users/chuyeow/repos', 'https://api.github.com/users/chuyeow/events', 'https://api.github.com/users/chuyeow/received_events', 0); +INSERT INTO `developer` VALUES (214, 'mloughran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martyn Loughran', 'Concentric Health', 'https://concentric.health', 'Cardiff', 'martyn@mloughran.com', NULL, NULL, NULL, 0, 0, 82, 8, 0, 0, 0, '2008-02-13T09:35:43Z', '2024-10-30T16:36:27Z', 'https://avatars.githubusercontent.com/u/214?v=4', 'https://api.github.com/users/mloughran', 'https://github.com/mloughran', 'https://api.github.com/users/mloughran/followers', 'https://api.github.com/users/mloughran/following', 'https://api.github.com/users/mloughran/gists', 'https://api.github.com/users/mloughran/starred', 'https://api.github.com/users/mloughran/repos', 'https://api.github.com/users/mloughran/events', 'https://api.github.com/users/mloughran/received_events', 0); +INSERT INTO `developer` VALUES (215, 'matthewford', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Ford', '@bitzesty ', 'https://bitzesty.com', 'UK', 'matt@bitzesty.com', 'true', 'CTO & Co-founder - @bitzesty - software design, development, support agency:\r\n* Ruby on Rails\r\n* JS\r\n* Elixir/Phoenix\r\n* ReactNative\r\n* Python\r\n\r\n', 'matthewcford', 0, 0, 79, 54, 0, 0, 0, '2008-02-13T09:52:30Z', '2024-10-25T17:04:56Z', 'https://avatars.githubusercontent.com/u/215?v=4', 'https://api.github.com/users/matthewford', 'https://github.com/matthewford', 'https://api.github.com/users/matthewford/followers', 'https://api.github.com/users/matthewford/following', 'https://api.github.com/users/matthewford/gists', 'https://api.github.com/users/matthewford/starred', 'https://api.github.com/users/matthewford/repos', 'https://api.github.com/users/matthewford/events', 'https://api.github.com/users/matthewford/received_events', 0); +INSERT INTO `developer` VALUES (216, 'henrik', 'C', 2.4896710152300687, 0, 0, 0, 0, 0, 0, 'Henrik Nyh', '@barsoom', 'https://henrik.nyh.se', 'Todmorden, UK', 'henrik@nyh.se', NULL, 'Swedish web developer and pug automator in West Yorkshire, UK.', NULL, 0, 0, 430, 23, 0, 0, 0, '2008-02-13T09:55:47Z', '2024-06-19T14:45:43Z', 'https://avatars.githubusercontent.com/u/216?v=4', 'https://api.github.com/users/henrik', 'https://github.com/henrik', 'https://api.github.com/users/henrik/followers', 'https://api.github.com/users/henrik/following', 'https://api.github.com/users/henrik/gists', 'https://api.github.com/users/henrik/starred', 'https://api.github.com/users/henrik/repos', 'https://api.github.com/users/henrik/events', 'https://api.github.com/users/henrik/received_events', 0); +INSERT INTO `developer` VALUES (217, 'tkersey', 'C', 2.98697819341742, 0, 0, 0, 0, 0, 0, 'Tim Kersey', '@thisisartium', 'http://k-t.im', 'Los Angeles, CA', NULL, NULL, 'If you\'d have asked me when I was 3 what I wanted to be when I grew up I would have said a bologna sandwich \r\n', NULL, 0, 0, 459, 1075, 0, 0, 0, '2008-02-13T12:57:00Z', '2024-06-29T23:09:12Z', 'https://avatars.githubusercontent.com/u/217?v=4', 'https://api.github.com/users/tkersey', 'https://github.com/tkersey', 'https://api.github.com/users/tkersey/followers', 'https://api.github.com/users/tkersey/following', 'https://api.github.com/users/tkersey/gists', 'https://api.github.com/users/tkersey/starred', 'https://api.github.com/users/tkersey/repos', 'https://api.github.com/users/tkersey/events', 'https://api.github.com/users/tkersey/received_events', 0); +INSERT INTO `developer` VALUES (218, 'acf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alan Francis', '@sketch-hq ', 'http://alancfrancis.com/', 'Scotland', 'acf+github@alancfrancis.com', NULL, 'ObjectMentor, ThoughtWorks, JPMorgan, Edgecase, FiveRuns, LivingSocial, Sketch', NULL, 0, 0, 59, 2, 0, 0, 0, '2008-02-13T13:13:40Z', '2024-08-15T20:05:59Z', 'https://avatars.githubusercontent.com/u/218?v=4', 'https://api.github.com/users/acf', 'https://github.com/acf', 'https://api.github.com/users/acf/followers', 'https://api.github.com/users/acf/following', 'https://api.github.com/users/acf/gists', 'https://api.github.com/users/acf/starred', 'https://api.github.com/users/acf/repos', 'https://api.github.com/users/acf/events', 'https://api.github.com/users/acf/received_events', 0); +INSERT INTO `developer` VALUES (219, 'dan', 'C', 3.107017857117816, 0, 0, 0, 0, 0, 0, 'Dan Benjamin', '5by5.tv and Fireside.fm', 'http://danbenjamin.com', 'Austin, Texas', 'dan@benjamin.org', 'true', 'Podcaster at 5by5.tv. Founder of Fireside.fm. Way of the future.', 'danbenjamin', 0, 0, 466, 16, 0, 0, 0, '2008-02-13T13:22:57Z', '2024-07-15T23:15:46Z', 'https://avatars.githubusercontent.com/u/219?v=4', 'https://api.github.com/users/dan', 'https://github.com/dan', 'https://api.github.com/users/dan/followers', 'https://api.github.com/users/dan/following', 'https://api.github.com/users/dan/gists', 'https://api.github.com/users/dan/starred', 'https://api.github.com/users/dan/repos', 'https://api.github.com/users/dan/events', 'https://api.github.com/users/dan/received_events', 0); +INSERT INTO `developer` VALUES (220, 'seebq', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Brian Quinn', '@greenzie', 'http://www.seebq.com/', 'Atlanta, GA', 'me@seebq.com', NULL, 'CEO and co-founder of @greenzie, superfan of @bignerdranch, @lawndotcom-git, @scoutapp. Love software, technology, robotics. Do my best debugging while running.', NULL, 0, 0, 82, 15, 0, 0, 0, '2008-02-13T13:30:41Z', '2024-10-25T20:57:09Z', 'https://avatars.githubusercontent.com/u/220?v=4', 'https://api.github.com/users/seebq', 'https://github.com/seebq', 'https://api.github.com/users/seebq/followers', 'https://api.github.com/users/seebq/following', 'https://api.github.com/users/seebq/gists', 'https://api.github.com/users/seebq/starred', 'https://api.github.com/users/seebq/repos', 'https://api.github.com/users/seebq/events', 'https://api.github.com/users/seebq/received_events', 0); +INSERT INTO `developer` VALUES (221, 'delynn', 'C', 0, 0, 0, 0, 0, 0, 0, 'DeLynn Berry', 'The Receptionist', 'http://delynnberry.com', 'Denver', 'delynn@gmail.com', NULL, NULL, NULL, 0, 0, 42, 13, 0, 0, 0, '2008-02-13T13:36:42Z', '2024-09-14T16:41:30Z', 'https://avatars.githubusercontent.com/u/221?v=4', 'https://api.github.com/users/delynn', 'https://github.com/delynn', 'https://api.github.com/users/delynn/followers', 'https://api.github.com/users/delynn/following', 'https://api.github.com/users/delynn/gists', 'https://api.github.com/users/delynn/starred', 'https://api.github.com/users/delynn/repos', 'https://api.github.com/users/delynn/events', 'https://api.github.com/users/delynn/received_events', 0); +INSERT INTO `developer` VALUES (222, 'spicycode', 'C', 0.0888777412221604, 0, 0, 0, 0, 0, 0, 'Chad Humphries', NULL, '', 'US/Eastern', NULL, NULL, NULL, NULL, 0, 0, 290, 31, 0, 0, 0, '2008-02-13T13:57:32Z', '2024-10-30T16:48:19Z', 'https://avatars.githubusercontent.com/u/222?v=4', 'https://api.github.com/users/spicycode', 'https://github.com/spicycode', 'https://api.github.com/users/spicycode/followers', 'https://api.github.com/users/spicycode/following', 'https://api.github.com/users/spicycode/gists', 'https://api.github.com/users/spicycode/starred', 'https://api.github.com/users/spicycode/repos', 'https://api.github.com/users/spicycode/events', 'https://api.github.com/users/spicycode/received_events', 0); +INSERT INTO `developer` VALUES (223, 'ntalbott', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathaniel Talbott', NULL, 'https://nathaniel.talbott.ws/', 'Fuquay Varina, NC, USA', 'nathaniel@talbott.ws', NULL, 'Software engineer. Software business builder. Founded Spreedly. Now on to the next thing.', 'ntalbott', 0, 0, 135, 46, 0, 0, 0, '2008-02-13T14:31:49Z', '2024-10-17T00:53:58Z', 'https://avatars.githubusercontent.com/u/223?v=4', 'https://api.github.com/users/ntalbott', 'https://github.com/ntalbott', 'https://api.github.com/users/ntalbott/followers', 'https://api.github.com/users/ntalbott/following', 'https://api.github.com/users/ntalbott/gists', 'https://api.github.com/users/ntalbott/starred', 'https://api.github.com/users/ntalbott/repos', 'https://api.github.com/users/ntalbott/events', 'https://api.github.com/users/ntalbott/received_events', 0); +INSERT INTO `developer` VALUES (224, 'rdempsey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Dempsey', 'McKinsey & Company', '', 'McLean, VA', 'robertonrails@gmail.com', 'true', 'Experienced Technology Leader, Author, and Speaker', NULL, 0, 0, 92, 22, 0, 0, 0, '2008-02-13T14:36:13Z', '2024-01-23T01:15:12Z', 'https://avatars.githubusercontent.com/u/224?v=4', 'https://api.github.com/users/rdempsey', 'https://github.com/rdempsey', 'https://api.github.com/users/rdempsey/followers', 'https://api.github.com/users/rdempsey/following', 'https://api.github.com/users/rdempsey/gists', 'https://api.github.com/users/rdempsey/starred', 'https://api.github.com/users/rdempsey/repos', 'https://api.github.com/users/rdempsey/events', 'https://api.github.com/users/rdempsey/received_events', 0); +INSERT INTO `developer` VALUES (225, 'mjankowski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Jankowski', 'JANKOWSKI WORLDWIDE UNLIMITED', 'http://jankowski.online/', 'CYBERSPACE', 'matt@jankowski.online', 'true', 'Updating the SDK again.', 'jankowski', 0, 0, 158, 0, 0, 0, 0, '2008-02-13T15:14:39Z', '2024-09-29T23:39:03Z', 'https://avatars.githubusercontent.com/u/225?v=4', 'https://api.github.com/users/mjankowski', 'https://github.com/mjankowski', 'https://api.github.com/users/mjankowski/followers', 'https://api.github.com/users/mjankowski/following', 'https://api.github.com/users/mjankowski/gists', 'https://api.github.com/users/mjankowski/starred', 'https://api.github.com/users/mjankowski/repos', 'https://api.github.com/users/mjankowski/events', 'https://api.github.com/users/mjankowski/received_events', 0); +INSERT INTO `developer` VALUES (226, 'danahern', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Ahern', 'Meta', 'http://www.danahern.com', 'Indianola, WA', NULL, NULL, 'I love programming.', NULL, 0, 0, 36, 1, 0, 0, 0, '2008-02-13T15:42:55Z', '2024-10-08T21:41:21Z', 'https://avatars.githubusercontent.com/u/226?v=4', 'https://api.github.com/users/danahern', 'https://github.com/danahern', 'https://api.github.com/users/danahern/followers', 'https://api.github.com/users/danahern/following', 'https://api.github.com/users/danahern/gists', 'https://api.github.com/users/danahern/starred', 'https://api.github.com/users/danahern/repos', 'https://api.github.com/users/danahern/events', 'https://api.github.com/users/danahern/received_events', 0); +INSERT INTO `developer` VALUES (227, 'dctanner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damien Tanner', '@layercodedev', 'https://dc.tanner.me', 'London, UK', NULL, NULL, 'Co-founder and CEO at Layercode', NULL, 0, 0, 84, 11, 0, 0, 0, '2008-02-13T16:18:56Z', '2024-10-18T13:13:14Z', 'https://avatars.githubusercontent.com/u/227?v=4', 'https://api.github.com/users/dctanner', 'https://github.com/dctanner', 'https://api.github.com/users/dctanner/followers', 'https://api.github.com/users/dctanner/following', 'https://api.github.com/users/dctanner/gists', 'https://api.github.com/users/dctanner/starred', 'https://api.github.com/users/dctanner/repos', 'https://api.github.com/users/dctanner/events', 'https://api.github.com/users/dctanner/received_events', 0); +INSERT INTO `developer` VALUES (228, 'alexvollmer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Vollmer', NULL, '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 80, 8, 0, 0, 0, '2008-02-13T16:50:30Z', '2024-10-16T15:53:24Z', 'https://avatars.githubusercontent.com/u/228?v=4', 'https://api.github.com/users/alexvollmer', 'https://github.com/alexvollmer', 'https://api.github.com/users/alexvollmer/followers', 'https://api.github.com/users/alexvollmer/following', 'https://api.github.com/users/alexvollmer/gists', 'https://api.github.com/users/alexvollmer/starred', 'https://api.github.com/users/alexvollmer/repos', 'https://api.github.com/users/alexvollmer/events', 'https://api.github.com/users/alexvollmer/received_events', 0); +INSERT INTO `developer` VALUES (229, 'RailsAddict', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-13T17:40:15Z', '2021-03-02T19:31:12Z', 'https://avatars.githubusercontent.com/u/229?v=4', 'https://api.github.com/users/RailsAddict', 'https://github.com/RailsAddict', 'https://api.github.com/users/RailsAddict/followers', 'https://api.github.com/users/RailsAddict/following', 'https://api.github.com/users/RailsAddict/gists', 'https://api.github.com/users/RailsAddict/starred', 'https://api.github.com/users/RailsAddict/repos', 'https://api.github.com/users/RailsAddict/events', 'https://api.github.com/users/RailsAddict/received_events', 0); +INSERT INTO `developer` VALUES (230, 'scharfie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Scharf', NULL, 'http://scharfie.tumblr.com', 'Morgantown, WV', 'scharfie@gmail.com', NULL, NULL, NULL, 0, 0, 32, 5, 0, 0, 0, '2008-02-13T17:44:20Z', '2024-07-17T14:28:12Z', 'https://avatars.githubusercontent.com/u/230?v=4', 'https://api.github.com/users/scharfie', 'https://github.com/scharfie', 'https://api.github.com/users/scharfie/followers', 'https://api.github.com/users/scharfie/following', 'https://api.github.com/users/scharfie/gists', 'https://api.github.com/users/scharfie/starred', 'https://api.github.com/users/scharfie/repos', 'https://api.github.com/users/scharfie/events', 'https://api.github.com/users/scharfie/received_events', 0); +INSERT INTO `developer` VALUES (231, 'jhardy-deleteme', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeffrey Hardy', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-13T17:51:46Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/231?v=4', 'https://api.github.com/users/jhardy-deleteme', 'https://github.com/jhardy-deleteme', 'https://api.github.com/users/jhardy-deleteme/followers', 'https://api.github.com/users/jhardy-deleteme/following', 'https://api.github.com/users/jhardy-deleteme/gists', 'https://api.github.com/users/jhardy-deleteme/starred', 'https://api.github.com/users/jhardy-deleteme/repos', 'https://api.github.com/users/jhardy-deleteme/events', 'https://api.github.com/users/jhardy-deleteme/received_events', 0); +INSERT INTO `developer` VALUES (232, 'daikini', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Younger', NULL, 'http://daikini.com', 'Buhl, ID', 'jonathan@daikini.com', 'true', NULL, NULL, 0, 0, 29, 1, 0, 0, 0, '2008-02-13T17:55:22Z', '2024-02-16T16:16:25Z', 'https://avatars.githubusercontent.com/u/232?v=4', 'https://api.github.com/users/daikini', 'https://github.com/daikini', 'https://api.github.com/users/daikini/followers', 'https://api.github.com/users/daikini/following', 'https://api.github.com/users/daikini/gists', 'https://api.github.com/users/daikini/starred', 'https://api.github.com/users/daikini/repos', 'https://api.github.com/users/daikini/events', 'https://api.github.com/users/daikini/received_events', 0); +INSERT INTO `developer` VALUES (233, 'tdreyno', 'C', 2.0095123604284866, 0, 0, 0, 0, 0, 0, 'Thomas Reynolds', NULL, '', 'Portland, OR', 'me@tdreyno.com', NULL, NULL, NULL, 0, 0, 402, 1, 0, 0, 0, '2008-02-13T17:55:33Z', '2024-10-11T18:20:36Z', 'https://avatars.githubusercontent.com/u/233?v=4', 'https://api.github.com/users/tdreyno', 'https://github.com/tdreyno', 'https://api.github.com/users/tdreyno/followers', 'https://api.github.com/users/tdreyno/following', 'https://api.github.com/users/tdreyno/gists', 'https://api.github.com/users/tdreyno/starred', 'https://api.github.com/users/tdreyno/repos', 'https://api.github.com/users/tdreyno/events', 'https://api.github.com/users/tdreyno/received_events', 0); +INSERT INTO `developer` VALUES (234, 'ryenski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Heneise', '@BoosterStage ', 'https://boosterstage.net', 'Austin, TX', NULL, 'true', 'Entrepreneurial senior full-stack developer with experience in all aspects of the product delivery cycle.', 'Booster_Stage', 0, 0, 45, 50, 0, 0, 0, '2008-02-13T17:55:51Z', '2024-10-21T22:30:43Z', 'https://avatars.githubusercontent.com/u/234?v=4', 'https://api.github.com/users/ryenski', 'https://github.com/ryenski', 'https://api.github.com/users/ryenski/followers', 'https://api.github.com/users/ryenski/following', 'https://api.github.com/users/ryenski/gists', 'https://api.github.com/users/ryenski/starred', 'https://api.github.com/users/ryenski/repos', 'https://api.github.com/users/ryenski/events', 'https://api.github.com/users/ryenski/received_events', 0); +INSERT INTO `developer` VALUES (235, 'jnunemaker', 'B-', 29.001288169631685, 0, 0, 0, 0, 0, 0, 'John Nunemaker', '@verygoodsoftwarellc, @fewerandfaster and @boxoutsports ', 'http://johnnunemaker.com', 'US', 'nunemaker@gmail.com', NULL, 'Programmer.', 'jnunemaker', 0, 0, 1976, 270, 0, 0, 0, '2008-02-13T18:00:42Z', '2024-11-02T03:08:58Z', 'https://avatars.githubusercontent.com/u/235?v=4', 'https://api.github.com/users/jnunemaker', 'https://github.com/jnunemaker', 'https://api.github.com/users/jnunemaker/followers', 'https://api.github.com/users/jnunemaker/following', 'https://api.github.com/users/jnunemaker/gists', 'https://api.github.com/users/jnunemaker/starred', 'https://api.github.com/users/jnunemaker/repos', 'https://api.github.com/users/jnunemaker/events', 'https://api.github.com/users/jnunemaker/received_events', 0); +INSERT INTO `developer` VALUES (236, 'shayarnett', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shay', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 122, 36, 0, 0, 0, '2021-07-26T12:56:54Z', '2024-06-19T18:58:05Z', 'https://avatars.githubusercontent.com/u/236?v=4', 'https://api.github.com/users/shayarnett', 'https://github.com/shayarnett', 'https://api.github.com/users/shayarnett/followers', 'https://api.github.com/users/shayarnett/following', 'https://api.github.com/users/shayarnett/gists', 'https://api.github.com/users/shayarnett/starred', 'https://api.github.com/users/shayarnett/repos', 'https://api.github.com/users/shayarnett/events', 'https://api.github.com/users/shayarnett/received_events', 0); +INSERT INTO `developer` VALUES (237, 'chad', 'C', 11.012487137958143, 0, 0, 0, 0, 0, 0, 'Chad Fowler', 'BlueYard', 'http://chadfowler.com', 'Arkansas', 'chad@chadfowler.com', NULL, 'blueyard', 'chadfowler', 0, 0, 927, 41, 0, 0, 0, '2008-02-13T18:08:31Z', '2024-10-27T19:28:06Z', 'https://avatars.githubusercontent.com/u/237?v=4', 'https://api.github.com/users/chad', 'https://github.com/chad', 'https://api.github.com/users/chad/followers', 'https://api.github.com/users/chad/following', 'https://api.github.com/users/chad/gists', 'https://api.github.com/users/chad/starred', 'https://api.github.com/users/chad/repos', 'https://api.github.com/users/chad/events', 'https://api.github.com/users/chad/received_events', 0); +INSERT INTO `developer` VALUES (238, 'superphly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cody Marx Bailey', NULL, 'http://codymarxbailey.com', 'Mexico City, Mexico', 'superphly@gmail.com', 'true', NULL, NULL, 0, 0, 42, 18, 0, 0, 0, '2008-02-13T18:09:04Z', '2024-10-02T13:16:31Z', 'https://avatars.githubusercontent.com/u/238?v=4', 'https://api.github.com/users/superphly', 'https://github.com/superphly', 'https://api.github.com/users/superphly/followers', 'https://api.github.com/users/superphly/following', 'https://api.github.com/users/superphly/gists', 'https://api.github.com/users/superphly/starred', 'https://api.github.com/users/superphly/repos', 'https://api.github.com/users/superphly/events', 'https://api.github.com/users/superphly/received_events', 0); +INSERT INTO `developer` VALUES (239, 'swhitt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Whittaker', 'block scope LLC', 'https://swhitt.net', 'Houston, TX', 'swhitt@gmail.com', NULL, NULL, NULL, 0, 0, 25, 25, 0, 0, 0, '2008-02-13T18:09:36Z', '2024-10-31T13:42:21Z', 'https://avatars.githubusercontent.com/u/239?v=4', 'https://api.github.com/users/swhitt', 'https://github.com/swhitt', 'https://api.github.com/users/swhitt/followers', 'https://api.github.com/users/swhitt/following', 'https://api.github.com/users/swhitt/gists', 'https://api.github.com/users/swhitt/starred', 'https://api.github.com/users/swhitt/repos', 'https://api.github.com/users/swhitt/events', 'https://api.github.com/users/swhitt/received_events', 0); +INSERT INTO `developer` VALUES (240, 'bryanl', 'C', 6.369837325183771, 0, 2, 7, 146, 3, 0, 'Bryan Liles', NULL, 'http://smartic.us', 'Baltimore, MD', 'iam@smartic.us', 'true', 'I write software and I like computrers and I don\'t like spell check', NULL, 0, 0, 547, 7, 0, 0, 0, '2008-02-13T18:25:53Z', '2024-08-12T23:24:12Z', 'https://avatars.githubusercontent.com/u/240?v=4', 'https://api.github.com/users/bryanl', 'https://github.com/bryanl', 'https://api.github.com/users/bryanl/followers', 'https://api.github.com/users/bryanl/following', 'https://api.github.com/users/bryanl/gists', 'https://api.github.com/users/bryanl/starred', 'https://api.github.com/users/bryanl/repos', 'https://api.github.com/users/bryanl/events', 'https://api.github.com/users/bryanl/received_events', 0); +INSERT INTO `developer` VALUES (241, 'jschairb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Schairbaum', NULL, '', 'San Antonio, TX', 'joshua.schairbaum@gmail.com', NULL, NULL, 'jschairb', 0, 0, 47, 28, 0, 0, 0, '2008-02-13T18:28:23Z', '2023-07-11T07:27:41Z', 'https://avatars.githubusercontent.com/u/241?v=4', 'https://api.github.com/users/jschairb', 'https://github.com/jschairb', 'https://api.github.com/users/jschairb/followers', 'https://api.github.com/users/jschairb/following', 'https://api.github.com/users/jschairb/gists', 'https://api.github.com/users/jschairb/starred', 'https://api.github.com/users/jschairb/repos', 'https://api.github.com/users/jschairb/events', 'https://api.github.com/users/jschairb/received_events', 0); +INSERT INTO `developer` VALUES (242, 'adelcambre', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Delcambre', '@stripe', '', 'Boulder, CO', 'adelcambre@gmail.com', NULL, NULL, NULL, 0, 0, 174, 5, 0, 0, 0, '2008-02-13T18:43:41Z', '2024-07-26T12:40:48Z', 'https://avatars.githubusercontent.com/u/242?v=4', 'https://api.github.com/users/adelcambre', 'https://github.com/adelcambre', 'https://api.github.com/users/adelcambre/followers', 'https://api.github.com/users/adelcambre/following', 'https://api.github.com/users/adelcambre/gists', 'https://api.github.com/users/adelcambre/starred', 'https://api.github.com/users/adelcambre/repos', 'https://api.github.com/users/adelcambre/events', 'https://api.github.com/users/adelcambre/received_events', 0); +INSERT INTO `developer` VALUES (243, 'psi', 'C', 0, 0, 0, 0, 0, 0, 0, 'JD Harrington', NULL, '', 'Philadelphia, PA', 'jd@jdharrington.net', NULL, NULL, NULL, 0, 0, 44, 9, 0, 0, 0, '2008-02-13T18:55:10Z', '2024-09-27T00:51:11Z', 'https://avatars.githubusercontent.com/u/243?v=4', 'https://api.github.com/users/psi', 'https://github.com/psi', 'https://api.github.com/users/psi/followers', 'https://api.github.com/users/psi/following', 'https://api.github.com/users/psi/gists', 'https://api.github.com/users/psi/starred', 'https://api.github.com/users/psi/repos', 'https://api.github.com/users/psi/events', 'https://api.github.com/users/psi/received_events', 0); +INSERT INTO `developer` VALUES (244, 'watsonian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joel Watson', '@DopplerHQ ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 103, 1, 0, 0, 0, '2008-02-13T19:20:59Z', '2024-10-23T20:37:02Z', 'https://avatars.githubusercontent.com/u/244?v=4', 'https://api.github.com/users/watsonian', 'https://github.com/watsonian', 'https://api.github.com/users/watsonian/followers', 'https://api.github.com/users/watsonian/following', 'https://api.github.com/users/watsonian/gists', 'https://api.github.com/users/watsonian/starred', 'https://api.github.com/users/watsonian/repos', 'https://api.github.com/users/watsonian/events', 'https://api.github.com/users/watsonian/received_events', 0); +INSERT INTO `developer` VALUES (245, 'marcel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcel Molina', NULL, 'http://twitter.com/noradio', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 227, 24, 0, 0, 0, '2008-02-13T19:28:59Z', '2024-10-10T04:20:08Z', 'https://avatars.githubusercontent.com/u/245?v=4', 'https://api.github.com/users/marcel', 'https://github.com/marcel', 'https://api.github.com/users/marcel/followers', 'https://api.github.com/users/marcel/following', 'https://api.github.com/users/marcel/gists', 'https://api.github.com/users/marcel/starred', 'https://api.github.com/users/marcel/repos', 'https://api.github.com/users/marcel/events', 'https://api.github.com/users/marcel/received_events', 0); +INSERT INTO `developer` VALUES (246, 'brapse', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean Braithwaite', NULL, 'brapse.io', 'Mr. Wordwide', 'brapse@gmail.com', NULL, 'Advocate of measured movements', NULL, 0, 0, 62, 11, 0, 0, 0, '2008-02-13T19:30:12Z', '2024-10-31T14:26:53Z', 'https://avatars.githubusercontent.com/u/246?v=4', 'https://api.github.com/users/brapse', 'https://github.com/brapse', 'https://api.github.com/users/brapse/followers', 'https://api.github.com/users/brapse/following', 'https://api.github.com/users/brapse/gists', 'https://api.github.com/users/brapse/starred', 'https://api.github.com/users/brapse/repos', 'https://api.github.com/users/brapse/events', 'https://api.github.com/users/brapse/received_events', 0); +INSERT INTO `developer` VALUES (247, 'francois', 'C', 0, 0, 0, 0, 0, 0, 0, 'François Beausoleil', NULL, '', 'Sherbrooke, QC, Canada', 'francois@teksol.info', NULL, NULL, NULL, 0, 0, 103, 2, 0, 0, 0, '2008-02-13T19:36:52Z', '2024-10-16T19:53:29Z', 'https://avatars.githubusercontent.com/u/247?v=4', 'https://api.github.com/users/francois', 'https://github.com/francois', 'https://api.github.com/users/francois/followers', 'https://api.github.com/users/francois/following', 'https://api.github.com/users/francois/gists', 'https://api.github.com/users/francois/starred', 'https://api.github.com/users/francois/repos', 'https://api.github.com/users/francois/events', 'https://api.github.com/users/francois/received_events', 0); +INSERT INTO `developer` VALUES (248, 'aditya', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aditya Chadha', NULL, 'http://4ditya.com', 'New York', 'achadha@glgroup.com', 'true', NULL, NULL, 0, 0, 38, 8, 0, 0, 0, '2008-02-13T19:55:41Z', '2024-09-19T02:47:16Z', 'https://avatars.githubusercontent.com/u/248?v=4', 'https://api.github.com/users/aditya', 'https://github.com/aditya', 'https://api.github.com/users/aditya/followers', 'https://api.github.com/users/aditya/following', 'https://api.github.com/users/aditya/gists', 'https://api.github.com/users/aditya/starred', 'https://api.github.com/users/aditya/repos', 'https://api.github.com/users/aditya/events', 'https://api.github.com/users/aditya/received_events', 0); +INSERT INTO `developer` VALUES (249, 'agile', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Vincent', NULL, 'http://mike.vincent.ws', 'FTW, TX', 'mike@vincent.ws', NULL, NULL, NULL, 0, 0, 63, 94, 0, 0, 0, '2008-02-13T19:58:02Z', '2024-08-01T06:35:04Z', 'https://avatars.githubusercontent.com/u/249?v=4', 'https://api.github.com/users/agile', 'https://github.com/agile', 'https://api.github.com/users/agile/followers', 'https://api.github.com/users/agile/following', 'https://api.github.com/users/agile/gists', 'https://api.github.com/users/agile/starred', 'https://api.github.com/users/agile/repos', 'https://api.github.com/users/agile/events', 'https://api.github.com/users/agile/received_events', 0); +INSERT INTO `developer` VALUES (250, 'itstommymorgan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tommy Morgan', '@tidelift ', 'https://tommymorgan.name', 'Greenville, SC', 'tommy@tommymorgan.name', NULL, NULL, 'itstommymorgan', 0, 0, 88, 16, 0, 0, 0, '2008-02-13T20:22:29Z', '2023-08-13T14:49:51Z', 'https://avatars.githubusercontent.com/u/250?v=4', 'https://api.github.com/users/itstommymorgan', 'https://github.com/itstommymorgan', 'https://api.github.com/users/itstommymorgan/followers', 'https://api.github.com/users/itstommymorgan/following', 'https://api.github.com/users/itstommymorgan/gists', 'https://api.github.com/users/itstommymorgan/starred', 'https://api.github.com/users/itstommymorgan/repos', 'https://api.github.com/users/itstommymorgan/events', 'https://api.github.com/users/itstommymorgan/received_events', 0); +INSERT INTO `developer` VALUES (251, 'toretore', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tore Darell', NULL, '', '未知', 'toredarell@gmail.com', NULL, NULL, NULL, 0, 0, 37, 4, 0, 0, 0, '2008-02-13T20:53:40Z', '2024-10-23T13:43:43Z', 'https://avatars.githubusercontent.com/u/251?v=4', 'https://api.github.com/users/toretore', 'https://github.com/toretore', 'https://api.github.com/users/toretore/followers', 'https://api.github.com/users/toretore/following', 'https://api.github.com/users/toretore/gists', 'https://api.github.com/users/toretore/starred', 'https://api.github.com/users/toretore/repos', 'https://api.github.com/users/toretore/events', 'https://api.github.com/users/toretore/received_events', 0); +INSERT INTO `developer` VALUES (252, 'vangberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harry Vangberg', NULL, 'harry.vangberg.name', 'Aalborg, Denmark', 'harry@vangberg.name', NULL, 'Biotech student and sometimes software developer.', NULL, 0, 0, 116, 20, 0, 0, 0, '2008-02-13T21:02:05Z', '2024-10-21T05:43:50Z', 'https://avatars.githubusercontent.com/u/252?v=4', 'https://api.github.com/users/vangberg', 'https://github.com/vangberg', 'https://api.github.com/users/vangberg/followers', 'https://api.github.com/users/vangberg/following', 'https://api.github.com/users/vangberg/gists', 'https://api.github.com/users/vangberg/starred', 'https://api.github.com/users/vangberg/repos', 'https://api.github.com/users/vangberg/events', 'https://api.github.com/users/vangberg/received_events', 0); +INSERT INTO `developer` VALUES (253, 'jchris', 'C', 6.828247431830071, 0, 0, 0, 0, 0, 0, 'Chris Anderson', 'Fireproof', '', 'Portland, OR', 'jchris@gmail.com', NULL, 'Stacks, Platforms, and Databases', 'jchris', 0, 0, 683, 40, 0, 0, 0, '2008-02-13T21:08:18Z', '2024-11-04T13:15:31Z', 'https://avatars.githubusercontent.com/u/253?v=4', 'https://api.github.com/users/jchris', 'https://github.com/jchris', 'https://api.github.com/users/jchris/followers', 'https://api.github.com/users/jchris/following', 'https://api.github.com/users/jchris/gists', 'https://api.github.com/users/jchris/starred', 'https://api.github.com/users/jchris/repos', 'https://api.github.com/users/jchris/events', 'https://api.github.com/users/jchris/received_events', 0); +INSERT INTO `developer` VALUES (254, 'gspederson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Pederson', 'Nsight Web Development', 'nsightdevelopment.com', 'Orlando, FL USA', 'Greg@nsightdevelopment.com', NULL, NULL, NULL, 0, 0, 16, 4, 0, 0, 0, '2008-02-13T21:23:03Z', '2020-05-18T19:16:00Z', 'https://avatars.githubusercontent.com/u/254?v=4', 'https://api.github.com/users/gspederson', 'https://github.com/gspederson', 'https://api.github.com/users/gspederson/followers', 'https://api.github.com/users/gspederson/following', 'https://api.github.com/users/gspederson/gists', 'https://api.github.com/users/gspederson/starred', 'https://api.github.com/users/gspederson/repos', 'https://api.github.com/users/gspederson/events', 'https://api.github.com/users/gspederson/received_events', 0); +INSERT INTO `developer` VALUES (255, 'psq', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pascal', NULL, 'http://blog.nanorails.com', 'Saratoga, CA', 'psq@nanorails.com', NULL, NULL, 'psq', 0, 0, 49, 0, 0, 0, 0, '2008-02-13T22:00:33Z', '2022-03-21T23:32:10Z', 'https://avatars.githubusercontent.com/u/255?v=4', 'https://api.github.com/users/psq', 'https://github.com/psq', 'https://api.github.com/users/psq/followers', 'https://api.github.com/users/psq/following', 'https://api.github.com/users/psq/gists', 'https://api.github.com/users/psq/starred', 'https://api.github.com/users/psq/repos', 'https://api.github.com/users/psq/events', 'https://api.github.com/users/psq/received_events', 0); +INSERT INTO `developer` VALUES (256, 'andreimaxim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrei Maxim', '@WEForum ', 'https://andreimaxim.com', 'Bucharest, Romania', 'andrei@andreimaxim.ro', NULL, NULL, 'rockatanescu', 0, 0, 49, 3, 0, 0, 0, '2008-02-13T22:47:08Z', '2024-10-25T04:22:37Z', 'https://avatars.githubusercontent.com/u/256?v=4', 'https://api.github.com/users/andreimaxim', 'https://github.com/andreimaxim', 'https://api.github.com/users/andreimaxim/followers', 'https://api.github.com/users/andreimaxim/following', 'https://api.github.com/users/andreimaxim/gists', 'https://api.github.com/users/andreimaxim/starred', 'https://api.github.com/users/andreimaxim/repos', 'https://api.github.com/users/andreimaxim/events', 'https://api.github.com/users/andreimaxim/received_events', 0); +INSERT INTO `developer` VALUES (257, 'robbyrussell', 'A', 76.09113338695823, 0, 0, 0, 0, 0, 0, 'Robby Russell', '@planetargon ', 'https://www.planetargon.com/robby', 'Portland, Oregon USA', NULL, NULL, 'CEO/Partner @planetargon. Old-timer Ruby on Rails developer. Creator of @ohmyzsh. Host of Maintainable Software Podcast', 'robbyrussell', 0, 0, 4722, 89, 0, 0, 0, '2008-02-13T23:04:43Z', '2024-10-28T17:45:52Z', 'https://avatars.githubusercontent.com/u/257?v=4', 'https://api.github.com/users/robbyrussell', 'https://github.com/robbyrussell', 'https://api.github.com/users/robbyrussell/followers', 'https://api.github.com/users/robbyrussell/following', 'https://api.github.com/users/robbyrussell/gists', 'https://api.github.com/users/robbyrussell/starred', 'https://api.github.com/users/robbyrussell/repos', 'https://api.github.com/users/robbyrussell/events', 'https://api.github.com/users/robbyrussell/received_events', 0); +INSERT INTO `developer` VALUES (258, 'kommen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dieter Komendera', 'abloom', 'https://www.komendera.com/', 'Vienna, Austria', 'dieter@komendera.com', NULL, 'Working on @nextjournal, @sauspiel & @boldpoker, https://clerk.vision', NULL, 0, 0, 88, 7, 0, 0, 0, '2008-02-13T23:06:58Z', '2024-09-21T20:38:28Z', 'https://avatars.githubusercontent.com/u/258?v=4', 'https://api.github.com/users/kommen', 'https://github.com/kommen', 'https://api.github.com/users/kommen/followers', 'https://api.github.com/users/kommen/following', 'https://api.github.com/users/kommen/gists', 'https://api.github.com/users/kommen/starred', 'https://api.github.com/users/kommen/repos', 'https://api.github.com/users/kommen/events', 'https://api.github.com/users/kommen/received_events', 0); +INSERT INTO `developer` VALUES (259, 'protocool', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trevor Squires', NULL, '', 'Comox Valley, BC, Canada', NULL, 'true', 'iOS and macOS developer, proficient in Objective-C and Swift. Most recently at MartianCraft, currently available for hire.', NULL, 0, 0, 74, 0, 0, 0, 0, '2008-02-13T23:09:48Z', '2023-04-26T04:10:24Z', 'https://avatars.githubusercontent.com/u/259?v=4', 'https://api.github.com/users/protocool', 'https://github.com/protocool', 'https://api.github.com/users/protocool/followers', 'https://api.github.com/users/protocool/following', 'https://api.github.com/users/protocool/gists', 'https://api.github.com/users/protocool/starred', 'https://api.github.com/users/protocool/repos', 'https://api.github.com/users/protocool/events', 'https://api.github.com/users/protocool/received_events', 0); +INSERT INTO `developer` VALUES (260, 'maddox', 'C', 10.10361539851229, 0, 0, 0, 0, 0, 0, 'Jon Maddox', '@fancybits ', 'http://jonmaddox.com', 'Richmond, Va', 'jon@jonmaddox.com', NULL, 'Media centers, emulation, and home automation. Making TV dreams come true at @fancybits, formerly @github.', NULL, 0, 0, 874, 6, 0, 0, 0, '2008-02-13T23:33:31Z', '2024-04-13T13:00:52Z', 'https://avatars.githubusercontent.com/u/260?v=4', 'https://api.github.com/users/maddox', 'https://github.com/maddox', 'https://api.github.com/users/maddox/followers', 'https://api.github.com/users/maddox/following', 'https://api.github.com/users/maddox/gists', 'https://api.github.com/users/maddox/starred', 'https://api.github.com/users/maddox/repos', 'https://api.github.com/users/maddox/events', 'https://api.github.com/users/maddox/received_events', 0); +INSERT INTO `developer` VALUES (261, 'jswanner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob Swanner', '@envylabs', 'jacobswanner.com', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 92, 5, 0, 0, 0, '2008-02-14T00:57:05Z', '2024-11-02T12:06:36Z', 'https://avatars.githubusercontent.com/u/261?v=4', 'https://api.github.com/users/jswanner', 'https://github.com/jswanner', 'https://api.github.com/users/jswanner/followers', 'https://api.github.com/users/jswanner/following', 'https://api.github.com/users/jswanner/gists', 'https://api.github.com/users/jswanner/starred', 'https://api.github.com/users/jswanner/repos', 'https://api.github.com/users/jswanner/events', 'https://api.github.com/users/jswanner/received_events', 0); +INSERT INTO `developer` VALUES (262, 'kastner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Kastner', NULL, 'http://metaatem.net', 'New Jersey', 'kastner@gmail.com', NULL, NULL, NULL, 0, 0, 217, 57, 0, 0, 0, '2008-02-14T01:25:56Z', '2024-06-28T12:06:34Z', 'https://avatars.githubusercontent.com/u/262?v=4', 'https://api.github.com/users/kastner', 'https://github.com/kastner', 'https://api.github.com/users/kastner/followers', 'https://api.github.com/users/kastner/following', 'https://api.github.com/users/kastner/gists', 'https://api.github.com/users/kastner/starred', 'https://api.github.com/users/kastner/repos', 'https://api.github.com/users/kastner/events', 'https://api.github.com/users/kastner/received_events', 0); +INSERT INTO `developer` VALUES (263, 'halorgium', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Carey-Smith', NULL, 'http://halorgium.net/', 'Floating down a mountain either by ski or foot', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-14T01:47:47Z', '2024-10-04T19:08:45Z', 'https://avatars.githubusercontent.com/u/263?v=4', 'https://api.github.com/users/halorgium', 'https://github.com/halorgium', 'https://api.github.com/users/halorgium/followers', 'https://api.github.com/users/halorgium/following', 'https://api.github.com/users/halorgium/gists', 'https://api.github.com/users/halorgium/starred', 'https://api.github.com/users/halorgium/repos', 'https://api.github.com/users/halorgium/events', 'https://api.github.com/users/halorgium/received_events', 0); +INSERT INTO `developer` VALUES (264, 'merb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Merb', NULL, 'http://merbivore.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-14T02:05:27Z', '2019-10-30T16:54:12Z', 'https://avatars.githubusercontent.com/u/264?v=4', 'https://api.github.com/users/merb', 'https://github.com/merb', 'https://api.github.com/users/merb/followers', 'https://api.github.com/users/merb/following', 'https://api.github.com/users/merb/gists', 'https://api.github.com/users/merb/starred', 'https://api.github.com/users/merb/repos', 'https://api.github.com/users/merb/events', 'https://api.github.com/users/merb/received_events', 0); +INSERT INTO `developer` VALUES (265, 'lachie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lachie Cox', 'HotDoc', 'smartbomb.com.au', 'Sydney, Australia', 'lachiec@gmail.com', NULL, NULL, NULL, 0, 0, 84, 28, 0, 0, 0, '2008-02-14T02:36:11Z', '2024-04-28T09:16:53Z', 'https://avatars.githubusercontent.com/u/265?v=4', 'https://api.github.com/users/lachie', 'https://github.com/lachie', 'https://api.github.com/users/lachie/followers', 'https://api.github.com/users/lachie/following', 'https://api.github.com/users/lachie/gists', 'https://api.github.com/users/lachie/starred', 'https://api.github.com/users/lachie/repos', 'https://api.github.com/users/lachie/events', 'https://api.github.com/users/lachie/received_events', 0); +INSERT INTO `developer` VALUES (266, 'anildigital', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anil Wadghule', 'Erlang Solutions (@esl)', 'https://anilwadghule.com', 'Pune, India', 'anil.wadghule@erlang-solutions.com', 'true', 'Elixir Developer', NULL, 0, 0, 125, 36, 0, 0, 0, '2008-02-14T02:49:11Z', '2024-10-23T17:07:06Z', 'https://avatars.githubusercontent.com/u/266?v=4', 'https://api.github.com/users/anildigital', 'https://github.com/anildigital', 'https://api.github.com/users/anildigital/followers', 'https://api.github.com/users/anildigital/following', 'https://api.github.com/users/anildigital/gists', 'https://api.github.com/users/anildigital/starred', 'https://api.github.com/users/anildigital/repos', 'https://api.github.com/users/anildigital/events', 'https://api.github.com/users/anildigital/received_events', 0); +INSERT INTO `developer` VALUES (267, 'cwsaylor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Saylor', 'http://www.barrelandink.com', 'http://justhack.com', 'San Francisco, CA', 'cwsaylor@gmail.com', NULL, NULL, NULL, 0, 0, 49, 22, 0, 0, 0, '2008-02-14T04:03:35Z', '2024-10-10T20:00:46Z', 'https://avatars.githubusercontent.com/u/267?v=4', 'https://api.github.com/users/cwsaylor', 'https://github.com/cwsaylor', 'https://api.github.com/users/cwsaylor/followers', 'https://api.github.com/users/cwsaylor/following', 'https://api.github.com/users/cwsaylor/gists', 'https://api.github.com/users/cwsaylor/starred', 'https://api.github.com/users/cwsaylor/repos', 'https://api.github.com/users/cwsaylor/events', 'https://api.github.com/users/cwsaylor/received_events', 0); +INSERT INTO `developer` VALUES (268, 'pdsphil', 'C', 0, 0, 0, 0, 0, 0, 0, 'Phil Ripperger', NULL, 'philblog.com', 'Colorado Springs, CO', 'phil@pdatasolutions.com', NULL, NULL, NULL, 0, 0, 25, 4, 0, 0, 0, '2008-02-14T04:29:00Z', '2024-10-15T23:01:52Z', 'https://avatars.githubusercontent.com/u/268?v=4', 'https://api.github.com/users/pdsphil', 'https://github.com/pdsphil', 'https://api.github.com/users/pdsphil/followers', 'https://api.github.com/users/pdsphil/following', 'https://api.github.com/users/pdsphil/gists', 'https://api.github.com/users/pdsphil/starred', 'https://api.github.com/users/pdsphil/repos', 'https://api.github.com/users/pdsphil/events', 'https://api.github.com/users/pdsphil/received_events', 0); +INSERT INTO `developer` VALUES (269, 'kamal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kamal Fariz Mahyuddin', 'Bitfluent', 'http://bitfluent.com', 'San Francisco', 'kamal.fariz@gmail.com', NULL, NULL, NULL, 0, 0, 161, 62, 0, 0, 0, '2008-02-14T04:42:22Z', '2024-10-22T22:23:50Z', 'https://avatars.githubusercontent.com/u/269?v=4', 'https://api.github.com/users/kamal', 'https://github.com/kamal', 'https://api.github.com/users/kamal/followers', 'https://api.github.com/users/kamal/following', 'https://api.github.com/users/kamal/gists', 'https://api.github.com/users/kamal/starred', 'https://api.github.com/users/kamal/repos', 'https://api.github.com/users/kamal/events', 'https://api.github.com/users/kamal/received_events', 0); +INSERT INTO `developer` VALUES (270, 'bleything', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Bleything', NULL, 'http://bleything.net', 'Seattle, Washington', 'ben@bleything.net', NULL, 'The Puget Sound Convergence Zone\'s leading expert on Clown Computering', 'bleything', 0, 0, 178, 43, 0, 0, 0, '2008-02-14T04:48:18Z', '2024-08-11T23:08:40Z', 'https://avatars.githubusercontent.com/u/270?v=4', 'https://api.github.com/users/bleything', 'https://github.com/bleything', 'https://api.github.com/users/bleything/followers', 'https://api.github.com/users/bleything/following', 'https://api.github.com/users/bleything/gists', 'https://api.github.com/users/bleything/starred', 'https://api.github.com/users/bleything/repos', 'https://api.github.com/users/bleything/events', 'https://api.github.com/users/bleything/received_events', 0); +INSERT INTO `developer` VALUES (271, 'pergesu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'pat.maddox@gmail.com', NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-02-14T05:55:16Z', '2019-06-03T21:15:26Z', 'https://avatars.githubusercontent.com/u/271?v=4', 'https://api.github.com/users/pergesu', 'https://github.com/pergesu', 'https://api.github.com/users/pergesu/followers', 'https://api.github.com/users/pergesu/following', 'https://api.github.com/users/pergesu/gists', 'https://api.github.com/users/pergesu/starred', 'https://api.github.com/users/pergesu/repos', 'https://api.github.com/users/pergesu/events', 'https://api.github.com/users/pergesu/received_events', 0); +INSERT INTO `developer` VALUES (272, 'caplis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim', NULL, '', 'Melbourne Beach, FL', NULL, NULL, NULL, NULL, 0, 0, 25, 19, 0, 0, 0, '2008-02-14T07:19:44Z', '2024-10-25T18:04:41Z', 'https://avatars.githubusercontent.com/u/272?v=4', 'https://api.github.com/users/caplis', 'https://github.com/caplis', 'https://api.github.com/users/caplis/followers', 'https://api.github.com/users/caplis/following', 'https://api.github.com/users/caplis/gists', 'https://api.github.com/users/caplis/starred', 'https://api.github.com/users/caplis/repos', 'https://api.github.com/users/caplis/events', 'https://api.github.com/users/caplis/received_events', 0); +INSERT INTO `developer` VALUES (273, 'jqr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elijah Miller', '@ready13', 'http://thejqr.com', 'Indianapolis, IN, USA', 'elijah.miller@gmail.com', 'true', 'Up to 3x better than previous versions.', NULL, 0, 0, 145, 63, 0, 0, 0, '2008-02-14T14:41:54Z', '2024-10-29T15:26:23Z', 'https://avatars.githubusercontent.com/u/273?v=4', 'https://api.github.com/users/jqr', 'https://github.com/jqr', 'https://api.github.com/users/jqr/followers', 'https://api.github.com/users/jqr/following', 'https://api.github.com/users/jqr/gists', 'https://api.github.com/users/jqr/starred', 'https://api.github.com/users/jqr/repos', 'https://api.github.com/users/jqr/events', 'https://api.github.com/users/jqr/received_events', 0); +INSERT INTO `developer` VALUES (274, 'mattslack', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Slack', NULL, '', 'Michigan', NULL, NULL, NULL, NULL, 0, 0, 36, 7, 0, 0, 0, '2008-02-14T15:10:10Z', '2024-10-30T22:05:00Z', 'https://avatars.githubusercontent.com/u/274?v=4', 'https://api.github.com/users/mattslack', 'https://github.com/mattslack', 'https://api.github.com/users/mattslack/followers', 'https://api.github.com/users/mattslack/following', 'https://api.github.com/users/mattslack/gists', 'https://api.github.com/users/mattslack/starred', 'https://api.github.com/users/mattslack/repos', 'https://api.github.com/users/mattslack/events', 'https://api.github.com/users/mattslack/received_events', 0); +INSERT INTO `developer` VALUES (275, 'tjogin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tomas Jogin', NULL, '', 'Sweden', 'tomas@jogin.com', NULL, NULL, NULL, 0, 0, 20, 6, 0, 0, 0, '2008-02-14T17:11:33Z', '2019-12-02T07:43:20Z', 'https://avatars.githubusercontent.com/u/275?v=4', 'https://api.github.com/users/tjogin', 'https://github.com/tjogin', 'https://api.github.com/users/tjogin/followers', 'https://api.github.com/users/tjogin/following', 'https://api.github.com/users/tjogin/gists', 'https://api.github.com/users/tjogin/starred', 'https://api.github.com/users/tjogin/repos', 'https://api.github.com/users/tjogin/events', 'https://api.github.com/users/tjogin/received_events', 0); +INSERT INTO `developer` VALUES (276, 'robbevan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Bevan', 'XPT', 'robbevan.com', 'London', 'robbevan@xpt.com', NULL, NULL, NULL, 0, 0, 28, 21, 0, 0, 0, '2008-02-14T17:12:48Z', '2024-10-31T09:11:01Z', 'https://avatars.githubusercontent.com/u/276?v=4', 'https://api.github.com/users/robbevan', 'https://github.com/robbevan', 'https://api.github.com/users/robbevan/followers', 'https://api.github.com/users/robbevan/following', 'https://api.github.com/users/robbevan/gists', 'https://api.github.com/users/robbevan/starred', 'https://api.github.com/users/robbevan/repos', 'https://api.github.com/users/robbevan/events', 'https://api.github.com/users/robbevan/received_events', 0); +INSERT INTO `developer` VALUES (277, 'marten', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marten Veldthuis', '@roqua ', '', 'Beilen, Netherlands', 'marten@veldthuis.com', NULL, NULL, NULL, 0, 0, 30, 2, 0, 0, 0, '2008-02-14T17:17:58Z', '2024-07-19T14:26:49Z', 'https://avatars.githubusercontent.com/u/277?v=4', 'https://api.github.com/users/marten', 'https://github.com/marten', 'https://api.github.com/users/marten/followers', 'https://api.github.com/users/marten/following', 'https://api.github.com/users/marten/gists', 'https://api.github.com/users/marten/starred', 'https://api.github.com/users/marten/repos', 'https://api.github.com/users/marten/events', 'https://api.github.com/users/marten/received_events', 0); +INSERT INTO `developer` VALUES (278, 'gnufied', 'C', 0.22606592830832672, 0, 0, 0, 0, 0, 0, 'Hemant Kumar', 'Red Hat', 'http://gnufied.org', 'Atlanta, US', NULL, 'true', NULL, NULL, 0, 0, 298, 115, 0, 0, 0, '2008-02-14T17:54:50Z', '2024-07-22T14:00:58Z', 'https://avatars.githubusercontent.com/u/278?v=4', 'https://api.github.com/users/gnufied', 'https://github.com/gnufied', 'https://api.github.com/users/gnufied/followers', 'https://api.github.com/users/gnufied/following', 'https://api.github.com/users/gnufied/gists', 'https://api.github.com/users/gnufied/starred', 'https://api.github.com/users/gnufied/repos', 'https://api.github.com/users/gnufied/events', 'https://api.github.com/users/gnufied/received_events', 0); +INSERT INTO `developer` VALUES (279, 'hoverbird', 'C', 2.421076921686985, 0, 0, 0, 0, 0, 0, 'Phenry Ewing', '@chanceagency ', 'neocabgame.com', 'Asheville, NC', NULL, NULL, 'Narrative-focused game designer & developer.\r\nPast: Creative Director on Neo Cab, Lead Designer \"Cat Burglar\" (Netflix), Design/Code on Firewatch, @TwitterEng', 'hoverbird', 0, 0, 426, 200, 0, 0, 0, '2008-02-14T18:09:52Z', '2024-10-24T17:41:57Z', 'https://avatars.githubusercontent.com/u/279?v=4', 'https://api.github.com/users/hoverbird', 'https://github.com/hoverbird', 'https://api.github.com/users/hoverbird/followers', 'https://api.github.com/users/hoverbird/following', 'https://api.github.com/users/hoverbird/gists', 'https://api.github.com/users/hoverbird/starred', 'https://api.github.com/users/hoverbird/repos', 'https://api.github.com/users/hoverbird/events', 'https://api.github.com/users/hoverbird/received_events', 0); +INSERT INTO `developer` VALUES (280, 'beccasaurus', 'C', 3.0898693337320453, 0, 0, 0, 0, 0, 0, 'Rebecca Taylor', NULL, 'https://beccasaur.us', 'Seattle, WA ☔️', NULL, NULL, NULL, 'rebeccca_taylor', 0, 0, 465, 0, 0, 0, 0, '2008-02-14T18:59:31Z', '2024-04-10T18:24:13Z', 'https://avatars.githubusercontent.com/u/280?v=4', 'https://api.github.com/users/beccasaurus', 'https://github.com/beccasaurus', 'https://api.github.com/users/beccasaurus/followers', 'https://api.github.com/users/beccasaurus/following', 'https://api.github.com/users/beccasaurus/gists', 'https://api.github.com/users/beccasaurus/starred', 'https://api.github.com/users/beccasaurus/repos', 'https://api.github.com/users/beccasaurus/events', 'https://api.github.com/users/beccasaurus/received_events', 0); +INSERT INTO `developer` VALUES (281, 'joshuamckenty', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua McKenty', '@polyguardai', 'https://polyguard.ai', '未知', 'jmckenty@gmail.com', NULL, NULL, 'jmckenty', 0, 0, 112, 97, 0, 0, 0, '2008-02-14T19:46:01Z', '2024-10-18T05:42:18Z', 'https://avatars.githubusercontent.com/u/281?v=4', 'https://api.github.com/users/joshuamckenty', 'https://github.com/joshuamckenty', 'https://api.github.com/users/joshuamckenty/followers', 'https://api.github.com/users/joshuamckenty/following', 'https://api.github.com/users/joshuamckenty/gists', 'https://api.github.com/users/joshuamckenty/starred', 'https://api.github.com/users/joshuamckenty/repos', 'https://api.github.com/users/joshuamckenty/events', 'https://api.github.com/users/joshuamckenty/received_events', 0); +INSERT INTO `developer` VALUES (282, 'dfl', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Löwenfels', NULL, 'lowenlabs.org', 'Edinburgh, Scotland', NULL, NULL, NULL, NULL, 0, 0, 39, 17, 0, 0, 0, '2008-02-14T22:33:10Z', '2024-10-11T12:21:03Z', 'https://avatars.githubusercontent.com/u/282?v=4', 'https://api.github.com/users/dfl', 'https://github.com/dfl', 'https://api.github.com/users/dfl/followers', 'https://api.github.com/users/dfl/following', 'https://api.github.com/users/dfl/gists', 'https://api.github.com/users/dfl/starred', 'https://api.github.com/users/dfl/repos', 'https://api.github.com/users/dfl/events', 'https://api.github.com/users/dfl/received_events', 0); +INSERT INTO `developer` VALUES (283, 'floydprice', 'C', 0, 0, 0, 0, 0, 0, 0, 'Floyd Price', NULL, 'http://floydprice.com', 'UK', 'floyd@hampton.io', 'true', NULL, NULL, 0, 0, 15, 3, 0, 0, 0, '2008-02-14T23:01:49Z', '2024-09-18T22:54:17Z', 'https://avatars.githubusercontent.com/u/283?v=4', 'https://api.github.com/users/floydprice', 'https://github.com/floydprice', 'https://api.github.com/users/floydprice/followers', 'https://api.github.com/users/floydprice/following', 'https://api.github.com/users/floydprice/gists', 'https://api.github.com/users/floydprice/starred', 'https://api.github.com/users/floydprice/repos', 'https://api.github.com/users/floydprice/events', 'https://api.github.com/users/floydprice/received_events', 0); +INSERT INTO `developer` VALUES (284, 'allison-lara', 'C', 0, 0, 0, 0, 27, 1, 0, 'Allison Lara', NULL, 'http://alliesaur.us', 'Portland, OR', NULL, NULL, 'Github, drop ICE.', NULL, 0, 0, 34, 8, 0, 0, 0, '2008-02-14T23:06:45Z', '2024-10-29T16:02:13Z', 'https://avatars.githubusercontent.com/u/284?v=4', 'https://api.github.com/users/allison-lara', 'https://github.com/allison-lara', 'https://api.github.com/users/allison-lara/followers', 'https://api.github.com/users/allison-lara/following', 'https://api.github.com/users/allison-lara/gists', 'https://api.github.com/users/allison-lara/starred', 'https://api.github.com/users/allison-lara/repos', 'https://api.github.com/users/allison-lara/events', 'https://api.github.com/users/allison-lara/received_events', 0); +INSERT INTO `developer` VALUES (285, 'activestylus', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 24, 4, 0, 0, 0, '2008-02-15T01:43:50Z', '2024-02-20T15:57:13Z', 'https://avatars.githubusercontent.com/u/285?v=4', 'https://api.github.com/users/activestylus', 'https://github.com/activestylus', 'https://api.github.com/users/activestylus/followers', 'https://api.github.com/users/activestylus/following', 'https://api.github.com/users/activestylus/gists', 'https://api.github.com/users/activestylus/starred', 'https://api.github.com/users/activestylus/repos', 'https://api.github.com/users/activestylus/events', 'https://api.github.com/users/activestylus/received_events', 0); +INSERT INTO `developer` VALUES (286, 'archfear', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Dofter', 'BrightHire', '', 'San Francisco, CA', 'dan@dofter.com', NULL, NULL, NULL, 0, 0, 53, 8, 0, 0, 0, '2008-02-15T05:33:42Z', '2024-04-11T17:29:09Z', 'https://avatars.githubusercontent.com/u/286?v=4', 'https://api.github.com/users/archfear', 'https://github.com/archfear', 'https://api.github.com/users/archfear/followers', 'https://api.github.com/users/archfear/following', 'https://api.github.com/users/archfear/gists', 'https://api.github.com/users/archfear/starred', 'https://api.github.com/users/archfear/repos', 'https://api.github.com/users/archfear/events', 'https://api.github.com/users/archfear/received_events', 0); +INSERT INTO `developer` VALUES (287, 'mudge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Mucur', '@raspberrypi', 'https://mudge.name', '未知', NULL, NULL, NULL, 'mudge', 0, 0, 113, 15, 0, 0, 0, '2008-02-15T09:15:11Z', '2024-10-02T10:55:48Z', 'https://avatars.githubusercontent.com/u/287?v=4', 'https://api.github.com/users/mudge', 'https://github.com/mudge', 'https://api.github.com/users/mudge/followers', 'https://api.github.com/users/mudge/following', 'https://api.github.com/users/mudge/gists', 'https://api.github.com/users/mudge/starred', 'https://api.github.com/users/mudge/repos', 'https://api.github.com/users/mudge/events', 'https://api.github.com/users/mudge/received_events', 0); +INSERT INTO `developer` VALUES (288, 'johnny', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonas von Andrian', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 46, 4, 0, 0, 0, '2008-02-15T10:33:46Z', '2024-10-18T11:24:28Z', 'https://avatars.githubusercontent.com/u/288?v=4', 'https://api.github.com/users/johnny', 'https://github.com/johnny', 'https://api.github.com/users/johnny/followers', 'https://api.github.com/users/johnny/following', 'https://api.github.com/users/johnny/gists', 'https://api.github.com/users/johnny/starred', 'https://api.github.com/users/johnny/repos', 'https://api.github.com/users/johnny/events', 'https://api.github.com/users/johnny/received_events', 0); +INSERT INTO `developer` VALUES (290, 'scott-steadman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Steadman', NULL, 'http://www.stdmn.com/ss', 'Los Angeles, CA', NULL, NULL, NULL, NULL, 0, 0, 41, 29, 0, 0, 0, '2008-02-15T13:55:08Z', '2024-06-26T18:27:57Z', 'https://avatars.githubusercontent.com/u/290?v=4', 'https://api.github.com/users/scott-steadman', 'https://github.com/scott-steadman', 'https://api.github.com/users/scott-steadman/followers', 'https://api.github.com/users/scott-steadman/following', 'https://api.github.com/users/scott-steadman/gists', 'https://api.github.com/users/scott-steadman/starred', 'https://api.github.com/users/scott-steadman/repos', 'https://api.github.com/users/scott-steadman/events', 'https://api.github.com/users/scott-steadman/received_events', 0); +INSERT INTO `developer` VALUES (291, 'noteflakes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sharon Rosner', 'Noteflakes', 'https://noteflakes.com', 'Bourgogne, France', 'sharon@noteflakes.com', NULL, 'Independent coder. Author of Ruby gems including Sequel, Polyphony, Modulation, Tipi and more.', NULL, 0, 0, 228, 29, 0, 0, 0, '2008-02-15T14:10:29Z', '2024-08-27T19:01:57Z', 'https://avatars.githubusercontent.com/u/291?v=4', 'https://api.github.com/users/noteflakes', 'https://github.com/noteflakes', 'https://api.github.com/users/noteflakes/followers', 'https://api.github.com/users/noteflakes/following', 'https://api.github.com/users/noteflakes/gists', 'https://api.github.com/users/noteflakes/starred', 'https://api.github.com/users/noteflakes/repos', 'https://api.github.com/users/noteflakes/events', 'https://api.github.com/users/noteflakes/received_events', 0); +INSERT INTO `developer` VALUES (292, 'doudou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sylvain Joyeux', '@tidewise ', 'http://www.tidewise.io', 'Rio de Janeiro, Brazil', 'sylvain.joyeux@m4x.org', NULL, NULL, NULL, 0, 0, 72, 1, 0, 0, 0, '2008-02-15T15:21:22Z', '2024-07-18T19:11:49Z', 'https://avatars.githubusercontent.com/u/292?v=4', 'https://api.github.com/users/doudou', 'https://github.com/doudou', 'https://api.github.com/users/doudou/followers', 'https://api.github.com/users/doudou/following', 'https://api.github.com/users/doudou/gists', 'https://api.github.com/users/doudou/starred', 'https://api.github.com/users/doudou/repos', 'https://api.github.com/users/doudou/events', 'https://api.github.com/users/doudou/received_events', 0); +INSERT INTO `developer` VALUES (293, 'david', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Leal', '@mojotech ', '', 'Portugal', NULL, NULL, NULL, NULL, 0, 0, 63, 0, 0, 0, 0, '2008-02-15T16:02:14Z', '2024-11-04T18:52:14Z', 'https://avatars.githubusercontent.com/u/293?v=4', 'https://api.github.com/users/david', 'https://github.com/david', 'https://api.github.com/users/david/followers', 'https://api.github.com/users/david/following', 'https://api.github.com/users/david/gists', 'https://api.github.com/users/david/starred', 'https://api.github.com/users/david/repos', 'https://api.github.com/users/david/events', 'https://api.github.com/users/david/received_events', 0); +INSERT INTO `developer` VALUES (294, 'pedromg', 'C', 0, 0, 0, 0, 0, 0, 0, 'pedro mg', NULL, 'http://blog.tquadrado.com', 'Porto', NULL, NULL, 'software engineer', 'pedro_mg', 0, 0, 45, 63, 0, 0, 0, '2008-02-15T16:51:17Z', '2023-10-01T06:03:04Z', 'https://avatars.githubusercontent.com/u/294?v=4', 'https://api.github.com/users/pedromg', 'https://github.com/pedromg', 'https://api.github.com/users/pedromg/followers', 'https://api.github.com/users/pedromg/following', 'https://api.github.com/users/pedromg/gists', 'https://api.github.com/users/pedromg/starred', 'https://api.github.com/users/pedromg/repos', 'https://api.github.com/users/pedromg/events', 'https://api.github.com/users/pedromg/received_events', 0); +INSERT INTO `developer` VALUES (295, 'wayne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wayne Seguin', 'Personal', '', 'Home', NULL, NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2008-02-15T17:12:50Z', '2024-01-31T19:18:19Z', 'https://avatars.githubusercontent.com/u/295?v=4', 'https://api.github.com/users/wayne', 'https://github.com/wayne', 'https://api.github.com/users/wayne/followers', 'https://api.github.com/users/wayne/following', 'https://api.github.com/users/wayne/gists', 'https://api.github.com/users/wayne/starred', 'https://api.github.com/users/wayne/repos', 'https://api.github.com/users/wayne/events', 'https://api.github.com/users/wayne/received_events', 0); +INSERT INTO `developer` VALUES (296, 'Steve', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Sanderson', 'Alright. What\'s next?', 'http://stevesanderson.com', 'Austin', NULL, NULL, NULL, 'stevesanderson', 0, 0, 31, 0, 0, 0, 0, '2008-02-15T17:56:04Z', '2024-08-09T21:56:49Z', 'https://avatars.githubusercontent.com/u/296?v=4', 'https://api.github.com/users/Steve', 'https://github.com/Steve', 'https://api.github.com/users/Steve/followers', 'https://api.github.com/users/Steve/following', 'https://api.github.com/users/Steve/gists', 'https://api.github.com/users/Steve/starred', 'https://api.github.com/users/Steve/repos', 'https://api.github.com/users/Steve/events', 'https://api.github.com/users/Steve/received_events', 0); +INSERT INTO `developer` VALUES (297, 'mark', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Josef', 'Division by Zero, LLC', 'McPhage.com', 'Buffalo, NY', 'McPhage@gmail.com', NULL, NULL, NULL, 0, 0, 87, 26, 0, 0, 0, '2008-02-15T18:28:56Z', '2024-10-25T18:53:40Z', 'https://avatars.githubusercontent.com/u/297?v=4', 'https://api.github.com/users/mark', 'https://github.com/mark', 'https://api.github.com/users/mark/followers', 'https://api.github.com/users/mark/following', 'https://api.github.com/users/mark/gists', 'https://api.github.com/users/mark/starred', 'https://api.github.com/users/mark/repos', 'https://api.github.com/users/mark/events', 'https://api.github.com/users/mark/received_events', 0); +INSERT INTO `developer` VALUES (298, 'ambethia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason L Perry', 'Suncoast Developers Guild', 'https://suncoast.io', 'St Petersburg, FL', NULL, NULL, 'Serial dabbler', NULL, 0, 0, 275, 98, 0, 0, 0, '2008-02-15T18:55:44Z', '2024-09-02T04:35:10Z', 'https://avatars.githubusercontent.com/u/298?v=4', 'https://api.github.com/users/ambethia', 'https://github.com/ambethia', 'https://api.github.com/users/ambethia/followers', 'https://api.github.com/users/ambethia/following', 'https://api.github.com/users/ambethia/gists', 'https://api.github.com/users/ambethia/starred', 'https://api.github.com/users/ambethia/repos', 'https://api.github.com/users/ambethia/events', 'https://api.github.com/users/ambethia/received_events', 0); +INSERT INTO `developer` VALUES (299, 'halfbyte', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Krutisch', '@depfu', 'https://jan.krutisch.de/', 'Hamburg, Germany', 'jan@krutisch.de', 'true', 'Cofounder at @depfu.', 'halfbyte', 0, 0, 202, 9, 0, 0, 0, '2008-02-15T20:34:26Z', '2024-10-09T11:36:55Z', 'https://avatars.githubusercontent.com/u/299?v=4', 'https://api.github.com/users/halfbyte', 'https://github.com/halfbyte', 'https://api.github.com/users/halfbyte/followers', 'https://api.github.com/users/halfbyte/following', 'https://api.github.com/users/halfbyte/gists', 'https://api.github.com/users/halfbyte/starred', 'https://api.github.com/users/halfbyte/repos', 'https://api.github.com/users/halfbyte/events', 'https://api.github.com/users/halfbyte/received_events', 0); +INSERT INTO `developer` VALUES (300, 'cannikin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Cameron', 'Preston-Werner Ventures', 'https://ridingtheclutch.com', 'San Diego, CA', 'cannikin@fastmail.com', NULL, 'Web developer since 1998, Ruby developer since 2006. Into woodworking, electronics, amateur radio (W6AKJ), and offroading. Husband and father of two.', 'cannikin', 0, 0, 172, 6, 0, 0, 0, '2008-02-15T21:04:43Z', '2024-11-01T22:15:05Z', 'https://avatars.githubusercontent.com/u/300?v=4', 'https://api.github.com/users/cannikin', 'https://github.com/cannikin', 'https://api.github.com/users/cannikin/followers', 'https://api.github.com/users/cannikin/following', 'https://api.github.com/users/cannikin/gists', 'https://api.github.com/users/cannikin/starred', 'https://api.github.com/users/cannikin/repos', 'https://api.github.com/users/cannikin/events', 'https://api.github.com/users/cannikin/received_events', 0); +INSERT INTO `developer` VALUES (301, 'anthonylewis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anthony Lewis', '@braintree', 'http://anthonylewis.com/', 'Austin, TX', 'me@anthonylewis.com', NULL, 'Software Engineer at Braintree', NULL, 0, 0, 55, 1, 0, 0, 0, '2008-02-15T22:04:26Z', '2023-02-02T01:50:21Z', 'https://avatars.githubusercontent.com/u/301?v=4', 'https://api.github.com/users/anthonylewis', 'https://github.com/anthonylewis', 'https://api.github.com/users/anthonylewis/followers', 'https://api.github.com/users/anthonylewis/following', 'https://api.github.com/users/anthonylewis/gists', 'https://api.github.com/users/anthonylewis/starred', 'https://api.github.com/users/anthonylewis/repos', 'https://api.github.com/users/anthonylewis/events', 'https://api.github.com/users/anthonylewis/received_events', 0); +INSERT INTO `developer` VALUES (302, 'mcornick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Cornick', NULL, 'https://mcornick.com/', 'Reston, VA', 'mark@markcornick.com', NULL, 'I never gave a damn about the meter man until I was the man who had to read the meters, man.', NULL, 0, 0, 31, 6, 0, 0, 0, '2008-02-15T22:43:18Z', '2024-10-10T22:18:46Z', 'https://avatars.githubusercontent.com/u/302?v=4', 'https://api.github.com/users/mcornick', 'https://github.com/mcornick', 'https://api.github.com/users/mcornick/followers', 'https://api.github.com/users/mcornick/following', 'https://api.github.com/users/mcornick/gists', 'https://api.github.com/users/mcornick/starred', 'https://api.github.com/users/mcornick/repos', 'https://api.github.com/users/mcornick/events', 'https://api.github.com/users/mcornick/received_events', 0); +INSERT INTO `developer` VALUES (303, 'itfische', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian', 'Apportable', '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 28, 0, 0, 0, 0, '2008-02-15T23:06:10Z', '2024-03-12T23:03:21Z', 'https://avatars.githubusercontent.com/u/303?v=4', 'https://api.github.com/users/itfische', 'https://github.com/itfische', 'https://api.github.com/users/itfische/followers', 'https://api.github.com/users/itfische/following', 'https://api.github.com/users/itfische/gists', 'https://api.github.com/users/itfische/starred', 'https://api.github.com/users/itfische/repos', 'https://api.github.com/users/itfische/events', 'https://api.github.com/users/itfische/received_events', 0); +INSERT INTO `developer` VALUES (304, 'ivoencarnacao', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-02-16T02:39:50Z', '2024-07-29T02:56:16Z', 'https://avatars.githubusercontent.com/u/304?v=4', 'https://api.github.com/users/ivoencarnacao', 'https://github.com/ivoencarnacao', 'https://api.github.com/users/ivoencarnacao/followers', 'https://api.github.com/users/ivoencarnacao/following', 'https://api.github.com/users/ivoencarnacao/gists', 'https://api.github.com/users/ivoencarnacao/starred', 'https://api.github.com/users/ivoencarnacao/repos', 'https://api.github.com/users/ivoencarnacao/events', 'https://api.github.com/users/ivoencarnacao/received_events', 0); +INSERT INTO `developer` VALUES (305, 'mcg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Gregg', 'Modern Message', '', 'Summerville SC', 'mcg@braintube.com', NULL, NULL, NULL, 0, 0, 32, 2, 0, 0, 0, '2008-02-16T02:56:12Z', '2024-10-31T20:36:05Z', 'https://avatars.githubusercontent.com/u/305?v=4', 'https://api.github.com/users/mcg', 'https://github.com/mcg', 'https://api.github.com/users/mcg/followers', 'https://api.github.com/users/mcg/following', 'https://api.github.com/users/mcg/gists', 'https://api.github.com/users/mcg/starred', 'https://api.github.com/users/mcg/repos', 'https://api.github.com/users/mcg/events', 'https://api.github.com/users/mcg/received_events', 0); +INSERT INTO `developer` VALUES (306, 'sco', 'C', 4.564642344908332, 0, 0, 0, 0, 0, 0, 'Scott Raymond', NULL, 'https://scottraymond.com/', 'San Francisco, California', 'sco@scottraymond.net', 'true', 'Say what you mean. Bear witness. Iterate.\r\nFormerly: @airbnb, @facebook, @Gowalla co-founder, @oreilly author.', 'sco', 0, 0, 551, 513, 0, 0, 0, '2008-02-16T03:02:45Z', '2024-09-28T20:13:50Z', 'https://avatars.githubusercontent.com/u/306?v=4', 'https://api.github.com/users/sco', 'https://github.com/sco', 'https://api.github.com/users/sco/followers', 'https://api.github.com/users/sco/following', 'https://api.github.com/users/sco/gists', 'https://api.github.com/users/sco/starred', 'https://api.github.com/users/sco/repos', 'https://api.github.com/users/sco/events', 'https://api.github.com/users/sco/received_events', 0); +INSERT INTO `developer` VALUES (307, 'norio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Norio Shimizu', 'pixiv', 'https://twitter.com/norio', 'Japan', NULL, NULL, 'pixiv inc', NULL, 0, 0, 114, 79, 0, 0, 0, '2008-02-16T04:35:34Z', '2024-07-15T16:51:08Z', 'https://avatars.githubusercontent.com/u/307?v=4', 'https://api.github.com/users/norio', 'https://github.com/norio', 'https://api.github.com/users/norio/followers', 'https://api.github.com/users/norio/following', 'https://api.github.com/users/norio/gists', 'https://api.github.com/users/norio/starred', 'https://api.github.com/users/norio/repos', 'https://api.github.com/users/norio/events', 'https://api.github.com/users/norio/received_events', 0); +INSERT INTO `developer` VALUES (308, 'anttih', 'C', 4.5828375356265845, 0, 9, 24, 676, 18, 0, 'Antti Holvikari', '@reaktor ', 'http://anttih.com', 'Helsinki, Finland', 'mail@anttih.com', NULL, NULL, NULL, 0, 0, 63, 36, 0, 0, 0, '2008-02-16T09:46:46Z', '2024-07-18T07:07:55Z', 'https://avatars.githubusercontent.com/u/308?v=4', 'https://api.github.com/users/anttih', 'https://github.com/anttih', 'https://api.github.com/users/anttih/followers', 'https://api.github.com/users/anttih/following', 'https://api.github.com/users/anttih/gists', 'https://api.github.com/users/anttih/starred', 'https://api.github.com/users/anttih/repos', 'https://api.github.com/users/anttih/events', 'https://api.github.com/users/anttih/received_events', 0); +INSERT INTO `developer` VALUES (309, 'vintrepid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vince Nibler', 'Lotus Labs', 'http://www.wildernesstravel.com', 'Lotus, CA', NULL, NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-02-16T10:39:38Z', '2024-05-19T22:54:31Z', 'https://avatars.githubusercontent.com/u/309?v=4', 'https://api.github.com/users/vintrepid', 'https://github.com/vintrepid', 'https://api.github.com/users/vintrepid/followers', 'https://api.github.com/users/vintrepid/following', 'https://api.github.com/users/vintrepid/gists', 'https://api.github.com/users/vintrepid/starred', 'https://api.github.com/users/vintrepid/repos', 'https://api.github.com/users/vintrepid/events', 'https://api.github.com/users/vintrepid/received_events', 0); +INSERT INTO `developer` VALUES (310, 'bigfleet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Van Fleet', 'Mainline', 'http://www.jimvanfleet.com/', 'Charlotte, NC', 'jim@jimvanfleet.com', NULL, NULL, 'bigfleet', 0, 0, 110, 26, 0, 0, 0, '2008-02-16T13:27:43Z', '2024-10-01T14:27:00Z', 'https://avatars.githubusercontent.com/u/310?v=4', 'https://api.github.com/users/bigfleet', 'https://github.com/bigfleet', 'https://api.github.com/users/bigfleet/followers', 'https://api.github.com/users/bigfleet/following', 'https://api.github.com/users/bigfleet/gists', 'https://api.github.com/users/bigfleet/starred', 'https://api.github.com/users/bigfleet/repos', 'https://api.github.com/users/bigfleet/events', 'https://api.github.com/users/bigfleet/received_events', 0); +INSERT INTO `developer` VALUES (311, 'lypanov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Kellett', NULL, '', 'Voorburg, Netherlands', NULL, 'true', NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-16T14:37:39Z', '2024-10-04T17:28:59Z', 'https://avatars.githubusercontent.com/u/311?v=4', 'https://api.github.com/users/lypanov', 'https://github.com/lypanov', 'https://api.github.com/users/lypanov/followers', 'https://api.github.com/users/lypanov/following', 'https://api.github.com/users/lypanov/gists', 'https://api.github.com/users/lypanov/starred', 'https://api.github.com/users/lypanov/repos', 'https://api.github.com/users/lypanov/events', 'https://api.github.com/users/lypanov/received_events', 0); +INSERT INTO `developer` VALUES (312, 'ropiku', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mihai Anca', NULL, 'http://mihaia.com', 'London, UK', NULL, NULL, NULL, 'ropiku', 0, 0, 63, 45, 0, 0, 0, '2008-02-16T14:38:54Z', '2024-09-25T15:18:12Z', 'https://avatars.githubusercontent.com/u/312?v=4', 'https://api.github.com/users/ropiku', 'https://github.com/ropiku', 'https://api.github.com/users/ropiku/followers', 'https://api.github.com/users/ropiku/following', 'https://api.github.com/users/ropiku/gists', 'https://api.github.com/users/ropiku/starred', 'https://api.github.com/users/ropiku/repos', 'https://api.github.com/users/ropiku/events', 'https://api.github.com/users/ropiku/received_events', 0); +INSERT INTO `developer` VALUES (313, 'rds', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rich', NULL, '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-16T15:15:47Z', '2024-03-24T19:00:27Z', 'https://avatars.githubusercontent.com/u/313?v=4', 'https://api.github.com/users/rds', 'https://github.com/rds', 'https://api.github.com/users/rds/followers', 'https://api.github.com/users/rds/following', 'https://api.github.com/users/rds/gists', 'https://api.github.com/users/rds/starred', 'https://api.github.com/users/rds/repos', 'https://api.github.com/users/rds/events', 'https://api.github.com/users/rds/received_events', 0); +INSERT INTO `developer` VALUES (314, 'zmoazeni', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zach Moazeni', NULL, 'http://connectionrequired.com', 'Rapid City, MI', 'zach.moazeni@gmail.com', NULL, NULL, NULL, 0, 0, 138, 48, 0, 0, 0, '2008-02-16T16:09:17Z', '2024-10-23T11:17:47Z', 'https://avatars.githubusercontent.com/u/314?v=4', 'https://api.github.com/users/zmoazeni', 'https://github.com/zmoazeni', 'https://api.github.com/users/zmoazeni/followers', 'https://api.github.com/users/zmoazeni/following', 'https://api.github.com/users/zmoazeni/gists', 'https://api.github.com/users/zmoazeni/starred', 'https://api.github.com/users/zmoazeni/repos', 'https://api.github.com/users/zmoazeni/events', 'https://api.github.com/users/zmoazeni/received_events', 0); +INSERT INTO `developer` VALUES (315, 'edwinmoss', 'C', 0, 0, 0, 0, 0, 0, 0, 'Edwin Moss', 'www.4ssoM.com', '', 'Utah', 'ed.moss@4ssom.com', NULL, NULL, NULL, 0, 0, 14, 1, 0, 0, 0, '2008-02-16T17:20:00Z', '2024-09-27T19:12:53Z', 'https://avatars.githubusercontent.com/u/315?v=4', 'https://api.github.com/users/edwinmoss', 'https://github.com/edwinmoss', 'https://api.github.com/users/edwinmoss/followers', 'https://api.github.com/users/edwinmoss/following', 'https://api.github.com/users/edwinmoss/gists', 'https://api.github.com/users/edwinmoss/starred', 'https://api.github.com/users/edwinmoss/repos', 'https://api.github.com/users/edwinmoss/events', 'https://api.github.com/users/edwinmoss/received_events', 0); +INSERT INTO `developer` VALUES (316, 'tomfarm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Winkler', 'formrausch GmbH', 'http://www.formrausch.com', 'Koblenz, Germany', 'tom@formrausch.com', 'true', NULL, NULL, 0, 0, 27, 32, 0, 0, 0, '2008-02-16T17:40:39Z', '2024-10-21T08:39:49Z', 'https://avatars.githubusercontent.com/u/316?v=4', 'https://api.github.com/users/tomfarm', 'https://github.com/tomfarm', 'https://api.github.com/users/tomfarm/followers', 'https://api.github.com/users/tomfarm/following', 'https://api.github.com/users/tomfarm/gists', 'https://api.github.com/users/tomfarm/starred', 'https://api.github.com/users/tomfarm/repos', 'https://api.github.com/users/tomfarm/events', 'https://api.github.com/users/tomfarm/received_events', 0); +INSERT INTO `developer` VALUES (317, 'TheNicholasNick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicholas Orr', NULL, '', 'New Zealand', 'the.nicholas.nick@gmail.com', NULL, NULL, 'TheNicholasNick', 0, 0, 20, 0, 0, 0, 0, '2008-02-16T17:42:04Z', '2024-10-20T10:52:19Z', 'https://avatars.githubusercontent.com/u/317?v=4', 'https://api.github.com/users/TheNicholasNick', 'https://github.com/TheNicholasNick', 'https://api.github.com/users/TheNicholasNick/followers', 'https://api.github.com/users/TheNicholasNick/following', 'https://api.github.com/users/TheNicholasNick/gists', 'https://api.github.com/users/TheNicholasNick/starred', 'https://api.github.com/users/TheNicholasNick/repos', 'https://api.github.com/users/TheNicholasNick/events', 'https://api.github.com/users/TheNicholasNick/received_events', 0); +INSERT INTO `developer` VALUES (318, 'bumi', 'C', 3.347097184518607, 0, 0, 0, 0, 0, 0, 'Michael Bumann', NULL, 'http://michaelbumann.com', '未知', 'hello@michaelbumann.com', NULL, 'working on @getAlby', 'bumi', 0, 0, 480, 553, 0, 0, 0, '2008-02-16T17:59:35Z', '2024-11-02T13:52:43Z', 'https://avatars.githubusercontent.com/u/318?v=4', 'https://api.github.com/users/bumi', 'https://github.com/bumi', 'https://api.github.com/users/bumi/followers', 'https://api.github.com/users/bumi/following', 'https://api.github.com/users/bumi/gists', 'https://api.github.com/users/bumi/starred', 'https://api.github.com/users/bumi/repos', 'https://api.github.com/users/bumi/events', 'https://api.github.com/users/bumi/received_events', 0); +INSERT INTO `developer` VALUES (319, 'dag', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dag Odenhall', NULL, '', 'Sweden', 'dag.odenhall@gmail.com', NULL, NULL, NULL, 0, 0, 101, 30, 0, 0, 0, '2008-02-16T18:16:14Z', '2020-03-29T19:55:02Z', 'https://avatars.githubusercontent.com/u/319?v=4', 'https://api.github.com/users/dag', 'https://github.com/dag', 'https://api.github.com/users/dag/followers', 'https://api.github.com/users/dag/following', 'https://api.github.com/users/dag/gists', 'https://api.github.com/users/dag/starred', 'https://api.github.com/users/dag/repos', 'https://api.github.com/users/dag/events', 'https://api.github.com/users/dag/received_events', 0); +INSERT INTO `developer` VALUES (320, 'ruckus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cody Caughlan', NULL, 'http://codycaughlan.com/', 'San Francisco, CA.', 'c+g@ruckusing.com', NULL, NULL, NULL, 0, 0, 66, 20, 0, 0, 0, '2008-02-16T18:26:11Z', '2024-11-03T14:52:23Z', 'https://avatars.githubusercontent.com/u/320?v=4', 'https://api.github.com/users/ruckus', 'https://github.com/ruckus', 'https://api.github.com/users/ruckus/followers', 'https://api.github.com/users/ruckus/following', 'https://api.github.com/users/ruckus/gists', 'https://api.github.com/users/ruckus/starred', 'https://api.github.com/users/ruckus/repos', 'https://api.github.com/users/ruckus/events', 'https://api.github.com/users/ruckus/received_events', 0); +INSERT INTO `developer` VALUES (321, 'mlins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Lins', NULL, '', 'Madison, WI', 'mattlins@gmail.com', 'true', NULL, NULL, 0, 0, 17, 3, 0, 0, 0, '2008-02-16T19:32:05Z', '2024-10-13T22:03:47Z', 'https://avatars.githubusercontent.com/u/321?v=4', 'https://api.github.com/users/mlins', 'https://github.com/mlins', 'https://api.github.com/users/mlins/followers', 'https://api.github.com/users/mlins/following', 'https://api.github.com/users/mlins/gists', 'https://api.github.com/users/mlins/starred', 'https://api.github.com/users/mlins/repos', 'https://api.github.com/users/mlins/events', 'https://api.github.com/users/mlins/received_events', 0); +INSERT INTO `developer` VALUES (322, 'luke', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-16T19:45:20Z', '2024-10-30T02:59:51Z', 'https://avatars.githubusercontent.com/u/322?v=4', 'https://api.github.com/users/luke', 'https://github.com/luke', 'https://api.github.com/users/luke/followers', 'https://api.github.com/users/luke/following', 'https://api.github.com/users/luke/gists', 'https://api.github.com/users/luke/starred', 'https://api.github.com/users/luke/repos', 'https://api.github.com/users/luke/events', 'https://api.github.com/users/luke/received_events', 0); +INSERT INTO `developer` VALUES (323, 'labria', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dimitri Krassovski', 'Wix.com', 'http://labria.github.io/', '未知', 'labria@startika.com', 'true', NULL, NULL, 0, 0, 60, 8, 0, 0, 0, '2008-02-16T20:55:12Z', '2024-10-27T14:38:41Z', 'https://avatars.githubusercontent.com/u/323?v=4', 'https://api.github.com/users/labria', 'https://github.com/labria', 'https://api.github.com/users/labria/followers', 'https://api.github.com/users/labria/following', 'https://api.github.com/users/labria/gists', 'https://api.github.com/users/labria/starred', 'https://api.github.com/users/labria/repos', 'https://api.github.com/users/labria/events', 'https://api.github.com/users/labria/received_events', 0); +INSERT INTO `developer` VALUES (324, 'raymorgan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-16T21:01:35Z', '2023-07-20T23:59:26Z', 'https://avatars.githubusercontent.com/u/324?v=4', 'https://api.github.com/users/raymorgan', 'https://github.com/raymorgan', 'https://api.github.com/users/raymorgan/followers', 'https://api.github.com/users/raymorgan/following', 'https://api.github.com/users/raymorgan/gists', 'https://api.github.com/users/raymorgan/starred', 'https://api.github.com/users/raymorgan/repos', 'https://api.github.com/users/raymorgan/events', 'https://api.github.com/users/raymorgan/received_events', 0); +INSERT INTO `developer` VALUES (325, 'edward', 'C', 0.8434127701960744, 0, 0, 0, 0, 0, 0, 'Edward Ocampo-Gooding', 'feenk', '', 'Ottawa, Ontario, Canada', NULL, NULL, NULL, 'edwardog', 0, 0, 334, 79, 0, 0, 0, '2008-02-16T21:48:21Z', '2024-10-30T17:39:07Z', 'https://avatars.githubusercontent.com/u/325?v=4', 'https://api.github.com/users/edward', 'https://github.com/edward', 'https://api.github.com/users/edward/followers', 'https://api.github.com/users/edward/following', 'https://api.github.com/users/edward/gists', 'https://api.github.com/users/edward/starred', 'https://api.github.com/users/edward/repos', 'https://api.github.com/users/edward/events', 'https://api.github.com/users/edward/received_events', 0); +INSERT INTO `developer` VALUES (326, 'dsiem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Siemssen', 'CARIAD SE', 'https://www.dr-siemssen.de', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 12, 3, 0, 0, 0, '2008-02-16T21:56:18Z', '2024-10-31T09:29:02Z', 'https://avatars.githubusercontent.com/u/326?v=4', 'https://api.github.com/users/dsiem', 'https://github.com/dsiem', 'https://api.github.com/users/dsiem/followers', 'https://api.github.com/users/dsiem/following', 'https://api.github.com/users/dsiem/gists', 'https://api.github.com/users/dsiem/starred', 'https://api.github.com/users/dsiem/repos', 'https://api.github.com/users/dsiem/events', 'https://api.github.com/users/dsiem/received_events', 0); +INSERT INTO `developer` VALUES (327, 'talaris', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kyle Burckhard', 'VorpalCode', 'http://www.vorpalcode.com', 'WA, USA', 'kyle@vorpalcode.com', 'true', 'Makes things with a cloudy hammer at @kickstarter.', NULL, 0, 0, 41, 20, 0, 0, 0, '2008-02-16T22:35:20Z', '2024-10-28T00:23:11Z', 'https://avatars.githubusercontent.com/u/327?v=4', 'https://api.github.com/users/talaris', 'https://github.com/talaris', 'https://api.github.com/users/talaris/followers', 'https://api.github.com/users/talaris/following', 'https://api.github.com/users/talaris/gists', 'https://api.github.com/users/talaris/starred', 'https://api.github.com/users/talaris/repos', 'https://api.github.com/users/talaris/events', 'https://api.github.com/users/talaris/received_events', 0); +INSERT INTO `developer` VALUES (328, 'jrun', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Burks', NULL, '', 'Milwaukee, WI', 'jeremy@burkshouse.com', 'true', NULL, NULL, 0, 0, 30, 6, 0, 0, 0, '2008-02-16T23:10:59Z', '2022-10-29T19:45:19Z', 'https://avatars.githubusercontent.com/u/328?v=4', 'https://api.github.com/users/jrun', 'https://github.com/jrun', 'https://api.github.com/users/jrun/followers', 'https://api.github.com/users/jrun/following', 'https://api.github.com/users/jrun/gists', 'https://api.github.com/users/jrun/starred', 'https://api.github.com/users/jrun/repos', 'https://api.github.com/users/jrun/events', 'https://api.github.com/users/jrun/received_events', 0); +INSERT INTO `developer` VALUES (329, 'chris', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Bailey', 'NatureQuant', 'http://naturequant.com', 'Bend, OR', 'chris@cobaltedge.com', NULL, 'Co-founder & CTO at NatureQuant. Previously, Co-founder & Chief Architect @ HotelTonight (acquired by Airbnb). Ex Adobe, DealBase, Hyperion, etc.', NULL, 0, 0, 71, 2, 0, 0, 0, '2008-02-17T04:13:11Z', '2024-04-15T21:06:43Z', 'https://avatars.githubusercontent.com/u/329?v=4', 'https://api.github.com/users/chris', 'https://github.com/chris', 'https://api.github.com/users/chris/followers', 'https://api.github.com/users/chris/following', 'https://api.github.com/users/chris/gists', 'https://api.github.com/users/chris/starred', 'https://api.github.com/users/chris/repos', 'https://api.github.com/users/chris/events', 'https://api.github.com/users/chris/received_events', 0); +INSERT INTO `developer` VALUES (330, 'thejohnny', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 24, 4, 0, 0, 0, '2008-02-17T05:32:34Z', '2024-10-04T16:57:36Z', 'https://avatars.githubusercontent.com/u/330?v=4', 'https://api.github.com/users/thejohnny', 'https://github.com/thejohnny', 'https://api.github.com/users/thejohnny/followers', 'https://api.github.com/users/thejohnny/following', 'https://api.github.com/users/thejohnny/gists', 'https://api.github.com/users/thejohnny/starred', 'https://api.github.com/users/thejohnny/repos', 'https://api.github.com/users/thejohnny/events', 'https://api.github.com/users/thejohnny/received_events', 0); +INSERT INTO `developer` VALUES (331, 'vic', 'C', 3.209908997432441, 0, 0, 0, 0, 0, 0, 'Victor Borja', 'Software Villain', 'https://twitter.com/oeiuwq', 'Mexico City', 'vborja@apache.org', 'true', 'Code Suprematism.\r\n\r\n\r\n', 'oeiuwq', 0, 0, 472, 1018, 0, 0, 0, '2008-02-17T05:48:58Z', '2024-11-04T12:19:37Z', 'https://avatars.githubusercontent.com/u/331?v=4', 'https://api.github.com/users/vic', 'https://github.com/vic', 'https://api.github.com/users/vic/followers', 'https://api.github.com/users/vic/following', 'https://api.github.com/users/vic/gists', 'https://api.github.com/users/vic/starred', 'https://api.github.com/users/vic/repos', 'https://api.github.com/users/vic/events', 'https://api.github.com/users/vic/received_events', 0); +INSERT INTO `developer` VALUES (332, 'thelibrarian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tony Kemp', NULL, 'http://tk.cx', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 3, 0, 0, 0, '2008-02-17T08:29:10Z', '2024-10-17T23:28:36Z', 'https://avatars.githubusercontent.com/u/332?v=4', 'https://api.github.com/users/thelibrarian', 'https://github.com/thelibrarian', 'https://api.github.com/users/thelibrarian/followers', 'https://api.github.com/users/thelibrarian/following', 'https://api.github.com/users/thelibrarian/gists', 'https://api.github.com/users/thelibrarian/starred', 'https://api.github.com/users/thelibrarian/repos', 'https://api.github.com/users/thelibrarian/events', 'https://api.github.com/users/thelibrarian/received_events', 0); +INSERT INTO `developer` VALUES (333, 'harukizaemon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Harris', NULL, 'https://www.harukizaemon.com/', 'Melbourne, Victoria, Australia', NULL, NULL, NULL, NULL, 0, 0, 91, 2, 0, 0, 0, '2008-02-17T10:21:40Z', '2024-10-21T10:07:11Z', 'https://avatars.githubusercontent.com/u/333?v=4', 'https://api.github.com/users/harukizaemon', 'https://github.com/harukizaemon', 'https://api.github.com/users/harukizaemon/followers', 'https://api.github.com/users/harukizaemon/following', 'https://api.github.com/users/harukizaemon/gists', 'https://api.github.com/users/harukizaemon/starred', 'https://api.github.com/users/harukizaemon/repos', 'https://api.github.com/users/harukizaemon/events', 'https://api.github.com/users/harukizaemon/received_events', 0); +INSERT INTO `developer` VALUES (334, 'ttcremers', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Cremers', '@worldstream-labs', 'https://thomascremers.com', 'Monster', 'ttcremers@gmail.com', 'true', 'Longtime software engineer and interwebs construction worker. Broad knowledge base keeps me agile ', NULL, 0, 0, 21, 6, 0, 0, 0, '2008-02-17T12:24:29Z', '2024-10-27T17:56:54Z', 'https://avatars.githubusercontent.com/u/334?v=4', 'https://api.github.com/users/ttcremers', 'https://github.com/ttcremers', 'https://api.github.com/users/ttcremers/followers', 'https://api.github.com/users/ttcremers/following', 'https://api.github.com/users/ttcremers/gists', 'https://api.github.com/users/ttcremers/starred', 'https://api.github.com/users/ttcremers/repos', 'https://api.github.com/users/ttcremers/events', 'https://api.github.com/users/ttcremers/received_events', 0); +INSERT INTO `developer` VALUES (335, 'bitbckt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandon Mitchell', NULL, 'http://thewholedoubt.com', 'Maine, United States', NULL, 'true', NULL, NULL, 0, 0, 56, 12, 0, 0, 0, '2008-02-17T19:44:00Z', '2024-05-23T17:10:22Z', 'https://avatars.githubusercontent.com/u/335?v=4', 'https://api.github.com/users/bitbckt', 'https://github.com/bitbckt', 'https://api.github.com/users/bitbckt/followers', 'https://api.github.com/users/bitbckt/following', 'https://api.github.com/users/bitbckt/gists', 'https://api.github.com/users/bitbckt/starred', 'https://api.github.com/users/bitbckt/repos', 'https://api.github.com/users/bitbckt/events', 'https://api.github.com/users/bitbckt/received_events', 0); +INSERT INTO `developer` VALUES (336, 'brupm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bruno Miranda', '@doximity ', 'http://brunomiranda.com', 'Miami, Florida', 'bmiranda+auto@doximity.com', NULL, 'Current focus is application architecture, infrastructure design, implementation, deployment, and scaling. ', 'brupm', 0, 0, 65, 23, 0, 0, 0, '2008-02-17T19:49:34Z', '2024-04-15T19:57:11Z', 'https://avatars.githubusercontent.com/u/336?v=4', 'https://api.github.com/users/brupm', 'https://github.com/brupm', 'https://api.github.com/users/brupm/followers', 'https://api.github.com/users/brupm/following', 'https://api.github.com/users/brupm/gists', 'https://api.github.com/users/brupm/starred', 'https://api.github.com/users/brupm/repos', 'https://api.github.com/users/brupm/events', 'https://api.github.com/users/brupm/received_events', 0); +INSERT INTO `developer` VALUES (337, 'v3rb0', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 5, 0, 0, 0, '2008-02-17T20:04:46Z', '2021-07-05T13:51:11Z', 'https://avatars.githubusercontent.com/u/337?v=4', 'https://api.github.com/users/v3rb0', 'https://github.com/v3rb0', 'https://api.github.com/users/v3rb0/followers', 'https://api.github.com/users/v3rb0/following', 'https://api.github.com/users/v3rb0/gists', 'https://api.github.com/users/v3rb0/starred', 'https://api.github.com/users/v3rb0/repos', 'https://api.github.com/users/v3rb0/events', 'https://api.github.com/users/v3rb0/received_events', 0); +INSERT INTO `developer` VALUES (338, 'hchoroomi', 'C', 0, 0, 0, 0, 0, 0, 0, 'H Choroomi', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 60, 48, 0, 0, 0, '2008-02-17T20:05:24Z', '2024-10-07T16:09:06Z', 'https://avatars.githubusercontent.com/u/338?v=4', 'https://api.github.com/users/hchoroomi', 'https://github.com/hchoroomi', 'https://api.github.com/users/hchoroomi/followers', 'https://api.github.com/users/hchoroomi/following', 'https://api.github.com/users/hchoroomi/gists', 'https://api.github.com/users/hchoroomi/starred', 'https://api.github.com/users/hchoroomi/repos', 'https://api.github.com/users/hchoroomi/events', 'https://api.github.com/users/hchoroomi/received_events', 0); +INSERT INTO `developer` VALUES (339, 'igouss', 'C', 0, 0, 0, 0, 0, 0, 0, 'Iouri Goussev', 'NAXSoft', 'http://blog.naxsoft.com', 'Montreal, QC', NULL, NULL, NULL, NULL, 0, 0, 25, 14, 0, 0, 0, '2008-02-17T20:06:39Z', '2024-09-25T17:35:16Z', 'https://avatars.githubusercontent.com/u/339?v=4', 'https://api.github.com/users/igouss', 'https://github.com/igouss', 'https://api.github.com/users/igouss/followers', 'https://api.github.com/users/igouss/following', 'https://api.github.com/users/igouss/gists', 'https://api.github.com/users/igouss/starred', 'https://api.github.com/users/igouss/repos', 'https://api.github.com/users/igouss/events', 'https://api.github.com/users/igouss/received_events', 0); +INSERT INTO `developer` VALUES (340, 'jamesmacaulay', 'C', 0, 0, 0, 0, 0, 0, 0, 'James MacAulay', NULL, 'https://linktr.ee/jamesmacaulay', 'Toronto', NULL, NULL, NULL, NULL, 0, 0, 154, 0, 0, 0, 0, '2008-02-17T20:11:15Z', '2024-10-19T23:05:32Z', 'https://avatars.githubusercontent.com/u/340?v=4', 'https://api.github.com/users/jamesmacaulay', 'https://github.com/jamesmacaulay', 'https://api.github.com/users/jamesmacaulay/followers', 'https://api.github.com/users/jamesmacaulay/following', 'https://api.github.com/users/jamesmacaulay/gists', 'https://api.github.com/users/jamesmacaulay/starred', 'https://api.github.com/users/jamesmacaulay/repos', 'https://api.github.com/users/jamesmacaulay/events', 'https://api.github.com/users/jamesmacaulay/received_events', 0); +INSERT INTO `developer` VALUES (341, 'jacobeus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicolas Jacobeus', NULL, 'http://nicolas.io', 'Dubai UAE', 'njacobeus@gmail.com', NULL, NULL, 'jacobeus', 0, 0, 23, 0, 0, 0, 0, '2008-02-17T20:12:14Z', '2024-10-06T12:03:19Z', 'https://avatars.githubusercontent.com/u/341?v=4', 'https://api.github.com/users/jacobeus', 'https://github.com/jacobeus', 'https://api.github.com/users/jacobeus/followers', 'https://api.github.com/users/jacobeus/following', 'https://api.github.com/users/jacobeus/gists', 'https://api.github.com/users/jacobeus/starred', 'https://api.github.com/users/jacobeus/repos', 'https://api.github.com/users/jacobeus/events', 'https://api.github.com/users/jacobeus/received_events', 0); +INSERT INTO `developer` VALUES (342, 'djd', 'C', 0, 0, 0, 0, 0, 0, 0, 'DJ Davis', NULL, 'djd.io', 'CA', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-02-17T20:14:55Z', '2024-11-03T21:23:04Z', 'https://avatars.githubusercontent.com/u/342?v=4', 'https://api.github.com/users/djd', 'https://github.com/djd', 'https://api.github.com/users/djd/followers', 'https://api.github.com/users/djd/following', 'https://api.github.com/users/djd/gists', 'https://api.github.com/users/djd/starred', 'https://api.github.com/users/djd/repos', 'https://api.github.com/users/djd/events', 'https://api.github.com/users/djd/received_events', 0); +INSERT INTO `developer` VALUES (343, 'octave', 'C', 0, 0, 0, 0, 0, 0, 0, 'Octave Zangs', NULL, 'http://design.octavez.com', 'Portland, OR', NULL, 'true', NULL, 'octavez', 0, 0, 18, 5, 0, 0, 0, '2008-02-17T20:25:35Z', '2024-07-12T01:31:38Z', 'https://avatars.githubusercontent.com/u/343?v=4', 'https://api.github.com/users/octave', 'https://github.com/octave', 'https://api.github.com/users/octave/followers', 'https://api.github.com/users/octave/following', 'https://api.github.com/users/octave/gists', 'https://api.github.com/users/octave/starred', 'https://api.github.com/users/octave/repos', 'https://api.github.com/users/octave/events', 'https://api.github.com/users/octave/received_events', 0); +INSERT INTO `developer` VALUES (344, 'damon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damon Clinkscales', NULL, 'http://damonc.com/', 'Austin, TX', NULL, NULL, 'Shepherd.', NULL, 0, 0, 136, 94, 0, 0, 0, '2008-02-17T20:29:46Z', '2023-11-09T19:00:28Z', 'https://avatars.githubusercontent.com/u/344?v=4', 'https://api.github.com/users/damon', 'https://github.com/damon', 'https://api.github.com/users/damon/followers', 'https://api.github.com/users/damon/following', 'https://api.github.com/users/damon/gists', 'https://api.github.com/users/damon/starred', 'https://api.github.com/users/damon/repos', 'https://api.github.com/users/damon/events', 'https://api.github.com/users/damon/received_events', 0); +INSERT INTO `developer` VALUES (346, 'sbusso', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stéphane Busso', '@kyrolabs', 'https://htdocs.dev', 'Nelson (New Zealand)', NULL, NULL, 'Software Builder', 'sbusso', 0, 0, 189, 153, 0, 0, 0, '2008-02-17T20:44:47Z', '2024-02-06T07:36:11Z', 'https://avatars.githubusercontent.com/u/346?v=4', 'https://api.github.com/users/sbusso', 'https://github.com/sbusso', 'https://api.github.com/users/sbusso/followers', 'https://api.github.com/users/sbusso/following', 'https://api.github.com/users/sbusso/gists', 'https://api.github.com/users/sbusso/starred', 'https://api.github.com/users/sbusso/repos', 'https://api.github.com/users/sbusso/events', 'https://api.github.com/users/sbusso/received_events', 0); +INSERT INTO `developer` VALUES (347, 'tobi', 'B-', 34.42022155953525, 0, 0, 0, 0, 0, 0, 'Tobias Lütke', 'Shopify', 'tobi.lutke.com', 'Ottawa, Canada', NULL, NULL, NULL, NULL, 0, 0, 2292, 54, 0, 0, 0, '2008-02-17T20:58:38Z', '2024-10-30T00:37:54Z', 'https://avatars.githubusercontent.com/u/347?v=4', 'https://api.github.com/users/tobi', 'https://github.com/tobi', 'https://api.github.com/users/tobi/followers', 'https://api.github.com/users/tobi/following', 'https://api.github.com/users/tobi/gists', 'https://api.github.com/users/tobi/starred', 'https://api.github.com/users/tobi/repos', 'https://api.github.com/users/tobi/events', 'https://api.github.com/users/tobi/received_events', 0); +INSERT INTO `developer` VALUES (348, 'raggi', 'C', 9.040406948594503, 0, 0, 0, 0, 0, 0, 'James Tucker', '@Tailscale', 'https://rag.pub', 'California or Bermuda', 'jftucker@gmail.com', NULL, 'Currently: Tailscale\r\n\r\n\r\nPreviously: Fuchsia, GCP, Google stuff, Wildfire, ECL, ...', 'raggi', 0, 0, 812, 249, 0, 0, 0, '2008-02-17T21:00:51Z', '2024-09-22T23:09:39Z', 'https://avatars.githubusercontent.com/u/348?v=4', 'https://api.github.com/users/raggi', 'https://github.com/raggi', 'https://api.github.com/users/raggi/followers', 'https://api.github.com/users/raggi/following', 'https://api.github.com/users/raggi/gists', 'https://api.github.com/users/raggi/starred', 'https://api.github.com/users/raggi/repos', 'https://api.github.com/users/raggi/events', 'https://api.github.com/users/raggi/received_events', 0); +INSERT INTO `developer` VALUES (349, 'tooky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Tooke', '@kosli-dev ', 'tooky.uk', 'Hampshire, United Kingdom', 'steve@took.es', NULL, 'Principal Engineer @kosli-dev ', 'tooky', 0, 0, 53, 23, 0, 0, 0, '2008-02-17T21:17:18Z', '2024-10-28T07:38:39Z', 'https://avatars.githubusercontent.com/u/349?v=4', 'https://api.github.com/users/tooky', 'https://github.com/tooky', 'https://api.github.com/users/tooky/followers', 'https://api.github.com/users/tooky/following', 'https://api.github.com/users/tooky/gists', 'https://api.github.com/users/tooky/starred', 'https://api.github.com/users/tooky/repos', 'https://api.github.com/users/tooky/events', 'https://api.github.com/users/tooky/received_events', 0); +INSERT INTO `developer` VALUES (350, 'aurelian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aurelian Oancea', NULL, 'https://www.locknet.ro', '未知', NULL, NULL, NULL, NULL, 0, 0, 44, 8, 0, 0, 0, '2008-02-17T21:32:49Z', '2024-09-17T07:18:43Z', 'https://avatars.githubusercontent.com/u/350?v=4', 'https://api.github.com/users/aurelian', 'https://github.com/aurelian', 'https://api.github.com/users/aurelian/followers', 'https://api.github.com/users/aurelian/following', 'https://api.github.com/users/aurelian/gists', 'https://api.github.com/users/aurelian/starred', 'https://api.github.com/users/aurelian/repos', 'https://api.github.com/users/aurelian/events', 'https://api.github.com/users/aurelian/received_events', 0); +INSERT INTO `developer` VALUES (351, 'cnantais', 'C', 0, 0, 0, 0, 0, 0, 0, 'zkron', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-02-17T22:13:44Z', '2024-01-03T10:12:02Z', 'https://avatars.githubusercontent.com/u/351?v=4', 'https://api.github.com/users/cnantais', 'https://github.com/cnantais', 'https://api.github.com/users/cnantais/followers', 'https://api.github.com/users/cnantais/following', 'https://api.github.com/users/cnantais/gists', 'https://api.github.com/users/cnantais/starred', 'https://api.github.com/users/cnantais/repos', 'https://api.github.com/users/cnantais/events', 'https://api.github.com/users/cnantais/received_events', 0); +INSERT INTO `developer` VALUES (352, 'gthoppae', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gnanasekaran Thoppae', 'Salesforce', '', 'La Sarraz, Switzerland', NULL, NULL, 'Program Architect at Salesforce\r\nTwitter @gthoppae', NULL, 0, 0, 13, 17, 0, 0, 0, '2008-02-17T23:00:51Z', '2024-10-24T17:23:11Z', 'https://avatars.githubusercontent.com/u/352?v=4', 'https://api.github.com/users/gthoppae', 'https://github.com/gthoppae', 'https://api.github.com/users/gthoppae/followers', 'https://api.github.com/users/gthoppae/following', 'https://api.github.com/users/gthoppae/gists', 'https://api.github.com/users/gthoppae/starred', 'https://api.github.com/users/gthoppae/repos', 'https://api.github.com/users/gthoppae/events', 'https://api.github.com/users/gthoppae/received_events', 0); +INSERT INTO `developer` VALUES (353, 'lukemelia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Melia', 'Yapp', 'http://www.lukemelia.com/devblog', 'NYC', 'luke@lukemelia.com', NULL, NULL, 'lukemelia', 0, 0, 240, 8, 0, 0, 0, '2008-02-17T23:23:36Z', '2024-08-22T13:14:21Z', 'https://avatars.githubusercontent.com/u/353?v=4', 'https://api.github.com/users/lukemelia', 'https://github.com/lukemelia', 'https://api.github.com/users/lukemelia/followers', 'https://api.github.com/users/lukemelia/following', 'https://api.github.com/users/lukemelia/gists', 'https://api.github.com/users/lukemelia/starred', 'https://api.github.com/users/lukemelia/repos', 'https://api.github.com/users/lukemelia/events', 'https://api.github.com/users/lukemelia/received_events', 0); +INSERT INTO `developer` VALUES (354, 'ncdc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Goldstein', 'Snowflake', '', 'Maryland', NULL, NULL, 'Kubernetes/Go developer', NULL, 0, 0, 233, 37, 0, 0, 0, '2008-02-18T01:05:18Z', '2024-06-11T16:36:49Z', 'https://avatars.githubusercontent.com/u/354?v=4', 'https://api.github.com/users/ncdc', 'https://github.com/ncdc', 'https://api.github.com/users/ncdc/followers', 'https://api.github.com/users/ncdc/following', 'https://api.github.com/users/ncdc/gists', 'https://api.github.com/users/ncdc/starred', 'https://api.github.com/users/ncdc/repos', 'https://api.github.com/users/ncdc/events', 'https://api.github.com/users/ncdc/received_events', 0); +INSERT INTO `developer` VALUES (355, 'bendik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bendik Aagaard Lynghaug', '♻️', 'https://whatdoyouliketodo.com', '⚓️', 'bendik@lynghaug.me', 'true', 'I make safe environments for DOM-nodes that do fluff. github user #355', 'kidneb', 0, 0, 50, 87, 0, 0, 0, '2008-02-18T01:25:11Z', '2024-10-21T18:02:36Z', 'https://avatars.githubusercontent.com/u/355?v=4', 'https://api.github.com/users/bendik', 'https://github.com/bendik', 'https://api.github.com/users/bendik/followers', 'https://api.github.com/users/bendik/following', 'https://api.github.com/users/bendik/gists', 'https://api.github.com/users/bendik/starred', 'https://api.github.com/users/bendik/repos', 'https://api.github.com/users/bendik/events', 'https://api.github.com/users/bendik/received_events', 0); +INSERT INTO `developer` VALUES (356, 'sbraford', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shanti Braford', 'Redux Apps', 'https://reduxapps.com', 'Portland, OR', 'shantibraford@gmail.com', 'true', 'Developer at Early-Stage Startups', NULL, 0, 0, 23, 15, 0, 0, 0, '2008-02-18T06:49:59Z', '2024-09-18T19:56:05Z', 'https://avatars.githubusercontent.com/u/356?v=4', 'https://api.github.com/users/sbraford', 'https://github.com/sbraford', 'https://api.github.com/users/sbraford/followers', 'https://api.github.com/users/sbraford/following', 'https://api.github.com/users/sbraford/gists', 'https://api.github.com/users/sbraford/starred', 'https://api.github.com/users/sbraford/repos', 'https://api.github.com/users/sbraford/events', 'https://api.github.com/users/sbraford/received_events', 0); +INSERT INTO `developer` VALUES (357, 'mpalmer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Palmer', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 101, 0, 0, 0, 0, '2008-02-18T07:33:39Z', '2024-10-22T11:18:21Z', 'https://avatars.githubusercontent.com/u/357?v=4', 'https://api.github.com/users/mpalmer', 'https://github.com/mpalmer', 'https://api.github.com/users/mpalmer/followers', 'https://api.github.com/users/mpalmer/following', 'https://api.github.com/users/mpalmer/gists', 'https://api.github.com/users/mpalmer/starred', 'https://api.github.com/users/mpalmer/repos', 'https://api.github.com/users/mpalmer/events', 'https://api.github.com/users/mpalmer/received_events', 0); +INSERT INTO `developer` VALUES (358, 'jens', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jens Norrgrann', 'Bukowskis', 'http://www.bukowskis.com', 'Stockholm / Sweden', 'jens.norrgrann@bukowskis.com', NULL, NULL, NULL, 0, 0, 13, 1, 0, 0, 0, '2008-02-18T09:28:03Z', '2024-09-23T12:53:26Z', 'https://avatars.githubusercontent.com/u/358?v=4', 'https://api.github.com/users/jens', 'https://github.com/jens', 'https://api.github.com/users/jens/followers', 'https://api.github.com/users/jens/following', 'https://api.github.com/users/jens/gists', 'https://api.github.com/users/jens/starred', 'https://api.github.com/users/jens/repos', 'https://api.github.com/users/jens/events', 'https://api.github.com/users/jens/received_events', 0); +INSERT INTO `developer` VALUES (359, 'moneyspyder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Moneyspyder', NULL, 'www.moneyspyder.co.uk', 'London', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-18T10:19:18Z', '2023-10-03T07:00:03Z', 'https://avatars.githubusercontent.com/u/359?v=4', 'https://api.github.com/users/moneyspyder', 'https://github.com/moneyspyder', 'https://api.github.com/users/moneyspyder/followers', 'https://api.github.com/users/moneyspyder/following', 'https://api.github.com/users/moneyspyder/gists', 'https://api.github.com/users/moneyspyder/starred', 'https://api.github.com/users/moneyspyder/repos', 'https://api.github.com/users/moneyspyder/events', 'https://api.github.com/users/moneyspyder/received_events', 0); +INSERT INTO `developer` VALUES (360, 'tslocke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Locke', NULL, '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 76, 1, 0, 0, 0, '2008-02-18T11:37:53Z', '2024-10-16T09:04:16Z', 'https://avatars.githubusercontent.com/u/360?v=4', 'https://api.github.com/users/tslocke', 'https://github.com/tslocke', 'https://api.github.com/users/tslocke/followers', 'https://api.github.com/users/tslocke/following', 'https://api.github.com/users/tslocke/gists', 'https://api.github.com/users/tslocke/starred', 'https://api.github.com/users/tslocke/repos', 'https://api.github.com/users/tslocke/events', 'https://api.github.com/users/tslocke/received_events', 0); +INSERT INTO `developer` VALUES (361, 'deletepls', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-18T13:11:26Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/361?v=4', 'https://api.github.com/users/deletepls', 'https://github.com/deletepls', 'https://api.github.com/users/deletepls/followers', 'https://api.github.com/users/deletepls/following', 'https://api.github.com/users/deletepls/gists', 'https://api.github.com/users/deletepls/starred', 'https://api.github.com/users/deletepls/repos', 'https://api.github.com/users/deletepls/events', 'https://api.github.com/users/deletepls/received_events', 0); +INSERT INTO `developer` VALUES (362, 'jellybob', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Wood', '@DemandLogic', 'http://blog.blankpad.net', 'Southampton, UK', 'jon@blankpad.net', NULL, NULL, NULL, 0, 0, 53, 6, 0, 0, 0, '2008-02-18T13:29:55Z', '2024-10-18T17:42:43Z', 'https://avatars.githubusercontent.com/u/362?v=4', 'https://api.github.com/users/jellybob', 'https://github.com/jellybob', 'https://api.github.com/users/jellybob/followers', 'https://api.github.com/users/jellybob/following', 'https://api.github.com/users/jellybob/gists', 'https://api.github.com/users/jellybob/starred', 'https://api.github.com/users/jellybob/repos', 'https://api.github.com/users/jellybob/events', 'https://api.github.com/users/jellybob/received_events', 0); +INSERT INTO `developer` VALUES (363, 'mascarenhas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fabio Mascarenhas', '@Samasource ', 'https://www.linkedin.com/in/fabiomascarenhas', 'Montreal, Canada', 'mascarenhas@gmail.com', NULL, NULL, NULL, 0, 0, 111, 13, 0, 0, 0, '2008-02-18T16:57:57Z', '2024-09-21T23:11:35Z', 'https://avatars.githubusercontent.com/u/363?v=4', 'https://api.github.com/users/mascarenhas', 'https://github.com/mascarenhas', 'https://api.github.com/users/mascarenhas/followers', 'https://api.github.com/users/mascarenhas/following', 'https://api.github.com/users/mascarenhas/gists', 'https://api.github.com/users/mascarenhas/starred', 'https://api.github.com/users/mascarenhas/repos', 'https://api.github.com/users/mascarenhas/events', 'https://api.github.com/users/mascarenhas/received_events', 0); +INSERT INTO `developer` VALUES (364, 'zroetemeyer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-18T16:58:35Z', '2018-02-10T08:22:41Z', 'https://avatars.githubusercontent.com/u/364?v=4', 'https://api.github.com/users/zroetemeyer', 'https://github.com/zroetemeyer', 'https://api.github.com/users/zroetemeyer/followers', 'https://api.github.com/users/zroetemeyer/following', 'https://api.github.com/users/zroetemeyer/gists', 'https://api.github.com/users/zroetemeyer/starred', 'https://api.github.com/users/zroetemeyer/repos', 'https://api.github.com/users/zroetemeyer/events', 'https://api.github.com/users/zroetemeyer/received_events', 0); +INSERT INTO `developer` VALUES (365, 'pius', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pius Uzamere', NULL, '', 'San Francisco, CA', 'pius@alum.mit.edu', 'true', '🧿', NULL, 0, 0, 79, 42, 0, 0, 0, '2008-02-18T17:00:18Z', '2024-08-01T03:48:06Z', 'https://avatars.githubusercontent.com/u/365?v=4', 'https://api.github.com/users/pius', 'https://github.com/pius', 'https://api.github.com/users/pius/followers', 'https://api.github.com/users/pius/following', 'https://api.github.com/users/pius/gists', 'https://api.github.com/users/pius/starred', 'https://api.github.com/users/pius/repos', 'https://api.github.com/users/pius/events', 'https://api.github.com/users/pius/received_events', 0); +INSERT INTO `developer` VALUES (366, 'nullstyle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Fleckenstein', NULL, 'https://nullstyle.com', 'The West Side', 'nullstyle@gmail.com', NULL, NULL, 'nullstyle', 0, 0, 164, 13, 0, 0, 0, '2008-02-18T17:00:38Z', '2024-10-13T21:18:09Z', 'https://avatars.githubusercontent.com/u/366?v=4', 'https://api.github.com/users/nullstyle', 'https://github.com/nullstyle', 'https://api.github.com/users/nullstyle/followers', 'https://api.github.com/users/nullstyle/following', 'https://api.github.com/users/nullstyle/gists', 'https://api.github.com/users/nullstyle/starred', 'https://api.github.com/users/nullstyle/repos', 'https://api.github.com/users/nullstyle/events', 'https://api.github.com/users/nullstyle/received_events', 0); +INSERT INTO `developer` VALUES (367, 'smogzer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-18T17:01:04Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/367?v=4', 'https://api.github.com/users/smogzer', 'https://github.com/smogzer', 'https://api.github.com/users/smogzer/followers', 'https://api.github.com/users/smogzer/following', 'https://api.github.com/users/smogzer/gists', 'https://api.github.com/users/smogzer/starred', 'https://api.github.com/users/smogzer/repos', 'https://api.github.com/users/smogzer/events', 'https://api.github.com/users/smogzer/received_events', 0); +INSERT INTO `developer` VALUES (368, 'guillaume', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guillaume Carbonneau', NULL, '', 'Quebec', 'guillaume.carbonneau@gmail.com', 'true', NULL, NULL, 0, 0, 29, 10, 0, 0, 0, '2008-02-18T17:04:08Z', '2024-10-20T11:21:00Z', 'https://avatars.githubusercontent.com/u/368?v=4', 'https://api.github.com/users/guillaume', 'https://github.com/guillaume', 'https://api.github.com/users/guillaume/followers', 'https://api.github.com/users/guillaume/following', 'https://api.github.com/users/guillaume/gists', 'https://api.github.com/users/guillaume/starred', 'https://api.github.com/users/guillaume/repos', 'https://api.github.com/users/guillaume/events', 'https://api.github.com/users/guillaume/received_events', 0); +INSERT INTO `developer` VALUES (369, 'samaaron', 'B-', 26.08603919405065, 0, 0, 0, 0, 0, 0, 'Sam Aaron', 'University of Cambridge', 'http://sam.aaron.name', 'Sheffield, UK', 'samaaron@gmail.com', NULL, 'Live Coder - creator of Sonic Pi', 'samaaron', 0, 0, 1806, 30, 0, 0, 0, '2008-02-18T17:12:45Z', '2024-10-21T15:54:08Z', 'https://avatars.githubusercontent.com/u/369?v=4', 'https://api.github.com/users/samaaron', 'https://github.com/samaaron', 'https://api.github.com/users/samaaron/followers', 'https://api.github.com/users/samaaron/following', 'https://api.github.com/users/samaaron/gists', 'https://api.github.com/users/samaaron/starred', 'https://api.github.com/users/samaaron/repos', 'https://api.github.com/users/samaaron/events', 'https://api.github.com/users/samaaron/received_events', 0); +INSERT INTO `developer` VALUES (370, 'endersonmaia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Enderson Maia', '@sunodo', 'http://endersonmaia.github.io', 'Arapiraca, Alagoas, Brazil', 'endersonmaia@gmail.com', 'true', 'sysadmin, humble programmer, triathlete, coffee lover, drummer\r\n\r\nEBFD DBB6 73E9 985D D047  AF94 5EBC ECB6 5B91 A2CA', NULL, 0, 0, 117, 48, 0, 0, 0, '2008-02-18T17:13:26Z', '2024-10-18T12:13:43Z', 'https://avatars.githubusercontent.com/u/370?v=4', 'https://api.github.com/users/endersonmaia', 'https://github.com/endersonmaia', 'https://api.github.com/users/endersonmaia/followers', 'https://api.github.com/users/endersonmaia/following', 'https://api.github.com/users/endersonmaia/gists', 'https://api.github.com/users/endersonmaia/starred', 'https://api.github.com/users/endersonmaia/repos', 'https://api.github.com/users/endersonmaia/events', 'https://api.github.com/users/endersonmaia/received_events', 0); +INSERT INTO `developer` VALUES (371, 'flowers', 'C', 0, 0, 0, 0, 0, 0, 0, 'Flowers in Space', 'Flowers in Space', 'http://www.flowersinspace.com/', 'Sevilla, Spain', 'developers@flowersinspace.com', NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-02-18T17:17:37Z', '2019-10-23T07:44:09Z', 'https://avatars.githubusercontent.com/u/371?v=4', 'https://api.github.com/users/flowers', 'https://github.com/flowers', 'https://api.github.com/users/flowers/followers', 'https://api.github.com/users/flowers/following', 'https://api.github.com/users/flowers/gists', 'https://api.github.com/users/flowers/starred', 'https://api.github.com/users/flowers/repos', 'https://api.github.com/users/flowers/events', 'https://api.github.com/users/flowers/received_events', 0); +INSERT INTO `developer` VALUES (372, 'adamlogic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam McCrea', 'Rails Autoscale', 'https://railsautoscale.com', 'Columbus, Ohio', 'adam@adamlogic.com', NULL, NULL, 'adamlogic', 0, 0, 94, 0, 0, 0, 0, '2008-02-18T17:23:42Z', '2024-05-13T18:10:56Z', 'https://avatars.githubusercontent.com/u/372?v=4', 'https://api.github.com/users/adamlogic', 'https://github.com/adamlogic', 'https://api.github.com/users/adamlogic/followers', 'https://api.github.com/users/adamlogic/following', 'https://api.github.com/users/adamlogic/gists', 'https://api.github.com/users/adamlogic/starred', 'https://api.github.com/users/adamlogic/repos', 'https://api.github.com/users/adamlogic/events', 'https://api.github.com/users/adamlogic/received_events', 0); +INSERT INTO `developer` VALUES (373, 'alx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexandre Girard', NULL, 'http://alexgirard.com', 'Southeast Asia', 'git@alexgirard.com', 'true', NULL, NULL, 0, 0, 207, 93, 0, 0, 0, '2008-02-18T17:28:31Z', '2024-10-11T03:23:57Z', 'https://avatars.githubusercontent.com/u/373?v=4', 'https://api.github.com/users/alx', 'https://github.com/alx', 'https://api.github.com/users/alx/followers', 'https://api.github.com/users/alx/following', 'https://api.github.com/users/alx/gists', 'https://api.github.com/users/alx/starred', 'https://api.github.com/users/alx/repos', 'https://api.github.com/users/alx/events', 'https://api.github.com/users/alx/received_events', 0); +INSERT INTO `developer` VALUES (374, 'sproutit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sproutit/SproutCore', NULL, 'http://www.sproutcore.com', 'Los Altos, CA', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-18T17:32:55Z', '2019-06-05T03:11:59Z', 'https://avatars.githubusercontent.com/u/374?v=4', 'https://api.github.com/users/sproutit', 'https://github.com/sproutit', 'https://api.github.com/users/sproutit/followers', 'https://api.github.com/users/sproutit/following', 'https://api.github.com/users/sproutit/gists', 'https://api.github.com/users/sproutit/starred', 'https://api.github.com/users/sproutit/repos', 'https://api.github.com/users/sproutit/events', 'https://api.github.com/users/sproutit/received_events', 0); +INSERT INTO `developer` VALUES (375, 'augustl', 'C', 0, 0, 0, 0, 0, 0, 0, 'August Lilleaas', NULL, '', 'Oslo, Norway', 'august@augustl.com', NULL, 'ME ME ME ME ME', NULL, 0, 0, 200, 0, 0, 0, 0, '2008-02-18T17:53:11Z', '2024-09-12T10:06:39Z', 'https://avatars.githubusercontent.com/u/375?v=4', 'https://api.github.com/users/augustl', 'https://github.com/augustl', 'https://api.github.com/users/augustl/followers', 'https://api.github.com/users/augustl/following', 'https://api.github.com/users/augustl/gists', 'https://api.github.com/users/augustl/starred', 'https://api.github.com/users/augustl/repos', 'https://api.github.com/users/augustl/events', 'https://api.github.com/users/augustl/received_events', 0); +INSERT INTO `developer` VALUES (376, 'eb1024', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-18T17:53:15Z', '2022-01-17T08:24:03Z', 'https://avatars.githubusercontent.com/u/376?v=4', 'https://api.github.com/users/eb1024', 'https://github.com/eb1024', 'https://api.github.com/users/eb1024/followers', 'https://api.github.com/users/eb1024/following', 'https://api.github.com/users/eb1024/gists', 'https://api.github.com/users/eb1024/starred', 'https://api.github.com/users/eb1024/repos', 'https://api.github.com/users/eb1024/events', 'https://api.github.com/users/eb1024/received_events', 0); +INSERT INTO `developer` VALUES (378, 'tpope', 'S', 100, 0, 0, 0, 0, 0, 0, 'Tim Pope', NULL, 'https://tpo.pe/', 'Brooklyn, NY', 'tpope@tpope.net', NULL, 'Vim plugin artist', 'tpope', 0, 0, 21665, 20, 0, 0, 0, '2008-02-18T18:08:55Z', '2024-06-03T18:05:48Z', 'https://avatars.githubusercontent.com/u/378?v=4', 'https://api.github.com/users/tpope', 'https://github.com/tpope', 'https://api.github.com/users/tpope/followers', 'https://api.github.com/users/tpope/following', 'https://api.github.com/users/tpope/gists', 'https://api.github.com/users/tpope/starred', 'https://api.github.com/users/tpope/repos', 'https://api.github.com/users/tpope/events', 'https://api.github.com/users/tpope/received_events', 0); +INSERT INTO `developer` VALUES (379, 'methodmissing', 'C', 0.9806009572822408, 0, 0, 0, 0, 0, 0, 'Lourens Naudé', '@bear-metal @Shopify @TuneMyGC ', 'https://bearmetal.eu', 'Funchal, Madeira, Portugal', 'lourens@methodmissing.com', 'true', 'Ops and platform guy, debugger, trail / ultra runner. I also make things. And many mistakes. I believe in balance. Am addicted to muesli.', NULL, 0, 0, 342, 182, 0, 0, 0, '2008-02-18T18:12:43Z', '2024-08-02T14:16:45Z', 'https://avatars.githubusercontent.com/u/379?v=4', 'https://api.github.com/users/methodmissing', 'https://github.com/methodmissing', 'https://api.github.com/users/methodmissing/followers', 'https://api.github.com/users/methodmissing/following', 'https://api.github.com/users/methodmissing/gists', 'https://api.github.com/users/methodmissing/starred', 'https://api.github.com/users/methodmissing/repos', 'https://api.github.com/users/methodmissing/events', 'https://api.github.com/users/methodmissing/received_events', 0); +INSERT INTO `developer` VALUES (380, 'mariusz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mariusz Cieśla', 'Lilt', 'http://mariusz.cc', 'Berlin', NULL, 'true', 'Product designer & curious generalist. I design and build things for human beings and enjoy the hell out of it.', 'dotmariusz', 0, 0, 62, 3, 0, 0, 0, '2008-02-18T18:19:51Z', '2024-10-10T09:52:47Z', 'https://avatars.githubusercontent.com/u/380?v=4', 'https://api.github.com/users/mariusz', 'https://github.com/mariusz', 'https://api.github.com/users/mariusz/followers', 'https://api.github.com/users/mariusz/following', 'https://api.github.com/users/mariusz/gists', 'https://api.github.com/users/mariusz/starred', 'https://api.github.com/users/mariusz/repos', 'https://api.github.com/users/mariusz/events', 'https://api.github.com/users/mariusz/received_events', 0); +INSERT INTO `developer` VALUES (381, 'palmamartin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Palma', NULL, 'https://der.computer', '未知', NULL, 'true', 'if nothing goes right, go left\r\n\r\n', NULL, 0, 0, 32, 90, 0, 0, 0, '2008-02-18T18:26:31Z', '2024-08-23T12:36:51Z', 'https://avatars.githubusercontent.com/u/381?v=4', 'https://api.github.com/users/palmamartin', 'https://github.com/palmamartin', 'https://api.github.com/users/palmamartin/followers', 'https://api.github.com/users/palmamartin/following', 'https://api.github.com/users/palmamartin/gists', 'https://api.github.com/users/palmamartin/starred', 'https://api.github.com/users/palmamartin/repos', 'https://api.github.com/users/palmamartin/events', 'https://api.github.com/users/palmamartin/received_events', 0); +INSERT INTO `developer` VALUES (382, 'garyblessington', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gary Blessington', 'Planet Argon', '', 'Portland, OR', 'gary@planetargon.com', NULL, NULL, NULL, 0, 0, 18, 0, 0, 0, 0, '2008-02-18T18:30:31Z', '2024-09-08T16:46:15Z', 'https://avatars.githubusercontent.com/u/382?v=4', 'https://api.github.com/users/garyblessington', 'https://github.com/garyblessington', 'https://api.github.com/users/garyblessington/followers', 'https://api.github.com/users/garyblessington/following', 'https://api.github.com/users/garyblessington/gists', 'https://api.github.com/users/garyblessington/starred', 'https://api.github.com/users/garyblessington/repos', 'https://api.github.com/users/garyblessington/events', 'https://api.github.com/users/garyblessington/received_events', 0); +INSERT INTO `developer` VALUES (383, 'kangax', 'B+', 52.237537357351094, 0, 0, 0, 0, 0, 0, 'Juriy Zaytsev', 'Facebook → WeWork → LinkedIn', 'http://perfectionkills.com', 'New York', 'kangax@gmail.com', NULL, 'I used to write JavaScript. I still do but I used to too.', NULL, 0, 0, 3331, 16, 0, 0, 0, '2008-02-18T18:35:04Z', '2024-08-22T16:41:15Z', 'https://avatars.githubusercontent.com/u/383?v=4', 'https://api.github.com/users/kangax', 'https://github.com/kangax', 'https://api.github.com/users/kangax/followers', 'https://api.github.com/users/kangax/following', 'https://api.github.com/users/kangax/gists', 'https://api.github.com/users/kangax/starred', 'https://api.github.com/users/kangax/repos', 'https://api.github.com/users/kangax/events', 'https://api.github.com/users/kangax/received_events', 0); +INSERT INTO `developer` VALUES (384, 'sd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastian Delmont', NULL, 'http://about.me/sdelmont', 'New York City', 'sd@notso.net', NULL, NULL, NULL, 0, 0, 183, 0, 0, 0, 0, '2008-02-18T18:58:13Z', '2024-09-27T22:13:11Z', 'https://avatars.githubusercontent.com/u/384?v=4', 'https://api.github.com/users/sd', 'https://github.com/sd', 'https://api.github.com/users/sd/followers', 'https://api.github.com/users/sd/following', 'https://api.github.com/users/sd/gists', 'https://api.github.com/users/sd/starred', 'https://api.github.com/users/sd/repos', 'https://api.github.com/users/sd/events', 'https://api.github.com/users/sd/received_events', 0); +INSERT INTO `developer` VALUES (385, 'drew', 'C', 0, 0, 0, 0, 0, 0, 0, 'Drew Newberry', '@gretelai', '', 'San Diego, CA', NULL, NULL, NULL, NULL, 0, 0, 36, 6, 0, 0, 0, '2008-02-18T19:04:26Z', '2024-10-25T15:23:14Z', 'https://avatars.githubusercontent.com/u/385?v=4', 'https://api.github.com/users/drew', 'https://github.com/drew', 'https://api.github.com/users/drew/followers', 'https://api.github.com/users/drew/following', 'https://api.github.com/users/drew/gists', 'https://api.github.com/users/drew/starred', 'https://api.github.com/users/drew/repos', 'https://api.github.com/users/drew/events', 'https://api.github.com/users/drew/received_events', 0); +INSERT INTO `developer` VALUES (386, 'brainopia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ravil Bayramgalin', NULL, '', 'Saint-Petersburg, Russia', NULL, NULL, NULL, 'brainopia', 0, 0, 187, 19, 0, 0, 0, '2008-02-18T19:22:03Z', '2024-01-27T23:53:24Z', 'https://avatars.githubusercontent.com/u/386?v=4', 'https://api.github.com/users/brainopia', 'https://github.com/brainopia', 'https://api.github.com/users/brainopia/followers', 'https://api.github.com/users/brainopia/following', 'https://api.github.com/users/brainopia/gists', 'https://api.github.com/users/brainopia/starred', 'https://api.github.com/users/brainopia/repos', 'https://api.github.com/users/brainopia/events', 'https://api.github.com/users/brainopia/received_events', 0); +INSERT INTO `developer` VALUES (387, 'wvl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wayne Larsen', NULL, '', 'Ottawa', 'wayne@larsen.st', NULL, NULL, NULL, 0, 0, 31, 11, 0, 0, 0, '2008-02-18T20:29:37Z', '2022-10-07T14:29:36Z', 'https://avatars.githubusercontent.com/u/387?v=4', 'https://api.github.com/users/wvl', 'https://github.com/wvl', 'https://api.github.com/users/wvl/followers', 'https://api.github.com/users/wvl/following', 'https://api.github.com/users/wvl/gists', 'https://api.github.com/users/wvl/starred', 'https://api.github.com/users/wvl/repos', 'https://api.github.com/users/wvl/events', 'https://api.github.com/users/wvl/received_events', 0); +INSERT INTO `developer` VALUES (388, 'therealadam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Keys', NULL, 'http://therealadam.com', 'Portland, OR', NULL, NULL, NULL, NULL, 0, 0, 234, 185, 0, 0, 0, '2008-02-18T21:46:00Z', '2024-11-01T17:49:05Z', 'https://avatars.githubusercontent.com/u/388?v=4', 'https://api.github.com/users/therealadam', 'https://github.com/therealadam', 'https://api.github.com/users/therealadam/followers', 'https://api.github.com/users/therealadam/following', 'https://api.github.com/users/therealadam/gists', 'https://api.github.com/users/therealadam/starred', 'https://api.github.com/users/therealadam/repos', 'https://api.github.com/users/therealadam/events', 'https://api.github.com/users/therealadam/received_events', 0); +INSERT INTO `developer` VALUES (389, 'therubymug', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rogelio J. Samour', NULL, '', 'Portland, Oregon', 'rogelio@therubymug.com', NULL, 'Human. Programmer. Alumni: @hashrocket, @goldstar.', NULL, 0, 0, 121, 10, 0, 0, 0, '2008-02-18T21:48:28Z', '2024-10-23T20:54:46Z', 'https://avatars.githubusercontent.com/u/389?v=4', 'https://api.github.com/users/therubymug', 'https://github.com/therubymug', 'https://api.github.com/users/therubymug/followers', 'https://api.github.com/users/therubymug/following', 'https://api.github.com/users/therubymug/gists', 'https://api.github.com/users/therubymug/starred', 'https://api.github.com/users/therubymug/repos', 'https://api.github.com/users/therubymug/events', 'https://api.github.com/users/therubymug/received_events', 0); +INSERT INTO `developer` VALUES (390, 'chrisgriffin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Griffin', NULL, 'https://chrisgriffin.io', 'Los Angeles, CA', 'me@chrisgriffin.org', 'true', 'Designer/Front-end Engineer Hybrid #designsystems', NULL, 0, 0, 36, 28, 0, 0, 0, '2008-02-18T21:53:06Z', '2024-10-30T22:01:58Z', 'https://avatars.githubusercontent.com/u/390?v=4', 'https://api.github.com/users/chrisgriffin', 'https://github.com/chrisgriffin', 'https://api.github.com/users/chrisgriffin/followers', 'https://api.github.com/users/chrisgriffin/following', 'https://api.github.com/users/chrisgriffin/gists', 'https://api.github.com/users/chrisgriffin/starred', 'https://api.github.com/users/chrisgriffin/repos', 'https://api.github.com/users/chrisgriffin/events', 'https://api.github.com/users/chrisgriffin/received_events', 0); +INSERT INTO `developer` VALUES (391, 'graemepa', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-02-18T21:54:30Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/391?v=4', 'https://api.github.com/users/graemepa', 'https://github.com/graemepa', 'https://api.github.com/users/graemepa/followers', 'https://api.github.com/users/graemepa/following', 'https://api.github.com/users/graemepa/gists', 'https://api.github.com/users/graemepa/starred', 'https://api.github.com/users/graemepa/repos', 'https://api.github.com/users/graemepa/events', 'https://api.github.com/users/graemepa/received_events', 0); +INSERT INTO `developer` VALUES (392, 'jasonherald', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Herald', 'Jason B Herald', '', 'Christiansburg, VA', 'jason.herald@me.com', NULL, NULL, NULL, 0, 0, 18, 10, 0, 0, 0, '2008-02-18T22:00:54Z', '2024-09-22T00:22:53Z', 'https://avatars.githubusercontent.com/u/392?v=4', 'https://api.github.com/users/jasonherald', 'https://github.com/jasonherald', 'https://api.github.com/users/jasonherald/followers', 'https://api.github.com/users/jasonherald/following', 'https://api.github.com/users/jasonherald/gists', 'https://api.github.com/users/jasonherald/starred', 'https://api.github.com/users/jasonherald/repos', 'https://api.github.com/users/jasonherald/events', 'https://api.github.com/users/jasonherald/received_events', 0); +INSERT INTO `developer` VALUES (393, 'bruno', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bruno Mattarollo', NULL, 'http://greenbackyard.net', 'NSW, Australia', 'bruno.mattarollo@gmail.com', NULL, NULL, NULL, 0, 0, 73, 79, 0, 0, 0, '2008-02-18T23:15:04Z', '2024-09-02T06:31:15Z', 'https://avatars.githubusercontent.com/u/393?v=4', 'https://api.github.com/users/bruno', 'https://github.com/bruno', 'https://api.github.com/users/bruno/followers', 'https://api.github.com/users/bruno/following', 'https://api.github.com/users/bruno/gists', 'https://api.github.com/users/bruno/starred', 'https://api.github.com/users/bruno/repos', 'https://api.github.com/users/bruno/events', 'https://api.github.com/users/bruno/received_events', 0); +INSERT INTO `developer` VALUES (394, 'revans', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Evans', 'Gierd', 'http://www.gierd.com', 'Great Outdoors, Idaho', NULL, 'true', 'CTO @ Gierd', NULL, 0, 0, 110, 21, 0, 0, 0, '2008-02-18T23:36:10Z', '2024-10-28T17:58:51Z', 'https://avatars.githubusercontent.com/u/394?v=4', 'https://api.github.com/users/revans', 'https://github.com/revans', 'https://api.github.com/users/revans/followers', 'https://api.github.com/users/revans/following', 'https://api.github.com/users/revans/gists', 'https://api.github.com/users/revans/starred', 'https://api.github.com/users/revans/repos', 'https://api.github.com/users/revans/events', 'https://api.github.com/users/revans/received_events', 0); +INSERT INTO `developer` VALUES (395, 'jameshill', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Hill', '@buildkite ', 'https://twitter.com/jameshillia', 'Sydney, Australia', NULL, NULL, 'Technical Product Manager @ Buildkite', NULL, 0, 0, 40, 28, 0, 0, 0, '2008-02-19T00:06:11Z', '2024-09-19T07:17:30Z', 'https://avatars.githubusercontent.com/u/395?v=4', 'https://api.github.com/users/jameshill', 'https://github.com/jameshill', 'https://api.github.com/users/jameshill/followers', 'https://api.github.com/users/jameshill/following', 'https://api.github.com/users/jameshill/gists', 'https://api.github.com/users/jameshill/starred', 'https://api.github.com/users/jameshill/repos', 'https://api.github.com/users/jameshill/events', 'https://api.github.com/users/jameshill/received_events', 0); +INSERT INTO `developer` VALUES (396, 'trankas', 'C', 0, 0, 0, 0, 0, 0, 0, 'João Estêvão', NULL, '', '未知', 'trankas@gmail.com', NULL, NULL, NULL, 0, 0, 10, 15, 0, 0, 0, '2008-02-19T00:27:48Z', '2023-09-12T18:11:38Z', 'https://avatars.githubusercontent.com/u/396?v=4', 'https://api.github.com/users/trankas', 'https://github.com/trankas', 'https://api.github.com/users/trankas/followers', 'https://api.github.com/users/trankas/following', 'https://api.github.com/users/trankas/gists', 'https://api.github.com/users/trankas/starred', 'https://api.github.com/users/trankas/repos', 'https://api.github.com/users/trankas/events', 'https://api.github.com/users/trankas/received_events', 0); +INSERT INTO `developer` VALUES (397, 'crafterm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcus Crafter', 'http://redartisan.com', 'http://redartisan.com/blog', 'Melbourne, Australia', 'crafterm@redartisan.com', NULL, NULL, NULL, 0, 0, 188, 107, 0, 0, 0, '2008-02-19T00:33:01Z', '2024-11-01T02:58:21Z', 'https://avatars.githubusercontent.com/u/397?v=4', 'https://api.github.com/users/crafterm', 'https://github.com/crafterm', 'https://api.github.com/users/crafterm/followers', 'https://api.github.com/users/crafterm/following', 'https://api.github.com/users/crafterm/gists', 'https://api.github.com/users/crafterm/starred', 'https://api.github.com/users/crafterm/repos', 'https://api.github.com/users/crafterm/events', 'https://api.github.com/users/crafterm/received_events', 0); +INSERT INTO `developer` VALUES (398, 'mattallen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Allen', 'AWS', 'matta.io', 'Australia', 'matt@allen.com.au', 'true', NULL, NULL, 0, 0, 35, 0, 0, 0, 0, '2008-02-19T00:38:58Z', '2024-11-01T03:41:46Z', 'https://avatars.githubusercontent.com/u/398?v=4', 'https://api.github.com/users/mattallen', 'https://github.com/mattallen', 'https://api.github.com/users/mattallen/followers', 'https://api.github.com/users/mattallen/following', 'https://api.github.com/users/mattallen/gists', 'https://api.github.com/users/mattallen/starred', 'https://api.github.com/users/mattallen/repos', 'https://api.github.com/users/mattallen/events', 'https://api.github.com/users/mattallen/received_events', 0); +INSERT INTO `developer` VALUES (399, 'dgoodlad', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Goodlad', '@getqsic', 'https://keybase.io/dgoodlad', 'Melbourne, Australia', 'david@goodlad.net', NULL, 'Builder of random things. 👴\r\n CTO of Qsic', NULL, 0, 0, 122, 7, 0, 0, 0, '2008-02-19T00:53:01Z', '2024-10-06T22:51:23Z', 'https://avatars.githubusercontent.com/u/399?v=4', 'https://api.github.com/users/dgoodlad', 'https://github.com/dgoodlad', 'https://api.github.com/users/dgoodlad/followers', 'https://api.github.com/users/dgoodlad/following', 'https://api.github.com/users/dgoodlad/gists', 'https://api.github.com/users/dgoodlad/starred', 'https://api.github.com/users/dgoodlad/repos', 'https://api.github.com/users/dgoodlad/events', 'https://api.github.com/users/dgoodlad/received_events', 0); +INSERT INTO `developer` VALUES (400, 'esaul', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-19T02:00:51Z', '2024-10-25T15:02:50Z', 'https://avatars.githubusercontent.com/u/400?v=4', 'https://api.github.com/users/esaul', 'https://github.com/esaul', 'https://api.github.com/users/esaul/followers', 'https://api.github.com/users/esaul/following', 'https://api.github.com/users/esaul/gists', 'https://api.github.com/users/esaul/starred', 'https://api.github.com/users/esaul/repos', 'https://api.github.com/users/esaul/events', 'https://api.github.com/users/esaul/received_events', 0); +INSERT INTO `developer` VALUES (402, 'trevorturk', 'C', 1.032046527439553, 0, 0, 0, 0, 0, 0, 'Trevor Turk', NULL, '', 'Chicago', 'trevorturk@gmail.com', 'true', 'Programming Hello Weather. Previously Impactive, IFTTT, Clearbit, and Basecamp.', NULL, 0, 0, 345, 189, 0, 0, 0, '2008-02-19T03:23:56Z', '2024-10-14T23:01:34Z', 'https://avatars.githubusercontent.com/u/402?v=4', 'https://api.github.com/users/trevorturk', 'https://github.com/trevorturk', 'https://api.github.com/users/trevorturk/followers', 'https://api.github.com/users/trevorturk/following', 'https://api.github.com/users/trevorturk/gists', 'https://api.github.com/users/trevorturk/starred', 'https://api.github.com/users/trevorturk/repos', 'https://api.github.com/users/trevorturk/events', 'https://api.github.com/users/trevorturk/received_events', 0); +INSERT INTO `developer` VALUES (403, 'svrishi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-19T03:29:40Z', '2024-09-16T03:14:30Z', 'https://avatars.githubusercontent.com/u/403?v=4', 'https://api.github.com/users/svrishi', 'https://github.com/svrishi', 'https://api.github.com/users/svrishi/followers', 'https://api.github.com/users/svrishi/following', 'https://api.github.com/users/svrishi/gists', 'https://api.github.com/users/svrishi/starred', 'https://api.github.com/users/svrishi/repos', 'https://api.github.com/users/svrishi/events', 'https://api.github.com/users/svrishi/received_events', 0); +INSERT INTO `developer` VALUES (404, 'rtomayko', 'B-', 35.70636081346806, 0, 0, 0, 0, 0, 0, 'rtomayko', NULL, '', '未知', 'r@tomayko.com', NULL, NULL, NULL, 0, 0, 2367, 100, 0, 0, 0, '2008-02-19T03:30:53Z', '2023-10-07T05:40:49Z', 'https://avatars.githubusercontent.com/u/404?v=4', 'https://api.github.com/users/rtomayko', 'https://github.com/rtomayko', 'https://api.github.com/users/rtomayko/followers', 'https://api.github.com/users/rtomayko/following', 'https://api.github.com/users/rtomayko/gists', 'https://api.github.com/users/rtomayko/starred', 'https://api.github.com/users/rtomayko/repos', 'https://api.github.com/users/rtomayko/events', 'https://api.github.com/users/rtomayko/received_events', 0); +INSERT INTO `developer` VALUES (405, 'timburks', 'C', 7.1369208527739465, 0, 0, 0, 0, 0, 0, 'Tim Burks', NULL, 'https://timburks.me', 'Los Altos, CA', 'timburks@me.com', NULL, 'Software developer in the SF Bay Area. Electronic Design Automation, iOS apps, APIs at Google, and onward...', NULL, 0, 0, 701, 119, 0, 0, 0, '2008-02-19T04:26:47Z', '2024-10-25T18:38:14Z', 'https://avatars.githubusercontent.com/u/405?v=4', 'https://api.github.com/users/timburks', 'https://github.com/timburks', 'https://api.github.com/users/timburks/followers', 'https://api.github.com/users/timburks/following', 'https://api.github.com/users/timburks/gists', 'https://api.github.com/users/timburks/starred', 'https://api.github.com/users/timburks/repos', 'https://api.github.com/users/timburks/events', 'https://api.github.com/users/timburks/received_events', 0); +INSERT INTO `developer` VALUES (406, 'gaveen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gaveen Prabhasara', NULL, 'https://gaveen.me/', 'Sri Lanka', NULL, NULL, 'SysAdmin, Programming Language Tourist, and Petty Dabbler of the Written Word.', NULL, 0, 0, 39, 19, 0, 0, 0, '2008-02-19T05:11:31Z', '2024-10-17T16:46:24Z', 'https://avatars.githubusercontent.com/u/406?v=4', 'https://api.github.com/users/gaveen', 'https://github.com/gaveen', 'https://api.github.com/users/gaveen/followers', 'https://api.github.com/users/gaveen/following', 'https://api.github.com/users/gaveen/gists', 'https://api.github.com/users/gaveen/starred', 'https://api.github.com/users/gaveen/repos', 'https://api.github.com/users/gaveen/events', 'https://api.github.com/users/gaveen/received_events', 0); +INSERT INTO `developer` VALUES (407, 'waqas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Waqas', NULL, '', 'Lahore, Pakistan', NULL, NULL, 'Software Engineer - React, Javascript, TypeScript, ASP.NET', NULL, 0, 0, 16, 0, 0, 0, 0, '2008-02-19T06:10:59Z', '2024-06-26T08:16:04Z', 'https://avatars.githubusercontent.com/u/407?v=4', 'https://api.github.com/users/waqas', 'https://github.com/waqas', 'https://api.github.com/users/waqas/followers', 'https://api.github.com/users/waqas/following', 'https://api.github.com/users/waqas/gists', 'https://api.github.com/users/waqas/starred', 'https://api.github.com/users/waqas/repos', 'https://api.github.com/users/waqas/events', 'https://api.github.com/users/waqas/received_events', 0); +INSERT INTO `developer` VALUES (408, 'dpetersen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Don Petersen', NULL, '', 'Bend, OR', 'don@donpetersen.net', 'true', 'Developer, Kubernetes wrangler, love Rust and Go.', 'donjpetersen', 0, 0, 35, 1, 0, 0, 0, '2008-02-19T06:56:12Z', '2024-09-30T17:21:36Z', 'https://avatars.githubusercontent.com/u/408?v=4', 'https://api.github.com/users/dpetersen', 'https://github.com/dpetersen', 'https://api.github.com/users/dpetersen/followers', 'https://api.github.com/users/dpetersen/following', 'https://api.github.com/users/dpetersen/gists', 'https://api.github.com/users/dpetersen/starred', 'https://api.github.com/users/dpetersen/repos', 'https://api.github.com/users/dpetersen/events', 'https://api.github.com/users/dpetersen/received_events', 0); +INSERT INTO `developer` VALUES (409, 'antonithock', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thock', NULL, '', 'Poland', 'antonithock@gmail.com', 'true', NULL, NULL, 0, 0, 19, 1, 0, 0, 0, '2008-02-19T10:13:59Z', '2019-06-05T02:40:52Z', 'https://avatars.githubusercontent.com/u/409?v=4', 'https://api.github.com/users/antonithock', 'https://github.com/antonithock', 'https://api.github.com/users/antonithock/followers', 'https://api.github.com/users/antonithock/following', 'https://api.github.com/users/antonithock/gists', 'https://api.github.com/users/antonithock/starred', 'https://api.github.com/users/antonithock/repos', 'https://api.github.com/users/antonithock/events', 'https://api.github.com/users/antonithock/received_events', 0); +INSERT INTO `developer` VALUES (410, 'fivethreeo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Øyvind Saltvik', NULL, '', 'Levanger, Norway', 'oyvind.saltvik@gmail.com', 'true', NULL, NULL, 0, 0, 75, 30, 0, 0, 0, '2008-02-19T11:00:05Z', '2024-09-07T02:57:29Z', 'https://avatars.githubusercontent.com/u/410?v=4', 'https://api.github.com/users/fivethreeo', 'https://github.com/fivethreeo', 'https://api.github.com/users/fivethreeo/followers', 'https://api.github.com/users/fivethreeo/following', 'https://api.github.com/users/fivethreeo/gists', 'https://api.github.com/users/fivethreeo/starred', 'https://api.github.com/users/fivethreeo/repos', 'https://api.github.com/users/fivethreeo/events', 'https://api.github.com/users/fivethreeo/received_events', 0); +INSERT INTO `developer` VALUES (411, 'tandibar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Bade', 'Freelancer', '', 'Remscheid, Germany', 'andi.bade@gmail.com', NULL, NULL, NULL, 0, 0, 39, 25, 0, 0, 0, '2008-02-19T13:32:09Z', '2024-10-20T10:47:07Z', 'https://avatars.githubusercontent.com/u/411?v=4', 'https://api.github.com/users/tandibar', 'https://github.com/tandibar', 'https://api.github.com/users/tandibar/followers', 'https://api.github.com/users/tandibar/following', 'https://api.github.com/users/tandibar/gists', 'https://api.github.com/users/tandibar/starred', 'https://api.github.com/users/tandibar/repos', 'https://api.github.com/users/tandibar/events', 'https://api.github.com/users/tandibar/received_events', 0); +INSERT INTO `developer` VALUES (412, 'cmer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carl Mercier', NULL, '', 'Frisco, DFW, TX', NULL, NULL, NULL, NULL, 0, 0, 140, 34, 0, 0, 0, '2008-02-19T16:51:01Z', '2024-10-14T04:40:43Z', 'https://avatars.githubusercontent.com/u/412?v=4', 'https://api.github.com/users/cmer', 'https://github.com/cmer', 'https://api.github.com/users/cmer/followers', 'https://api.github.com/users/cmer/following', 'https://api.github.com/users/cmer/gists', 'https://api.github.com/users/cmer/starred', 'https://api.github.com/users/cmer/repos', 'https://api.github.com/users/cmer/events', 'https://api.github.com/users/cmer/received_events', 0); +INSERT INTO `developer` VALUES (413, 'trotter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trotter Cashion', 'Riot Games', 'http://trottercashion.com', 'Santa Monica, CA', 'tcashion@riotgames.com', NULL, NULL, NULL, 0, 0, 165, 0, 0, 0, 0, '2008-02-19T17:11:10Z', '2024-11-04T01:09:35Z', 'https://avatars.githubusercontent.com/u/413?v=4', 'https://api.github.com/users/trotter', 'https://github.com/trotter', 'https://api.github.com/users/trotter/followers', 'https://api.github.com/users/trotter/following', 'https://api.github.com/users/trotter/gists', 'https://api.github.com/users/trotter/starred', 'https://api.github.com/users/trotter/repos', 'https://api.github.com/users/trotter/events', 'https://api.github.com/users/trotter/received_events', 0); +INSERT INTO `developer` VALUES (414, 'dudleyf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dudley Flanders', NULL, '', '未知', 'dudleyflanders@gmail.com', NULL, NULL, NULL, 0, 0, 37, 3, 0, 0, 0, '2008-02-19T17:11:20Z', '2024-11-02T18:50:10Z', 'https://avatars.githubusercontent.com/u/414?v=4', 'https://api.github.com/users/dudleyf', 'https://github.com/dudleyf', 'https://api.github.com/users/dudleyf/followers', 'https://api.github.com/users/dudleyf/following', 'https://api.github.com/users/dudleyf/gists', 'https://api.github.com/users/dudleyf/starred', 'https://api.github.com/users/dudleyf/repos', 'https://api.github.com/users/dudleyf/events', 'https://api.github.com/users/dudleyf/received_events', 0); +INSERT INTO `developer` VALUES (415, 'kevinansfield', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Ansfield', 'Ghost Foundation', '', 'Tunbridge Wells, UK', 'kevin@lookingsideways.co.uk', NULL, 'Developer @ Ghost (https://ghost.org)', 'lookingsideways', 0, 0, 155, 0, 0, 0, 0, '2008-02-19T17:13:35Z', '2024-08-15T14:56:20Z', 'https://avatars.githubusercontent.com/u/415?v=4', 'https://api.github.com/users/kevinansfield', 'https://github.com/kevinansfield', 'https://api.github.com/users/kevinansfield/followers', 'https://api.github.com/users/kevinansfield/following', 'https://api.github.com/users/kevinansfield/gists', 'https://api.github.com/users/kevinansfield/starred', 'https://api.github.com/users/kevinansfield/repos', 'https://api.github.com/users/kevinansfield/events', 'https://api.github.com/users/kevinansfield/received_events', 0); +INSERT INTO `developer` VALUES (417, 'luigi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luigi Ray-Montañez', NULL, 'https://luigi.land', 'Atlanta, GA', NULL, NULL, 'Civic technologist and software engineering leader.', NULL, 0, 0, 131, 28, 0, 0, 0, '2008-02-19T17:14:18Z', '2024-10-22T13:42:42Z', 'https://avatars.githubusercontent.com/u/417?v=4', 'https://api.github.com/users/luigi', 'https://github.com/luigi', 'https://api.github.com/users/luigi/followers', 'https://api.github.com/users/luigi/following', 'https://api.github.com/users/luigi/gists', 'https://api.github.com/users/luigi/starred', 'https://api.github.com/users/luigi/repos', 'https://api.github.com/users/luigi/events', 'https://api.github.com/users/luigi/received_events', 0); +INSERT INTO `developer` VALUES (418, 'mattswasey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Swasey', 'Viget Labs', 'http://eeeee0.com', 'Washington DC', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-19T17:15:02Z', '2019-06-05T02:41:15Z', 'https://avatars.githubusercontent.com/u/418?v=4', 'https://api.github.com/users/mattswasey', 'https://github.com/mattswasey', 'https://api.github.com/users/mattswasey/followers', 'https://api.github.com/users/mattswasey/following', 'https://api.github.com/users/mattswasey/gists', 'https://api.github.com/users/mattswasey/starred', 'https://api.github.com/users/mattswasey/repos', 'https://api.github.com/users/mattswasey/events', 'https://api.github.com/users/mattswasey/received_events', 0); +INSERT INTO `developer` VALUES (419, 'gotascii', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Marney', NULL, 'http://sorescode.com', 'San Francisco, CA', 'gotascii@gmail.com', NULL, NULL, NULL, 0, 0, 43, 10, 0, 0, 0, '2008-02-19T17:15:50Z', '2024-10-07T22:11:25Z', 'https://avatars.githubusercontent.com/u/419?v=4', 'https://api.github.com/users/gotascii', 'https://github.com/gotascii', 'https://api.github.com/users/gotascii/followers', 'https://api.github.com/users/gotascii/following', 'https://api.github.com/users/gotascii/gists', 'https://api.github.com/users/gotascii/starred', 'https://api.github.com/users/gotascii/repos', 'https://api.github.com/users/gotascii/events', 'https://api.github.com/users/gotascii/received_events', 0); +INSERT INTO `developer` VALUES (420, 'rozza', 'C', 0.6033334427952834, 0, 0, 0, 0, 0, 0, 'Ross Lawley', '@mongodb ', 'http://www.rosslawley.co.uk', 'United Kingdom', 'ross.lawley@gmail.com', NULL, NULL, NULL, 0, 0, 320, 23, 0, 0, 0, '2008-02-19T17:18:10Z', '2022-01-19T10:58:09Z', 'https://avatars.githubusercontent.com/u/420?v=4', 'https://api.github.com/users/rozza', 'https://github.com/rozza', 'https://api.github.com/users/rozza/followers', 'https://api.github.com/users/rozza/following', 'https://api.github.com/users/rozza/gists', 'https://api.github.com/users/rozza/starred', 'https://api.github.com/users/rozza/repos', 'https://api.github.com/users/rozza/events', 'https://api.github.com/users/rozza/received_events', 0); +INSERT INTO `developer` VALUES (421, 'frankbolero', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frank Bolero', NULL, 'www.frankbolero.com', 'Sweden', NULL, NULL, NULL, NULL, 0, 0, 43, 69, 0, 0, 0, '2008-02-19T17:26:09Z', '2024-10-28T23:57:25Z', 'https://avatars.githubusercontent.com/u/421?v=4', 'https://api.github.com/users/frankbolero', 'https://github.com/frankbolero', 'https://api.github.com/users/frankbolero/followers', 'https://api.github.com/users/frankbolero/following', 'https://api.github.com/users/frankbolero/gists', 'https://api.github.com/users/frankbolero/starred', 'https://api.github.com/users/frankbolero/repos', 'https://api.github.com/users/frankbolero/events', 'https://api.github.com/users/frankbolero/received_events', 0); +INSERT INTO `developer` VALUES (422, 'shadowmaru', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ricardo Shiota Yasuda', '@SumUp SumUp', 'https://shadowmaru.dev', 'Berlin, DE', NULL, NULL, 'Engineering Manager at SumUp', NULL, 0, 0, 166, 19, 0, 0, 0, '2008-02-19T17:28:21Z', '2024-09-24T14:58:09Z', 'https://avatars.githubusercontent.com/u/422?v=4', 'https://api.github.com/users/shadowmaru', 'https://github.com/shadowmaru', 'https://api.github.com/users/shadowmaru/followers', 'https://api.github.com/users/shadowmaru/following', 'https://api.github.com/users/shadowmaru/gists', 'https://api.github.com/users/shadowmaru/starred', 'https://api.github.com/users/shadowmaru/repos', 'https://api.github.com/users/shadowmaru/events', 'https://api.github.com/users/shadowmaru/received_events', 0); +INSERT INTO `developer` VALUES (423, 'antunderwood', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anthony Underwood', NULL, '', 'Watford, UK', NULL, NULL, NULL, 'bioinformAnt', 0, 0, 49, 4, 0, 0, 0, '2008-02-19T17:30:53Z', '2024-09-13T17:06:02Z', 'https://avatars.githubusercontent.com/u/423?v=4', 'https://api.github.com/users/antunderwood', 'https://github.com/antunderwood', 'https://api.github.com/users/antunderwood/followers', 'https://api.github.com/users/antunderwood/following', 'https://api.github.com/users/antunderwood/gists', 'https://api.github.com/users/antunderwood/starred', 'https://api.github.com/users/antunderwood/repos', 'https://api.github.com/users/antunderwood/events', 'https://api.github.com/users/antunderwood/received_events', 0); +INSERT INTO `developer` VALUES (424, 'dfugere', 'C', 0, 0, 0, 0, 0, 0, 0, 'David', 'Code Genome', '', 'Montreal', NULL, 'true', NULL, NULL, 0, 0, 28, 28, 0, 0, 0, '2008-02-19T17:32:48Z', '2024-10-31T22:20:36Z', 'https://avatars.githubusercontent.com/u/424?v=4', 'https://api.github.com/users/dfugere', 'https://github.com/dfugere', 'https://api.github.com/users/dfugere/followers', 'https://api.github.com/users/dfugere/following', 'https://api.github.com/users/dfugere/gists', 'https://api.github.com/users/dfugere/starred', 'https://api.github.com/users/dfugere/repos', 'https://api.github.com/users/dfugere/events', 'https://api.github.com/users/dfugere/received_events', 0); +INSERT INTO `developer` VALUES (425, 'james', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Darling', 'James Darling', 'http://abscond.org', 'London', 'james@abscond.org', 'true', NULL, NULL, 0, 0, 183, 37, 0, 0, 0, '2008-02-19T17:34:01Z', '2024-09-18T13:10:56Z', 'https://avatars.githubusercontent.com/u/425?v=4', 'https://api.github.com/users/james', 'https://github.com/james', 'https://api.github.com/users/james/followers', 'https://api.github.com/users/james/following', 'https://api.github.com/users/james/gists', 'https://api.github.com/users/james/starred', 'https://api.github.com/users/james/repos', 'https://api.github.com/users/james/events', 'https://api.github.com/users/james/received_events', 0); +INSERT INTO `developer` VALUES (426, 'xraid', 'C', 0, 0, 0, 0, 0, 0, 0, 'xraid', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 2, 0, 0, 0, '2008-02-19T17:36:04Z', '2024-05-08T01:04:09Z', 'https://avatars.githubusercontent.com/u/426?v=4', 'https://api.github.com/users/xraid', 'https://github.com/xraid', 'https://api.github.com/users/xraid/followers', 'https://api.github.com/users/xraid/following', 'https://api.github.com/users/xraid/gists', 'https://api.github.com/users/xraid/starred', 'https://api.github.com/users/xraid/repos', 'https://api.github.com/users/xraid/events', 'https://api.github.com/users/xraid/received_events', 0); +INSERT INTO `developer` VALUES (427, 'wijet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mariusz Pietrzyk', '@Ragnarson ', 'http://wijet.pl', 'Łódź, Poland', NULL, NULL, 'COO at Ragnarson', NULL, 0, 0, 36, 15, 0, 0, 0, '2008-02-19T17:49:22Z', '2024-05-05T07:46:08Z', 'https://avatars.githubusercontent.com/u/427?v=4', 'https://api.github.com/users/wijet', 'https://github.com/wijet', 'https://api.github.com/users/wijet/followers', 'https://api.github.com/users/wijet/following', 'https://api.github.com/users/wijet/gists', 'https://api.github.com/users/wijet/starred', 'https://api.github.com/users/wijet/repos', 'https://api.github.com/users/wijet/events', 'https://api.github.com/users/wijet/received_events', 0); +INSERT INTO `developer` VALUES (428, 'parabuzzle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Heijmans', 'Tradeweb Markets', 'http://www.mikeheijmans.com', 'Port Orange, FL', 'parabuzzle@gmail.com', NULL, 'Private Investor, Musician, Pilot, Tinkerer, Remote work advocate, and embedded systems nerd.', NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-19T18:08:27Z', '2024-10-06T12:53:33Z', 'https://avatars.githubusercontent.com/u/428?v=4', 'https://api.github.com/users/parabuzzle', 'https://github.com/parabuzzle', 'https://api.github.com/users/parabuzzle/followers', 'https://api.github.com/users/parabuzzle/following', 'https://api.github.com/users/parabuzzle/gists', 'https://api.github.com/users/parabuzzle/starred', 'https://api.github.com/users/parabuzzle/repos', 'https://api.github.com/users/parabuzzle/events', 'https://api.github.com/users/parabuzzle/received_events', 0); +INSERT INTO `developer` VALUES (429, 'damienmckenna', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damien McKenna', '@thirdandgrove', 'https://www.damienmckenna.com/', 'NH, USA', 'damien@mc-kenna.com', NULL, 'Drupal geek.', 'DamienMcKenna', 0, 0, 43, 0, 0, 0, 0, '2008-02-19T18:18:20Z', '2024-08-30T18:32:17Z', 'https://avatars.githubusercontent.com/u/429?v=4', 'https://api.github.com/users/damienmckenna', 'https://github.com/damienmckenna', 'https://api.github.com/users/damienmckenna/followers', 'https://api.github.com/users/damienmckenna/following', 'https://api.github.com/users/damienmckenna/gists', 'https://api.github.com/users/damienmckenna/starred', 'https://api.github.com/users/damienmckenna/repos', 'https://api.github.com/users/damienmckenna/events', 'https://api.github.com/users/damienmckenna/received_events', 0); +INSERT INTO `developer` VALUES (430, 'nz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Zadrozny', 'One More Cloud', 'http://omc.io/', 'Austin, TX', 'nz@omc.io', NULL, NULL, 'nz_', 0, 0, 63, 37, 0, 0, 0, '2008-02-19T18:39:32Z', '2024-10-08T15:14:29Z', 'https://avatars.githubusercontent.com/u/430?v=4', 'https://api.github.com/users/nz', 'https://github.com/nz', 'https://api.github.com/users/nz/followers', 'https://api.github.com/users/nz/following', 'https://api.github.com/users/nz/gists', 'https://api.github.com/users/nz/starred', 'https://api.github.com/users/nz/repos', 'https://api.github.com/users/nz/events', 'https://api.github.com/users/nz/received_events', 0); +INSERT INTO `developer` VALUES (431, 'tynino', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tyler Ferrier', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-02-19T18:44:24Z', '2019-06-05T02:41:38Z', 'https://avatars.githubusercontent.com/u/431?v=4', 'https://api.github.com/users/tynino', 'https://github.com/tynino', 'https://api.github.com/users/tynino/followers', 'https://api.github.com/users/tynino/following', 'https://api.github.com/users/tynino/gists', 'https://api.github.com/users/tynino/starred', 'https://api.github.com/users/tynino/repos', 'https://api.github.com/users/tynino/events', 'https://api.github.com/users/tynino/received_events', 0); +INSERT INTO `developer` VALUES (432, 'allan', 'C', 0, 0, 0, 0, 0, 0, 0, 'allan', NULL, '', 'ch', 'mail at may.mooo.com', NULL, NULL, NULL, 0, 0, 10, 5, 0, 0, 0, '2008-02-19T18:59:26Z', '2024-06-22T17:20:08Z', 'https://avatars.githubusercontent.com/u/432?v=4', 'https://api.github.com/users/allan', 'https://github.com/allan', 'https://api.github.com/users/allan/followers', 'https://api.github.com/users/allan/following', 'https://api.github.com/users/allan/gists', 'https://api.github.com/users/allan/starred', 'https://api.github.com/users/allan/repos', 'https://api.github.com/users/allan/events', 'https://api.github.com/users/allan/received_events', 0); +INSERT INTO `developer` VALUES (433, 'bscofield', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Scofield', NULL, 'https://benscofield.com', 'Durham, NC', NULL, NULL, NULL, 'bscofield', 0, 0, 94, 12, 0, 0, 0, '2008-02-19T19:03:22Z', '2024-03-11T23:11:32Z', 'https://avatars.githubusercontent.com/u/433?v=4', 'https://api.github.com/users/bscofield', 'https://github.com/bscofield', 'https://api.github.com/users/bscofield/followers', 'https://api.github.com/users/bscofield/following', 'https://api.github.com/users/bscofield/gists', 'https://api.github.com/users/bscofield/starred', 'https://api.github.com/users/bscofield/repos', 'https://api.github.com/users/bscofield/events', 'https://api.github.com/users/bscofield/received_events', 0); +INSERT INTO `developer` VALUES (434, 'tkofol', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Kofol', 'S2N Health', 'http://www.s2nhealth.com', 'Boston, MA', 'tkofol@gmail.com', NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-02-19T19:04:04Z', '2024-10-29T00:27:41Z', 'https://avatars.githubusercontent.com/u/434?v=4', 'https://api.github.com/users/tkofol', 'https://github.com/tkofol', 'https://api.github.com/users/tkofol/followers', 'https://api.github.com/users/tkofol/following', 'https://api.github.com/users/tkofol/gists', 'https://api.github.com/users/tkofol/starred', 'https://api.github.com/users/tkofol/repos', 'https://api.github.com/users/tkofol/events', 'https://api.github.com/users/tkofol/received_events', 0); +INSERT INTO `developer` VALUES (435, 'trey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trey Piepmeier', '@Piepworks', 'https://treypiepmeier.com', 'Vermont, USA', NULL, NULL, 'Software is magic. Horrible, frustrating magic.', NULL, 0, 0, 156, 180, 0, 0, 0, '2008-02-19T19:04:37Z', '2024-10-31T12:34:47Z', 'https://avatars.githubusercontent.com/u/435?v=4', 'https://api.github.com/users/trey', 'https://github.com/trey', 'https://api.github.com/users/trey/followers', 'https://api.github.com/users/trey/following', 'https://api.github.com/users/trey/gists', 'https://api.github.com/users/trey/starred', 'https://api.github.com/users/trey/repos', 'https://api.github.com/users/trey/events', 'https://api.github.com/users/trey/received_events', 0); +INSERT INTO `developer` VALUES (436, 'jimmy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jimmy Kittiyachavalit', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 49, 2, 0, 0, 0, '2008-02-19T19:06:24Z', '2024-09-24T18:49:08Z', 'https://avatars.githubusercontent.com/u/436?v=4', 'https://api.github.com/users/jimmy', 'https://github.com/jimmy', 'https://api.github.com/users/jimmy/followers', 'https://api.github.com/users/jimmy/following', 'https://api.github.com/users/jimmy/gists', 'https://api.github.com/users/jimmy/starred', 'https://api.github.com/users/jimmy/repos', 'https://api.github.com/users/jimmy/events', 'https://api.github.com/users/jimmy/received_events', 0); +INSERT INTO `developer` VALUES (437, 'foca', 'C', 1.5293537056269053, 0, 0, 0, 0, 0, 0, 'Nicolás Sanguinetti', NULL, 'https://foca.io', '未知', 'foca@foca.io', NULL, 'Manduco ergo sum. ', NULL, 0, 0, 374, 96, 0, 0, 0, '2008-02-19T19:06:27Z', '2024-10-14T18:08:54Z', 'https://avatars.githubusercontent.com/u/437?v=4', 'https://api.github.com/users/foca', 'https://github.com/foca', 'https://api.github.com/users/foca/followers', 'https://api.github.com/users/foca/following', 'https://api.github.com/users/foca/gists', 'https://api.github.com/users/foca/starred', 'https://api.github.com/users/foca/repos', 'https://api.github.com/users/foca/events', 'https://api.github.com/users/foca/received_events', 0); +INSERT INTO `developer` VALUES (438, 'mathie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Graeme Mathieson', 'Wossname Industries', 'http://woss.name/', 'Teignmouth, United Kingdom', 'mathie@woss.name', 'true', NULL, NULL, 0, 0, 84, 35, 0, 0, 0, '2008-02-19T19:06:57Z', '2018-05-30T04:09:58Z', 'https://avatars.githubusercontent.com/u/438?v=4', 'https://api.github.com/users/mathie', 'https://github.com/mathie', 'https://api.github.com/users/mathie/followers', 'https://api.github.com/users/mathie/following', 'https://api.github.com/users/mathie/gists', 'https://api.github.com/users/mathie/starred', 'https://api.github.com/users/mathie/repos', 'https://api.github.com/users/mathie/events', 'https://api.github.com/users/mathie/received_events', 0); +INSERT INTO `developer` VALUES (439, 'jarkko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jarkko Laine', 'Bear Metal', 'http://jlaine.net', 'Kangasala, Finland', 'jarkko@jlaine.net', 'true', NULL, 'jarkko', 0, 0, 27, 0, 0, 0, 0, '2008-02-19T19:07:06Z', '2024-09-18T07:05:58Z', 'https://avatars.githubusercontent.com/u/439?v=4', 'https://api.github.com/users/jarkko', 'https://github.com/jarkko', 'https://api.github.com/users/jarkko/followers', 'https://api.github.com/users/jarkko/following', 'https://api.github.com/users/jarkko/gists', 'https://api.github.com/users/jarkko/starred', 'https://api.github.com/users/jarkko/repos', 'https://api.github.com/users/jarkko/events', 'https://api.github.com/users/jarkko/received_events', 0); +INSERT INTO `developer` VALUES (440, 'norbert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Norbert Crombach', NULL, 'https://primetheory.org', '未知', 'norbert.crombach@primetheory.org', NULL, NULL, NULL, 0, 0, 86, 61, 0, 0, 0, '2008-02-19T19:08:51Z', '2024-09-22T18:00:10Z', 'https://avatars.githubusercontent.com/u/440?v=4', 'https://api.github.com/users/norbert', 'https://github.com/norbert', 'https://api.github.com/users/norbert/followers', 'https://api.github.com/users/norbert/following', 'https://api.github.com/users/norbert/gists', 'https://api.github.com/users/norbert/starred', 'https://api.github.com/users/norbert/repos', 'https://api.github.com/users/norbert/events', 'https://api.github.com/users/norbert/received_events', 0); +INSERT INTO `developer` VALUES (441, 'jduff', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Duff', NULL, 'http://jduff.github.io/', 'Ottawa, Ontario', NULL, 'true', NULL, NULL, 0, 0, 135, 56, 0, 0, 0, '2008-02-19T19:10:32Z', '2024-10-08T13:04:58Z', 'https://avatars.githubusercontent.com/u/441?v=4', 'https://api.github.com/users/jduff', 'https://github.com/jduff', 'https://api.github.com/users/jduff/followers', 'https://api.github.com/users/jduff/following', 'https://api.github.com/users/jduff/gists', 'https://api.github.com/users/jduff/starred', 'https://api.github.com/users/jduff/repos', 'https://api.github.com/users/jduff/events', 'https://api.github.com/users/jduff/received_events', 0); +INSERT INTO `developer` VALUES (442, 'gpaul', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gustav Paul', 'Mesosphere', '', 'South Africa, Stellenbosch', 'gustav.paul@gmail.com', NULL, NULL, NULL, 0, 0, 38, 5, 0, 0, 0, '2008-02-19T19:13:35Z', '2024-07-06T17:43:45Z', 'https://avatars.githubusercontent.com/u/442?v=4', 'https://api.github.com/users/gpaul', 'https://github.com/gpaul', 'https://api.github.com/users/gpaul/followers', 'https://api.github.com/users/gpaul/following', 'https://api.github.com/users/gpaul/gists', 'https://api.github.com/users/gpaul/starred', 'https://api.github.com/users/gpaul/repos', 'https://api.github.com/users/gpaul/events', 'https://api.github.com/users/gpaul/received_events', 0); +INSERT INTO `developer` VALUES (443, 'pablete', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pablo A. Delgado', 'Netflix', 'http://pablodelgado.org', 'San Francisco, CA', 'pablete@gmail.com', NULL, NULL, NULL, 0, 0, 82, 92, 0, 0, 0, '2008-02-19T19:29:56Z', '2024-10-28T19:38:11Z', 'https://avatars.githubusercontent.com/u/443?v=4', 'https://api.github.com/users/pablete', 'https://github.com/pablete', 'https://api.github.com/users/pablete/followers', 'https://api.github.com/users/pablete/following', 'https://api.github.com/users/pablete/gists', 'https://api.github.com/users/pablete/starred', 'https://api.github.com/users/pablete/repos', 'https://api.github.com/users/pablete/events', 'https://api.github.com/users/pablete/received_events', 0); +INSERT INTO `developer` VALUES (444, 'mokolabs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Crowley', NULL, '', 'San Diego, CA', 'patrick@mokolabs.com', 'true', 'I make stuff on the internet.', 'mokolabs', 0, 0, 64, 36, 0, 0, 0, '2008-02-19T19:33:22Z', '2024-07-17T23:00:54Z', 'https://avatars.githubusercontent.com/u/444?v=4', 'https://api.github.com/users/mokolabs', 'https://github.com/mokolabs', 'https://api.github.com/users/mokolabs/followers', 'https://api.github.com/users/mokolabs/following', 'https://api.github.com/users/mokolabs/gists', 'https://api.github.com/users/mokolabs/starred', 'https://api.github.com/users/mokolabs/repos', 'https://api.github.com/users/mokolabs/events', 'https://api.github.com/users/mokolabs/received_events', 0); +INSERT INTO `developer` VALUES (445, 'awilliam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Williamson', NULL, '', '未知', 'alex.williamson@redhat.com', NULL, NULL, NULL, 0, 0, 107, 0, 0, 0, 0, '2008-02-19T19:37:32Z', '2024-03-18T19:56:20Z', 'https://avatars.githubusercontent.com/u/445?v=4', 'https://api.github.com/users/awilliam', 'https://github.com/awilliam', 'https://api.github.com/users/awilliam/followers', 'https://api.github.com/users/awilliam/following', 'https://api.github.com/users/awilliam/gists', 'https://api.github.com/users/awilliam/starred', 'https://api.github.com/users/awilliam/repos', 'https://api.github.com/users/awilliam/events', 'https://api.github.com/users/awilliam/received_events', 0); +INSERT INTO `developer` VALUES (447, 'dysinger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dysinger', 'Independent', '', 'Nearby', NULL, NULL, 'Entrepreneur, Functional Programmer, & Systems Operator', NULL, 0, 0, 243, 12, 0, 0, 0, '2008-02-19T19:47:38Z', '2024-08-09T13:28:01Z', 'https://avatars.githubusercontent.com/u/447?v=4', 'https://api.github.com/users/dysinger', 'https://github.com/dysinger', 'https://api.github.com/users/dysinger/followers', 'https://api.github.com/users/dysinger/following', 'https://api.github.com/users/dysinger/gists', 'https://api.github.com/users/dysinger/starred', 'https://api.github.com/users/dysinger/repos', 'https://api.github.com/users/dysinger/events', 'https://api.github.com/users/dysinger/received_events', 0); +INSERT INTO `developer` VALUES (448, 'intabulas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Lussier', NULL, 'https://lushvino.com/', 'Eagle, ID', 'mlussier@gmail.com', NULL, NULL, NULL, 0, 0, 71, 48, 0, 0, 0, '2008-02-19T19:48:01Z', '2024-10-29T23:36:56Z', 'https://avatars.githubusercontent.com/u/448?v=4', 'https://api.github.com/users/intabulas', 'https://github.com/intabulas', 'https://api.github.com/users/intabulas/followers', 'https://api.github.com/users/intabulas/following', 'https://api.github.com/users/intabulas/gists', 'https://api.github.com/users/intabulas/starred', 'https://api.github.com/users/intabulas/repos', 'https://api.github.com/users/intabulas/events', 'https://api.github.com/users/intabulas/received_events', 0); +INSERT INTO `developer` VALUES (449, 'avalade', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron D. Valade', NULL, '', 'United States', NULL, NULL, NULL, NULL, 0, 0, 24, 11, 0, 0, 0, '2008-02-19T20:00:45Z', '2024-09-27T17:06:28Z', 'https://avatars.githubusercontent.com/u/449?v=4', 'https://api.github.com/users/avalade', 'https://github.com/avalade', 'https://api.github.com/users/avalade/followers', 'https://api.github.com/users/avalade/following', 'https://api.github.com/users/avalade/gists', 'https://api.github.com/users/avalade/starred', 'https://api.github.com/users/avalade/repos', 'https://api.github.com/users/avalade/events', 'https://api.github.com/users/avalade/received_events', 0); +INSERT INTO `developer` VALUES (450, 'ljsc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lou Scoras', 'Bloomberg LP', '', 'Washington, DC', NULL, NULL, NULL, NULL, 0, 0, 36, 19, 0, 0, 0, '2008-02-19T20:47:07Z', '2024-08-31T09:23:33Z', 'https://avatars.githubusercontent.com/u/450?v=4', 'https://api.github.com/users/ljsc', 'https://github.com/ljsc', 'https://api.github.com/users/ljsc/followers', 'https://api.github.com/users/ljsc/following', 'https://api.github.com/users/ljsc/gists', 'https://api.github.com/users/ljsc/starred', 'https://api.github.com/users/ljsc/repos', 'https://api.github.com/users/ljsc/events', 'https://api.github.com/users/ljsc/received_events', 0); +INSERT INTO `developer` VALUES (451, 'djdarkbeat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Loomis', 'http://www.customated.com', '', 'Boise, Idaho', 'brian@customated.com', NULL, NULL, NULL, 0, 0, 34, 174, 0, 0, 0, '2008-02-19T20:52:29Z', '2024-10-29T14:19:43Z', 'https://avatars.githubusercontent.com/u/451?v=4', 'https://api.github.com/users/djdarkbeat', 'https://github.com/djdarkbeat', 'https://api.github.com/users/djdarkbeat/followers', 'https://api.github.com/users/djdarkbeat/following', 'https://api.github.com/users/djdarkbeat/gists', 'https://api.github.com/users/djdarkbeat/starred', 'https://api.github.com/users/djdarkbeat/repos', 'https://api.github.com/users/djdarkbeat/events', 'https://api.github.com/users/djdarkbeat/received_events', 0); +INSERT INTO `developer` VALUES (452, 'yrashk', 'C', 7.90860440513363, 0, 0, 0, 0, 0, 0, 'Yurii Rashkovskii', '@omnigres ', 'https://yrashk.com', 'Comox, BC, Canada', 'yrashk@gmail.com', NULL, 'Seasoned software engineer with more than 20 years of professional experience. Entrepreneur.\r\n\r\n', 'yrashk', 0, 0, 746, 604, 0, 0, 0, '2008-02-19T20:56:25Z', '2024-11-05T00:01:28Z', 'https://avatars.githubusercontent.com/u/452?v=4', 'https://api.github.com/users/yrashk', 'https://github.com/yrashk', 'https://api.github.com/users/yrashk/followers', 'https://api.github.com/users/yrashk/following', 'https://api.github.com/users/yrashk/gists', 'https://api.github.com/users/yrashk/starred', 'https://api.github.com/users/yrashk/repos', 'https://api.github.com/users/yrashk/events', 'https://api.github.com/users/yrashk/received_events', 0); +INSERT INTO `developer` VALUES (453, 'famulus', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 35, 1, 0, 0, 0, '2008-02-19T20:57:35Z', '2024-09-12T17:29:56Z', 'https://avatars.githubusercontent.com/u/453?v=4', 'https://api.github.com/users/famulus', 'https://github.com/famulus', 'https://api.github.com/users/famulus/followers', 'https://api.github.com/users/famulus/following', 'https://api.github.com/users/famulus/gists', 'https://api.github.com/users/famulus/starred', 'https://api.github.com/users/famulus/repos', 'https://api.github.com/users/famulus/events', 'https://api.github.com/users/famulus/received_events', 0); +INSERT INTO `developer` VALUES (454, 'rks', 'C', 0, 0, 0, 0, 0, 0, 0, 'Randy Souza', '@mathworks', '', 'Norwood, MA', NULL, NULL, 'Web developer at @mathworks', NULL, 0, 0, 21, 12, 0, 0, 0, '2008-02-19T21:11:10Z', '2024-10-23T14:27:56Z', 'https://avatars.githubusercontent.com/u/454?v=4', 'https://api.github.com/users/rks', 'https://github.com/rks', 'https://api.github.com/users/rks/followers', 'https://api.github.com/users/rks/following', 'https://api.github.com/users/rks/gists', 'https://api.github.com/users/rks/starred', 'https://api.github.com/users/rks/repos', 'https://api.github.com/users/rks/events', 'https://api.github.com/users/rks/received_events', 0); +INSERT INTO `developer` VALUES (455, 'chriskaukis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris', 'Space Cowboy, inc.', 'https://chriskaukis.github.io', 'Minneapolis, MN', NULL, 'true', 'Super ninja rockstar', NULL, 0, 0, 20, 3, 0, 0, 0, '2008-02-19T21:14:55Z', '2020-04-02T14:32:37Z', 'https://avatars.githubusercontent.com/u/455?v=4', 'https://api.github.com/users/chriskaukis', 'https://github.com/chriskaukis', 'https://api.github.com/users/chriskaukis/followers', 'https://api.github.com/users/chriskaukis/following', 'https://api.github.com/users/chriskaukis/gists', 'https://api.github.com/users/chriskaukis/starred', 'https://api.github.com/users/chriskaukis/repos', 'https://api.github.com/users/chriskaukis/events', 'https://api.github.com/users/chriskaukis/received_events', 0); +INSERT INTO `developer` VALUES (456, 'caffo', 'C', 0.7233731064956793, 0, 0, 0, 0, 0, 0, 'Rodrigo Franco', 'Flexcode Software', 'http://rodrigofranco.com/', '未知', NULL, NULL, 'Software Engineer. Bookworm, Coffee Connoisseur and Dungeon Crawler Aficionado. お宅.', NULL, 0, 0, 327, 0, 0, 0, 0, '2008-02-19T21:21:24Z', '2024-09-15T17:42:44Z', 'https://avatars.githubusercontent.com/u/456?v=4', 'https://api.github.com/users/caffo', 'https://github.com/caffo', 'https://api.github.com/users/caffo/followers', 'https://api.github.com/users/caffo/following', 'https://api.github.com/users/caffo/gists', 'https://api.github.com/users/caffo/starred', 'https://api.github.com/users/caffo/repos', 'https://api.github.com/users/caffo/events', 'https://api.github.com/users/caffo/received_events', 0); +INSERT INTO `developer` VALUES (458, 'timperrett', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timothy Perrett', '@nvidia', 'http://timperrett.com', 'San Francisco, CA', NULL, NULL, 'Alpinist. Engineer. Author.', NULL, 0, 0, 221, 16, 0, 0, 0, '2008-02-19T21:46:22Z', '2024-04-26T19:44:14Z', 'https://avatars.githubusercontent.com/u/458?v=4', 'https://api.github.com/users/timperrett', 'https://github.com/timperrett', 'https://api.github.com/users/timperrett/followers', 'https://api.github.com/users/timperrett/following', 'https://api.github.com/users/timperrett/gists', 'https://api.github.com/users/timperrett/starred', 'https://api.github.com/users/timperrett/repos', 'https://api.github.com/users/timperrett/events', 'https://api.github.com/users/timperrett/received_events', 0); +INSERT INTO `developer` VALUES (459, 'voodootikigod', 'C', 7.291257563245883, 0, 0, 0, 0, 0, 0, 'Chris Williams', NULL, 'http://www.voodootikigod.com', 'Reston, VA', 'voodootikigod@gmail.com', 'true', 'Maker of Improbable Things', 'voodootikigod', 0, 0, 710, 115, 0, 0, 0, '2008-02-19T22:11:53Z', '2024-10-25T18:35:44Z', 'https://avatars.githubusercontent.com/u/459?v=4', 'https://api.github.com/users/voodootikigod', 'https://github.com/voodootikigod', 'https://api.github.com/users/voodootikigod/followers', 'https://api.github.com/users/voodootikigod/following', 'https://api.github.com/users/voodootikigod/gists', 'https://api.github.com/users/voodootikigod/starred', 'https://api.github.com/users/voodootikigod/repos', 'https://api.github.com/users/voodootikigod/events', 'https://api.github.com/users/voodootikigod/received_events', 0); +INSERT INTO `developer` VALUES (460, 'kwe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Evans', NULL, 'www.linkedin.com/in/kwevanscto', 'Wales, UK', 'kwevans@gmail.com', 'true', 'Let\'s build stuff.', 'kwe', 0, 0, 25, 23, 0, 0, 0, '2008-02-19T22:21:13Z', '2024-10-22T19:36:25Z', 'https://avatars.githubusercontent.com/u/460?v=4', 'https://api.github.com/users/kwe', 'https://github.com/kwe', 'https://api.github.com/users/kwe/followers', 'https://api.github.com/users/kwe/following', 'https://api.github.com/users/kwe/gists', 'https://api.github.com/users/kwe/starred', 'https://api.github.com/users/kwe/repos', 'https://api.github.com/users/kwe/events', 'https://api.github.com/users/kwe/received_events', 0); +INSERT INTO `developer` VALUES (461, 'bernd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bernd Ahlers', 'Graylog, Inc.', '', 'Hamburg/Germany', NULL, NULL, 'Deleting logs @Graylog2 ', NULL, 0, 0, 150, 35, 0, 0, 0, '2008-02-19T22:26:44Z', '2024-10-30T18:19:23Z', 'https://avatars.githubusercontent.com/u/461?v=4', 'https://api.github.com/users/bernd', 'https://github.com/bernd', 'https://api.github.com/users/bernd/followers', 'https://api.github.com/users/bernd/following', 'https://api.github.com/users/bernd/gists', 'https://api.github.com/users/bernd/starred', 'https://api.github.com/users/bernd/repos', 'https://api.github.com/users/bernd/events', 'https://api.github.com/users/bernd/received_events', 0); +INSERT INTO `developer` VALUES (462, 'winson', 'C', 0, 0, 0, 0, 0, 0, 0, 'winson', NULL, '', 'Taiwan', NULL, NULL, NULL, NULL, 0, 0, 18, 33, 0, 0, 0, '2008-02-19T22:45:04Z', '2020-05-02T23:53:43Z', 'https://avatars.githubusercontent.com/u/462?v=4', 'https://api.github.com/users/winson', 'https://github.com/winson', 'https://api.github.com/users/winson/followers', 'https://api.github.com/users/winson/following', 'https://api.github.com/users/winson/gists', 'https://api.github.com/users/winson/starred', 'https://api.github.com/users/winson/repos', 'https://api.github.com/users/winson/events', 'https://api.github.com/users/winson/received_events', 0); +INSERT INTO `developer` VALUES (463, 'cblackburn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Blackburn', 'Midwire Technologies', 'midwiretech.com', 'Kansas City, USA', NULL, NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-02-19T23:09:14Z', '2023-08-11T21:26:03Z', 'https://avatars.githubusercontent.com/u/463?v=4', 'https://api.github.com/users/cblackburn', 'https://github.com/cblackburn', 'https://api.github.com/users/cblackburn/followers', 'https://api.github.com/users/cblackburn/following', 'https://api.github.com/users/cblackburn/gists', 'https://api.github.com/users/cblackburn/starred', 'https://api.github.com/users/cblackburn/repos', 'https://api.github.com/users/cblackburn/events', 'https://api.github.com/users/cblackburn/received_events', 0); +INSERT INTO `developer` VALUES (464, 'kunstreich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hannes Kunstreich', NULL, '', 'Berlin', 'hannes@kunstreich.name', NULL, NULL, NULL, 0, 0, 20, 12, 0, 0, 0, '2008-02-19T23:57:18Z', '2024-01-07T16:25:25Z', 'https://avatars.githubusercontent.com/u/464?v=4', 'https://api.github.com/users/kunstreich', 'https://github.com/kunstreich', 'https://api.github.com/users/kunstreich/followers', 'https://api.github.com/users/kunstreich/following', 'https://api.github.com/users/kunstreich/gists', 'https://api.github.com/users/kunstreich/starred', 'https://api.github.com/users/kunstreich/repos', 'https://api.github.com/users/kunstreich/events', 'https://api.github.com/users/kunstreich/received_events', 0); +INSERT INTO `developer` VALUES (465, 'emanuel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emanuel Mota', 'Yari Labs', 'http://www.yarilabs.com', 'Braga, Portugal', 'emanuel@yarilabs.com', NULL, NULL, 'emota7', 0, 0, 39, 44, 0, 0, 0, '2008-02-20T00:12:34Z', '2024-09-30T13:23:30Z', 'https://avatars.githubusercontent.com/u/465?v=4', 'https://api.github.com/users/emanuel', 'https://github.com/emanuel', 'https://api.github.com/users/emanuel/followers', 'https://api.github.com/users/emanuel/following', 'https://api.github.com/users/emanuel/gists', 'https://api.github.com/users/emanuel/starred', 'https://api.github.com/users/emanuel/repos', 'https://api.github.com/users/emanuel/events', 'https://api.github.com/users/emanuel/received_events', 0); +INSERT INTO `developer` VALUES (466, 'cdwillie76', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Williams', NULL, '', '未知', 'chris.d.williams@gmail.com', NULL, NULL, NULL, 0, 0, 13, 6, 0, 0, 0, '2008-02-20T00:16:02Z', '2024-10-30T15:16:57Z', 'https://avatars.githubusercontent.com/u/466?v=4', 'https://api.github.com/users/cdwillie76', 'https://github.com/cdwillie76', 'https://api.github.com/users/cdwillie76/followers', 'https://api.github.com/users/cdwillie76/following', 'https://api.github.com/users/cdwillie76/gists', 'https://api.github.com/users/cdwillie76/starred', 'https://api.github.com/users/cdwillie76/repos', 'https://api.github.com/users/cdwillie76/events', 'https://api.github.com/users/cdwillie76/received_events', 0); +INSERT INTO `developer` VALUES (467, 'mando', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mando Escamilla', '@Gradient-Works y\'all', 'http://www.mando.org', 'Austin, TX', 'mando@mando.org', NULL, NULL, NULL, 0, 0, 61, 49, 0, 0, 0, '2008-02-20T00:31:40Z', '2024-11-01T19:15:43Z', 'https://avatars.githubusercontent.com/u/467?v=4', 'https://api.github.com/users/mando', 'https://github.com/mando', 'https://api.github.com/users/mando/followers', 'https://api.github.com/users/mando/following', 'https://api.github.com/users/mando/gists', 'https://api.github.com/users/mando/starred', 'https://api.github.com/users/mando/repos', 'https://api.github.com/users/mando/events', 'https://api.github.com/users/mando/received_events', 0); +INSERT INTO `developer` VALUES (468, 'zh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stoyan Zhekov', NULL, '', 'JAPAN', 'zh@zhware.net', 'true', NULL, NULL, 0, 0, 162, 60, 0, 0, 0, '2008-02-20T00:38:09Z', '2024-10-19T11:23:57Z', 'https://avatars.githubusercontent.com/u/468?v=4', 'https://api.github.com/users/zh', 'https://github.com/zh', 'https://api.github.com/users/zh/followers', 'https://api.github.com/users/zh/following', 'https://api.github.com/users/zh/gists', 'https://api.github.com/users/zh/starred', 'https://api.github.com/users/zh/repos', 'https://api.github.com/users/zh/events', 'https://api.github.com/users/zh/received_events', 0); +INSERT INTO `developer` VALUES (469, 'brandon-beacher', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandon Beacher', NULL, 'http://thewildwildrest.com/', 'Atlanta, GA', 'brandon.beacher@gmail.com', 'true', 'http://stackoverflow.com/story/brandon-beacher', NULL, 0, 0, 38, 45, 0, 0, 0, '2008-02-20T00:42:42Z', '2024-09-30T14:52:18Z', 'https://avatars.githubusercontent.com/u/469?v=4', 'https://api.github.com/users/brandon-beacher', 'https://github.com/brandon-beacher', 'https://api.github.com/users/brandon-beacher/followers', 'https://api.github.com/users/brandon-beacher/following', 'https://api.github.com/users/brandon-beacher/gists', 'https://api.github.com/users/brandon-beacher/starred', 'https://api.github.com/users/brandon-beacher/repos', 'https://api.github.com/users/brandon-beacher/events', 'https://api.github.com/users/brandon-beacher/received_events', 0); +INSERT INTO `developer` VALUES (470, 'eric', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Lindvall', '@fancybits ', 'http://bitmonkey.net', 'Seattle, WA', 'eric@5stops.com', NULL, NULL, 'lindvall', 0, 0, 252, 42, 0, 0, 0, '2008-02-20T00:45:54Z', '2024-10-29T02:37:31Z', 'https://avatars.githubusercontent.com/u/470?v=4', 'https://api.github.com/users/eric', 'https://github.com/eric', 'https://api.github.com/users/eric/followers', 'https://api.github.com/users/eric/following', 'https://api.github.com/users/eric/gists', 'https://api.github.com/users/eric/starred', 'https://api.github.com/users/eric/repos', 'https://api.github.com/users/eric/events', 'https://api.github.com/users/eric/received_events', 0); +INSERT INTO `developer` VALUES (471, 'iwarshak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Warshak', NULL, 'http://ianwarshak.com', 'San Antonio, TX', 'iwarshak@stripey.net', NULL, NULL, 'iwarshak', 0, 0, 41, 6, 0, 0, 0, '2008-02-20T00:49:40Z', '2023-09-15T11:46:25Z', 'https://avatars.githubusercontent.com/u/471?v=4', 'https://api.github.com/users/iwarshak', 'https://github.com/iwarshak', 'https://api.github.com/users/iwarshak/followers', 'https://api.github.com/users/iwarshak/following', 'https://api.github.com/users/iwarshak/gists', 'https://api.github.com/users/iwarshak/starred', 'https://api.github.com/users/iwarshak/repos', 'https://api.github.com/users/iwarshak/events', 'https://api.github.com/users/iwarshak/received_events', 0); +INSERT INTO `developer` VALUES (472, 'sudara', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sudara', NULL, '', 'Vienna, Austria', 'sudara@rubytune.com', NULL, NULL, NULL, 0, 0, 271, 14, 0, 0, 0, '2008-02-20T00:54:03Z', '2024-10-28T11:30:17Z', 'https://avatars.githubusercontent.com/u/472?v=4', 'https://api.github.com/users/sudara', 'https://github.com/sudara', 'https://api.github.com/users/sudara/followers', 'https://api.github.com/users/sudara/following', 'https://api.github.com/users/sudara/gists', 'https://api.github.com/users/sudara/starred', 'https://api.github.com/users/sudara/repos', 'https://api.github.com/users/sudara/events', 'https://api.github.com/users/sudara/received_events', 0); +INSERT INTO `developer` VALUES (473, 'choonkeat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chew Choon Keat', NULL, 'https://blog.choonkeat.com', 'Singapore', 'choonkeat@gmail.com', 'true', NULL, 'choonkeat', 0, 0, 182, 20, 0, 0, 0, '2008-02-20T00:56:00Z', '2024-10-20T08:42:28Z', 'https://avatars.githubusercontent.com/u/473?v=4', 'https://api.github.com/users/choonkeat', 'https://github.com/choonkeat', 'https://api.github.com/users/choonkeat/followers', 'https://api.github.com/users/choonkeat/following', 'https://api.github.com/users/choonkeat/gists', 'https://api.github.com/users/choonkeat/starred', 'https://api.github.com/users/choonkeat/repos', 'https://api.github.com/users/choonkeat/events', 'https://api.github.com/users/choonkeat/received_events', 0); +INSERT INTO `developer` VALUES (474, 'cbowns', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Bowns', NULL, 'https://cbowns.com/', 'West Coast (keyboard and/or trailhead)', NULL, NULL, 'iOS dev and indie contractor. I\'ve worked on some fun stuff… and seen some weird things along the way.', NULL, 0, 0, 91, 40, 0, 0, 0, '2008-02-20T01:11:14Z', '2024-07-18T05:47:08Z', 'https://avatars.githubusercontent.com/u/474?v=4', 'https://api.github.com/users/cbowns', 'https://github.com/cbowns', 'https://api.github.com/users/cbowns/followers', 'https://api.github.com/users/cbowns/following', 'https://api.github.com/users/cbowns/gists', 'https://api.github.com/users/cbowns/starred', 'https://api.github.com/users/cbowns/repos', 'https://api.github.com/users/cbowns/events', 'https://api.github.com/users/cbowns/received_events', 0); +INSERT INTO `developer` VALUES (475, 'aussiegeek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alan Harper', '@dokioco ', 'https://alanharper.com.au', 'Melbourne, Australia', NULL, 'true', 'I turn tea in to systems', NULL, 0, 0, 65, 0, 0, 0, 0, '2008-02-20T01:37:27Z', '2024-10-09T11:20:28Z', 'https://avatars.githubusercontent.com/u/475?v=4', 'https://api.github.com/users/aussiegeek', 'https://github.com/aussiegeek', 'https://api.github.com/users/aussiegeek/followers', 'https://api.github.com/users/aussiegeek/following', 'https://api.github.com/users/aussiegeek/gists', 'https://api.github.com/users/aussiegeek/starred', 'https://api.github.com/users/aussiegeek/repos', 'https://api.github.com/users/aussiegeek/events', 'https://api.github.com/users/aussiegeek/received_events', 0); +INSERT INTO `developer` VALUES (476, 'zacheryph', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zachery Hostens', '@TextUsBiz', 'http://zro.io/', 'Davenport, IA', 'zacheryph@gmail.com', NULL, 'Staff Engineer at TextUs', NULL, 0, 0, 42, 33, 0, 0, 0, '2008-02-20T01:39:51Z', '2024-10-25T11:20:08Z', 'https://avatars.githubusercontent.com/u/476?v=4', 'https://api.github.com/users/zacheryph', 'https://github.com/zacheryph', 'https://api.github.com/users/zacheryph/followers', 'https://api.github.com/users/zacheryph/following', 'https://api.github.com/users/zacheryph/gists', 'https://api.github.com/users/zacheryph/starred', 'https://api.github.com/users/zacheryph/repos', 'https://api.github.com/users/zacheryph/events', 'https://api.github.com/users/zacheryph/received_events', 0); +INSERT INTO `developer` VALUES (477, 'dustym', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dusty Matthews', NULL, 'http://dustym.com/', 'Portland, ME', NULL, NULL, NULL, NULL, 0, 0, 44, 20, 0, 0, 0, '2008-02-20T01:45:02Z', '2024-09-25T18:04:05Z', 'https://avatars.githubusercontent.com/u/477?v=4', 'https://api.github.com/users/dustym', 'https://github.com/dustym', 'https://api.github.com/users/dustym/followers', 'https://api.github.com/users/dustym/following', 'https://api.github.com/users/dustym/gists', 'https://api.github.com/users/dustym/starred', 'https://api.github.com/users/dustym/repos', 'https://api.github.com/users/dustym/events', 'https://api.github.com/users/dustym/received_events', 0); +INSERT INTO `developer` VALUES (478, 'benjamin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Birnbaum', NULL, '', 'Melbourne, Australia', 'benjamin@wobolando.com', NULL, NULL, NULL, 0, 0, 23, 3, 0, 0, 0, '2008-02-20T03:38:56Z', '2024-10-02T20:36:07Z', 'https://avatars.githubusercontent.com/u/478?v=4', 'https://api.github.com/users/benjamin', 'https://github.com/benjamin', 'https://api.github.com/users/benjamin/followers', 'https://api.github.com/users/benjamin/following', 'https://api.github.com/users/benjamin/gists', 'https://api.github.com/users/benjamin/starred', 'https://api.github.com/users/benjamin/repos', 'https://api.github.com/users/benjamin/events', 'https://api.github.com/users/benjamin/received_events', 0); +INSERT INTO `developer` VALUES (479, 'jackdempsey', 'C', 0, 0, 0, 0, 0, 0, 0, 'jack dempsey', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 89, 7, 0, 0, 0, '2008-02-20T04:29:38Z', '2024-09-03T21:51:56Z', 'https://avatars.githubusercontent.com/u/479?v=4', 'https://api.github.com/users/jackdempsey', 'https://github.com/jackdempsey', 'https://api.github.com/users/jackdempsey/followers', 'https://api.github.com/users/jackdempsey/following', 'https://api.github.com/users/jackdempsey/gists', 'https://api.github.com/users/jackdempsey/starred', 'https://api.github.com/users/jackdempsey/repos', 'https://api.github.com/users/jackdempsey/events', 'https://api.github.com/users/jackdempsey/received_events', 0); +INSERT INTO `developer` VALUES (480, 'blahutka', 'C', 0, 0, 0, 0, 0, 0, 0, 'blahutka', NULL, '', 'Czech republic', NULL, 'true', NULL, NULL, 0, 0, 14, 1, 0, 0, 0, '2008-02-20T06:45:27Z', '2023-09-06T07:10:17Z', 'https://avatars.githubusercontent.com/u/480?v=4', 'https://api.github.com/users/blahutka', 'https://github.com/blahutka', 'https://api.github.com/users/blahutka/followers', 'https://api.github.com/users/blahutka/following', 'https://api.github.com/users/blahutka/gists', 'https://api.github.com/users/blahutka/starred', 'https://api.github.com/users/blahutka/repos', 'https://api.github.com/users/blahutka/events', 'https://api.github.com/users/blahutka/received_events', 0); +INSERT INTO `developer` VALUES (481, 'chrisabad-zz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Abad', NULL, 'http://chrisabad.com', 'Clayton, CA', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-02-20T07:29:44Z', '2020-04-24T00:43:02Z', 'https://avatars.githubusercontent.com/u/481?v=4', 'https://api.github.com/users/chrisabad-zz', 'https://github.com/chrisabad-zz', 'https://api.github.com/users/chrisabad-zz/followers', 'https://api.github.com/users/chrisabad-zz/following', 'https://api.github.com/users/chrisabad-zz/gists', 'https://api.github.com/users/chrisabad-zz/starred', 'https://api.github.com/users/chrisabad-zz/repos', 'https://api.github.com/users/chrisabad-zz/events', 'https://api.github.com/users/chrisabad-zz/received_events', 0); +INSERT INTO `developer` VALUES (482, 'AlexJWayne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Wayne', 'SOLV Energy', 'http://alexwayne.codes', '未知', NULL, NULL, NULL, NULL, 0, 0, 55, 1, 0, 0, 0, '2008-02-20T07:38:03Z', '2024-10-04T19:07:32Z', 'https://avatars.githubusercontent.com/u/482?v=4', 'https://api.github.com/users/AlexJWayne', 'https://github.com/AlexJWayne', 'https://api.github.com/users/AlexJWayne/followers', 'https://api.github.com/users/AlexJWayne/following', 'https://api.github.com/users/AlexJWayne/gists', 'https://api.github.com/users/AlexJWayne/starred', 'https://api.github.com/users/AlexJWayne/repos', 'https://api.github.com/users/AlexJWayne/events', 'https://api.github.com/users/AlexJWayne/received_events', 0); +INSERT INTO `developer` VALUES (483, 'nakajima', 'C', 8.645990910721775, 0, 0, 0, 0, 0, 0, 'Pat Nakajima', NULL, 'https://patstechweblog.com', '未知', 'patnakajima@gmail.com', NULL, 'All of my popular repositories are bad ideas but I had fun making them! I used to work on this website but I don\'t anymore.', NULL, 0, 0, 789, 146, 0, 0, 0, '2008-02-20T08:35:46Z', '2024-10-30T18:00:11Z', 'https://avatars.githubusercontent.com/u/483?v=4', 'https://api.github.com/users/nakajima', 'https://github.com/nakajima', 'https://api.github.com/users/nakajima/followers', 'https://api.github.com/users/nakajima/following', 'https://api.github.com/users/nakajima/gists', 'https://api.github.com/users/nakajima/starred', 'https://api.github.com/users/nakajima/repos', 'https://api.github.com/users/nakajima/events', 'https://api.github.com/users/nakajima/received_events', 0); +INSERT INTO `developer` VALUES (484, 'mreid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Reid', NULL, 'https://mark.reid.name', 'Canberra, Australia', NULL, NULL, 'Former academic turned industry ML engineer who likes playing with synths in his spare time.', NULL, 0, 0, 104, 10, 0, 0, 0, '2008-02-20T11:12:07Z', '2024-03-30T09:49:37Z', 'https://avatars.githubusercontent.com/u/484?v=4', 'https://api.github.com/users/mreid', 'https://github.com/mreid', 'https://api.github.com/users/mreid/followers', 'https://api.github.com/users/mreid/following', 'https://api.github.com/users/mreid/gists', 'https://api.github.com/users/mreid/starred', 'https://api.github.com/users/mreid/repos', 'https://api.github.com/users/mreid/events', 'https://api.github.com/users/mreid/received_events', 0); +INSERT INTO `developer` VALUES (485, 'melo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pedro Melo', 'Cação e Melo, Lda', 'http://www.simplicidade.org/', 'Figueira da Foz, Portugal', 'melo@simplicidade.org', NULL, 'Early 70\'s born, long time Perl programmer. Founder of EVOLUI.COM, mail.pt and a couple of others. Married, kids, dogs, the works.', NULL, 0, 0, 283, 164, 0, 0, 0, '2008-02-20T12:43:08Z', '2024-10-27T20:17:26Z', 'https://avatars.githubusercontent.com/u/485?v=4', 'https://api.github.com/users/melo', 'https://github.com/melo', 'https://api.github.com/users/melo/followers', 'https://api.github.com/users/melo/following', 'https://api.github.com/users/melo/gists', 'https://api.github.com/users/melo/starred', 'https://api.github.com/users/melo/repos', 'https://api.github.com/users/melo/events', 'https://api.github.com/users/melo/received_events', 0); +INSERT INTO `developer` VALUES (486, 'JESii', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Seidel', 'EDP Consulting, Inc.', 'http://www.nubyrubyrailstales.com', 'http://www.edpci.com', NULL, 'true', NULL, NULL, 0, 0, 24, 9, 0, 0, 0, '2008-02-20T13:01:33Z', '2024-07-05T20:53:08Z', 'https://avatars.githubusercontent.com/u/486?v=4', 'https://api.github.com/users/JESii', 'https://github.com/JESii', 'https://api.github.com/users/JESii/followers', 'https://api.github.com/users/JESii/following', 'https://api.github.com/users/JESii/gists', 'https://api.github.com/users/JESii/starred', 'https://api.github.com/users/JESii/repos', 'https://api.github.com/users/JESii/events', 'https://api.github.com/users/JESii/received_events', 0); +INSERT INTO `developer` VALUES (487, 'msimkins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Simkins', NULL, '', 'Harlow, Essex, England', NULL, NULL, NULL, NULL, 0, 0, 12, 12, 0, 0, 0, '2008-02-20T13:07:40Z', '2024-10-16T17:15:20Z', 'https://avatars.githubusercontent.com/u/487?v=4', 'https://api.github.com/users/msimkins', 'https://github.com/msimkins', 'https://api.github.com/users/msimkins/followers', 'https://api.github.com/users/msimkins/following', 'https://api.github.com/users/msimkins/gists', 'https://api.github.com/users/msimkins/starred', 'https://api.github.com/users/msimkins/repos', 'https://api.github.com/users/msimkins/events', 'https://api.github.com/users/msimkins/received_events', 0); +INSERT INTO `developer` VALUES (488, 'angelo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Angelo', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 34, 42, 0, 0, 0, '2008-02-20T13:19:10Z', '2024-01-25T20:00:01Z', 'https://avatars.githubusercontent.com/u/488?v=4', 'https://api.github.com/users/angelo', 'https://github.com/angelo', 'https://api.github.com/users/angelo/followers', 'https://api.github.com/users/angelo/following', 'https://api.github.com/users/angelo/gists', 'https://api.github.com/users/angelo/starred', 'https://api.github.com/users/angelo/repos', 'https://api.github.com/users/angelo/events', 'https://api.github.com/users/angelo/received_events', 0); +INSERT INTO `developer` VALUES (489, 'wrenchlabs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wrench Labs', NULL, 'http://www.wrenchlabs.com', 'Charlotte, NC', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-20T13:59:39Z', '2020-04-16T21:27:12Z', 'https://avatars.githubusercontent.com/u/489?v=4', 'https://api.github.com/users/wrenchlabs', 'https://github.com/wrenchlabs', 'https://api.github.com/users/wrenchlabs/followers', 'https://api.github.com/users/wrenchlabs/following', 'https://api.github.com/users/wrenchlabs/gists', 'https://api.github.com/users/wrenchlabs/starred', 'https://api.github.com/users/wrenchlabs/repos', 'https://api.github.com/users/wrenchlabs/events', 'https://api.github.com/users/wrenchlabs/received_events', 0); +INSERT INTO `developer` VALUES (490, 'jfcouture', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jean-Francois Couture', NULL, 'http://jfcouture.com', 'Montreal', 'jfcouture@gmail.com', 'true', NULL, NULL, 0, 0, 32, 10, 0, 0, 0, '2008-02-20T15:14:20Z', '2024-10-24T22:50:43Z', 'https://avatars.githubusercontent.com/u/490?v=4', 'https://api.github.com/users/jfcouture', 'https://github.com/jfcouture', 'https://api.github.com/users/jfcouture/followers', 'https://api.github.com/users/jfcouture/following', 'https://api.github.com/users/jfcouture/gists', 'https://api.github.com/users/jfcouture/starred', 'https://api.github.com/users/jfcouture/repos', 'https://api.github.com/users/jfcouture/events', 'https://api.github.com/users/jfcouture/received_events', 0); +INSERT INTO `developer` VALUES (491, 'ctran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cuong Tran', NULL, 'http://twitter.com/ctran', 'San Diego, CA', 'cuong.tran@gmail.com', 'true', 'Currently at @servicenow', NULL, 0, 0, 70, 4, 0, 0, 0, '2008-02-20T15:48:15Z', '2024-10-10T17:09:00Z', 'https://avatars.githubusercontent.com/u/491?v=4', 'https://api.github.com/users/ctran', 'https://github.com/ctran', 'https://api.github.com/users/ctran/followers', 'https://api.github.com/users/ctran/following', 'https://api.github.com/users/ctran/gists', 'https://api.github.com/users/ctran/starred', 'https://api.github.com/users/ctran/repos', 'https://api.github.com/users/ctran/events', 'https://api.github.com/users/ctran/received_events', 0); +INSERT INTO `developer` VALUES (492, 'garyharan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gary Haran', NULL, '', 'Montreal, QC, Canada', NULL, NULL, 'A French-French-Canadian who loves to code and manage teams almost as much as being a father.', NULL, 0, 0, 102, 79, 0, 0, 0, '2008-02-20T16:07:47Z', '2024-10-24T00:58:11Z', 'https://avatars.githubusercontent.com/u/492?v=4', 'https://api.github.com/users/garyharan', 'https://github.com/garyharan', 'https://api.github.com/users/garyharan/followers', 'https://api.github.com/users/garyharan/following', 'https://api.github.com/users/garyharan/gists', 'https://api.github.com/users/garyharan/starred', 'https://api.github.com/users/garyharan/repos', 'https://api.github.com/users/garyharan/events', 'https://api.github.com/users/garyharan/received_events', 0); +INSERT INTO `developer` VALUES (493, 'Zelnox', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 27, 7, 0, 0, 0, '2008-02-20T16:27:46Z', '2024-10-08T19:45:32Z', 'https://avatars.githubusercontent.com/u/493?v=4', 'https://api.github.com/users/Zelnox', 'https://github.com/Zelnox', 'https://api.github.com/users/Zelnox/followers', 'https://api.github.com/users/Zelnox/following', 'https://api.github.com/users/Zelnox/gists', 'https://api.github.com/users/Zelnox/starred', 'https://api.github.com/users/Zelnox/repos', 'https://api.github.com/users/Zelnox/events', 'https://api.github.com/users/Zelnox/received_events', 0); +INSERT INTO `developer` VALUES (494, 'saimonmoore', 'C', 0, 0, 0, 0, 0, 0, 0, 'Saimon Moore', 'http://redbooth.com', 'http://saimonmoore.com', 'Barcelona, Spain', 'saimonmoore@gmail.com', NULL, NULL, NULL, 0, 0, 81, 53, 0, 0, 0, '2008-02-20T16:30:31Z', '2024-08-07T16:17:34Z', 'https://avatars.githubusercontent.com/u/494?v=4', 'https://api.github.com/users/saimonmoore', 'https://github.com/saimonmoore', 'https://api.github.com/users/saimonmoore/followers', 'https://api.github.com/users/saimonmoore/following', 'https://api.github.com/users/saimonmoore/gists', 'https://api.github.com/users/saimonmoore/starred', 'https://api.github.com/users/saimonmoore/repos', 'https://api.github.com/users/saimonmoore/events', 'https://api.github.com/users/saimonmoore/received_events', 0); +INSERT INTO `developer` VALUES (495, 'spencer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-02-20T16:37:04Z', '2024-08-29T15:19:15Z', 'https://avatars.githubusercontent.com/u/495?v=4', 'https://api.github.com/users/spencer', 'https://github.com/spencer', 'https://api.github.com/users/spencer/followers', 'https://api.github.com/users/spencer/following', 'https://api.github.com/users/spencer/gists', 'https://api.github.com/users/spencer/starred', 'https://api.github.com/users/spencer/repos', 'https://api.github.com/users/spencer/events', 'https://api.github.com/users/spencer/received_events', 0); +INSERT INTO `developer` VALUES (496, 'santry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean Santry', NULL, 'http://seansantry.com/', '未知', NULL, NULL, 'Rubyist Tenor', NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-20T16:44:10Z', '2024-10-16T21:47:53Z', 'https://avatars.githubusercontent.com/u/496?v=4', 'https://api.github.com/users/santry', 'https://github.com/santry', 'https://api.github.com/users/santry/followers', 'https://api.github.com/users/santry/following', 'https://api.github.com/users/santry/gists', 'https://api.github.com/users/santry/starred', 'https://api.github.com/users/santry/repos', 'https://api.github.com/users/santry/events', 'https://api.github.com/users/santry/received_events', 0); +INSERT INTO `developer` VALUES (497, 'urubatan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rodrigo Urubatan Ferreira Jardim', '@donorbox', 'http://www.sobrecodigo.com', 'Brazil', 'urubatan@gmail.com', 'true', NULL, NULL, 0, 0, 129, 4, 0, 0, 0, '2008-02-20T16:44:30Z', '2024-09-23T13:43:27Z', 'https://avatars.githubusercontent.com/u/497?v=4', 'https://api.github.com/users/urubatan', 'https://github.com/urubatan', 'https://api.github.com/users/urubatan/followers', 'https://api.github.com/users/urubatan/following', 'https://api.github.com/users/urubatan/gists', 'https://api.github.com/users/urubatan/starred', 'https://api.github.com/users/urubatan/repos', 'https://api.github.com/users/urubatan/events', 'https://api.github.com/users/urubatan/received_events', 0); +INSERT INTO `developer` VALUES (498, 'kjf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Fagan', NULL, '', 'Dublin, Ireland', NULL, NULL, NULL, 'kevinfagan', 0, 0, 30, 36, 0, 0, 0, '2008-02-20T16:46:42Z', '2024-11-01T22:35:55Z', 'https://avatars.githubusercontent.com/u/498?v=4', 'https://api.github.com/users/kjf', 'https://github.com/kjf', 'https://api.github.com/users/kjf/followers', 'https://api.github.com/users/kjf/following', 'https://api.github.com/users/kjf/gists', 'https://api.github.com/users/kjf/starred', 'https://api.github.com/users/kjf/repos', 'https://api.github.com/users/kjf/events', 'https://api.github.com/users/kjf/received_events', 0); +INSERT INTO `developer` VALUES (499, 'judofyr', 'C', 4.307414494121771, 0, 0, 0, 0, 0, 0, 'Magnus Holm', NULL, 'http://judofyr.net', 'Oslo, Norway', 'judofyr@gmail.com', NULL, NULL, NULL, 0, 0, 536, 56, 0, 0, 0, '2008-02-20T16:48:23Z', '2024-10-24T19:50:42Z', 'https://avatars.githubusercontent.com/u/499?v=4', 'https://api.github.com/users/judofyr', 'https://github.com/judofyr', 'https://api.github.com/users/judofyr/followers', 'https://api.github.com/users/judofyr/following', 'https://api.github.com/users/judofyr/gists', 'https://api.github.com/users/judofyr/starred', 'https://api.github.com/users/judofyr/repos', 'https://api.github.com/users/judofyr/events', 'https://api.github.com/users/judofyr/received_events', 0); +INSERT INTO `developer` VALUES (500, 'JJ', 'C', 12.230032298347865, 0, 0, 0, 0, 0, 0, 'Juan Julián Merelo Guervós', 'UGR + Raku', 'http://goo.gl/IlWG8U', 'Granada, Spain, Europe', 'jjmerelo@gmail.com', 'true', 'Developing since 1983', 'jjmerelo', 0, 0, 998, 51, 0, 0, 0, '2008-02-20T16:48:57Z', '2024-11-01T11:42:05Z', 'https://avatars.githubusercontent.com/u/500?v=4', 'https://api.github.com/users/JJ', 'https://github.com/JJ', 'https://api.github.com/users/JJ/followers', 'https://api.github.com/users/JJ/following', 'https://api.github.com/users/JJ/gists', 'https://api.github.com/users/JJ/starred', 'https://api.github.com/users/JJ/repos', 'https://api.github.com/users/JJ/events', 'https://api.github.com/users/JJ/received_events', 0); +INSERT INTO `developer` VALUES (501, 'tfwright', 'C', 0, 0, 0, 0, 0, 0, 0, 'T. Floyd Wright', NULL, 'http://tfwright.info', 'NxNW', 'tfwright@tfwright.info', 'true', 'YAGNI', NULL, 0, 0, 47, 9, 0, 0, 0, '2008-02-20T16:49:12Z', '2024-11-05T05:09:34Z', 'https://avatars.githubusercontent.com/u/501?v=4', 'https://api.github.com/users/tfwright', 'https://github.com/tfwright', 'https://api.github.com/users/tfwright/followers', 'https://api.github.com/users/tfwright/following', 'https://api.github.com/users/tfwright/gists', 'https://api.github.com/users/tfwright/starred', 'https://api.github.com/users/tfwright/repos', 'https://api.github.com/users/tfwright/events', 'https://api.github.com/users/tfwright/received_events', 0); +INSERT INTO `developer` VALUES (502, 'scoop', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Lenz', 'top.media GmbH', 'https://patricklenz.co/', 'Wiesbaden, Germany', NULL, 'true', NULL, NULL, 0, 0, 41, 4, 0, 0, 0, '2008-02-20T16:50:26Z', '2024-11-02T10:16:15Z', 'https://avatars.githubusercontent.com/u/502?v=4', 'https://api.github.com/users/scoop', 'https://github.com/scoop', 'https://api.github.com/users/scoop/followers', 'https://api.github.com/users/scoop/following', 'https://api.github.com/users/scoop/gists', 'https://api.github.com/users/scoop/starred', 'https://api.github.com/users/scoop/repos', 'https://api.github.com/users/scoop/events', 'https://api.github.com/users/scoop/received_events', 0); +INSERT INTO `developer` VALUES (503, 'rob', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Gabaree', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 15, 2, 0, 0, 0, '2008-02-20T16:50:32Z', '2024-10-16T18:38:28Z', 'https://avatars.githubusercontent.com/u/503?v=4', 'https://api.github.com/users/rob', 'https://github.com/rob', 'https://api.github.com/users/rob/followers', 'https://api.github.com/users/rob/following', 'https://api.github.com/users/rob/gists', 'https://api.github.com/users/rob/starred', 'https://api.github.com/users/rob/repos', 'https://api.github.com/users/rob/events', 'https://api.github.com/users/rob/received_events', 0); +INSERT INTO `developer` VALUES (505, 'mkhl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Kühl', '@innoq', '', 'Leipzig, Germany', NULL, NULL, 'https://github.com/mkhl/mkhl#readme', NULL, 0, 0, 164, 89, 0, 0, 0, '2008-02-20T16:51:47Z', '2024-10-02T13:43:18Z', 'https://avatars.githubusercontent.com/u/505?v=4', 'https://api.github.com/users/mkhl', 'https://github.com/mkhl', 'https://api.github.com/users/mkhl/followers', 'https://api.github.com/users/mkhl/following', 'https://api.github.com/users/mkhl/gists', 'https://api.github.com/users/mkhl/starred', 'https://api.github.com/users/mkhl/repos', 'https://api.github.com/users/mkhl/events', 'https://api.github.com/users/mkhl/received_events', 0); +INSERT INTO `developer` VALUES (506, 'nmerouze', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicolas Mérouze', 'Solopreneur', 'https://www.nicolasmerouze.com', 'Paris / Tokyo', NULL, 'true', NULL, NULL, 0, 0, 132, 3, 0, 0, 0, '2008-02-20T16:53:16Z', '2024-10-20T11:21:00Z', 'https://avatars.githubusercontent.com/u/506?v=4', 'https://api.github.com/users/nmerouze', 'https://github.com/nmerouze', 'https://api.github.com/users/nmerouze/followers', 'https://api.github.com/users/nmerouze/following', 'https://api.github.com/users/nmerouze/gists', 'https://api.github.com/users/nmerouze/starred', 'https://api.github.com/users/nmerouze/repos', 'https://api.github.com/users/nmerouze/events', 'https://api.github.com/users/nmerouze/received_events', 0); +INSERT INTO `developer` VALUES (507, 'franc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Franc Paul', NULL, '', 'utrecht', 'franc@crow.za.net', NULL, NULL, NULL, 0, 0, 15, 10, 0, 0, 0, '2008-02-20T16:54:51Z', '2024-06-26T18:05:49Z', 'https://avatars.githubusercontent.com/u/507?v=4', 'https://api.github.com/users/franc', 'https://github.com/franc', 'https://api.github.com/users/franc/followers', 'https://api.github.com/users/franc/following', 'https://api.github.com/users/franc/gists', 'https://api.github.com/users/franc/starred', 'https://api.github.com/users/franc/repos', 'https://api.github.com/users/franc/events', 'https://api.github.com/users/franc/received_events', 0); +INSERT INTO `developer` VALUES (508, 'sphire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philipp Kruse', '@HMIProject ', 'hmi-project.com', 'Würzburg, Germany', 'kruse@hmi-project.com', NULL, NULL, NULL, 0, 0, 11, 4, 0, 0, 0, '2008-02-20T16:56:03Z', '2024-09-19T17:05:16Z', 'https://avatars.githubusercontent.com/u/508?v=4', 'https://api.github.com/users/sphire', 'https://github.com/sphire', 'https://api.github.com/users/sphire/followers', 'https://api.github.com/users/sphire/following', 'https://api.github.com/users/sphire/gists', 'https://api.github.com/users/sphire/starred', 'https://api.github.com/users/sphire/repos', 'https://api.github.com/users/sphire/events', 'https://api.github.com/users/sphire/received_events', 0); +INSERT INTO `developer` VALUES (509, 'dbr', 'C', 0, 0, 0, 0, 0, 0, 0, 'dbr/Ben', NULL, '', 'Australia', NULL, NULL, NULL, NULL, 0, 0, 181, 45, 0, 0, 0, '2008-02-20T16:56:45Z', '2024-08-20T07:09:39Z', 'https://avatars.githubusercontent.com/u/509?v=4', 'https://api.github.com/users/dbr', 'https://github.com/dbr', 'https://api.github.com/users/dbr/followers', 'https://api.github.com/users/dbr/following', 'https://api.github.com/users/dbr/gists', 'https://api.github.com/users/dbr/starred', 'https://api.github.com/users/dbr/repos', 'https://api.github.com/users/dbr/events', 'https://api.github.com/users/dbr/received_events', 0); +INSERT INTO `developer` VALUES (510, 'pd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kyle Hargraves', NULL, 'https://internetsfamo.us', '未知', NULL, NULL, '(⚆_⚆)', NULL, 0, 0, 80, 10, 0, 0, 0, '2008-02-20T16:56:54Z', '2024-08-05T14:33:30Z', 'https://avatars.githubusercontent.com/u/510?v=4', 'https://api.github.com/users/pd', 'https://github.com/pd', 'https://api.github.com/users/pd/followers', 'https://api.github.com/users/pd/following', 'https://api.github.com/users/pd/gists', 'https://api.github.com/users/pd/starred', 'https://api.github.com/users/pd/repos', 'https://api.github.com/users/pd/events', 'https://api.github.com/users/pd/received_events', 0); +INSERT INTO `developer` VALUES (511, 'kieranj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kieran Johnson', '@Kajima-BookingsPlus ', '', 'Norwich, Norfolk, UK', 'kieran@invisiblelines.com', 'true', 'Head of Software Engineering @Kajima-BookingsPlus ', NULL, 0, 0, 14, 1, 0, 0, 0, '2008-02-20T16:57:51Z', '2024-09-02T16:31:52Z', 'https://avatars.githubusercontent.com/u/511?v=4', 'https://api.github.com/users/kieranj', 'https://github.com/kieranj', 'https://api.github.com/users/kieranj/followers', 'https://api.github.com/users/kieranj/following', 'https://api.github.com/users/kieranj/gists', 'https://api.github.com/users/kieranj/starred', 'https://api.github.com/users/kieranj/repos', 'https://api.github.com/users/kieranj/events', 'https://api.github.com/users/kieranj/received_events', 0); +INSERT INTO `developer` VALUES (512, 'japj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeroen Janssen', NULL, '', 'Netherlands', NULL, NULL, NULL, NULL, 0, 0, 72, 7, 0, 0, 0, '2008-02-20T17:03:47Z', '2023-12-26T10:38:28Z', 'https://avatars.githubusercontent.com/u/512?v=4', 'https://api.github.com/users/japj', 'https://github.com/japj', 'https://api.github.com/users/japj/followers', 'https://api.github.com/users/japj/following', 'https://api.github.com/users/japj/gists', 'https://api.github.com/users/japj/starred', 'https://api.github.com/users/japj/repos', 'https://api.github.com/users/japj/events', 'https://api.github.com/users/japj/received_events', 0); +INSERT INTO `developer` VALUES (513, 'atharh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Athar Hameed', NULL, '', 'Kuala Lumpur, Malaysia', 'atharh@gmail.com', NULL, NULL, NULL, 0, 0, 29, 21, 0, 0, 0, '2008-02-20T17:06:26Z', '2024-10-30T02:49:58Z', 'https://avatars.githubusercontent.com/u/513?v=4', 'https://api.github.com/users/atharh', 'https://github.com/atharh', 'https://api.github.com/users/atharh/followers', 'https://api.github.com/users/atharh/following', 'https://api.github.com/users/atharh/gists', 'https://api.github.com/users/atharh/starred', 'https://api.github.com/users/atharh/repos', 'https://api.github.com/users/atharh/events', 'https://api.github.com/users/atharh/received_events', 0); +INSERT INTO `developer` VALUES (514, 'speck', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Speck', 'Bright.md', 'https://jasonspeck.com', 'Seattle', NULL, NULL, 'I make things for the internet.', NULL, 0, 0, 19, 3, 0, 0, 0, '2008-02-20T17:06:52Z', '2024-03-11T17:26:50Z', 'https://avatars.githubusercontent.com/u/514?v=4', 'https://api.github.com/users/speck', 'https://github.com/speck', 'https://api.github.com/users/speck/followers', 'https://api.github.com/users/speck/following', 'https://api.github.com/users/speck/gists', 'https://api.github.com/users/speck/starred', 'https://api.github.com/users/speck/repos', 'https://api.github.com/users/speck/events', 'https://api.github.com/users/speck/received_events', 0); +INSERT INTO `developer` VALUES (515, 'leemhenson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lee Henson', '@blueheartio', '', 'London', NULL, NULL, NULL, NULL, 0, 0, 56, 24, 0, 0, 0, '2008-02-20T17:12:37Z', '2024-10-11T08:39:23Z', 'https://avatars.githubusercontent.com/u/515?v=4', 'https://api.github.com/users/leemhenson', 'https://github.com/leemhenson', 'https://api.github.com/users/leemhenson/followers', 'https://api.github.com/users/leemhenson/following', 'https://api.github.com/users/leemhenson/gists', 'https://api.github.com/users/leemhenson/starred', 'https://api.github.com/users/leemhenson/repos', 'https://api.github.com/users/leemhenson/events', 'https://api.github.com/users/leemhenson/received_events', 0); +INSERT INTO `developer` VALUES (516, 'pentikos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Don Pinkster', 'Sqills', '', 'Netherlands', NULL, NULL, NULL, NULL, 0, 0, 16, 1, 0, 0, 0, '2008-02-20T17:16:21Z', '2024-06-11T18:59:51Z', 'https://avatars.githubusercontent.com/u/516?v=4', 'https://api.github.com/users/pentikos', 'https://github.com/pentikos', 'https://api.github.com/users/pentikos/followers', 'https://api.github.com/users/pentikos/following', 'https://api.github.com/users/pentikos/gists', 'https://api.github.com/users/pentikos/starred', 'https://api.github.com/users/pentikos/repos', 'https://api.github.com/users/pentikos/events', 'https://api.github.com/users/pentikos/received_events', 0); +INSERT INTO `developer` VALUES (517, 'rwj-promed', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Jackson', 'ProMedical, Inc.', '', 'Ocala, FL', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-20T17:20:45Z', '2015-12-07T15:56:37Z', 'https://avatars.githubusercontent.com/u/517?v=4', 'https://api.github.com/users/rwj-promed', 'https://github.com/rwj-promed', 'https://api.github.com/users/rwj-promed/followers', 'https://api.github.com/users/rwj-promed/following', 'https://api.github.com/users/rwj-promed/gists', 'https://api.github.com/users/rwj-promed/starred', 'https://api.github.com/users/rwj-promed/repos', 'https://api.github.com/users/rwj-promed/events', 'https://api.github.com/users/rwj-promed/received_events', 0); +INSERT INTO `developer` VALUES (518, 'pontus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pontus Freyhult', NULL, 'https://plus.google.com/+PontusFreyhult/', 'Uppsala, Sweden', 'pontus_github@soua.net', 'true', NULL, NULL, 0, 0, 22, 5, 0, 0, 0, '2008-02-20T17:21:02Z', '2024-10-21T11:19:08Z', 'https://avatars.githubusercontent.com/u/518?v=4', 'https://api.github.com/users/pontus', 'https://github.com/pontus', 'https://api.github.com/users/pontus/followers', 'https://api.github.com/users/pontus/following', 'https://api.github.com/users/pontus/gists', 'https://api.github.com/users/pontus/starred', 'https://api.github.com/users/pontus/repos', 'https://api.github.com/users/pontus/events', 'https://api.github.com/users/pontus/received_events', 0); +INSERT INTO `developer` VALUES (519, 'shinzui', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nadeem Bitar', NULL, '', 'Los Angeles / San Francisco', 'nadeem.bitar@icloud.com', 'true', NULL, 'shinzui', 0, 0, 29, 22, 0, 0, 0, '2008-02-20T17:21:12Z', '2024-05-29T15:13:37Z', 'https://avatars.githubusercontent.com/u/519?v=4', 'https://api.github.com/users/shinzui', 'https://github.com/shinzui', 'https://api.github.com/users/shinzui/followers', 'https://api.github.com/users/shinzui/following', 'https://api.github.com/users/shinzui/gists', 'https://api.github.com/users/shinzui/starred', 'https://api.github.com/users/shinzui/repos', 'https://api.github.com/users/shinzui/events', 'https://api.github.com/users/shinzui/received_events', 0); +INSERT INTO `developer` VALUES (520, 'mehdi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-02-20T17:22:24Z', '2023-08-08T19:26:31Z', 'https://avatars.githubusercontent.com/u/520?v=4', 'https://api.github.com/users/mehdi', 'https://github.com/mehdi', 'https://api.github.com/users/mehdi/followers', 'https://api.github.com/users/mehdi/following', 'https://api.github.com/users/mehdi/gists', 'https://api.github.com/users/mehdi/starred', 'https://api.github.com/users/mehdi/repos', 'https://api.github.com/users/mehdi/events', 'https://api.github.com/users/mehdi/received_events', 0); +INSERT INTO `developer` VALUES (521, 'mansfiem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Mansfield', NULL, 'http://matthewmansfield.com', 'San Francisco', NULL, NULL, NULL, 'Drunkengrass', 0, 0, 11, 11, 0, 0, 0, '2008-02-20T17:50:59Z', '2024-10-22T03:16:33Z', 'https://avatars.githubusercontent.com/u/521?v=4', 'https://api.github.com/users/mansfiem', 'https://github.com/mansfiem', 'https://api.github.com/users/mansfiem/followers', 'https://api.github.com/users/mansfiem/following', 'https://api.github.com/users/mansfiem/gists', 'https://api.github.com/users/mansfiem/starred', 'https://api.github.com/users/mansfiem/repos', 'https://api.github.com/users/mansfiem/events', 'https://api.github.com/users/mansfiem/received_events', 0); +INSERT INTO `developer` VALUES (522, 'dbcm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Delfim Machado', NULL, 'profundos.org', 'Berlengas, Portugal', 'dbcm@profundos.org', NULL, 'a friendly developer who likes to cave dive', NULL, 0, 0, 41, 25, 0, 0, 0, '2008-02-20T18:00:41Z', '2024-09-17T20:05:28Z', 'https://avatars.githubusercontent.com/u/522?v=4', 'https://api.github.com/users/dbcm', 'https://github.com/dbcm', 'https://api.github.com/users/dbcm/followers', 'https://api.github.com/users/dbcm/following', 'https://api.github.com/users/dbcm/gists', 'https://api.github.com/users/dbcm/starred', 'https://api.github.com/users/dbcm/repos', 'https://api.github.com/users/dbcm/events', 'https://api.github.com/users/dbcm/received_events', 0); +INSERT INTO `developer` VALUES (523, 'brett', 'C', 0, 0, 0, 0, 0, 0, 0, 'brett', NULL, '', 'San Francisco, CA, USA', 'brett@librum.org', NULL, NULL, NULL, 0, 0, 51, 223, 0, 0, 0, '2008-02-20T18:04:53Z', '2024-08-21T19:29:50Z', 'https://avatars.githubusercontent.com/u/523?v=4', 'https://api.github.com/users/brett', 'https://github.com/brett', 'https://api.github.com/users/brett/followers', 'https://api.github.com/users/brett/following', 'https://api.github.com/users/brett/gists', 'https://api.github.com/users/brett/starred', 'https://api.github.com/users/brett/repos', 'https://api.github.com/users/brett/events', 'https://api.github.com/users/brett/received_events', 0); +INSERT INTO `developer` VALUES (524, 'jredville', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Deville', '@procore ', '', 'Ventura, CA', 'james.deville@gmail.com', NULL, NULL, 'jredville', 0, 0, 45, 17, 0, 0, 0, '2008-02-20T18:04:54Z', '2024-10-17T18:32:38Z', 'https://avatars.githubusercontent.com/u/524?v=4', 'https://api.github.com/users/jredville', 'https://github.com/jredville', 'https://api.github.com/users/jredville/followers', 'https://api.github.com/users/jredville/following', 'https://api.github.com/users/jredville/gists', 'https://api.github.com/users/jredville/starred', 'https://api.github.com/users/jredville/repos', 'https://api.github.com/users/jredville/events', 'https://api.github.com/users/jredville/received_events', 0); +INSERT INTO `developer` VALUES (525, 'mwilliams', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Williams', NULL, 'https://www.twitter.com/mwilliams', 'New Paltz, NY', 'matthew.d.williams@gmail.com', NULL, NULL, NULL, 0, 0, 41, 30, 0, 0, 0, '2008-02-20T18:11:23Z', '2024-01-16T23:55:05Z', 'https://avatars.githubusercontent.com/u/525?v=4', 'https://api.github.com/users/mwilliams', 'https://github.com/mwilliams', 'https://api.github.com/users/mwilliams/followers', 'https://api.github.com/users/mwilliams/following', 'https://api.github.com/users/mwilliams/gists', 'https://api.github.com/users/mwilliams/starred', 'https://api.github.com/users/mwilliams/repos', 'https://api.github.com/users/mwilliams/events', 'https://api.github.com/users/mwilliams/received_events', 0); +INSERT INTO `developer` VALUES (526, 'jendrik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jendrik', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-02-20T18:12:59Z', '2024-09-24T14:50:02Z', 'https://avatars.githubusercontent.com/u/526?v=4', 'https://api.github.com/users/jendrik', 'https://github.com/jendrik', 'https://api.github.com/users/jendrik/followers', 'https://api.github.com/users/jendrik/following', 'https://api.github.com/users/jendrik/gists', 'https://api.github.com/users/jendrik/starred', 'https://api.github.com/users/jendrik/repos', 'https://api.github.com/users/jendrik/events', 'https://api.github.com/users/jendrik/received_events', 0); +INSERT INTO `developer` VALUES (527, 'marmbrus', 'C', 0.1574718347652434, 0, 0, 0, 0, 0, 0, 'Michael Armbrust', 'UC Berkeley', 'http://cs.berkeley.edu/~marmbrus/', 'Berkeley, CA', NULL, NULL, NULL, NULL, 0, 0, 294, 0, 0, 0, 0, '2008-02-20T18:17:58Z', '2024-07-25T20:01:31Z', 'https://avatars.githubusercontent.com/u/527?v=4', 'https://api.github.com/users/marmbrus', 'https://github.com/marmbrus', 'https://api.github.com/users/marmbrus/followers', 'https://api.github.com/users/marmbrus/following', 'https://api.github.com/users/marmbrus/gists', 'https://api.github.com/users/marmbrus/starred', 'https://api.github.com/users/marmbrus/repos', 'https://api.github.com/users/marmbrus/events', 'https://api.github.com/users/marmbrus/received_events', 0); +INSERT INTO `developer` VALUES (529, 'auser', 'C', 12.418666055591347, 0, 0, 0, 0, 0, 0, 'Ari', NULL, 'https://ari.io', 'Mountain View, CA', 'me@ari.io', 'true', 'technologist, bitmover, cybersecurity, ai/ml', NULL, 0, 0, 1009, 417, 0, 0, 0, '2008-02-20T18:28:22Z', '2024-11-02T21:04:48Z', 'https://avatars.githubusercontent.com/u/529?v=4', 'https://api.github.com/users/auser', 'https://github.com/auser', 'https://api.github.com/users/auser/followers', 'https://api.github.com/users/auser/following', 'https://api.github.com/users/auser/gists', 'https://api.github.com/users/auser/starred', 'https://api.github.com/users/auser/repos', 'https://api.github.com/users/auser/events', 'https://api.github.com/users/auser/received_events', 0); +INSERT INTO `developer` VALUES (530, 'fauxparse', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Powell', 'Lyssna', 'http://fauxpar.se/', 'Te Whanganui-a-Tara, New Zealand', 'fauxparse@gmail.com', 'true', NULL, 'fauxparse', 0, 0, 43, 6, 0, 0, 0, '2008-02-20T18:41:10Z', '2024-10-20T06:57:24Z', 'https://avatars.githubusercontent.com/u/530?v=4', 'https://api.github.com/users/fauxparse', 'https://github.com/fauxparse', 'https://api.github.com/users/fauxparse/followers', 'https://api.github.com/users/fauxparse/following', 'https://api.github.com/users/fauxparse/gists', 'https://api.github.com/users/fauxparse/starred', 'https://api.github.com/users/fauxparse/repos', 'https://api.github.com/users/fauxparse/events', 'https://api.github.com/users/fauxparse/received_events', 0); +INSERT INTO `developer` VALUES (531, 'n0ha', 'C', 0, 0, 0, 0, 0, 0, 0, 'Viktor Lieskovsky', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 10, 0, 0, 0, '2008-02-20T18:44:46Z', '2024-11-03T20:14:06Z', 'https://avatars.githubusercontent.com/u/531?v=4', 'https://api.github.com/users/n0ha', 'https://github.com/n0ha', 'https://api.github.com/users/n0ha/followers', 'https://api.github.com/users/n0ha/following', 'https://api.github.com/users/n0ha/gists', 'https://api.github.com/users/n0ha/starred', 'https://api.github.com/users/n0ha/repos', 'https://api.github.com/users/n0ha/events', 'https://api.github.com/users/n0ha/received_events', 0); +INSERT INTO `developer` VALUES (532, 'hughbien', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hugh Bien', NULL, 'http://hughbien.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 25, 23, 0, 0, 0, '2008-02-20T18:46:04Z', '2024-09-29T19:09:09Z', 'https://avatars.githubusercontent.com/u/532?v=4', 'https://api.github.com/users/hughbien', 'https://github.com/hughbien', 'https://api.github.com/users/hughbien/followers', 'https://api.github.com/users/hughbien/following', 'https://api.github.com/users/hughbien/gists', 'https://api.github.com/users/hughbien/starred', 'https://api.github.com/users/hughbien/repos', 'https://api.github.com/users/hughbien/events', 'https://api.github.com/users/hughbien/received_events', 0); +INSERT INTO `developer` VALUES (533, 'vishnugopal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vishnu Gopal', 'Automattic', 'http://vishnugopal.com/', 'Thiruvananthapuram, India', NULL, NULL, 'Programmer, currently React/Typescript and functional programming.', NULL, 0, 0, 126, 0, 0, 0, 0, '2008-02-20T18:53:54Z', '2024-11-04T07:34:24Z', 'https://avatars.githubusercontent.com/u/533?v=4', 'https://api.github.com/users/vishnugopal', 'https://github.com/vishnugopal', 'https://api.github.com/users/vishnugopal/followers', 'https://api.github.com/users/vishnugopal/following', 'https://api.github.com/users/vishnugopal/gists', 'https://api.github.com/users/vishnugopal/starred', 'https://api.github.com/users/vishnugopal/repos', 'https://api.github.com/users/vishnugopal/events', 'https://api.github.com/users/vishnugopal/received_events', 0); +INSERT INTO `developer` VALUES (534, 'ericallam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Allam', 'Trigger.dev', 'https://trigger.dev', 'London, UK', 'eric@trigger.dev', NULL, NULL, 'maverickdotdev', 0, 0, 282, 32, 0, 0, 0, '2008-02-20T19:33:00Z', '2024-10-09T08:10:14Z', 'https://avatars.githubusercontent.com/u/534?v=4', 'https://api.github.com/users/ericallam', 'https://github.com/ericallam', 'https://api.github.com/users/ericallam/followers', 'https://api.github.com/users/ericallam/following', 'https://api.github.com/users/ericallam/gists', 'https://api.github.com/users/ericallam/starred', 'https://api.github.com/users/ericallam/repos', 'https://api.github.com/users/ericallam/events', 'https://api.github.com/users/ericallam/received_events', 0); +INSERT INTO `developer` VALUES (535, 'steveh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Hoeksema', '@buildkite and @LilRegie', 'https://kotiri.com', 'Wellington, New Zealand', 'steve@kotiri.com', 'true', 'Software developer, DevOpser. Mostly Ruby and Go.', NULL, 0, 0, 60, 9, 0, 0, 0, '2008-02-20T20:01:37Z', '2024-10-28T06:30:17Z', 'https://avatars.githubusercontent.com/u/535?v=4', 'https://api.github.com/users/steveh', 'https://github.com/steveh', 'https://api.github.com/users/steveh/followers', 'https://api.github.com/users/steveh/following', 'https://api.github.com/users/steveh/gists', 'https://api.github.com/users/steveh/starred', 'https://api.github.com/users/steveh/repos', 'https://api.github.com/users/steveh/events', 'https://api.github.com/users/steveh/received_events', 0); +INSERT INTO `developer` VALUES (536, 'jpease', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Pease', NULL, 'http://timogin.com', 'Boise, ID', NULL, 'true', 'A person. ', NULL, 0, 0, 31, 5, 0, 0, 0, '2008-02-20T20:11:27Z', '2024-10-29T20:43:22Z', 'https://avatars.githubusercontent.com/u/536?v=4', 'https://api.github.com/users/jpease', 'https://github.com/jpease', 'https://api.github.com/users/jpease/followers', 'https://api.github.com/users/jpease/following', 'https://api.github.com/users/jpease/gists', 'https://api.github.com/users/jpease/starred', 'https://api.github.com/users/jpease/repos', 'https://api.github.com/users/jpease/events', 'https://api.github.com/users/jpease/received_events', 0); +INSERT INTO `developer` VALUES (537, 'skimua', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://skimua.tumblr.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 37, 0, 0, 0, '2008-02-20T20:18:06Z', '2024-10-08T06:29:26Z', 'https://avatars.githubusercontent.com/u/537?v=4', 'https://api.github.com/users/skimua', 'https://github.com/skimua', 'https://api.github.com/users/skimua/followers', 'https://api.github.com/users/skimua/following', 'https://api.github.com/users/skimua/gists', 'https://api.github.com/users/skimua/starred', 'https://api.github.com/users/skimua/repos', 'https://api.github.com/users/skimua/events', 'https://api.github.com/users/skimua/received_events', 0); +INSERT INTO `developer` VALUES (538, 'codafoo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Codafoo', 'WebZense LLC', 'blog.codafoo.com', 'Irvine, CA', 'codafoo@gmail.com', 'true', NULL, NULL, 0, 0, 13, 7, 0, 0, 0, '2008-02-20T20:23:04Z', '2024-09-12T02:02:43Z', 'https://avatars.githubusercontent.com/u/538?v=4', 'https://api.github.com/users/codafoo', 'https://github.com/codafoo', 'https://api.github.com/users/codafoo/followers', 'https://api.github.com/users/codafoo/following', 'https://api.github.com/users/codafoo/gists', 'https://api.github.com/users/codafoo/starred', 'https://api.github.com/users/codafoo/repos', 'https://api.github.com/users/codafoo/events', 'https://api.github.com/users/codafoo/received_events', 0); +INSERT INTO `developer` VALUES (539, 'fusedevice', 'C', 0, 0, 0, 0, 0, 0, 0, 'Uros Zekar', NULL, 'fusedevice.com', 'Slovenia', 'uros@fusedevice.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-20T20:53:55Z', '2024-10-15T14:25:35Z', 'https://avatars.githubusercontent.com/u/539?v=4', 'https://api.github.com/users/fusedevice', 'https://github.com/fusedevice', 'https://api.github.com/users/fusedevice/followers', 'https://api.github.com/users/fusedevice/following', 'https://api.github.com/users/fusedevice/gists', 'https://api.github.com/users/fusedevice/starred', 'https://api.github.com/users/fusedevice/repos', 'https://api.github.com/users/fusedevice/events', 'https://api.github.com/users/fusedevice/received_events', 0); +INSERT INTO `developer` VALUES (540, 'NaPs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Antoine Millet', 'Enix', 'http://inaps.org', 'Paris, FR.', NULL, NULL, NULL, NULL, 0, 0, 39, 34, 0, 0, 0, '2008-02-20T21:34:01Z', '2024-07-11T16:28:02Z', 'https://avatars.githubusercontent.com/u/540?v=4', 'https://api.github.com/users/NaPs', 'https://github.com/NaPs', 'https://api.github.com/users/NaPs/followers', 'https://api.github.com/users/NaPs/following', 'https://api.github.com/users/NaPs/gists', 'https://api.github.com/users/NaPs/starred', 'https://api.github.com/users/NaPs/repos', 'https://api.github.com/users/NaPs/events', 'https://api.github.com/users/NaPs/received_events', 0); +INSERT INTO `developer` VALUES (541, 'hallski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mikael Hallendal', NULL, 'http://hallski.org/', 'Stockholm, Sweden', NULL, NULL, NULL, NULL, 0, 0, 71, 6, 0, 0, 0, '2008-02-20T21:37:59Z', '2024-09-26T19:56:50Z', 'https://avatars.githubusercontent.com/u/541?v=4', 'https://api.github.com/users/hallski', 'https://github.com/hallski', 'https://api.github.com/users/hallski/followers', 'https://api.github.com/users/hallski/following', 'https://api.github.com/users/hallski/gists', 'https://api.github.com/users/hallski/starred', 'https://api.github.com/users/hallski/repos', 'https://api.github.com/users/hallski/events', 'https://api.github.com/users/hallski/received_events', 0); +INSERT INTO `developer` VALUES (542, 'aroth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Roth', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 29, 12, 0, 0, 0, '2008-02-20T22:59:12Z', '2024-10-18T21:12:25Z', 'https://avatars.githubusercontent.com/u/542?v=4', 'https://api.github.com/users/aroth', 'https://github.com/aroth', 'https://api.github.com/users/aroth/followers', 'https://api.github.com/users/aroth/following', 'https://api.github.com/users/aroth/gists', 'https://api.github.com/users/aroth/starred', 'https://api.github.com/users/aroth/repos', 'https://api.github.com/users/aroth/events', 'https://api.github.com/users/aroth/received_events', 0); +INSERT INTO `developer` VALUES (543, 'brainvat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Allen Hammock', NULL, 'https://www.linkedin.com/in/ahammock', 'Berkeley, CA', 'brainvat@mac.com', NULL, NULL, NULL, 0, 0, 22, 6, 0, 0, 0, '2008-02-20T23:15:00Z', '2024-10-14T04:10:58Z', 'https://avatars.githubusercontent.com/u/543?v=4', 'https://api.github.com/users/brainvat', 'https://github.com/brainvat', 'https://api.github.com/users/brainvat/followers', 'https://api.github.com/users/brainvat/following', 'https://api.github.com/users/brainvat/gists', 'https://api.github.com/users/brainvat/starred', 'https://api.github.com/users/brainvat/repos', 'https://api.github.com/users/brainvat/events', 'https://api.github.com/users/brainvat/received_events', 0); +INSERT INTO `developer` VALUES (545, 'schelcj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Scheller', NULL, 'http://www.pobox.com/~schelcj/', '未知', 'schelcj@pobox.com', NULL, NULL, NULL, 0, 0, 13, 15, 0, 0, 0, '2008-02-21T00:40:08Z', '2024-09-08T13:15:38Z', 'https://avatars.githubusercontent.com/u/545?v=4', 'https://api.github.com/users/schelcj', 'https://github.com/schelcj', 'https://api.github.com/users/schelcj/followers', 'https://api.github.com/users/schelcj/following', 'https://api.github.com/users/schelcj/gists', 'https://api.github.com/users/schelcj/starred', 'https://api.github.com/users/schelcj/repos', 'https://api.github.com/users/schelcj/events', 'https://api.github.com/users/schelcj/received_events', 0); +INSERT INTO `developer` VALUES (546, 'drudru', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dru Nelson', NULL, '', 'Bay Area, CA', 'drudru@gmail.com', NULL, NULL, NULL, 0, 0, 26, 0, 0, 0, 0, '2008-02-21T01:00:06Z', '2024-10-31T17:47:44Z', 'https://avatars.githubusercontent.com/u/546?v=4', 'https://api.github.com/users/drudru', 'https://github.com/drudru', 'https://api.github.com/users/drudru/followers', 'https://api.github.com/users/drudru/following', 'https://api.github.com/users/drudru/gists', 'https://api.github.com/users/drudru/starred', 'https://api.github.com/users/drudru/repos', 'https://api.github.com/users/drudru/events', 'https://api.github.com/users/drudru/received_events', 0); +INSERT INTO `developer` VALUES (547, 'etng', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 102, 20, 0, 0, 0, '2021-07-26T13:01:29Z', '2024-10-24T09:53:21Z', 'https://avatars.githubusercontent.com/u/547?v=4', 'https://api.github.com/users/etng', 'https://github.com/etng', 'https://api.github.com/users/etng/followers', 'https://api.github.com/users/etng/following', 'https://api.github.com/users/etng/gists', 'https://api.github.com/users/etng/starred', 'https://api.github.com/users/etng/repos', 'https://api.github.com/users/etng/events', 'https://api.github.com/users/etng/received_events', 0); +INSERT INTO `developer` VALUES (548, 'bct', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brendan Taylor', NULL, 'https://diffeq.com/bct', 'Edmonton, Canada', 'bct@diffeq.com', NULL, NULL, NULL, 0, 0, 30, 30, 0, 0, 0, '2008-02-21T03:50:40Z', '2024-10-31T15:41:54Z', 'https://avatars.githubusercontent.com/u/548?v=4', 'https://api.github.com/users/bct', 'https://github.com/bct', 'https://api.github.com/users/bct/followers', 'https://api.github.com/users/bct/following', 'https://api.github.com/users/bct/gists', 'https://api.github.com/users/bct/starred', 'https://api.github.com/users/bct/repos', 'https://api.github.com/users/bct/events', 'https://api.github.com/users/bct/received_events', 0); +INSERT INTO `developer` VALUES (549, 'rmanalan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rich Manalang', 'Arcade Software', 'https://arcade.software', 'Oakland, CA', NULL, NULL, NULL, 'rmanalan', 0, 0, 79, 27, 0, 0, 0, '2008-02-21T04:03:34Z', '2024-10-23T16:44:34Z', 'https://avatars.githubusercontent.com/u/549?v=4', 'https://api.github.com/users/rmanalan', 'https://github.com/rmanalan', 'https://api.github.com/users/rmanalan/followers', 'https://api.github.com/users/rmanalan/following', 'https://api.github.com/users/rmanalan/gists', 'https://api.github.com/users/rmanalan/starred', 'https://api.github.com/users/rmanalan/repos', 'https://api.github.com/users/rmanalan/events', 'https://api.github.com/users/rmanalan/received_events', 0); +INSERT INTO `developer` VALUES (550, 'AndrewO', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew O\'Brien', NULL, 'https://rls.social/@AndrewO', 'Annapolis, MD', NULL, NULL, NULL, NULL, 0, 0, 41, 18, 0, 0, 0, '2008-02-21T04:47:48Z', '2024-09-09T20:43:43Z', 'https://avatars.githubusercontent.com/u/550?v=4', 'https://api.github.com/users/AndrewO', 'https://github.com/AndrewO', 'https://api.github.com/users/AndrewO/followers', 'https://api.github.com/users/AndrewO/following', 'https://api.github.com/users/AndrewO/gists', 'https://api.github.com/users/AndrewO/starred', 'https://api.github.com/users/AndrewO/repos', 'https://api.github.com/users/AndrewO/events', 'https://api.github.com/users/AndrewO/received_events', 0); +INSERT INTO `developer` VALUES (551, 'njackson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nate Jackson', NULL, '', 'Portland, OR', NULL, NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2008-02-21T04:50:16Z', '2024-10-23T02:12:28Z', 'https://avatars.githubusercontent.com/u/551?v=4', 'https://api.github.com/users/njackson', 'https://github.com/njackson', 'https://api.github.com/users/njackson/followers', 'https://api.github.com/users/njackson/following', 'https://api.github.com/users/njackson/gists', 'https://api.github.com/users/njackson/starred', 'https://api.github.com/users/njackson/repos', 'https://api.github.com/users/njackson/events', 'https://api.github.com/users/njackson/received_events', 0); +INSERT INTO `developer` VALUES (553, 'Sutto', 'C', 1.152086191139949, 0, 0, 0, 0, 0, 0, 'Darcy Laycock', 'Tidy HQ', 'sutto.net', 'Melbourne, Australia', 'sutto@sutto.net', NULL, NULL, 'Sutto', 0, 0, 352, 240, 0, 0, 0, '2008-02-21T05:29:17Z', '2024-04-29T00:00:13Z', 'https://avatars.githubusercontent.com/u/553?v=4', 'https://api.github.com/users/Sutto', 'https://github.com/Sutto', 'https://api.github.com/users/Sutto/followers', 'https://api.github.com/users/Sutto/following', 'https://api.github.com/users/Sutto/gists', 'https://api.github.com/users/Sutto/starred', 'https://api.github.com/users/Sutto/repos', 'https://api.github.com/users/Sutto/events', 'https://api.github.com/users/Sutto/received_events', 0); +INSERT INTO `developer` VALUES (554, 'roop', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roopesh Chander', NULL, 'roopc.net', 'Mysore, India', 'roop@roopc.net', 'true', NULL, NULL, 0, 0, 52, 1, 0, 0, 0, '2008-02-21T05:47:39Z', '2024-05-19T03:08:50Z', 'https://avatars.githubusercontent.com/u/554?v=4', 'https://api.github.com/users/roop', 'https://github.com/roop', 'https://api.github.com/users/roop/followers', 'https://api.github.com/users/roop/following', 'https://api.github.com/users/roop/gists', 'https://api.github.com/users/roop/starred', 'https://api.github.com/users/roop/repos', 'https://api.github.com/users/roop/events', 'https://api.github.com/users/roop/received_events', 0); +INSERT INTO `developer` VALUES (555, 'ipvideomarketinfo', 'C', 0, 0, 0, 0, 0, 0, 0, 'IPVM', NULL, 'http://ipvm.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-21T06:55:21Z', '2019-06-05T02:59:48Z', 'https://avatars.githubusercontent.com/u/555?v=4', 'https://api.github.com/users/ipvideomarketinfo', 'https://github.com/ipvideomarketinfo', 'https://api.github.com/users/ipvideomarketinfo/followers', 'https://api.github.com/users/ipvideomarketinfo/following', 'https://api.github.com/users/ipvideomarketinfo/gists', 'https://api.github.com/users/ipvideomarketinfo/starred', 'https://api.github.com/users/ipvideomarketinfo/repos', 'https://api.github.com/users/ipvideomarketinfo/events', 'https://api.github.com/users/ipvideomarketinfo/received_events', 0); +INSERT INTO `developer` VALUES (556, 'kad3nce', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jedidiah Hurt', 'Palo Alto Software', 'jedidiahhurt.com', 'Eugene, OR', NULL, NULL, 'Long-time full stack developer. Jack of many trades. Fan of functional style. Started on Rails 1.0. Currently enjoying managing a product team practicing CD.', NULL, 0, 0, 16, 8, 0, 0, 0, '2008-02-21T06:56:30Z', '2024-08-02T22:56:32Z', 'https://avatars.githubusercontent.com/u/556?v=4', 'https://api.github.com/users/kad3nce', 'https://github.com/kad3nce', 'https://api.github.com/users/kad3nce/followers', 'https://api.github.com/users/kad3nce/following', 'https://api.github.com/users/kad3nce/gists', 'https://api.github.com/users/kad3nce/starred', 'https://api.github.com/users/kad3nce/repos', 'https://api.github.com/users/kad3nce/events', 'https://api.github.com/users/kad3nce/received_events', 0); +INSERT INTO `developer` VALUES (557, 'marvin', 'C', 0, 0, 0, 0, 0, 0, 0, 'marvin', NULL, 'http://www.opensax.de', 'saxony_germany', 'dnoelte@gmail.com', 'true', NULL, NULL, 0, 0, 78, 207, 0, 0, 0, '2008-02-21T08:30:49Z', '2024-08-13T11:36:37Z', 'https://avatars.githubusercontent.com/u/557?v=4', 'https://api.github.com/users/marvin', 'https://github.com/marvin', 'https://api.github.com/users/marvin/followers', 'https://api.github.com/users/marvin/following', 'https://api.github.com/users/marvin/gists', 'https://api.github.com/users/marvin/starred', 'https://api.github.com/users/marvin/repos', 'https://api.github.com/users/marvin/events', 'https://api.github.com/users/marvin/received_events', 0); +INSERT INTO `developer` VALUES (558, 'critzjm', 'C', 0, 0, 0, 0, 0, 0, 0, 'JC', NULL, '', 'Dallas, TX', 'john.critz@gmail.com', NULL, NULL, NULL, 0, 0, 20, 0, 0, 0, 0, '2008-02-21T08:44:35Z', '2024-10-12T17:57:06Z', 'https://avatars.githubusercontent.com/u/558?v=4', 'https://api.github.com/users/critzjm', 'https://github.com/critzjm', 'https://api.github.com/users/critzjm/followers', 'https://api.github.com/users/critzjm/following', 'https://api.github.com/users/critzjm/gists', 'https://api.github.com/users/critzjm/starred', 'https://api.github.com/users/critzjm/repos', 'https://api.github.com/users/critzjm/events', 'https://api.github.com/users/critzjm/received_events', 0); +INSERT INTO `developer` VALUES (559, 'ook', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Lecavelier', 'Cults', 'https://thomas.lecavelier.name', 'Paris, France', 'thomas@lecavelier.name', NULL, 'FLOSS, digital identity and Cults', 'ookook', 0, 0, 58, 42, 0, 0, 0, '2008-02-21T08:57:53Z', '2024-07-12T12:46:30Z', 'https://avatars.githubusercontent.com/u/559?v=4', 'https://api.github.com/users/ook', 'https://github.com/ook', 'https://api.github.com/users/ook/followers', 'https://api.github.com/users/ook/following', 'https://api.github.com/users/ook/gists', 'https://api.github.com/users/ook/starred', 'https://api.github.com/users/ook/repos', 'https://api.github.com/users/ook/events', 'https://api.github.com/users/ook/received_events', 0); +INSERT INTO `developer` VALUES (561, 'jhill', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Hill', '@workarea-commerce @Commerce-Infrastructure ', 'https://workarea.com', 'Philadelphia', NULL, 'true', NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2008-02-21T14:27:47Z', '2024-10-17T22:15:44Z', 'https://avatars.githubusercontent.com/u/561?v=4', 'https://api.github.com/users/jhill', 'https://github.com/jhill', 'https://api.github.com/users/jhill/followers', 'https://api.github.com/users/jhill/following', 'https://api.github.com/users/jhill/gists', 'https://api.github.com/users/jhill/starred', 'https://api.github.com/users/jhill/repos', 'https://api.github.com/users/jhill/events', 'https://api.github.com/users/jhill/received_events', 0); +INSERT INTO `developer` VALUES (563, 'amoeba', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bryce Mecum', '@voltrondata', 'https://brycemecum.com', 'WA USA', 'petridish@gmail.com', NULL, NULL, 'brycem', 0, 0, 100, 116, 0, 0, 0, '2008-02-21T16:56:47Z', '2024-11-01T01:46:51Z', 'https://avatars.githubusercontent.com/u/563?v=4', 'https://api.github.com/users/amoeba', 'https://github.com/amoeba', 'https://api.github.com/users/amoeba/followers', 'https://api.github.com/users/amoeba/following', 'https://api.github.com/users/amoeba/gists', 'https://api.github.com/users/amoeba/starred', 'https://api.github.com/users/amoeba/repos', 'https://api.github.com/users/amoeba/events', 'https://api.github.com/users/amoeba/received_events', 0); +INSERT INTO `developer` VALUES (564, 'mbbx6spp', 'C', 3.570027988533627, 0, 0, 0, 0, 0, 0, 'Susan Potter', '@referentiallabs ', 'https://susanpotter.net', 'Illinois', NULL, 'true', 'Re-imagining software with functional programming. Nix, Haskell, PureScript.', 'SusanPotter', 0, 0, 493, 0, 0, 0, 0, '2008-02-21T16:57:30Z', '2024-10-28T00:28:15Z', 'https://avatars.githubusercontent.com/u/564?v=4', 'https://api.github.com/users/mbbx6spp', 'https://github.com/mbbx6spp', 'https://api.github.com/users/mbbx6spp/followers', 'https://api.github.com/users/mbbx6spp/following', 'https://api.github.com/users/mbbx6spp/gists', 'https://api.github.com/users/mbbx6spp/starred', 'https://api.github.com/users/mbbx6spp/repos', 'https://api.github.com/users/mbbx6spp/events', 'https://api.github.com/users/mbbx6spp/received_events', 0); +INSERT INTO `developer` VALUES (565, 'tomtaylor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Taylor', '@breakroom ', 'https://www.tomtaylor.co.uk', 'London, UK', NULL, NULL, 'Co-founder & CTO at @breakroom.', NULL, 0, 0, 249, 57, 0, 0, 0, '2008-02-21T17:01:13Z', '2024-10-15T09:36:04Z', 'https://avatars.githubusercontent.com/u/565?v=4', 'https://api.github.com/users/tomtaylor', 'https://github.com/tomtaylor', 'https://api.github.com/users/tomtaylor/followers', 'https://api.github.com/users/tomtaylor/following', 'https://api.github.com/users/tomtaylor/gists', 'https://api.github.com/users/tomtaylor/starred', 'https://api.github.com/users/tomtaylor/repos', 'https://api.github.com/users/tomtaylor/events', 'https://api.github.com/users/tomtaylor/received_events', 0); +INSERT INTO `developer` VALUES (566, 'BJClark', 'C', 0, 0, 0, 0, 0, 0, 0, 'Will Clark', 'Kickplan.com', 'http://mod.erni.st', 'Portland, OR', 'will@kickplan.com', NULL, 'User ID #566', NULL, 0, 0, 31, 12, 0, 0, 0, '2008-02-21T17:02:17Z', '2024-10-30T23:34:04Z', 'https://avatars.githubusercontent.com/u/566?v=4', 'https://api.github.com/users/BJClark', 'https://github.com/BJClark', 'https://api.github.com/users/BJClark/followers', 'https://api.github.com/users/BJClark/following', 'https://api.github.com/users/BJClark/gists', 'https://api.github.com/users/BJClark/starred', 'https://api.github.com/users/BJClark/repos', 'https://api.github.com/users/BJClark/events', 'https://api.github.com/users/BJClark/received_events', 0); +INSERT INTO `developer` VALUES (567, 'purzelrakete', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rany Keddo', 'FELD Berlin', 'http://feldberlin.com', 'Berlin', NULL, 'true', 'Research Engineering at FELD Berlin', 'feldberlin', 0, 0, 130, 62, 0, 0, 0, '2008-02-21T17:03:03Z', '2024-09-14T09:31:32Z', 'https://avatars.githubusercontent.com/u/567?v=4', 'https://api.github.com/users/purzelrakete', 'https://github.com/purzelrakete', 'https://api.github.com/users/purzelrakete/followers', 'https://api.github.com/users/purzelrakete/following', 'https://api.github.com/users/purzelrakete/gists', 'https://api.github.com/users/purzelrakete/starred', 'https://api.github.com/users/purzelrakete/repos', 'https://api.github.com/users/purzelrakete/events', 'https://api.github.com/users/purzelrakete/received_events', 0); +INSERT INTO `developer` VALUES (568, 'nmeans', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nickolas Means', '@symopsio ', '', 'Austin, TX', 'nmeans@gmail.com', NULL, 'VP Eng. at MedScout, storyteller, student of disasters.', 'nmeans', 0, 0, 79, 4, 0, 0, 0, '2008-02-21T17:05:06Z', '2024-10-18T23:03:41Z', 'https://avatars.githubusercontent.com/u/568?v=4', 'https://api.github.com/users/nmeans', 'https://github.com/nmeans', 'https://api.github.com/users/nmeans/followers', 'https://api.github.com/users/nmeans/following', 'https://api.github.com/users/nmeans/gists', 'https://api.github.com/users/nmeans/starred', 'https://api.github.com/users/nmeans/repos', 'https://api.github.com/users/nmeans/events', 'https://api.github.com/users/nmeans/received_events', 0); +INSERT INTO `developer` VALUES (569, 'alexkwolfe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Wolfe', 'ActiveProspect, Inc.', '', 'Austin, TX', NULL, NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2008-02-21T17:05:38Z', '2024-10-23T17:15:24Z', 'https://avatars.githubusercontent.com/u/569?v=4', 'https://api.github.com/users/alexkwolfe', 'https://github.com/alexkwolfe', 'https://api.github.com/users/alexkwolfe/followers', 'https://api.github.com/users/alexkwolfe/following', 'https://api.github.com/users/alexkwolfe/gists', 'https://api.github.com/users/alexkwolfe/starred', 'https://api.github.com/users/alexkwolfe/repos', 'https://api.github.com/users/alexkwolfe/events', 'https://api.github.com/users/alexkwolfe/received_events', 0); +INSERT INTO `developer` VALUES (570, 'jaikoo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Conway', 'MPN Technologies LLC', '', 'London', NULL, 'true', NULL, 'noodlesinmysand', 0, 0, 50, 24, 0, 0, 0, '2008-02-21T17:07:09Z', '2024-10-02T10:05:35Z', 'https://avatars.githubusercontent.com/u/570?v=4', 'https://api.github.com/users/jaikoo', 'https://github.com/jaikoo', 'https://api.github.com/users/jaikoo/followers', 'https://api.github.com/users/jaikoo/following', 'https://api.github.com/users/jaikoo/gists', 'https://api.github.com/users/jaikoo/starred', 'https://api.github.com/users/jaikoo/repos', 'https://api.github.com/users/jaikoo/events', 'https://api.github.com/users/jaikoo/received_events', 0); +INSERT INTO `developer` VALUES (571, 'timurvafin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timur Vafin', 'Flatstack', '', '未知', NULL, 'true', NULL, NULL, 0, 0, 47, 18, 0, 0, 0, '2008-02-21T17:13:40Z', '2024-07-31T13:08:23Z', 'https://avatars.githubusercontent.com/u/571?v=4', 'https://api.github.com/users/timurvafin', 'https://github.com/timurvafin', 'https://api.github.com/users/timurvafin/followers', 'https://api.github.com/users/timurvafin/following', 'https://api.github.com/users/timurvafin/gists', 'https://api.github.com/users/timurvafin/starred', 'https://api.github.com/users/timurvafin/repos', 'https://api.github.com/users/timurvafin/events', 'https://api.github.com/users/timurvafin/received_events', 0); +INSERT INTO `developer` VALUES (572, 'jarib', 'C', 0.9291553871249284, 0, 0, 0, 0, 0, 0, 'Jari Bakken', '@jarib | @vgno ', '', 'Oslo, Norway', 'jari.bakken@gmail.com', 'true', 'Journalism, code, music ', 'jarib', 0, 0, 339, 130, 0, 0, 0, '2008-02-21T17:14:06Z', '2024-10-07T17:20:35Z', 'https://avatars.githubusercontent.com/u/572?v=4', 'https://api.github.com/users/jarib', 'https://github.com/jarib', 'https://api.github.com/users/jarib/followers', 'https://api.github.com/users/jarib/following', 'https://api.github.com/users/jarib/gists', 'https://api.github.com/users/jarib/starred', 'https://api.github.com/users/jarib/repos', 'https://api.github.com/users/jarib/events', 'https://api.github.com/users/jarib/received_events', 0); +INSERT INTO `developer` VALUES (573, 'davie', 'C', 0, 0, 0, 0, 0, 0, 0, 'davie moston', NULL, '', 'london', 'daviemoston@gmail.com', 'true', NULL, NULL, 0, 0, 14, 3, 0, 0, 0, '2008-02-21T17:18:26Z', '2024-10-01T11:47:02Z', 'https://avatars.githubusercontent.com/u/573?v=4', 'https://api.github.com/users/davie', 'https://github.com/davie', 'https://api.github.com/users/davie/followers', 'https://api.github.com/users/davie/following', 'https://api.github.com/users/davie/gists', 'https://api.github.com/users/davie/starred', 'https://api.github.com/users/davie/repos', 'https://api.github.com/users/davie/events', 'https://api.github.com/users/davie/received_events', 0); +INSERT INTO `developer` VALUES (574, 'jdp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Poliey', 'LiveLike', 'http://justinpoliey.com', 'NYC', 'justin.d.poliey@gmail.com', NULL, NULL, NULL, 0, 0, 101, 92, 0, 0, 0, '2008-02-21T17:18:58Z', '2024-10-01T20:28:29Z', 'https://avatars.githubusercontent.com/u/574?v=4', 'https://api.github.com/users/jdp', 'https://github.com/jdp', 'https://api.github.com/users/jdp/followers', 'https://api.github.com/users/jdp/following', 'https://api.github.com/users/jdp/gists', 'https://api.github.com/users/jdp/starred', 'https://api.github.com/users/jdp/repos', 'https://api.github.com/users/jdp/events', 'https://api.github.com/users/jdp/received_events', 0); +INSERT INTO `developer` VALUES (576, 'scottymac', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scotty McMillin', 'DevelopmentNow', 'http://scottmcmillin.com', 'Chicago, IL', 'scottmcmillin@gmail.com', NULL, 'Co-founder of a couple of startups. Specialize as soup-to-nuts startup generalist. Mostly iOS in the past few years.', NULL, 0, 0, 25, 13, 0, 0, 0, '2008-02-21T17:37:36Z', '2024-06-07T16:50:24Z', 'https://avatars.githubusercontent.com/u/576?v=4', 'https://api.github.com/users/scottymac', 'https://github.com/scottymac', 'https://api.github.com/users/scottymac/followers', 'https://api.github.com/users/scottymac/following', 'https://api.github.com/users/scottymac/gists', 'https://api.github.com/users/scottymac/starred', 'https://api.github.com/users/scottymac/repos', 'https://api.github.com/users/scottymac/events', 'https://api.github.com/users/scottymac/received_events', 0); +INSERT INTO `developer` VALUES (577, 'komapa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kiril Angov', 'SeatGeek, Inc.', 'http://komapa.com', 'New York, NY', 'kiril.angov@gmail.com', NULL, NULL, NULL, 0, 0, 75, 78, 0, 0, 0, '2008-02-21T17:40:48Z', '2024-09-05T23:23:30Z', 'https://avatars.githubusercontent.com/u/577?v=4', 'https://api.github.com/users/komapa', 'https://github.com/komapa', 'https://api.github.com/users/komapa/followers', 'https://api.github.com/users/komapa/following', 'https://api.github.com/users/komapa/gists', 'https://api.github.com/users/komapa/starred', 'https://api.github.com/users/komapa/repos', 'https://api.github.com/users/komapa/events', 'https://api.github.com/users/komapa/received_events', 0); +INSERT INTO `developer` VALUES (578, 'usergenic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brendan Baldwin', NULL, 'http://usergenic.com', 'Eagle, ID', 'brendan@usergenic.com', NULL, 'I make software for people.', NULL, 0, 0, 71, 27, 0, 0, 0, '2008-02-21T17:47:48Z', '2024-10-31T02:49:21Z', 'https://avatars.githubusercontent.com/u/578?v=4', 'https://api.github.com/users/usergenic', 'https://github.com/usergenic', 'https://api.github.com/users/usergenic/followers', 'https://api.github.com/users/usergenic/following', 'https://api.github.com/users/usergenic/gists', 'https://api.github.com/users/usergenic/starred', 'https://api.github.com/users/usergenic/repos', 'https://api.github.com/users/usergenic/events', 'https://api.github.com/users/usergenic/received_events', 0); +INSERT INTO `developer` VALUES (579, 'mikeal', 'A', 79.52083806411238, 0, 0, 0, 0, 0, 0, 'Mikeal Rogers', NULL, '', 'San Francisco', NULL, NULL, 'Hacker of a certain age.', 'mikeal', 0, 0, 4922, 104, 0, 0, 0, '2008-02-21T17:50:05Z', '2024-10-21T11:58:53Z', 'https://avatars.githubusercontent.com/u/579?v=4', 'https://api.github.com/users/mikeal', 'https://github.com/mikeal', 'https://api.github.com/users/mikeal/followers', 'https://api.github.com/users/mikeal/following', 'https://api.github.com/users/mikeal/gists', 'https://api.github.com/users/mikeal/starred', 'https://api.github.com/users/mikeal/repos', 'https://api.github.com/users/mikeal/events', 'https://api.github.com/users/mikeal/received_events', 0); +INSERT INTO `developer` VALUES (580, 'Shazburg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Matthews', NULL, 'http://dripping-faucet.com', 'San Diego', NULL, NULL, NULL, NULL, 0, 0, 9, 6, 0, 0, 0, '2008-02-21T18:04:43Z', '2021-12-16T21:43:12Z', 'https://avatars.githubusercontent.com/u/580?v=4', 'https://api.github.com/users/Shazburg', 'https://github.com/Shazburg', 'https://api.github.com/users/Shazburg/followers', 'https://api.github.com/users/Shazburg/following', 'https://api.github.com/users/Shazburg/gists', 'https://api.github.com/users/Shazburg/starred', 'https://api.github.com/users/Shazburg/repos', 'https://api.github.com/users/Shazburg/events', 'https://api.github.com/users/Shazburg/received_events', 0); +INSERT INTO `developer` VALUES (581, 'JohnArgh', 'C', 0, 0, 0, 0, 0, 0, 0, 'John P Robitaille', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 6, 0, 0, 0, '2008-02-21T18:07:31Z', '2024-02-03T05:11:35Z', 'https://avatars.githubusercontent.com/u/581?v=4', 'https://api.github.com/users/JohnArgh', 'https://github.com/JohnArgh', 'https://api.github.com/users/JohnArgh/followers', 'https://api.github.com/users/JohnArgh/following', 'https://api.github.com/users/JohnArgh/gists', 'https://api.github.com/users/JohnArgh/starred', 'https://api.github.com/users/JohnArgh/repos', 'https://api.github.com/users/JohnArgh/events', 'https://api.github.com/users/JohnArgh/received_events', 0); +INSERT INTO `developer` VALUES (582, 'wiremine', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 2, 0, 0, 0, '2008-02-21T18:09:21Z', '2023-05-25T01:45:49Z', 'https://avatars.githubusercontent.com/u/582?v=4', 'https://api.github.com/users/wiremine', 'https://github.com/wiremine', 'https://api.github.com/users/wiremine/followers', 'https://api.github.com/users/wiremine/following', 'https://api.github.com/users/wiremine/gists', 'https://api.github.com/users/wiremine/starred', 'https://api.github.com/users/wiremine/repos', 'https://api.github.com/users/wiremine/events', 'https://api.github.com/users/wiremine/received_events', 0); +INSERT INTO `developer` VALUES (583, 'captproton', 'C', 0, 0, 0, 0, 0, 0, 0, 'captproton', 'Capt. Proton Webworks', 'captproton.com', 'Pacifica, CA', 'rocketeer.captproton@gmail.com', NULL, NULL, NULL, 0, 0, 28, 45, 0, 0, 0, '2008-02-21T18:09:29Z', '2024-09-30T22:59:33Z', 'https://avatars.githubusercontent.com/u/583?v=4', 'https://api.github.com/users/captproton', 'https://github.com/captproton', 'https://api.github.com/users/captproton/followers', 'https://api.github.com/users/captproton/following', 'https://api.github.com/users/captproton/gists', 'https://api.github.com/users/captproton/starred', 'https://api.github.com/users/captproton/repos', 'https://api.github.com/users/captproton/events', 'https://api.github.com/users/captproton/received_events', 0); +INSERT INTO `developer` VALUES (584, 'ludo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ludo van den Boom', NULL, 'https://ludo.is', 'Austin, TX', 'me@ludo.is', 'true', NULL, NULL, 0, 0, 46, 1, 0, 0, 0, '2008-02-21T18:35:29Z', '2024-09-13T00:59:20Z', 'https://avatars.githubusercontent.com/u/584?v=4', 'https://api.github.com/users/ludo', 'https://github.com/ludo', 'https://api.github.com/users/ludo/followers', 'https://api.github.com/users/ludo/following', 'https://api.github.com/users/ludo/gists', 'https://api.github.com/users/ludo/starred', 'https://api.github.com/users/ludo/repos', 'https://api.github.com/users/ludo/events', 'https://api.github.com/users/ludo/received_events', 0); +INSERT INTO `developer` VALUES (585, 'arisbartee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aris', NULL, 'http://arisbartee.com', 'Dallas, TX', 'arisbartee@gmail.com', NULL, NULL, NULL, 0, 0, 38, 82, 0, 0, 0, '2008-02-21T18:57:37Z', '2024-10-27T08:41:40Z', 'https://avatars.githubusercontent.com/u/585?v=4', 'https://api.github.com/users/arisbartee', 'https://github.com/arisbartee', 'https://api.github.com/users/arisbartee/followers', 'https://api.github.com/users/arisbartee/following', 'https://api.github.com/users/arisbartee/gists', 'https://api.github.com/users/arisbartee/starred', 'https://api.github.com/users/arisbartee/repos', 'https://api.github.com/users/arisbartee/events', 'https://api.github.com/users/arisbartee/received_events', 0); +INSERT INTO `developer` VALUES (586, 'edallen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ed Allen', 'Lawrence Berkeley National Laboratory', 'geekruminations.blogspot.com', 'Berkeley, California', 'old_dm@yahoo.com', NULL, 'Web devops for science at JGI at LBNL. Game geek & crafting hobbyist (board games including hex and counter wargames, RPGs, miniatures, computer).', 'edallen', 0, 0, 20, 19, 0, 0, 0, '2008-02-21T19:00:31Z', '2024-10-17T22:37:48Z', 'https://avatars.githubusercontent.com/u/586?v=4', 'https://api.github.com/users/edallen', 'https://github.com/edallen', 'https://api.github.com/users/edallen/followers', 'https://api.github.com/users/edallen/following', 'https://api.github.com/users/edallen/gists', 'https://api.github.com/users/edallen/starred', 'https://api.github.com/users/edallen/repos', 'https://api.github.com/users/edallen/events', 'https://api.github.com/users/edallen/received_events', 0); +INSERT INTO `developer` VALUES (587, 'hatch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nate Hatcher', '@JerichoSecurity', '', 'Orange County, CA', 'nate.hatcher@gmail.com', NULL, NULL, NULL, 0, 0, 16, 11, 0, 0, 0, '2008-02-21T19:06:10Z', '2024-10-22T20:20:36Z', 'https://avatars.githubusercontent.com/u/587?v=4', 'https://api.github.com/users/hatch', 'https://github.com/hatch', 'https://api.github.com/users/hatch/followers', 'https://api.github.com/users/hatch/following', 'https://api.github.com/users/hatch/gists', 'https://api.github.com/users/hatch/starred', 'https://api.github.com/users/hatch/repos', 'https://api.github.com/users/hatch/events', 'https://api.github.com/users/hatch/received_events', 0); +INSERT INTO `developer` VALUES (588, 'nickpad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Dainty', NULL, 'https://medium.com/@npad', 'Sydney, Australia', NULL, NULL, NULL, NULL, 0, 0, 21, 7, 0, 0, 0, '2008-02-21T19:21:55Z', '2024-07-17T05:49:58Z', 'https://avatars.githubusercontent.com/u/588?v=4', 'https://api.github.com/users/nickpad', 'https://github.com/nickpad', 'https://api.github.com/users/nickpad/followers', 'https://api.github.com/users/nickpad/following', 'https://api.github.com/users/nickpad/gists', 'https://api.github.com/users/nickpad/starred', 'https://api.github.com/users/nickpad/repos', 'https://api.github.com/users/nickpad/events', 'https://api.github.com/users/nickpad/received_events', 0); +INSERT INTO `developer` VALUES (589, 'joaovitor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joao Vitor Lacerda Guimaraes', 'Zero Hash', '', 'Belo Horizonte, MG, Brasil', 'joao.vitor@gmail.com', NULL, NULL, NULL, 0, 0, 118, 77, 0, 0, 0, '2008-02-21T20:17:06Z', '2024-08-01T15:29:27Z', 'https://avatars.githubusercontent.com/u/589?v=4', 'https://api.github.com/users/joaovitor', 'https://github.com/joaovitor', 'https://api.github.com/users/joaovitor/followers', 'https://api.github.com/users/joaovitor/following', 'https://api.github.com/users/joaovitor/gists', 'https://api.github.com/users/joaovitor/starred', 'https://api.github.com/users/joaovitor/repos', 'https://api.github.com/users/joaovitor/events', 'https://api.github.com/users/joaovitor/received_events', 0); +INSERT INTO `developer` VALUES (590, 'ckhsponge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Hobbs', 'Toonsy Net', 'http://toonsy.net', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 16, 3, 0, 0, 0, '2008-02-21T20:25:14Z', '2024-08-20T03:46:10Z', 'https://avatars.githubusercontent.com/u/590?v=4', 'https://api.github.com/users/ckhsponge', 'https://github.com/ckhsponge', 'https://api.github.com/users/ckhsponge/followers', 'https://api.github.com/users/ckhsponge/following', 'https://api.github.com/users/ckhsponge/gists', 'https://api.github.com/users/ckhsponge/starred', 'https://api.github.com/users/ckhsponge/repos', 'https://api.github.com/users/ckhsponge/events', 'https://api.github.com/users/ckhsponge/received_events', 0); +INSERT INTO `developer` VALUES (591, 'fd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Menke', 'Mr. Henry', '', 'Belgium', 'simon.menke@gmail.com', NULL, NULL, NULL, 0, 0, 122, 70, 0, 0, 0, '2008-02-21T20:36:09Z', '2024-10-30T07:17:16Z', 'https://avatars.githubusercontent.com/u/591?v=4', 'https://api.github.com/users/fd', 'https://github.com/fd', 'https://api.github.com/users/fd/followers', 'https://api.github.com/users/fd/following', 'https://api.github.com/users/fd/gists', 'https://api.github.com/users/fd/starred', 'https://api.github.com/users/fd/repos', 'https://api.github.com/users/fd/events', 'https://api.github.com/users/fd/received_events', 0); +INSERT INTO `developer` VALUES (592, 'wineq', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-21T21:29:40Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/592?v=4', 'https://api.github.com/users/wineq', 'https://github.com/wineq', 'https://api.github.com/users/wineq/followers', 'https://api.github.com/users/wineq/following', 'https://api.github.com/users/wineq/gists', 'https://api.github.com/users/wineq/starred', 'https://api.github.com/users/wineq/repos', 'https://api.github.com/users/wineq/events', 'https://api.github.com/users/wineq/received_events', 0); +INSERT INTO `developer` VALUES (593, 'daaku', 'C', 3.707216175619793, 0, 0, 0, 0, 0, 0, 'Naitik Shah', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 501, 159, 0, 0, 0, '2008-02-21T21:44:48Z', '2024-10-20T11:21:00Z', 'https://avatars.githubusercontent.com/u/593?v=4', 'https://api.github.com/users/daaku', 'https://github.com/daaku', 'https://api.github.com/users/daaku/followers', 'https://api.github.com/users/daaku/following', 'https://api.github.com/users/daaku/gists', 'https://api.github.com/users/daaku/starred', 'https://api.github.com/users/daaku/repos', 'https://api.github.com/users/daaku/events', 'https://api.github.com/users/daaku/received_events', 0); +INSERT INTO `developer` VALUES (594, 'pfig', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pedro Figueiredo', '@FundingCircle ', 'https://coruscate.xyz', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 57, 33, 0, 0, 0, '2008-02-21T21:46:08Z', '2024-07-25T17:00:46Z', 'https://avatars.githubusercontent.com/u/594?v=4', 'https://api.github.com/users/pfig', 'https://github.com/pfig', 'https://api.github.com/users/pfig/followers', 'https://api.github.com/users/pfig/following', 'https://api.github.com/users/pfig/gists', 'https://api.github.com/users/pfig/starred', 'https://api.github.com/users/pfig/repos', 'https://api.github.com/users/pfig/events', 'https://api.github.com/users/pfig/received_events', 0); +INSERT INTO `developer` VALUES (595, 'natedaiger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nate Daiger', NULL, 'http://nate.daiger.com', 'Los Angeles', 'nate@daiger.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-21T21:59:46Z', '2024-10-23T10:13:56Z', 'https://avatars.githubusercontent.com/u/595?v=4', 'https://api.github.com/users/natedaiger', 'https://github.com/natedaiger', 'https://api.github.com/users/natedaiger/followers', 'https://api.github.com/users/natedaiger/following', 'https://api.github.com/users/natedaiger/gists', 'https://api.github.com/users/natedaiger/starred', 'https://api.github.com/users/natedaiger/repos', 'https://api.github.com/users/natedaiger/events', 'https://api.github.com/users/natedaiger/received_events', 0); +INSERT INTO `developer` VALUES (596, 'probablycorey', 'C', 8.011495545448255, 0, 0, 0, 0, 0, 0, 'Corey Johnson', '@github', 'http://probablycorey.com', 'San Francisco', 'corey@void.dev', 'true', 'Corey is ██ years old and enjoys █████ with his ████. He has over 23 ███████ █████ and is considered the most important █████ of all time.', NULL, 0, 0, 752, 2, 0, 0, 0, '2008-02-21T22:07:26Z', '2024-08-28T04:00:05Z', 'https://avatars.githubusercontent.com/u/596?v=4', 'https://api.github.com/users/probablycorey', 'https://github.com/probablycorey', 'https://api.github.com/users/probablycorey/followers', 'https://api.github.com/users/probablycorey/following', 'https://api.github.com/users/probablycorey/gists', 'https://api.github.com/users/probablycorey/starred', 'https://api.github.com/users/probablycorey/repos', 'https://api.github.com/users/probablycorey/events', 'https://api.github.com/users/probablycorey/received_events', 0); +INSERT INTO `developer` VALUES (597, 'ymendel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yossef Mendelssohn', NULL, '', '未知', 'ymendel@pobox.com', NULL, NULL, NULL, 0, 0, 220, 1, 0, 0, 0, '2008-02-21T22:09:30Z', '2024-08-12T15:58:24Z', 'https://avatars.githubusercontent.com/u/597?v=4', 'https://api.github.com/users/ymendel', 'https://github.com/ymendel', 'https://api.github.com/users/ymendel/followers', 'https://api.github.com/users/ymendel/following', 'https://api.github.com/users/ymendel/gists', 'https://api.github.com/users/ymendel/starred', 'https://api.github.com/users/ymendel/repos', 'https://api.github.com/users/ymendel/events', 'https://api.github.com/users/ymendel/received_events', 0); +INSERT INTO `developer` VALUES (598, 'jmhodges', 'C', 3.6043250353051692, 0, 0, 0, 0, 0, 0, 'Jeff Hodges', 'Darkish Green', 'http://somethingsimilar.com', 'San Francisco', 'jeff@somethingsimilar.com', NULL, NULL, NULL, 0, 0, 495, 30, 0, 0, 0, '2008-02-21T22:27:18Z', '2024-11-01T03:24:10Z', 'https://avatars.githubusercontent.com/u/598?v=4', 'https://api.github.com/users/jmhodges', 'https://github.com/jmhodges', 'https://api.github.com/users/jmhodges/followers', 'https://api.github.com/users/jmhodges/following', 'https://api.github.com/users/jmhodges/gists', 'https://api.github.com/users/jmhodges/starred', 'https://api.github.com/users/jmhodges/repos', 'https://api.github.com/users/jmhodges/events', 'https://api.github.com/users/jmhodges/received_events', 0); +INSERT INTO `developer` VALUES (599, 'nickel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Gallego IV', NULL, 'https://juan.gallegoiv.com', 'Sevilla, España.', 'juan@gallegoiv.com', 'true', 'Getting started is a one time cost.\r\n\r\nMaintenance is forever.', NULL, 0, 0, 44, 15, 0, 0, 0, '2008-02-21T22:37:00Z', '2024-10-25T18:11:13Z', 'https://avatars.githubusercontent.com/u/599?v=4', 'https://api.github.com/users/nickel', 'https://github.com/nickel', 'https://api.github.com/users/nickel/followers', 'https://api.github.com/users/nickel/following', 'https://api.github.com/users/nickel/gists', 'https://api.github.com/users/nickel/starred', 'https://api.github.com/users/nickel/repos', 'https://api.github.com/users/nickel/events', 'https://api.github.com/users/nickel/received_events', 0); +INSERT INTO `developer` VALUES (600, 'buru', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pavlo Zahozhenko', NULL, 'http://buruonbrails.blogspot.com', 'Kyiv, Ukraine', NULL, NULL, NULL, NULL, 0, 0, 9, 6, 0, 0, 0, '2008-02-21T23:01:13Z', '2024-10-04T18:28:40Z', 'https://avatars.githubusercontent.com/u/600?v=4', 'https://api.github.com/users/buru', 'https://github.com/buru', 'https://api.github.com/users/buru/followers', 'https://api.github.com/users/buru/following', 'https://api.github.com/users/buru/gists', 'https://api.github.com/users/buru/starred', 'https://api.github.com/users/buru/repos', 'https://api.github.com/users/buru/events', 'https://api.github.com/users/buru/received_events', 0); +INSERT INTO `developer` VALUES (601, 'wdperson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Riley', 'ZippyMH', 'http://www.studiomg.com', 'Ohio', NULL, NULL, NULL, NULL, 0, 0, 23, 5, 0, 0, 0, '2008-02-21T23:41:34Z', '2024-09-23T13:35:46Z', 'https://avatars.githubusercontent.com/u/601?v=4', 'https://api.github.com/users/wdperson', 'https://github.com/wdperson', 'https://api.github.com/users/wdperson/followers', 'https://api.github.com/users/wdperson/following', 'https://api.github.com/users/wdperson/gists', 'https://api.github.com/users/wdperson/starred', 'https://api.github.com/users/wdperson/repos', 'https://api.github.com/users/wdperson/events', 'https://api.github.com/users/wdperson/received_events', 0); +INSERT INTO `developer` VALUES (602, 'chromakey-io', 'C', 0, 0, 0, 0, 0, 0, 0, 'k. noah howerton', 'ChromaKey', 'chromakey.io', 'Portland, OR', 'noah@chromakey.io', 'true', 'autodidact with a touch of lysdexia', NULL, 0, 0, 26, 2, 0, 0, 0, '2008-02-22T00:14:40Z', '2021-08-31T01:36:45Z', 'https://avatars.githubusercontent.com/u/602?v=4', 'https://api.github.com/users/chromakey-io', 'https://github.com/chromakey-io', 'https://api.github.com/users/chromakey-io/followers', 'https://api.github.com/users/chromakey-io/following', 'https://api.github.com/users/chromakey-io/gists', 'https://api.github.com/users/chromakey-io/starred', 'https://api.github.com/users/chromakey-io/repos', 'https://api.github.com/users/chromakey-io/events', 'https://api.github.com/users/chromakey-io/received_events', 0); +INSERT INTO `developer` VALUES (603, 'jstetser', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-22T01:15:48Z', '2019-06-05T03:13:04Z', 'https://avatars.githubusercontent.com/u/603?v=4', 'https://api.github.com/users/jstetser', 'https://github.com/jstetser', 'https://api.github.com/users/jstetser/followers', 'https://api.github.com/users/jstetser/following', 'https://api.github.com/users/jstetser/gists', 'https://api.github.com/users/jstetser/starred', 'https://api.github.com/users/jstetser/repos', 'https://api.github.com/users/jstetser/events', 'https://api.github.com/users/jstetser/received_events', 0); +INSERT INTO `developer` VALUES (604, 'ianloic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian McKellar', 'Google', 'http://ianloic.com/', 'Alameda, California', 'ian@mckellar.org', NULL, NULL, NULL, 0, 0, 133, 42, 0, 0, 0, '2008-02-22T05:26:23Z', '2024-10-03T16:15:40Z', 'https://avatars.githubusercontent.com/u/604?v=4', 'https://api.github.com/users/ianloic', 'https://github.com/ianloic', 'https://api.github.com/users/ianloic/followers', 'https://api.github.com/users/ianloic/following', 'https://api.github.com/users/ianloic/gists', 'https://api.github.com/users/ianloic/starred', 'https://api.github.com/users/ianloic/repos', 'https://api.github.com/users/ianloic/events', 'https://api.github.com/users/ianloic/received_events', 0); +INSERT INTO `developer` VALUES (605, 'bansalakhil', 'C', 0, 0, 0, 0, 0, 0, 0, 'Akhil Bansal', 'http://www.vinsol.com', 'http://webonrails.com', 'New Delhi, India', 'bansalakhil30.10@gmail.com', 'true', NULL, NULL, 0, 0, 22, 5, 0, 0, 0, '2008-02-22T06:09:36Z', '2024-11-04T12:40:20Z', 'https://avatars.githubusercontent.com/u/605?v=4', 'https://api.github.com/users/bansalakhil', 'https://github.com/bansalakhil', 'https://api.github.com/users/bansalakhil/followers', 'https://api.github.com/users/bansalakhil/following', 'https://api.github.com/users/bansalakhil/gists', 'https://api.github.com/users/bansalakhil/starred', 'https://api.github.com/users/bansalakhil/repos', 'https://api.github.com/users/bansalakhil/events', 'https://api.github.com/users/bansalakhil/received_events', 0); +INSERT INTO `developer` VALUES (606, 'jesseproudman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesse Proudman', '@Betterment ', 'http://twitter.com/jesseproudman', 'Seattle, WA', NULL, NULL, NULL, 'jesseproudman', 0, 0, 42, 1, 0, 0, 0, '2008-02-22T06:48:36Z', '2024-10-23T21:50:28Z', 'https://avatars.githubusercontent.com/u/606?v=4', 'https://api.github.com/users/jesseproudman', 'https://github.com/jesseproudman', 'https://api.github.com/users/jesseproudman/followers', 'https://api.github.com/users/jesseproudman/following', 'https://api.github.com/users/jesseproudman/gists', 'https://api.github.com/users/jesseproudman/starred', 'https://api.github.com/users/jesseproudman/repos', 'https://api.github.com/users/jesseproudman/events', 'https://api.github.com/users/jesseproudman/received_events', 0); +INSERT INTO `developer` VALUES (607, 'fantom', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-22T09:57:40Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/607?v=4', 'https://api.github.com/users/fantom', 'https://github.com/fantom', 'https://api.github.com/users/fantom/followers', 'https://api.github.com/users/fantom/following', 'https://api.github.com/users/fantom/gists', 'https://api.github.com/users/fantom/starred', 'https://api.github.com/users/fantom/repos', 'https://api.github.com/users/fantom/events', 'https://api.github.com/users/fantom/received_events', 0); +INSERT INTO `developer` VALUES (608, 'h-lame', 'C', 0, 0, 0, 0, 0, 0, 0, 'Murray Steele', NULL, 'http://www.h-lame.com/', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 85, 0, 0, 0, 0, '2008-02-22T10:38:51Z', '2024-06-23T21:20:24Z', 'https://avatars.githubusercontent.com/u/608?v=4', 'https://api.github.com/users/h-lame', 'https://github.com/h-lame', 'https://api.github.com/users/h-lame/followers', 'https://api.github.com/users/h-lame/following', 'https://api.github.com/users/h-lame/gists', 'https://api.github.com/users/h-lame/starred', 'https://api.github.com/users/h-lame/repos', 'https://api.github.com/users/h-lame/events', 'https://api.github.com/users/h-lame/received_events', 0); +INSERT INTO `developer` VALUES (609, 'emilevdb', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-22T10:40:06Z', '2024-09-16T12:24:10Z', 'https://avatars.githubusercontent.com/u/609?v=4', 'https://api.github.com/users/emilevdb', 'https://github.com/emilevdb', 'https://api.github.com/users/emilevdb/followers', 'https://api.github.com/users/emilevdb/following', 'https://api.github.com/users/emilevdb/gists', 'https://api.github.com/users/emilevdb/starred', 'https://api.github.com/users/emilevdb/repos', 'https://api.github.com/users/emilevdb/events', 'https://api.github.com/users/emilevdb/received_events', 0); +INSERT INTO `developer` VALUES (610, 'mdub', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Williams', NULL, 'http://www.dogbiscuit.org/', 'Melbourne, AU', 'mdub@dogbiscuit.org', NULL, NULL, NULL, 0, 0, 100, 15, 0, 0, 0, '2008-02-22T11:02:25Z', '2024-10-24T07:24:31Z', 'https://avatars.githubusercontent.com/u/610?v=4', 'https://api.github.com/users/mdub', 'https://github.com/mdub', 'https://api.github.com/users/mdub/followers', 'https://api.github.com/users/mdub/following', 'https://api.github.com/users/mdub/gists', 'https://api.github.com/users/mdub/starred', 'https://api.github.com/users/mdub/repos', 'https://api.github.com/users/mdub/events', 'https://api.github.com/users/mdub/received_events', 0); +INSERT INTO `developer` VALUES (611, 'martinjandrews', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marty Andrews', 'Cogent Consulting', 'http://www.martyandrews.net/blog/', 'Melbourne, Australia', 'marty@martyandrews.net', NULL, NULL, NULL, 0, 0, 37, 0, 0, 0, 0, '2008-02-22T11:27:07Z', '2024-05-23T10:54:12Z', 'https://avatars.githubusercontent.com/u/611?v=4', 'https://api.github.com/users/martinjandrews', 'https://github.com/martinjandrews', 'https://api.github.com/users/martinjandrews/followers', 'https://api.github.com/users/martinjandrews/following', 'https://api.github.com/users/martinjandrews/gists', 'https://api.github.com/users/martinjandrews/starred', 'https://api.github.com/users/martinjandrews/repos', 'https://api.github.com/users/martinjandrews/events', 'https://api.github.com/users/martinjandrews/received_events', 0); +INSERT INTO `developer` VALUES (612, 'wpiekutowski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wojciech Piekutowski', 'AmberBit', 'https://www.amberbit.com', 'Białystok, Poland', NULL, 'true', NULL, NULL, 0, 0, 27, 5, 0, 0, 0, '2008-02-22T11:39:02Z', '2024-10-07T10:57:49Z', 'https://avatars.githubusercontent.com/u/612?v=4', 'https://api.github.com/users/wpiekutowski', 'https://github.com/wpiekutowski', 'https://api.github.com/users/wpiekutowski/followers', 'https://api.github.com/users/wpiekutowski/following', 'https://api.github.com/users/wpiekutowski/gists', 'https://api.github.com/users/wpiekutowski/starred', 'https://api.github.com/users/wpiekutowski/repos', 'https://api.github.com/users/wpiekutowski/events', 'https://api.github.com/users/wpiekutowski/received_events', 0); +INSERT INTO `developer` VALUES (613, 'lukeredpath', 'C', 4.890464289237976, 0, 0, 0, 0, 0, 0, 'Luke Redpath', NULL, 'http://lukeredpath.co.uk', 'Colchester, UK', 'luke@lukeredpath.co.uk', NULL, 'Software engineer with over 20 years experience, currently focused on iOS development.', 'lukeredpath', 0, 0, 570, 16, 0, 0, 0, '2008-02-22T14:36:59Z', '2024-11-04T17:54:53Z', 'https://avatars.githubusercontent.com/u/613?v=4', 'https://api.github.com/users/lukeredpath', 'https://github.com/lukeredpath', 'https://api.github.com/users/lukeredpath/followers', 'https://api.github.com/users/lukeredpath/following', 'https://api.github.com/users/lukeredpath/gists', 'https://api.github.com/users/lukeredpath/starred', 'https://api.github.com/users/lukeredpath/repos', 'https://api.github.com/users/lukeredpath/events', 'https://api.github.com/users/lukeredpath/received_events', 0); +INSERT INTO `developer` VALUES (614, 'andykent', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Kent', 'Portal Labs', 'binaryalchemy.net', 'London, England', NULL, 'true', 'Focussed on Simplicity to a fault.', NULL, 0, 0, 86, 2, 0, 0, 0, '2008-02-22T14:54:30Z', '2024-08-25T23:03:53Z', 'https://avatars.githubusercontent.com/u/614?v=4', 'https://api.github.com/users/andykent', 'https://github.com/andykent', 'https://api.github.com/users/andykent/followers', 'https://api.github.com/users/andykent/following', 'https://api.github.com/users/andykent/gists', 'https://api.github.com/users/andykent/starred', 'https://api.github.com/users/andykent/repos', 'https://api.github.com/users/andykent/events', 'https://api.github.com/users/andykent/received_events', 0); +INSERT INTO `developer` VALUES (615, 'codehugger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bjarki Gudlaugsson', 'Codehuggers ehf', 'http://codehuggers.com', 'Iceland', NULL, 'true', 'First rule of distributed systems: don\'t do distributed systems!', NULL, 0, 0, 16, 5, 0, 0, 0, '2008-02-22T17:01:46Z', '2024-10-26T14:00:25Z', 'https://avatars.githubusercontent.com/u/615?v=4', 'https://api.github.com/users/codehugger', 'https://github.com/codehugger', 'https://api.github.com/users/codehugger/followers', 'https://api.github.com/users/codehugger/following', 'https://api.github.com/users/codehugger/gists', 'https://api.github.com/users/codehugger/starred', 'https://api.github.com/users/codehugger/repos', 'https://api.github.com/users/codehugger/events', 'https://api.github.com/users/codehugger/received_events', 0); +INSERT INTO `developer` VALUES (616, 'aemadrid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adrian Madrid', 'TimeWorxs, LLC', '', 'Salt Lake City, UT', 'aemadrid@gmail.com', NULL, NULL, NULL, 0, 0, 23, 3, 0, 0, 0, '2008-02-22T17:18:13Z', '2024-10-15T15:32:00Z', 'https://avatars.githubusercontent.com/u/616?v=4', 'https://api.github.com/users/aemadrid', 'https://github.com/aemadrid', 'https://api.github.com/users/aemadrid/followers', 'https://api.github.com/users/aemadrid/following', 'https://api.github.com/users/aemadrid/gists', 'https://api.github.com/users/aemadrid/starred', 'https://api.github.com/users/aemadrid/repos', 'https://api.github.com/users/aemadrid/events', 'https://api.github.com/users/aemadrid/received_events', 0); +INSERT INTO `developer` VALUES (617, 'mulder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicholas Mulder', 'Wealthsimple', '', 'Waterloo, Ontario', 'nicholas.mulder@gmail.com', NULL, NULL, NULL, 0, 0, 34, 17, 0, 0, 0, '2008-02-22T17:18:47Z', '2024-09-07T15:15:43Z', 'https://avatars.githubusercontent.com/u/617?v=4', 'https://api.github.com/users/mulder', 'https://github.com/mulder', 'https://api.github.com/users/mulder/followers', 'https://api.github.com/users/mulder/following', 'https://api.github.com/users/mulder/gists', 'https://api.github.com/users/mulder/starred', 'https://api.github.com/users/mulder/repos', 'https://api.github.com/users/mulder/events', 'https://api.github.com/users/mulder/received_events', 0); +INSERT INTO `developer` VALUES (618, 'jeremyboles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Boles', NULL, 'https://jeremyboles.com/', '未知', NULL, NULL, 'We haven\'t located us yet.', NULL, 0, 0, 26, 0, 0, 0, 0, '2008-02-22T17:19:47Z', '2024-09-27T14:37:31Z', 'https://avatars.githubusercontent.com/u/618?v=4', 'https://api.github.com/users/jeremyboles', 'https://github.com/jeremyboles', 'https://api.github.com/users/jeremyboles/followers', 'https://api.github.com/users/jeremyboles/following', 'https://api.github.com/users/jeremyboles/gists', 'https://api.github.com/users/jeremyboles/starred', 'https://api.github.com/users/jeremyboles/repos', 'https://api.github.com/users/jeremyboles/events', 'https://api.github.com/users/jeremyboles/received_events', 0); +INSERT INTO `developer` VALUES (619, 'moorbrook', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roger Hsueh', NULL, '', 'CA', NULL, 'true', NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-22T17:20:48Z', '2024-10-06T00:54:29Z', 'https://avatars.githubusercontent.com/u/619?v=4', 'https://api.github.com/users/moorbrook', 'https://github.com/moorbrook', 'https://api.github.com/users/moorbrook/followers', 'https://api.github.com/users/moorbrook/following', 'https://api.github.com/users/moorbrook/gists', 'https://api.github.com/users/moorbrook/starred', 'https://api.github.com/users/moorbrook/repos', 'https://api.github.com/users/moorbrook/events', 'https://api.github.com/users/moorbrook/received_events', 0); +INSERT INTO `developer` VALUES (620, 'humandoing', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Wintschel', 'humandoing software', 'https://humandoing.net', 'Comox, BC', 'daniel@humandoing.net', NULL, NULL, 'humandoing', 0, 0, 15, 1, 0, 0, 0, '2008-02-22T17:20:56Z', '2024-08-22T19:51:51Z', 'https://avatars.githubusercontent.com/u/620?v=4', 'https://api.github.com/users/humandoing', 'https://github.com/humandoing', 'https://api.github.com/users/humandoing/followers', 'https://api.github.com/users/humandoing/following', 'https://api.github.com/users/humandoing/gists', 'https://api.github.com/users/humandoing/starred', 'https://api.github.com/users/humandoing/repos', 'https://api.github.com/users/humandoing/events', 'https://api.github.com/users/humandoing/received_events', 0); +INSERT INTO `developer` VALUES (621, 'george', 'C', 0, 0, 0, 0, 0, 0, 0, 'George', 'Hostile, LLC', 'https://hostile.org/', 'Texas, US', NULL, NULL, '19, Founding Engineer @hostile.\r\n\r\nWeb developer with an interest in JVM bytecode.', 'g3orge', 0, 0, 60, 11, 0, 0, 0, '2008-02-22T17:22:18Z', '2024-09-08T20:10:35Z', 'https://avatars.githubusercontent.com/u/621?v=4', 'https://api.github.com/users/george', 'https://github.com/george', 'https://api.github.com/users/george/followers', 'https://api.github.com/users/george/following', 'https://api.github.com/users/george/gists', 'https://api.github.com/users/george/starred', 'https://api.github.com/users/george/repos', 'https://api.github.com/users/george/events', 'https://api.github.com/users/george/received_events', 0); +INSERT INTO `developer` VALUES (622, 'dramsay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Ramsay', 'Megaphone', 'https://megaphone.fm/', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 0, 0, 0, 0, '2008-02-22T17:23:50Z', '2024-09-23T15:57:24Z', 'https://avatars.githubusercontent.com/u/622?v=4', 'https://api.github.com/users/dramsay', 'https://github.com/dramsay', 'https://api.github.com/users/dramsay/followers', 'https://api.github.com/users/dramsay/following', 'https://api.github.com/users/dramsay/gists', 'https://api.github.com/users/dramsay/starred', 'https://api.github.com/users/dramsay/repos', 'https://api.github.com/users/dramsay/events', 'https://api.github.com/users/dramsay/received_events', 0); +INSERT INTO `developer` VALUES (623, 'jonmagic', 'C', 3.0384237635747327, 0, 0, 0, 0, 0, 0, 'Jonathan Hoyt', '@github', 'http://jonmagic.com/', 'San Mateo California', 'jonmagic@gmail.com', NULL, 'Husband, father, and software engineer at GitHub for more than a decade. Over 25 years experience building businesses, products, and teams.', NULL, 0, 0, 462, 55, 0, 0, 0, '2008-02-22T17:26:44Z', '2024-11-05T02:50:03Z', 'https://avatars.githubusercontent.com/u/623?v=4', 'https://api.github.com/users/jonmagic', 'https://github.com/jonmagic', 'https://api.github.com/users/jonmagic/followers', 'https://api.github.com/users/jonmagic/following', 'https://api.github.com/users/jonmagic/gists', 'https://api.github.com/users/jonmagic/starred', 'https://api.github.com/users/jonmagic/repos', 'https://api.github.com/users/jonmagic/events', 'https://api.github.com/users/jonmagic/received_events', 0); +INSERT INTO `developer` VALUES (624, 'chriskilmer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Kilmer', NULL, '', 'Nederland, CO', 'christopherkilmer@gmail.com', 'true', NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-02-22T17:27:56Z', '2024-08-01T21:46:55Z', 'https://avatars.githubusercontent.com/u/624?v=4', 'https://api.github.com/users/chriskilmer', 'https://github.com/chriskilmer', 'https://api.github.com/users/chriskilmer/followers', 'https://api.github.com/users/chriskilmer/following', 'https://api.github.com/users/chriskilmer/gists', 'https://api.github.com/users/chriskilmer/starred', 'https://api.github.com/users/chriskilmer/repos', 'https://api.github.com/users/chriskilmer/events', 'https://api.github.com/users/chriskilmer/received_events', 0); +INSERT INTO `developer` VALUES (625, 'zpinter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zachary Pinter', 'HBO', 'http://zacharypinter.com', 'Nashville, TN', 'zpinter@gmail.com', NULL, NULL, NULL, 0, 0, 20, 1, 0, 0, 0, '2008-02-22T17:28:29Z', '2024-04-03T15:42:26Z', 'https://avatars.githubusercontent.com/u/625?v=4', 'https://api.github.com/users/zpinter', 'https://github.com/zpinter', 'https://api.github.com/users/zpinter/followers', 'https://api.github.com/users/zpinter/following', 'https://api.github.com/users/zpinter/gists', 'https://api.github.com/users/zpinter/starred', 'https://api.github.com/users/zpinter/repos', 'https://api.github.com/users/zpinter/events', 'https://api.github.com/users/zpinter/received_events', 0); +INSERT INTO `developer` VALUES (626, 'banderson623', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Anderson', 'Gain Compliance', '', 'Rocklin, CA', 'banderson623@gmail.com', NULL, 'Eats food. Drinks Coffee. Works with Engineers', NULL, 0, 0, 55, 49, 0, 0, 0, '2008-02-22T17:29:58Z', '2024-10-26T18:52:24Z', 'https://avatars.githubusercontent.com/u/626?v=4', 'https://api.github.com/users/banderson623', 'https://github.com/banderson623', 'https://api.github.com/users/banderson623/followers', 'https://api.github.com/users/banderson623/following', 'https://api.github.com/users/banderson623/gists', 'https://api.github.com/users/banderson623/starred', 'https://api.github.com/users/banderson623/repos', 'https://api.github.com/users/banderson623/events', 'https://api.github.com/users/banderson623/received_events', 0); +INSERT INTO `developer` VALUES (627, 'bigethan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Big Ethan', NULL, 'https://www.ethanschlenker.com', 'San Francisco, ca', NULL, NULL, 'Great teams are life changing', NULL, 0, 0, 23, 3, 0, 0, 0, '2008-02-22T17:31:02Z', '2024-11-01T11:20:53Z', 'https://avatars.githubusercontent.com/u/627?v=4', 'https://api.github.com/users/bigethan', 'https://github.com/bigethan', 'https://api.github.com/users/bigethan/followers', 'https://api.github.com/users/bigethan/following', 'https://api.github.com/users/bigethan/gists', 'https://api.github.com/users/bigethan/starred', 'https://api.github.com/users/bigethan/repos', 'https://api.github.com/users/bigethan/events', 'https://api.github.com/users/bigethan/received_events', 0); +INSERT INTO `developer` VALUES (628, 'lmarlow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lee Marlow', NULL, 'http://onrails.org/', '未知', NULL, NULL, NULL, NULL, 0, 0, 30, 42, 0, 0, 0, '2008-02-22T17:31:57Z', '2024-11-01T20:40:58Z', 'https://avatars.githubusercontent.com/u/628?v=4', 'https://api.github.com/users/lmarlow', 'https://github.com/lmarlow', 'https://api.github.com/users/lmarlow/followers', 'https://api.github.com/users/lmarlow/following', 'https://api.github.com/users/lmarlow/gists', 'https://api.github.com/users/lmarlow/starred', 'https://api.github.com/users/lmarlow/repos', 'https://api.github.com/users/lmarlow/events', 'https://api.github.com/users/lmarlow/received_events', 0); +INSERT INTO `developer` VALUES (629, 'jrimmer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Rimmer', 'International Rescue', 'http://jasonrimmer.com/', 'Los Angeles, California', 'jason@rimmer.net', NULL, 'Lover, fighter, thought-enthusiast. I know a little of a great many things!', NULL, 0, 0, 16, 3, 0, 0, 0, '2008-02-22T17:32:09Z', '2024-10-11T19:22:33Z', 'https://avatars.githubusercontent.com/u/629?v=4', 'https://api.github.com/users/jrimmer', 'https://github.com/jrimmer', 'https://api.github.com/users/jrimmer/followers', 'https://api.github.com/users/jrimmer/following', 'https://api.github.com/users/jrimmer/gists', 'https://api.github.com/users/jrimmer/starred', 'https://api.github.com/users/jrimmer/repos', 'https://api.github.com/users/jrimmer/events', 'https://api.github.com/users/jrimmer/received_events', 0); +INSERT INTO `developer` VALUES (630, 'olly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oliver Legg', NULL, 'http://51degrees.net', 'London', NULL, NULL, NULL, NULL, 0, 0, 44, 31, 0, 0, 0, '2008-02-22T17:32:37Z', '2024-10-23T07:55:34Z', 'https://avatars.githubusercontent.com/u/630?v=4', 'https://api.github.com/users/olly', 'https://github.com/olly', 'https://api.github.com/users/olly/followers', 'https://api.github.com/users/olly/following', 'https://api.github.com/users/olly/gists', 'https://api.github.com/users/olly/starred', 'https://api.github.com/users/olly/repos', 'https://api.github.com/users/olly/events', 'https://api.github.com/users/olly/received_events', 0); +INSERT INTO `developer` VALUES (631, 'hookercookerman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Richard Hooker', NULL, 'hookercookerman.github.io', '未知', 'hookercookerman@gmail.com', NULL, NULL, NULL, 0, 0, 44, 8, 0, 0, 0, '2008-02-22T17:32:40Z', '2024-10-30T09:59:39Z', 'https://avatars.githubusercontent.com/u/631?v=4', 'https://api.github.com/users/hookercookerman', 'https://github.com/hookercookerman', 'https://api.github.com/users/hookercookerman/followers', 'https://api.github.com/users/hookercookerman/following', 'https://api.github.com/users/hookercookerman/gists', 'https://api.github.com/users/hookercookerman/starred', 'https://api.github.com/users/hookercookerman/repos', 'https://api.github.com/users/hookercookerman/events', 'https://api.github.com/users/hookercookerman/received_events', 0); +INSERT INTO `developer` VALUES (632, 'rubenlozano', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ruben Lozano', NULL, 'rubenlozano.engineer', 'California', NULL, NULL, 'Software Engineer', 'rubenlozano', 0, 0, 81, 144, 0, 0, 0, '2021-07-26T13:01:36Z', '2023-01-10T15:16:37Z', 'https://avatars.githubusercontent.com/u/632?v=4', 'https://api.github.com/users/rubenlozano', 'https://github.com/rubenlozano', 'https://api.github.com/users/rubenlozano/followers', 'https://api.github.com/users/rubenlozano/following', 'https://api.github.com/users/rubenlozano/gists', 'https://api.github.com/users/rubenlozano/starred', 'https://api.github.com/users/rubenlozano/repos', 'https://api.github.com/users/rubenlozano/events', 'https://api.github.com/users/rubenlozano/received_events', 0); +INSERT INTO `developer` VALUES (633, 'doxavore', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Mayer', '@rwx-research', 'https://doug.mayer.me', 'Chicago, Illinois', 'me@doxavore.com', NULL, NULL, NULL, 0, 0, 26, 9, 0, 0, 0, '2008-02-22T17:44:23Z', '2024-10-30T20:36:09Z', 'https://avatars.githubusercontent.com/u/633?v=4', 'https://api.github.com/users/doxavore', 'https://github.com/doxavore', 'https://api.github.com/users/doxavore/followers', 'https://api.github.com/users/doxavore/following', 'https://api.github.com/users/doxavore/gists', 'https://api.github.com/users/doxavore/starred', 'https://api.github.com/users/doxavore/repos', 'https://api.github.com/users/doxavore/events', 'https://api.github.com/users/doxavore/received_events', 0); +INSERT INTO `developer` VALUES (634, 'Bjwebb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bee Webb', '@OpenDataServices', 'http://bjwebb.co.uk/', 'Cambridge, UK', NULL, NULL, NULL, 'bjwebb67', 0, 0, 31, 22, 0, 0, 0, '2008-02-22T17:46:43Z', '2024-10-15T20:05:29Z', 'https://avatars.githubusercontent.com/u/634?v=4', 'https://api.github.com/users/Bjwebb', 'https://github.com/Bjwebb', 'https://api.github.com/users/Bjwebb/followers', 'https://api.github.com/users/Bjwebb/following', 'https://api.github.com/users/Bjwebb/gists', 'https://api.github.com/users/Bjwebb/starred', 'https://api.github.com/users/Bjwebb/repos', 'https://api.github.com/users/Bjwebb/events', 'https://api.github.com/users/Bjwebb/received_events', 0); +INSERT INTO `developer` VALUES (635, 'daniel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Eriksson', 'Overstellar', 'https://www.overstellar.se/', 'Enköping', NULL, 'true', 'Co-founder & Developer at Overstellar', 'danieleriksson', 0, 0, 60, 1, 0, 0, 0, '2008-02-22T17:46:59Z', '2024-04-15T09:38:11Z', 'https://avatars.githubusercontent.com/u/635?v=4', 'https://api.github.com/users/daniel', 'https://github.com/daniel', 'https://api.github.com/users/daniel/followers', 'https://api.github.com/users/daniel/following', 'https://api.github.com/users/daniel/gists', 'https://api.github.com/users/daniel/starred', 'https://api.github.com/users/daniel/repos', 'https://api.github.com/users/daniel/events', 'https://api.github.com/users/daniel/received_events', 0); +INSERT INTO `developer` VALUES (636, 'qerub', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christoffer Sawicki', 'defsoftware', 'http://qerub.github.io/', 'Sweden', 'christoffer.sawicki@gmail.com', 'true', NULL, 'qerub', 0, 0, 100, 287, 0, 0, 0, '2008-02-22T17:48:10Z', '2024-10-22T11:18:21Z', 'https://avatars.githubusercontent.com/u/636?v=4', 'https://api.github.com/users/qerub', 'https://github.com/qerub', 'https://api.github.com/users/qerub/followers', 'https://api.github.com/users/qerub/following', 'https://api.github.com/users/qerub/gists', 'https://api.github.com/users/qerub/starred', 'https://api.github.com/users/qerub/repos', 'https://api.github.com/users/qerub/events', 'https://api.github.com/users/qerub/received_events', 0); +INSERT INTO `developer` VALUES (637, 'leavengood', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Leavengood', NULL, '', 'Boynton Beach, FL', 'leavengood@gmail.com', NULL, NULL, NULL, 0, 0, 28, 0, 0, 0, 0, '2008-02-22T17:52:48Z', '2023-08-23T23:05:43Z', 'https://avatars.githubusercontent.com/u/637?v=4', 'https://api.github.com/users/leavengood', 'https://github.com/leavengood', 'https://api.github.com/users/leavengood/followers', 'https://api.github.com/users/leavengood/following', 'https://api.github.com/users/leavengood/gists', 'https://api.github.com/users/leavengood/starred', 'https://api.github.com/users/leavengood/repos', 'https://api.github.com/users/leavengood/events', 'https://api.github.com/users/leavengood/received_events', 0); +INSERT INTO `developer` VALUES (638, 'pjjw', 'C', 0, 0, 0, 0, 0, 0, 0, 'peter woodman', 'pork industries, llc.', 'http://corndogoncorndog.com', 'new york, ny', 'peter@nightmeat.club', NULL, NULL, 'clango', 0, 0, 37, 33, 0, 0, 0, '2008-02-22T18:00:12Z', '2024-11-03T19:28:58Z', 'https://avatars.githubusercontent.com/u/638?v=4', 'https://api.github.com/users/pjjw', 'https://github.com/pjjw', 'https://api.github.com/users/pjjw/followers', 'https://api.github.com/users/pjjw/following', 'https://api.github.com/users/pjjw/gists', 'https://api.github.com/users/pjjw/starred', 'https://api.github.com/users/pjjw/repos', 'https://api.github.com/users/pjjw/events', 'https://api.github.com/users/pjjw/received_events', 0); +INSERT INTO `developer` VALUES (639, 'barrym', 'C', 0, 0, 0, 0, 0, 0, 0, 'Barry Mitchelson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 20, 2, 0, 0, 0, '2008-02-22T18:02:57Z', '2020-09-22T09:32:19Z', 'https://avatars.githubusercontent.com/u/639?v=4', 'https://api.github.com/users/barrym', 'https://github.com/barrym', 'https://api.github.com/users/barrym/followers', 'https://api.github.com/users/barrym/following', 'https://api.github.com/users/barrym/gists', 'https://api.github.com/users/barrym/starred', 'https://api.github.com/users/barrym/repos', 'https://api.github.com/users/barrym/events', 'https://api.github.com/users/barrym/received_events', 0); +INSERT INTO `developer` VALUES (640, 'ph', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pier-Hugues Pellerin', NULL, 'http://stove.io', 'Montreal', 'ph@heykimo.com', 'true', NULL, NULL, 0, 0, 163, 144, 0, 0, 0, '2008-02-22T18:07:11Z', '2024-08-30T16:47:57Z', 'https://avatars.githubusercontent.com/u/640?v=4', 'https://api.github.com/users/ph', 'https://github.com/ph', 'https://api.github.com/users/ph/followers', 'https://api.github.com/users/ph/following', 'https://api.github.com/users/ph/gists', 'https://api.github.com/users/ph/starred', 'https://api.github.com/users/ph/repos', 'https://api.github.com/users/ph/events', 'https://api.github.com/users/ph/received_events', 0); +INSERT INTO `developer` VALUES (641, 'pbx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Bissex', 'http://dpaste.com/', 'http://paulbissex.com/', 'Greenfield MA USA', 'paul@bissex.net', NULL, 'Software Engineer of business-critical web applications. This is my personal account.', NULL, 0, 0, 70, 38, 0, 0, 0, '2008-02-22T18:27:33Z', '2024-09-20T15:25:24Z', 'https://avatars.githubusercontent.com/u/641?v=4', 'https://api.github.com/users/pbx', 'https://github.com/pbx', 'https://api.github.com/users/pbx/followers', 'https://api.github.com/users/pbx/following', 'https://api.github.com/users/pbx/gists', 'https://api.github.com/users/pbx/starred', 'https://api.github.com/users/pbx/repos', 'https://api.github.com/users/pbx/events', 'https://api.github.com/users/pbx/received_events', 0); +INSERT INTO `developer` VALUES (642, 'fspeirs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fraser Speirs', NULL, 'http://speirs.org', 'Greenock, Scotland', 'fraser@speirs.org', NULL, NULL, NULL, 0, 0, 137, 11, 0, 0, 0, '2008-02-22T18:42:52Z', '2024-02-26T10:27:23Z', 'https://avatars.githubusercontent.com/u/642?v=4', 'https://api.github.com/users/fspeirs', 'https://github.com/fspeirs', 'https://api.github.com/users/fspeirs/followers', 'https://api.github.com/users/fspeirs/following', 'https://api.github.com/users/fspeirs/gists', 'https://api.github.com/users/fspeirs/starred', 'https://api.github.com/users/fspeirs/repos', 'https://api.github.com/users/fspeirs/events', 'https://api.github.com/users/fspeirs/received_events', 0); +INSERT INTO `developer` VALUES (643, 'fernandoallen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fernando Allen', 'Cuia', '', 'Goiânia / Brazil', NULL, NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-02-22T19:03:16Z', '2024-11-03T19:10:30Z', 'https://avatars.githubusercontent.com/u/643?v=4', 'https://api.github.com/users/fernandoallen', 'https://github.com/fernandoallen', 'https://api.github.com/users/fernandoallen/followers', 'https://api.github.com/users/fernandoallen/following', 'https://api.github.com/users/fernandoallen/gists', 'https://api.github.com/users/fernandoallen/starred', 'https://api.github.com/users/fernandoallen/repos', 'https://api.github.com/users/fernandoallen/events', 'https://api.github.com/users/fernandoallen/received_events', 0); +INSERT INTO `developer` VALUES (644, 'davidsmalley', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Smalley', 'Litmus', 'http://litmus.com', 'Harrogate, UK', 'david@litmus.com', NULL, NULL, NULL, 0, 0, 35, 6, 0, 0, 0, '2008-02-22T19:12:13Z', '2024-09-11T11:23:03Z', 'https://avatars.githubusercontent.com/u/644?v=4', 'https://api.github.com/users/davidsmalley', 'https://github.com/davidsmalley', 'https://api.github.com/users/davidsmalley/followers', 'https://api.github.com/users/davidsmalley/following', 'https://api.github.com/users/davidsmalley/gists', 'https://api.github.com/users/davidsmalley/starred', 'https://api.github.com/users/davidsmalley/repos', 'https://api.github.com/users/davidsmalley/events', 'https://api.github.com/users/davidsmalley/received_events', 0); +INSERT INTO `developer` VALUES (645, 'njonsson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nils Jonsson', '@amzn', 'nilsjonsson.com', 'Houston', 'github.com@nilsjonsson.com', NULL, '🇺🇦 🇵🇸 ✡️ • #BlackLivesMatter • software builder • stranger in a strange land', NULL, 0, 0, 75, 131, 0, 0, 0, '2008-02-22T19:50:24Z', '2024-10-20T11:21:00Z', 'https://avatars.githubusercontent.com/u/645?v=4', 'https://api.github.com/users/njonsson', 'https://github.com/njonsson', 'https://api.github.com/users/njonsson/followers', 'https://api.github.com/users/njonsson/following', 'https://api.github.com/users/njonsson/gists', 'https://api.github.com/users/njonsson/starred', 'https://api.github.com/users/njonsson/repos', 'https://api.github.com/users/njonsson/events', 'https://api.github.com/users/njonsson/received_events', 0); +INSERT INTO `developer` VALUES (646, 'ecin', 'C', 0, 0, 0, 0, 0, 0, 0, 'ecin', '@copypastel ', 'http://copypastel.com', '未知', NULL, NULL, 'Exploring the world, one conversation at a time.', NULL, 0, 0, 40, 10, 0, 0, 0, '2008-02-22T19:53:45Z', '2024-02-14T02:46:38Z', 'https://avatars.githubusercontent.com/u/646?v=4', 'https://api.github.com/users/ecin', 'https://github.com/ecin', 'https://api.github.com/users/ecin/followers', 'https://api.github.com/users/ecin/following', 'https://api.github.com/users/ecin/gists', 'https://api.github.com/users/ecin/starred', 'https://api.github.com/users/ecin/repos', 'https://api.github.com/users/ecin/events', 'https://api.github.com/users/ecin/received_events', 0); +INSERT INTO `developer` VALUES (647, 'progrium', 'B+', 60.41738301236376, 0, 0, 0, 0, 0, 0, 'Jeff Lindsay', 'progrium technology company', 'progrium.xyz', 'Austin, TX', 'progrium@gmail.com', NULL, NULL, 'progrium', 0, 0, 3808, 93, 0, 0, 0, '2008-02-22T20:00:53Z', '2024-10-21T02:11:47Z', 'https://avatars.githubusercontent.com/u/647?v=4', 'https://api.github.com/users/progrium', 'https://github.com/progrium', 'https://api.github.com/users/progrium/followers', 'https://api.github.com/users/progrium/following', 'https://api.github.com/users/progrium/gists', 'https://api.github.com/users/progrium/starred', 'https://api.github.com/users/progrium/repos', 'https://api.github.com/users/progrium/events', 'https://api.github.com/users/progrium/received_events', 0); +INSERT INTO `developer` VALUES (648, 'jhsu', 'C', 1.4517494433812166, 0, 0, 0, 644, 14, 0, 'Joe Hsu', 'MineHub', '', 'New York, NY', 'jhsu.x1@gmail.com', 'true', NULL, 'jhsu', 0, 0, 102, 80, 0, 0, 0, '2008-02-22T20:03:00Z', '2024-09-22T20:21:49Z', 'https://avatars.githubusercontent.com/u/648?v=4', 'https://api.github.com/users/jhsu', 'https://github.com/jhsu', 'https://api.github.com/users/jhsu/followers', 'https://api.github.com/users/jhsu/following', 'https://api.github.com/users/jhsu/gists', 'https://api.github.com/users/jhsu/starred', 'https://api.github.com/users/jhsu/repos', 'https://api.github.com/users/jhsu/events', 'https://api.github.com/users/jhsu/received_events', 0); +INSERT INTO `developer` VALUES (649, 'hipertracker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jaroslaw Zabiello', NULL, 'https://www.linkedin.com/in/jzabiello/', 'Éire', 'hipertracker@gmail.com', 'true', '🚀 Senior Fullstack Developer | Python, Django, DRF, Vue, Quasar, Vuetify, + more | Driving innovation in web tech.', 'hipertracker', 0, 0, 58, 6, 0, 0, 0, '2008-02-22T20:13:05Z', '2024-08-27T19:54:44Z', 'https://avatars.githubusercontent.com/u/649?v=4', 'https://api.github.com/users/hipertracker', 'https://github.com/hipertracker', 'https://api.github.com/users/hipertracker/followers', 'https://api.github.com/users/hipertracker/following', 'https://api.github.com/users/hipertracker/gists', 'https://api.github.com/users/hipertracker/starred', 'https://api.github.com/users/hipertracker/repos', 'https://api.github.com/users/hipertracker/events', 'https://api.github.com/users/hipertracker/received_events', 0); +INSERT INTO `developer` VALUES (650, 'mindy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mindy', NULL, '', 'Brooklyn, NY', NULL, NULL, NULL, NULL, 0, 0, 23, 5, 0, 0, 0, '2008-02-22T20:26:29Z', '2024-05-09T02:08:15Z', 'https://avatars.githubusercontent.com/u/650?v=4', 'https://api.github.com/users/mindy', 'https://github.com/mindy', 'https://api.github.com/users/mindy/followers', 'https://api.github.com/users/mindy/following', 'https://api.github.com/users/mindy/gists', 'https://api.github.com/users/mindy/starred', 'https://api.github.com/users/mindy/repos', 'https://api.github.com/users/mindy/events', 'https://api.github.com/users/mindy/received_events', 0); +INSERT INTO `developer` VALUES (651, 'plainprogrammer', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Thompson', 'James Thompson Consulting LLC', 'https://james.thomps.onl', 'Florida, USA', 'james@thomps.onl', NULL, 'Hands-on Software Architect', 'plainprogrammer', 0, 0, 57, 29, 0, 0, 0, '2008-02-22T20:34:59Z', '2024-09-09T10:41:07Z', 'https://avatars.githubusercontent.com/u/651?v=4', 'https://api.github.com/users/plainprogrammer', 'https://github.com/plainprogrammer', 'https://api.github.com/users/plainprogrammer/followers', 'https://api.github.com/users/plainprogrammer/following', 'https://api.github.com/users/plainprogrammer/gists', 'https://api.github.com/users/plainprogrammer/starred', 'https://api.github.com/users/plainprogrammer/repos', 'https://api.github.com/users/plainprogrammer/events', 'https://api.github.com/users/plainprogrammer/received_events', 0); +INSERT INTO `developer` VALUES (652, 'jasonf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Fiset', NULL, 'http://www.jmftech.com/blog', 'Vancouver, BC', 'jafiset@gmail.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-22T20:41:53Z', '2024-05-30T18:05:04Z', 'https://avatars.githubusercontent.com/u/652?v=4', 'https://api.github.com/users/jasonf', 'https://github.com/jasonf', 'https://api.github.com/users/jasonf/followers', 'https://api.github.com/users/jasonf/following', 'https://api.github.com/users/jasonf/gists', 'https://api.github.com/users/jasonf/starred', 'https://api.github.com/users/jasonf/repos', 'https://api.github.com/users/jasonf/events', 'https://api.github.com/users/jasonf/received_events', 0); +INSERT INTO `developer` VALUES (653, 'robmitch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Mitchell', 'Fitness Passport', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2008-02-22T20:43:57Z', '2024-10-22T05:38:03Z', 'https://avatars.githubusercontent.com/u/653?v=4', 'https://api.github.com/users/robmitch', 'https://github.com/robmitch', 'https://api.github.com/users/robmitch/followers', 'https://api.github.com/users/robmitch/following', 'https://api.github.com/users/robmitch/gists', 'https://api.github.com/users/robmitch/starred', 'https://api.github.com/users/robmitch/repos', 'https://api.github.com/users/robmitch/events', 'https://api.github.com/users/robmitch/received_events', 0); +INSERT INTO `developer` VALUES (654, 'mlopes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marco Lopes', '@itv', 'http://marco-lopes.com', '未知', NULL, 'true', NULL, NULL, 0, 0, 28, 6, 0, 0, 0, '2008-02-22T21:13:19Z', '2024-10-30T21:25:31Z', 'https://avatars.githubusercontent.com/u/654?v=4', 'https://api.github.com/users/mlopes', 'https://github.com/mlopes', 'https://api.github.com/users/mlopes/followers', 'https://api.github.com/users/mlopes/following', 'https://api.github.com/users/mlopes/gists', 'https://api.github.com/users/mlopes/starred', 'https://api.github.com/users/mlopes/repos', 'https://api.github.com/users/mlopes/events', 'https://api.github.com/users/mlopes/received_events', 0); +INSERT INTO `developer` VALUES (655, 'sxross', 'C', 0, 0, 0, 0, 24, 0, 0, 's.ross', 'Calico Web Development', 'http://calicowebdev.com/archives', 'Somewhere West Coast USA', NULL, 'true', NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-22T21:46:46Z', '2024-05-28T17:12:29Z', 'https://avatars.githubusercontent.com/u/655?v=4', 'https://api.github.com/users/sxross', 'https://github.com/sxross', 'https://api.github.com/users/sxross/followers', 'https://api.github.com/users/sxross/following', 'https://api.github.com/users/sxross/gists', 'https://api.github.com/users/sxross/starred', 'https://api.github.com/users/sxross/repos', 'https://api.github.com/users/sxross/events', 'https://api.github.com/users/sxross/received_events', 0); +INSERT INTO `developer` VALUES (656, 'tomislav', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tomislav Filipcic', NULL, '7sols.com', 'Croatia', 'tf@7sols.com', 'true', NULL, NULL, 0, 0, 45, 10, 0, 0, 0, '2008-02-22T22:04:33Z', '2024-06-28T07:05:08Z', 'https://avatars.githubusercontent.com/u/656?v=4', 'https://api.github.com/users/tomislav', 'https://github.com/tomislav', 'https://api.github.com/users/tomislav/followers', 'https://api.github.com/users/tomislav/following', 'https://api.github.com/users/tomislav/gists', 'https://api.github.com/users/tomislav/starred', 'https://api.github.com/users/tomislav/repos', 'https://api.github.com/users/tomislav/events', 'https://api.github.com/users/tomislav/received_events', 0); +INSERT INTO `developer` VALUES (657, 'brian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Bailey', '37signals', 'bb.place', 'Northampton, MA', 'bbailey@hey.com', NULL, 'Head of Product Strategy at 37signals, the makers of Basecamp and HEY.', 'bb', 0, 0, 23, 3, 0, 0, 0, '2008-02-22T22:25:11Z', '2024-10-31T18:08:01Z', 'https://avatars.githubusercontent.com/u/657?v=4', 'https://api.github.com/users/brian', 'https://github.com/brian', 'https://api.github.com/users/brian/followers', 'https://api.github.com/users/brian/following', 'https://api.github.com/users/brian/gists', 'https://api.github.com/users/brian/starred', 'https://api.github.com/users/brian/repos', 'https://api.github.com/users/brian/events', 'https://api.github.com/users/brian/received_events', 0); +INSERT INTO `developer` VALUES (658, 'stephencelis', 'A+', 94.25141965248947, 0, 0, 0, 0, 0, 0, 'Stephen Celis', '@pointfreeco', 'http://stephencelis.com', 'California', 'me@stephencelis.com', NULL, 'Working on @pointfreeco: https://www.pointfree.co/', NULL, 0, 0, 5781, 36, 0, 0, 0, '2008-02-22T22:26:04Z', '2024-10-22T18:21:12Z', 'https://avatars.githubusercontent.com/u/658?v=4', 'https://api.github.com/users/stephencelis', 'https://github.com/stephencelis', 'https://api.github.com/users/stephencelis/followers', 'https://api.github.com/users/stephencelis/following', 'https://api.github.com/users/stephencelis/gists', 'https://api.github.com/users/stephencelis/starred', 'https://api.github.com/users/stephencelis/repos', 'https://api.github.com/users/stephencelis/events', 'https://api.github.com/users/stephencelis/received_events', 0); +INSERT INTO `developer` VALUES (659, 'gebi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Gebetsroither', '@mgit-at ', '', 'Graz', 'mgebetsroither@mgit.at', NULL, NULL, NULL, 0, 0, 71, 5, 0, 0, 0, '2008-02-22T22:40:19Z', '2024-06-30T18:35:25Z', 'https://avatars.githubusercontent.com/u/659?v=4', 'https://api.github.com/users/gebi', 'https://github.com/gebi', 'https://api.github.com/users/gebi/followers', 'https://api.github.com/users/gebi/following', 'https://api.github.com/users/gebi/gists', 'https://api.github.com/users/gebi/starred', 'https://api.github.com/users/gebi/repos', 'https://api.github.com/users/gebi/events', 'https://api.github.com/users/gebi/received_events', 0); +INSERT INTO `developer` VALUES (660, 'intinig', 'C', 0, 0, 0, 0, 0, 0, 0, 'Giovanni Intini', 'Vela Games', 'https://vela.games', 'Ireland', 'intinig@gmail.com', NULL, 'Director of Player Platform @vela-games \r\nformerly Head of Product, Europe @riotgames\r\nformerly CTO @mikamai', 'intinig', 0, 0, 41, 4, 0, 0, 0, '2008-02-22T23:20:45Z', '2024-07-03T21:14:22Z', 'https://avatars.githubusercontent.com/u/660?v=4', 'https://api.github.com/users/intinig', 'https://github.com/intinig', 'https://api.github.com/users/intinig/followers', 'https://api.github.com/users/intinig/following', 'https://api.github.com/users/intinig/gists', 'https://api.github.com/users/intinig/starred', 'https://api.github.com/users/intinig/repos', 'https://api.github.com/users/intinig/events', 'https://api.github.com/users/intinig/received_events', 0); +INSERT INTO `developer` VALUES (661, 'benr75', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Reubenstein', 'XCR Ventures, LLC.', 'https://benr.eu', 'Denver, CO', 'benr@x-cr.com', NULL, NULL, NULL, 0, 0, 36, 14, 0, 0, 0, '2008-02-23T00:17:28Z', '2024-10-20T16:21:28Z', 'https://avatars.githubusercontent.com/u/661?v=4', 'https://api.github.com/users/benr75', 'https://github.com/benr75', 'https://api.github.com/users/benr75/followers', 'https://api.github.com/users/benr75/following', 'https://api.github.com/users/benr75/gists', 'https://api.github.com/users/benr75/starred', 'https://api.github.com/users/benr75/repos', 'https://api.github.com/users/benr75/events', 'https://api.github.com/users/benr75/received_events', 0); +INSERT INTO `developer` VALUES (662, 'cuiguy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-23T00:21:34Z', '2016-07-06T17:41:27Z', 'https://avatars.githubusercontent.com/u/662?v=4', 'https://api.github.com/users/cuiguy', 'https://github.com/cuiguy', 'https://api.github.com/users/cuiguy/followers', 'https://api.github.com/users/cuiguy/following', 'https://api.github.com/users/cuiguy/gists', 'https://api.github.com/users/cuiguy/starred', 'https://api.github.com/users/cuiguy/repos', 'https://api.github.com/users/cuiguy/events', 'https://api.github.com/users/cuiguy/received_events', 0); +INSERT INTO `developer` VALUES (663, 'jimmyjazz', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Ross', 'Envato', '', 'Melbourne, Australia', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-02-23T01:32:02Z', '2020-01-28T09:35:42Z', 'https://avatars.githubusercontent.com/u/663?v=4', 'https://api.github.com/users/jimmyjazz', 'https://github.com/jimmyjazz', 'https://api.github.com/users/jimmyjazz/followers', 'https://api.github.com/users/jimmyjazz/following', 'https://api.github.com/users/jimmyjazz/gists', 'https://api.github.com/users/jimmyjazz/starred', 'https://api.github.com/users/jimmyjazz/repos', 'https://api.github.com/users/jimmyjazz/events', 'https://api.github.com/users/jimmyjazz/received_events', 0); +INSERT INTO `developer` VALUES (664, 'blaix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Blake', NULL, 'https://www.blaix.com/', 'Deland, FL', 'justin@blaix.com', NULL, 'The bird in my avatar is a chicken.', 'blaix', 0, 0, 87, 31, 0, 0, 0, '2008-02-23T04:14:37Z', '2024-10-21T18:43:52Z', 'https://avatars.githubusercontent.com/u/664?v=4', 'https://api.github.com/users/blaix', 'https://github.com/blaix', 'https://api.github.com/users/blaix/followers', 'https://api.github.com/users/blaix/following', 'https://api.github.com/users/blaix/gists', 'https://api.github.com/users/blaix/starred', 'https://api.github.com/users/blaix/repos', 'https://api.github.com/users/blaix/events', 'https://api.github.com/users/blaix/received_events', 0); +INSERT INTO `developer` VALUES (665, 'zachinglis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zach Inglis', 'Superhero Studios', 'https://superhero-studios.com', 'United Kingdom', 'zach@superhero-studios.com', 'true', 'I like turtles.', 'zachinglis', 0, 0, 153, 81, 0, 0, 0, '2008-02-23T04:36:34Z', '2024-08-27T12:07:56Z', 'https://avatars.githubusercontent.com/u/665?v=4', 'https://api.github.com/users/zachinglis', 'https://github.com/zachinglis', 'https://api.github.com/users/zachinglis/followers', 'https://api.github.com/users/zachinglis/following', 'https://api.github.com/users/zachinglis/gists', 'https://api.github.com/users/zachinglis/starred', 'https://api.github.com/users/zachinglis/repos', 'https://api.github.com/users/zachinglis/events', 'https://api.github.com/users/zachinglis/received_events', 0); +INSERT INTO `developer` VALUES (666, 'kstewart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Stewart', NULL, 'http://kstewart.me', 'Seattle, WA', 'kevin@kstewart.me', NULL, '🦂 I solve problems', NULL, 0, 0, 40, 0, 0, 0, 0, '2008-02-23T04:55:37Z', '2023-12-19T21:27:18Z', 'https://avatars.githubusercontent.com/u/666?v=4', 'https://api.github.com/users/kstewart', 'https://github.com/kstewart', 'https://api.github.com/users/kstewart/followers', 'https://api.github.com/users/kstewart/following', 'https://api.github.com/users/kstewart/gists', 'https://api.github.com/users/kstewart/starred', 'https://api.github.com/users/kstewart/repos', 'https://api.github.com/users/kstewart/events', 'https://api.github.com/users/kstewart/received_events', 0); +INSERT INTO `developer` VALUES (667, 'vidyanand', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-23T05:13:32Z', '2024-08-16T05:56:15Z', 'https://avatars.githubusercontent.com/u/667?v=4', 'https://api.github.com/users/vidyanand', 'https://github.com/vidyanand', 'https://api.github.com/users/vidyanand/followers', 'https://api.github.com/users/vidyanand/following', 'https://api.github.com/users/vidyanand/gists', 'https://api.github.com/users/vidyanand/starred', 'https://api.github.com/users/vidyanand/repos', 'https://api.github.com/users/vidyanand/events', 'https://api.github.com/users/vidyanand/received_events', 0); +INSERT INTO `developer` VALUES (668, 'cclow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Low Chin Chau', NULL, '', 'Singapore', 'cc@lows.sg', NULL, NULL, NULL, 0, 0, 30, 0, 0, 0, 0, '2008-02-23T05:43:09Z', '2023-12-18T04:52:02Z', 'https://avatars.githubusercontent.com/u/668?v=4', 'https://api.github.com/users/cclow', 'https://github.com/cclow', 'https://api.github.com/users/cclow/followers', 'https://api.github.com/users/cclow/following', 'https://api.github.com/users/cclow/gists', 'https://api.github.com/users/cclow/starred', 'https://api.github.com/users/cclow/repos', 'https://api.github.com/users/cclow/events', 'https://api.github.com/users/cclow/received_events', 0); +INSERT INTO `developer` VALUES (669, 'seven1m', 'C', 7.874307358362091, 0, 0, 0, 0, 0, 0, 'Tim Morgan', NULL, 'https://timmorgan.dev', 'Oklahoma, USA', 'tim@timmorgan.org', NULL, 'I ❤️ Ruby. I’m also making my own Ruby called Natalie. You know, for fun!', 'timmrgn', 0, 0, 744, 326, 0, 0, 0, '2008-02-23T06:10:43Z', '2024-10-25T21:57:47Z', 'https://avatars.githubusercontent.com/u/669?v=4', 'https://api.github.com/users/seven1m', 'https://github.com/seven1m', 'https://api.github.com/users/seven1m/followers', 'https://api.github.com/users/seven1m/following', 'https://api.github.com/users/seven1m/gists', 'https://api.github.com/users/seven1m/starred', 'https://api.github.com/users/seven1m/repos', 'https://api.github.com/users/seven1m/events', 'https://api.github.com/users/seven1m/received_events', 0); +INSERT INTO `developer` VALUES (670, 'latompa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Olausson', NULL, '', 'United States', NULL, NULL, NULL, NULL, 0, 0, 13, 5, 0, 0, 0, '2008-02-23T07:18:58Z', '2024-10-17T04:23:43Z', 'https://avatars.githubusercontent.com/u/670?v=4', 'https://api.github.com/users/latompa', 'https://github.com/latompa', 'https://api.github.com/users/latompa/followers', 'https://api.github.com/users/latompa/following', 'https://api.github.com/users/latompa/gists', 'https://api.github.com/users/latompa/starred', 'https://api.github.com/users/latompa/repos', 'https://api.github.com/users/latompa/events', 'https://api.github.com/users/latompa/received_events', 0); +INSERT INTO `developer` VALUES (671, 'kouky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Koukoullis', NULL, 'http://kouky.org', 'Melbourne, Australia', 'mike@kouky.org', NULL, 'Dad & Partner. Software Engineer taking a break, ex @square + @cashapp\r\n, ex @Canva. Angel investor @buildkite.', 'kouky', 0, 0, 105, 32, 0, 0, 0, '2008-02-23T09:03:22Z', '2023-11-06T11:35:26Z', 'https://avatars.githubusercontent.com/u/671?v=4', 'https://api.github.com/users/kouky', 'https://github.com/kouky', 'https://api.github.com/users/kouky/followers', 'https://api.github.com/users/kouky/following', 'https://api.github.com/users/kouky/gists', 'https://api.github.com/users/kouky/starred', 'https://api.github.com/users/kouky/repos', 'https://api.github.com/users/kouky/events', 'https://api.github.com/users/kouky/received_events', 0); +INSERT INTO `developer` VALUES (672, 'incandescant', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua G Lock', NULL, 'https://www.joshual.me.uk', 'UK', NULL, NULL, NULL, NULL, 0, 0, 20, 31, 0, 0, 0, '2008-02-23T12:10:08Z', '2020-08-18T10:49:01Z', 'https://avatars.githubusercontent.com/u/672?v=4', 'https://api.github.com/users/incandescant', 'https://github.com/incandescant', 'https://api.github.com/users/incandescant/followers', 'https://api.github.com/users/incandescant/following', 'https://api.github.com/users/incandescant/gists', 'https://api.github.com/users/incandescant/starred', 'https://api.github.com/users/incandescant/repos', 'https://api.github.com/users/incandescant/events', 'https://api.github.com/users/incandescant/received_events', 0); +INSERT INTO `developer` VALUES (673, 'redinger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Redinger', 'Cognitect, Inc', 'http://cognitect.com', 'Fuquay-Varina, NC', 'redinger@gmail.com', 'true', NULL, NULL, 0, 0, 103, 8, 0, 0, 0, '2008-02-23T17:06:05Z', '2024-09-18T18:16:08Z', 'https://avatars.githubusercontent.com/u/673?v=4', 'https://api.github.com/users/redinger', 'https://github.com/redinger', 'https://api.github.com/users/redinger/followers', 'https://api.github.com/users/redinger/following', 'https://api.github.com/users/redinger/gists', 'https://api.github.com/users/redinger/starred', 'https://api.github.com/users/redinger/repos', 'https://api.github.com/users/redinger/events', 'https://api.github.com/users/redinger/received_events', 0); +INSERT INTO `developer` VALUES (674, 'osteele', 'C', 4.273117447350227, 0, 0, 0, 0, 0, 0, 'Oliver Steele', NULL, 'https://code.osteele.com/', 'Kyoto, Japan', 'steele@osteele.com', NULL, 'Previously @ Nest, Apple, AOL, NYU Shanghai, startups. Older projects: Apple Dylan, Quickdraw GX, Laszlo Presentation Server, PyWordNet', NULL, 0, 0, 534, 9, 0, 0, 0, '2008-02-23T17:08:42Z', '2024-11-04T03:40:30Z', 'https://avatars.githubusercontent.com/u/674?v=4', 'https://api.github.com/users/osteele', 'https://github.com/osteele', 'https://api.github.com/users/osteele/followers', 'https://api.github.com/users/osteele/following', 'https://api.github.com/users/osteele/gists', 'https://api.github.com/users/osteele/starred', 'https://api.github.com/users/osteele/repos', 'https://api.github.com/users/osteele/events', 'https://api.github.com/users/osteele/received_events', 0); +INSERT INTO `developer` VALUES (675, 'bikerduweb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Olivier', NULL, '', 'France', NULL, NULL, 'Programmeur du dimanche, biker le reste de la semaine', NULL, 0, 0, 26, 0, 0, 0, 0, '2008-02-23T17:09:26Z', '2024-05-25T22:32:31Z', 'https://avatars.githubusercontent.com/u/675?v=4', 'https://api.github.com/users/bikerduweb', 'https://github.com/bikerduweb', 'https://api.github.com/users/bikerduweb/followers', 'https://api.github.com/users/bikerduweb/following', 'https://api.github.com/users/bikerduweb/gists', 'https://api.github.com/users/bikerduweb/starred', 'https://api.github.com/users/bikerduweb/repos', 'https://api.github.com/users/bikerduweb/events', 'https://api.github.com/users/bikerduweb/received_events', 0); +INSERT INTO `developer` VALUES (676, 'ryward', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-23T17:12:47Z', '2022-04-03T05:11:02Z', 'https://avatars.githubusercontent.com/u/676?v=4', 'https://api.github.com/users/ryward', 'https://github.com/ryward', 'https://api.github.com/users/ryward/followers', 'https://api.github.com/users/ryward/following', 'https://api.github.com/users/ryward/gists', 'https://api.github.com/users/ryward/starred', 'https://api.github.com/users/ryward/repos', 'https://api.github.com/users/ryward/events', 'https://api.github.com/users/ryward/received_events', 0); +INSERT INTO `developer` VALUES (677, 'james2m', 'C', 0, 0, 0, 0, 0, 0, 0, 'James McCarthy', NULL, '', 'Bangkok, Thailand', NULL, 'true', NULL, NULL, 0, 0, 48, 46, 0, 0, 0, '2008-02-23T17:15:03Z', '2024-10-01T05:06:52Z', 'https://avatars.githubusercontent.com/u/677?v=4', 'https://api.github.com/users/james2m', 'https://github.com/james2m', 'https://api.github.com/users/james2m/followers', 'https://api.github.com/users/james2m/following', 'https://api.github.com/users/james2m/gists', 'https://api.github.com/users/james2m/starred', 'https://api.github.com/users/james2m/repos', 'https://api.github.com/users/james2m/events', 'https://api.github.com/users/james2m/received_events', 0); +INSERT INTO `developer` VALUES (678, 'jlindley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Lindley', '@newrelic', 'http://jimlindley.com', 'Portland, OR, USA', 'mail@jim.io', 'true', 'Software Engineering Manager', NULL, 0, 0, 47, 2, 0, 0, 0, '2008-02-23T17:18:31Z', '2024-09-16T19:45:46Z', 'https://avatars.githubusercontent.com/u/678?v=4', 'https://api.github.com/users/jlindley', 'https://github.com/jlindley', 'https://api.github.com/users/jlindley/followers', 'https://api.github.com/users/jlindley/following', 'https://api.github.com/users/jlindley/gists', 'https://api.github.com/users/jlindley/starred', 'https://api.github.com/users/jlindley/repos', 'https://api.github.com/users/jlindley/events', 'https://api.github.com/users/jlindley/received_events', 0); +INSERT INTO `developer` VALUES (679, 'dalsgaard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kim Dalsgaard', 'Kim Dalsgaard Consulting', 'kimdalsgaard.com', 'Malling, Denmark', 'kim@kimdalsgaard.com', NULL, 'Software developer', NULL, 0, 0, 19, 3, 0, 0, 0, '2008-02-23T17:22:03Z', '2024-09-30T06:24:53Z', 'https://avatars.githubusercontent.com/u/679?v=4', 'https://api.github.com/users/dalsgaard', 'https://github.com/dalsgaard', 'https://api.github.com/users/dalsgaard/followers', 'https://api.github.com/users/dalsgaard/following', 'https://api.github.com/users/dalsgaard/gists', 'https://api.github.com/users/dalsgaard/starred', 'https://api.github.com/users/dalsgaard/repos', 'https://api.github.com/users/dalsgaard/events', 'https://api.github.com/users/dalsgaard/received_events', 0); +INSERT INTO `developer` VALUES (680, 'grantr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Grant Rodgers', '@google ', '', 'Seattle, WA', 'grantr@gmail.com', NULL, NULL, NULL, 0, 0, 237, 2, 0, 0, 0, '2008-02-23T17:37:28Z', '2024-10-20T11:21:00Z', 'https://avatars.githubusercontent.com/u/680?v=4', 'https://api.github.com/users/grantr', 'https://github.com/grantr', 'https://api.github.com/users/grantr/followers', 'https://api.github.com/users/grantr/following', 'https://api.github.com/users/grantr/gists', 'https://api.github.com/users/grantr/starred', 'https://api.github.com/users/grantr/repos', 'https://api.github.com/users/grantr/events', 'https://api.github.com/users/grantr/received_events', 0); +INSERT INTO `developer` VALUES (681, 'jtmxx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-23T17:38:26Z', '2016-02-26T22:34:33Z', 'https://avatars.githubusercontent.com/u/681?v=4', 'https://api.github.com/users/jtmxx', 'https://github.com/jtmxx', 'https://api.github.com/users/jtmxx/followers', 'https://api.github.com/users/jtmxx/following', 'https://api.github.com/users/jtmxx/gists', 'https://api.github.com/users/jtmxx/starred', 'https://api.github.com/users/jtmxx/repos', 'https://api.github.com/users/jtmxx/events', 'https://api.github.com/users/jtmxx/received_events', 0); +INSERT INTO `developer` VALUES (682, 'digitalhobbit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mirko Froehlich', 'Code Me Up', 'http://www.digitalhobbit.com', 'Boulder, Colorado', 'mfroehlich@gmail.com', NULL, NULL, NULL, 0, 0, 30, 0, 0, 0, 0, '2008-02-23T17:48:10Z', '2024-10-22T05:41:40Z', 'https://avatars.githubusercontent.com/u/682?v=4', 'https://api.github.com/users/digitalhobbit', 'https://github.com/digitalhobbit', 'https://api.github.com/users/digitalhobbit/followers', 'https://api.github.com/users/digitalhobbit/following', 'https://api.github.com/users/digitalhobbit/gists', 'https://api.github.com/users/digitalhobbit/starred', 'https://api.github.com/users/digitalhobbit/repos', 'https://api.github.com/users/digitalhobbit/events', 'https://api.github.com/users/digitalhobbit/received_events', 0); +INSERT INTO `developer` VALUES (683, 'robmack', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Mack', NULL, '', 'Austin, TX', 'rob@robmack.com', NULL, NULL, NULL, 0, 0, 25, 6, 0, 0, 0, '2008-02-23T17:52:04Z', '2024-10-26T18:05:18Z', 'https://avatars.githubusercontent.com/u/683?v=4', 'https://api.github.com/users/robmack', 'https://github.com/robmack', 'https://api.github.com/users/robmack/followers', 'https://api.github.com/users/robmack/following', 'https://api.github.com/users/robmack/gists', 'https://api.github.com/users/robmack/starred', 'https://api.github.com/users/robmack/repos', 'https://api.github.com/users/robmack/events', 'https://api.github.com/users/robmack/received_events', 0); +INSERT INTO `developer` VALUES (684, 'russ', 'C', 0, 0, 0, 0, 0, 0, 0, 'Russ Smith', NULL, '', 'Las Vegas', 'russ@bashme.org', 'true', NULL, NULL, 0, 0, 57, 20, 0, 0, 0, '2008-02-23T17:53:36Z', '2024-10-30T13:28:29Z', 'https://avatars.githubusercontent.com/u/684?v=4', 'https://api.github.com/users/russ', 'https://github.com/russ', 'https://api.github.com/users/russ/followers', 'https://api.github.com/users/russ/following', 'https://api.github.com/users/russ/gists', 'https://api.github.com/users/russ/starred', 'https://api.github.com/users/russ/repos', 'https://api.github.com/users/russ/events', 'https://api.github.com/users/russ/received_events', 0); +INSERT INTO `developer` VALUES (685, 'alexagui', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Aguilar', 'EaglePeak Consulting', 'https://www.eaglepeakweb.com/', 'West Palm Beach, FL', 'alex@eaglepeakweb.com', NULL, 'Software Engineer (@craftcms @laravel @drupal)\r\n \r\nboard game geek, video game collector, ☕️ snob |\r\n\r\nManaging Partner at @EaglePeak', 'AlexAguilar18', 0, 0, 14, 29, 0, 0, 0, '2008-02-23T18:01:55Z', '2024-10-17T16:59:39Z', 'https://avatars.githubusercontent.com/u/685?v=4', 'https://api.github.com/users/alexagui', 'https://github.com/alexagui', 'https://api.github.com/users/alexagui/followers', 'https://api.github.com/users/alexagui/following', 'https://api.github.com/users/alexagui/gists', 'https://api.github.com/users/alexagui/starred', 'https://api.github.com/users/alexagui/repos', 'https://api.github.com/users/alexagui/events', 'https://api.github.com/users/alexagui/received_events', 0); +INSERT INTO `developer` VALUES (686, 'lsegal', 'C', 3.570027988533627, 0, 0, 0, 0, 0, 0, 'Loren Segal', 'CTO @ @makelayers ', 'http://makelayers.com', 'Los Angeles, CA', 'lsegal@soen.ca', NULL, 'I read/write code. CTO @makelayers ', 'lsegal', 0, 0, 493, 1, 0, 0, 0, '2008-02-23T18:07:37Z', '2024-10-20T22:07:37Z', 'https://avatars.githubusercontent.com/u/686?v=4', 'https://api.github.com/users/lsegal', 'https://github.com/lsegal', 'https://api.github.com/users/lsegal/followers', 'https://api.github.com/users/lsegal/following', 'https://api.github.com/users/lsegal/gists', 'https://api.github.com/users/lsegal/starred', 'https://api.github.com/users/lsegal/repos', 'https://api.github.com/users/lsegal/events', 'https://api.github.com/users/lsegal/received_events', 0); +INSERT INTO `developer` VALUES (687, 'fazibear', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michał Kalbarczyk', NULL, 'https://puddleofcode.com', '未知', NULL, 'true', NULL, 'fazibear', 0, 0, 95, 37, 0, 0, 0, '2008-02-23T18:17:29Z', '2024-11-02T11:18:41Z', 'https://avatars.githubusercontent.com/u/687?v=4', 'https://api.github.com/users/fazibear', 'https://github.com/fazibear', 'https://api.github.com/users/fazibear/followers', 'https://api.github.com/users/fazibear/following', 'https://api.github.com/users/fazibear/gists', 'https://api.github.com/users/fazibear/starred', 'https://api.github.com/users/fazibear/repos', 'https://api.github.com/users/fazibear/events', 'https://api.github.com/users/fazibear/received_events', 0); +INSERT INTO `developer` VALUES (688, 'grosours', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guillaume Faure', NULL, '', 'Paris, France', 'kyokuma@gmail.com', NULL, NULL, NULL, 0, 0, 10, 8, 0, 0, 0, '2008-02-23T18:30:40Z', '2024-10-18T12:42:58Z', 'https://avatars.githubusercontent.com/u/688?v=4', 'https://api.github.com/users/grosours', 'https://github.com/grosours', 'https://api.github.com/users/grosours/followers', 'https://api.github.com/users/grosours/following', 'https://api.github.com/users/grosours/gists', 'https://api.github.com/users/grosours/starred', 'https://api.github.com/users/grosours/repos', 'https://api.github.com/users/grosours/events', 'https://api.github.com/users/grosours/received_events', 0); +INSERT INTO `developer` VALUES (689, 'dermotbrennan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dermot Brennan', 'Sendoso', '', 'Dublin, Ireland', 'dermot.brennan@gmail.com', NULL, NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2008-02-23T18:43:40Z', '2024-04-14T20:20:18Z', 'https://avatars.githubusercontent.com/u/689?v=4', 'https://api.github.com/users/dermotbrennan', 'https://github.com/dermotbrennan', 'https://api.github.com/users/dermotbrennan/followers', 'https://api.github.com/users/dermotbrennan/following', 'https://api.github.com/users/dermotbrennan/gists', 'https://api.github.com/users/dermotbrennan/starred', 'https://api.github.com/users/dermotbrennan/repos', 'https://api.github.com/users/dermotbrennan/events', 'https://api.github.com/users/dermotbrennan/received_events', 0); +INSERT INTO `developer` VALUES (690, 'matschaffer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mat Schaffer', 'Roblox', 'http://matschaffer.com', 'Yamanashi, Japan', 'mat@schaffer.me', NULL, 'Observability Engineer', 'matschaffer', 0, 0, 252, 10, 0, 0, 0, '2008-02-23T18:48:15Z', '2024-10-18T11:24:28Z', 'https://avatars.githubusercontent.com/u/690?v=4', 'https://api.github.com/users/matschaffer', 'https://github.com/matschaffer', 'https://api.github.com/users/matschaffer/followers', 'https://api.github.com/users/matschaffer/following', 'https://api.github.com/users/matschaffer/gists', 'https://api.github.com/users/matschaffer/starred', 'https://api.github.com/users/matschaffer/repos', 'https://api.github.com/users/matschaffer/events', 'https://api.github.com/users/matschaffer/received_events', 0); +INSERT INTO `developer` VALUES (691, 'mazdak', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://mazdakrezvani.com', 'Toronto, Ontario, Canada', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-23T19:12:21Z', '2024-11-04T15:57:45Z', 'https://avatars.githubusercontent.com/u/691?v=4', 'https://api.github.com/users/mazdak', 'https://github.com/mazdak', 'https://api.github.com/users/mazdak/followers', 'https://api.github.com/users/mazdak/following', 'https://api.github.com/users/mazdak/gists', 'https://api.github.com/users/mazdak/starred', 'https://api.github.com/users/mazdak/repos', 'https://api.github.com/users/mazdak/events', 'https://api.github.com/users/mazdak/received_events', 0); +INSERT INTO `developer` VALUES (692, 'bryckbost', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Ryckbost', NULL, 'http://ryckbost.com', 'Holland, MI', 'bryckbost@gmail.com', NULL, NULL, NULL, 0, 0, 69, 49, 0, 0, 0, '2008-02-23T19:21:24Z', '2022-12-16T17:01:29Z', 'https://avatars.githubusercontent.com/u/692?v=4', 'https://api.github.com/users/bryckbost', 'https://github.com/bryckbost', 'https://api.github.com/users/bryckbost/followers', 'https://api.github.com/users/bryckbost/following', 'https://api.github.com/users/bryckbost/gists', 'https://api.github.com/users/bryckbost/starred', 'https://api.github.com/users/bryckbost/repos', 'https://api.github.com/users/bryckbost/events', 'https://api.github.com/users/bryckbost/received_events', 0); +INSERT INTO `developer` VALUES (693, 'farcaller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vladimir Pouzanov', '@indeedeng', 'https://farcaller.net/', '未知', NULL, 'true', NULL, NULL, 0, 0, 275, 16, 0, 0, 0, '2008-02-23T19:28:04Z', '2024-11-01T11:20:53Z', 'https://avatars.githubusercontent.com/u/693?v=4', 'https://api.github.com/users/farcaller', 'https://github.com/farcaller', 'https://api.github.com/users/farcaller/followers', 'https://api.github.com/users/farcaller/following', 'https://api.github.com/users/farcaller/gists', 'https://api.github.com/users/farcaller/starred', 'https://api.github.com/users/farcaller/repos', 'https://api.github.com/users/farcaller/events', 'https://api.github.com/users/farcaller/received_events', 0); +INSERT INTO `developer` VALUES (694, 'lstoll', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lincoln Stoll', NULL, 'http://lds.li', 'Berlin, DE', 'me@lds.li', NULL, NULL, NULL, 0, 0, 261, 6, 0, 0, 0, '2008-02-23T19:34:57Z', '2024-10-29T06:30:52Z', 'https://avatars.githubusercontent.com/u/694?v=4', 'https://api.github.com/users/lstoll', 'https://github.com/lstoll', 'https://api.github.com/users/lstoll/followers', 'https://api.github.com/users/lstoll/following', 'https://api.github.com/users/lstoll/gists', 'https://api.github.com/users/lstoll/starred', 'https://api.github.com/users/lstoll/repos', 'https://api.github.com/users/lstoll/events', 'https://api.github.com/users/lstoll/received_events', 0); +INSERT INTO `developer` VALUES (695, 'sbellware', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Bellware', 'ampgt.com', 'https://github.com/eventide-project', 'Austin, TX', NULL, 'true', 'Relentless Improvement. Asker of inconvenient questions.', NULL, 0, 0, 109, 17, 0, 0, 0, '2008-02-23T19:37:53Z', '2024-10-23T00:56:28Z', 'https://avatars.githubusercontent.com/u/695?v=4', 'https://api.github.com/users/sbellware', 'https://github.com/sbellware', 'https://api.github.com/users/sbellware/followers', 'https://api.github.com/users/sbellware/following', 'https://api.github.com/users/sbellware/gists', 'https://api.github.com/users/sbellware/starred', 'https://api.github.com/users/sbellware/repos', 'https://api.github.com/users/sbellware/events', 'https://api.github.com/users/sbellware/received_events', 0); +INSERT INTO `developer` VALUES (696, 'caius', 'C', 0, 0, 0, 0, 0, 0, 0, 'Caius Durling', '@relayplatform', 'http://caius.name/', 'Shropshire, UK', NULL, NULL, 'Occasional Adult • Always Geek • Sometimes Beer\'d • Usually Beard', NULL, 0, 0, 214, 145, 0, 0, 0, '2008-02-23T19:49:20Z', '2024-10-05T21:33:47Z', 'https://avatars.githubusercontent.com/u/696?v=4', 'https://api.github.com/users/caius', 'https://github.com/caius', 'https://api.github.com/users/caius/followers', 'https://api.github.com/users/caius/following', 'https://api.github.com/users/caius/gists', 'https://api.github.com/users/caius/starred', 'https://api.github.com/users/caius/repos', 'https://api.github.com/users/caius/events', 'https://api.github.com/users/caius/received_events', 0); +INSERT INTO `developer` VALUES (697, 'dgiunta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Giunta', 'Giunta Creative', 'davegiunta.com', 'Evanston, IL', NULL, NULL, NULL, NULL, 0, 0, 36, 48, 0, 0, 0, '2008-02-23T19:57:34Z', '2024-10-22T16:13:45Z', 'https://avatars.githubusercontent.com/u/697?v=4', 'https://api.github.com/users/dgiunta', 'https://github.com/dgiunta', 'https://api.github.com/users/dgiunta/followers', 'https://api.github.com/users/dgiunta/following', 'https://api.github.com/users/dgiunta/gists', 'https://api.github.com/users/dgiunta/starred', 'https://api.github.com/users/dgiunta/repos', 'https://api.github.com/users/dgiunta/events', 'https://api.github.com/users/dgiunta/received_events', 0); +INSERT INTO `developer` VALUES (698, 'oleganza', 'C', 8.76603057442217, 0, 0, 0, 0, 0, 0, 'Oleg Andreev', 'Tonkeeper CEO', 'oleganza.com', 'Barcelona', NULL, NULL, NULL, NULL, 0, 0, 796, 43, 0, 0, 0, '2008-02-23T20:03:19Z', '2024-10-21T19:18:49Z', 'https://avatars.githubusercontent.com/u/698?v=4', 'https://api.github.com/users/oleganza', 'https://github.com/oleganza', 'https://api.github.com/users/oleganza/followers', 'https://api.github.com/users/oleganza/following', 'https://api.github.com/users/oleganza/gists', 'https://api.github.com/users/oleganza/starred', 'https://api.github.com/users/oleganza/repos', 'https://api.github.com/users/oleganza/events', 'https://api.github.com/users/oleganza/received_events', 0); +INSERT INTO `developer` VALUES (699, 'nkallen', 'C', 6.999732665687783, 0, 0, 0, 0, 0, 0, 'Nick Kallen', 'self-employed', 'http://twitter.com/nk', 'Paris', NULL, NULL, NULL, NULL, 0, 0, 693, 13, 0, 0, 0, '2008-02-23T20:04:18Z', '2024-10-28T15:25:22Z', 'https://avatars.githubusercontent.com/u/699?v=4', 'https://api.github.com/users/nkallen', 'https://github.com/nkallen', 'https://api.github.com/users/nkallen/followers', 'https://api.github.com/users/nkallen/following', 'https://api.github.com/users/nkallen/gists', 'https://api.github.com/users/nkallen/starred', 'https://api.github.com/users/nkallen/repos', 'https://api.github.com/users/nkallen/events', 'https://api.github.com/users/nkallen/received_events', 0); +INSERT INTO `developer` VALUES (700, 'heycarsten', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carsten Nielsen', '@crowdmark ', 'https://heycarsten.com', 'Dundas, Ontario, Canada', 'heycarsten@gmail.com', NULL, 'I’m a lead developer specializing in web applications and related technologies, I’m all about collaboration and being open and honest about what I don’t know 🙂', NULL, 0, 0, 138, 133, 0, 0, 0, '2008-02-23T20:18:33Z', '2020-10-25T23:30:42Z', 'https://avatars.githubusercontent.com/u/700?v=4', 'https://api.github.com/users/heycarsten', 'https://github.com/heycarsten', 'https://api.github.com/users/heycarsten/followers', 'https://api.github.com/users/heycarsten/following', 'https://api.github.com/users/heycarsten/gists', 'https://api.github.com/users/heycarsten/starred', 'https://api.github.com/users/heycarsten/repos', 'https://api.github.com/users/heycarsten/events', 'https://api.github.com/users/heycarsten/received_events', 0); +INSERT INTO `developer` VALUES (701, 'jokull', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jökull Sólberg Auðunsson', NULL, 'solberg.is', 'Reykjavík, Iceland', 'jokull@solberg.is', NULL, NULL, 'jokull', 0, 0, 157, 177, 0, 0, 0, '2008-02-23T20:25:25Z', '2024-10-27T13:45:38Z', 'https://avatars.githubusercontent.com/u/701?v=4', 'https://api.github.com/users/jokull', 'https://github.com/jokull', 'https://api.github.com/users/jokull/followers', 'https://api.github.com/users/jokull/following', 'https://api.github.com/users/jokull/gists', 'https://api.github.com/users/jokull/starred', 'https://api.github.com/users/jokull/repos', 'https://api.github.com/users/jokull/events', 'https://api.github.com/users/jokull/received_events', 0); +INSERT INTO `developer` VALUES (702, 'gjnoonan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gavin-John Noonan', NULL, 'https://gjnoonan.co.uk', '未知', NULL, 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-23T20:29:46Z', '2024-10-16T08:53:05Z', 'https://avatars.githubusercontent.com/u/702?v=4', 'https://api.github.com/users/gjnoonan', 'https://github.com/gjnoonan', 'https://api.github.com/users/gjnoonan/followers', 'https://api.github.com/users/gjnoonan/following', 'https://api.github.com/users/gjnoonan/gists', 'https://api.github.com/users/gjnoonan/starred', 'https://api.github.com/users/gjnoonan/repos', 'https://api.github.com/users/gjnoonan/events', 'https://api.github.com/users/gjnoonan/received_events', 0); +INSERT INTO `developer` VALUES (703, 'jparker', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Parker', 'Urgetopunt Technologies', 'https://urgetopunt.com/', 'Earth', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-23T20:42:12Z', '2024-11-03T16:02:11Z', 'https://avatars.githubusercontent.com/u/703?v=4', 'https://api.github.com/users/jparker', 'https://github.com/jparker', 'https://api.github.com/users/jparker/followers', 'https://api.github.com/users/jparker/following', 'https://api.github.com/users/jparker/gists', 'https://api.github.com/users/jparker/starred', 'https://api.github.com/users/jparker/repos', 'https://api.github.com/users/jparker/events', 'https://api.github.com/users/jparker/received_events', 0); +INSERT INTO `developer` VALUES (704, 'xxgreg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Lowe', NULL, '', 'Wellington, New Zealand', NULL, NULL, NULL, NULL, 0, 0, 28, 0, 0, 0, 0, '2008-02-23T20:53:14Z', '2024-09-23T21:28:05Z', 'https://avatars.githubusercontent.com/u/704?v=4', 'https://api.github.com/users/xxgreg', 'https://github.com/xxgreg', 'https://api.github.com/users/xxgreg/followers', 'https://api.github.com/users/xxgreg/following', 'https://api.github.com/users/xxgreg/gists', 'https://api.github.com/users/xxgreg/starred', 'https://api.github.com/users/xxgreg/repos', 'https://api.github.com/users/xxgreg/events', 'https://api.github.com/users/xxgreg/received_events', 0); +INSERT INTO `developer` VALUES (705, 'jimmygoodboy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-02-23T21:02:33Z', '2024-01-04T07:18:10Z', 'https://avatars.githubusercontent.com/u/705?v=4', 'https://api.github.com/users/jimmygoodboy', 'https://github.com/jimmygoodboy', 'https://api.github.com/users/jimmygoodboy/followers', 'https://api.github.com/users/jimmygoodboy/following', 'https://api.github.com/users/jimmygoodboy/gists', 'https://api.github.com/users/jimmygoodboy/starred', 'https://api.github.com/users/jimmygoodboy/repos', 'https://api.github.com/users/jimmygoodboy/events', 'https://api.github.com/users/jimmygoodboy/received_events', 0); +INSERT INTO `developer` VALUES (706, 'tekkub', 'S', 100, 0, 0, 0, 0, 0, 0, 'Tekkub', NULL, 'http://www.tekkub.net', 'MYBUTT', NULL, NULL, 'Just a lazy tanuki that likes to tinker', NULL, 0, 0, 6491, 5, 0, 0, 0, '2008-02-23T21:14:45Z', '2024-05-22T20:32:05Z', 'https://avatars.githubusercontent.com/u/706?v=4', 'https://api.github.com/users/tekkub', 'https://github.com/tekkub', 'https://api.github.com/users/tekkub/followers', 'https://api.github.com/users/tekkub/following', 'https://api.github.com/users/tekkub/gists', 'https://api.github.com/users/tekkub/starred', 'https://api.github.com/users/tekkub/repos', 'https://api.github.com/users/tekkub/events', 'https://api.github.com/users/tekkub/received_events', 0); +INSERT INTO `developer` VALUES (707, 'kaspar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kaspar Lonscher', 'wurzelfoo.org', 'http://wurzelfoo.org', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 12, 3, 0, 0, 0, '2008-02-23T21:41:08Z', '2024-08-21T19:56:11Z', 'https://avatars.githubusercontent.com/u/707?v=4', 'https://api.github.com/users/kaspar', 'https://github.com/kaspar', 'https://api.github.com/users/kaspar/followers', 'https://api.github.com/users/kaspar/following', 'https://api.github.com/users/kaspar/gists', 'https://api.github.com/users/kaspar/starred', 'https://api.github.com/users/kaspar/repos', 'https://api.github.com/users/kaspar/events', 'https://api.github.com/users/kaspar/received_events', 0); +INSERT INTO `developer` VALUES (708, 'seaofclouds', 'C', 0, 0, 0, 0, 0, 0, 0, 'seaofclouds', NULL, 'http://seaofclouds.com', 'Berkeley', NULL, NULL, NULL, 'seaofclouds', 0, 0, 147, 26, 0, 0, 0, '2008-02-23T21:50:05Z', '2024-08-28T22:01:26Z', 'https://avatars.githubusercontent.com/u/708?v=4', 'https://api.github.com/users/seaofclouds', 'https://github.com/seaofclouds', 'https://api.github.com/users/seaofclouds/followers', 'https://api.github.com/users/seaofclouds/following', 'https://api.github.com/users/seaofclouds/gists', 'https://api.github.com/users/seaofclouds/starred', 'https://api.github.com/users/seaofclouds/repos', 'https://api.github.com/users/seaofclouds/events', 'https://api.github.com/users/seaofclouds/received_events', 0); +INSERT INTO `developer` VALUES (709, 'jared', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jared Haworth', NULL, 'http://alloycode.com', '未知', 'jared@alloycode.com', NULL, NULL, NULL, 0, 0, 13, 1, 0, 0, 0, '2008-02-23T22:00:55Z', '2021-07-01T14:34:51Z', 'https://avatars.githubusercontent.com/u/709?v=4', 'https://api.github.com/users/jared', 'https://github.com/jared', 'https://api.github.com/users/jared/followers', 'https://api.github.com/users/jared/following', 'https://api.github.com/users/jared/gists', 'https://api.github.com/users/jared/starred', 'https://api.github.com/users/jared/repos', 'https://api.github.com/users/jared/events', 'https://api.github.com/users/jared/received_events', 0); +INSERT INTO `developer` VALUES (710, 'delagoya', 'C', 0, 0, 0, 0, 0, 0, 0, 'Angel Pizarro', NULL, '', 'Philadelphia', 'delagoya@gmail.com', NULL, NULL, 'delagoya', 0, 0, 52, 21, 0, 0, 0, '2008-02-23T22:01:09Z', '2024-08-27T21:49:07Z', 'https://avatars.githubusercontent.com/u/710?v=4', 'https://api.github.com/users/delagoya', 'https://github.com/delagoya', 'https://api.github.com/users/delagoya/followers', 'https://api.github.com/users/delagoya/following', 'https://api.github.com/users/delagoya/gists', 'https://api.github.com/users/delagoya/starred', 'https://api.github.com/users/delagoya/repos', 'https://api.github.com/users/delagoya/events', 'https://api.github.com/users/delagoya/received_events', 0); +INSERT INTO `developer` VALUES (711, 'necrodome', 'C', 0, 0, 0, 0, 0, 0, 0, 'Selem Delul', NULL, 'selem.im', '未知', 'selem@selem.im', 'true', NULL, NULL, 0, 0, 25, 27, 0, 0, 0, '2008-02-23T22:31:24Z', '2024-11-03T19:02:55Z', 'https://avatars.githubusercontent.com/u/711?v=4', 'https://api.github.com/users/necrodome', 'https://github.com/necrodome', 'https://api.github.com/users/necrodome/followers', 'https://api.github.com/users/necrodome/following', 'https://api.github.com/users/necrodome/gists', 'https://api.github.com/users/necrodome/starred', 'https://api.github.com/users/necrodome/repos', 'https://api.github.com/users/necrodome/events', 'https://api.github.com/users/necrodome/received_events', 0); +INSERT INTO `developer` VALUES (712, 'brokendisk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maxwell August Croy', '@epidemicsound ', 'https://maxwellaugustcroy.com', 'Stockholm, Sweden', NULL, NULL, 'It is by will alone I set my mind in motion 🧪 ⚡️', 'maxwell', 0, 0, 17, 22, 0, 0, 0, '2008-02-23T22:32:57Z', '2024-10-29T13:34:28Z', 'https://avatars.githubusercontent.com/u/712?v=4', 'https://api.github.com/users/brokendisk', 'https://github.com/brokendisk', 'https://api.github.com/users/brokendisk/followers', 'https://api.github.com/users/brokendisk/following', 'https://api.github.com/users/brokendisk/gists', 'https://api.github.com/users/brokendisk/starred', 'https://api.github.com/users/brokendisk/repos', 'https://api.github.com/users/brokendisk/events', 'https://api.github.com/users/brokendisk/received_events', 0); +INSERT INTO `developer` VALUES (713, 'digitalknk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Molina', NULL, 'https://knk.io', 'Irvine, California, USA', NULL, NULL, NULL, NULL, 0, 0, 30, 23, 0, 0, 0, '2008-02-23T22:42:45Z', '2024-10-29T17:46:26Z', 'https://avatars.githubusercontent.com/u/713?v=4', 'https://api.github.com/users/digitalknk', 'https://github.com/digitalknk', 'https://api.github.com/users/digitalknk/followers', 'https://api.github.com/users/digitalknk/following', 'https://api.github.com/users/digitalknk/gists', 'https://api.github.com/users/digitalknk/starred', 'https://api.github.com/users/digitalknk/repos', 'https://api.github.com/users/digitalknk/events', 'https://api.github.com/users/digitalknk/received_events', 0); +INSERT INTO `developer` VALUES (714, 'lilyball', 'C', 11.18397237181585, 0, 0, 0, 0, 0, 0, 'Lily Ballard', NULL, '', 'San Leandro, CA', 'lily@ballards.net', NULL, '🏳️‍⚧️🏳️‍🌈 Rustacean 🦀. Nix lover. Programming language aficionado. She/her.', 'LilyInTech', 0, 0, 937, 38, 0, 0, 0, '2008-02-23T22:42:52Z', '2024-09-21T18:56:55Z', 'https://avatars.githubusercontent.com/u/714?v=4', 'https://api.github.com/users/lilyball', 'https://github.com/lilyball', 'https://api.github.com/users/lilyball/followers', 'https://api.github.com/users/lilyball/following', 'https://api.github.com/users/lilyball/gists', 'https://api.github.com/users/lilyball/starred', 'https://api.github.com/users/lilyball/repos', 'https://api.github.com/users/lilyball/events', 'https://api.github.com/users/lilyball/received_events', 0); +INSERT INTO `developer` VALUES (715, 'BrentonEarl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brent', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 12, 0, 0, 0, '2008-02-23T22:51:25Z', '2024-04-07T23:01:22Z', 'https://avatars.githubusercontent.com/u/715?v=4', 'https://api.github.com/users/BrentonEarl', 'https://github.com/BrentonEarl', 'https://api.github.com/users/BrentonEarl/followers', 'https://api.github.com/users/BrentonEarl/following', 'https://api.github.com/users/BrentonEarl/gists', 'https://api.github.com/users/BrentonEarl/starred', 'https://api.github.com/users/BrentonEarl/repos', 'https://api.github.com/users/BrentonEarl/events', 'https://api.github.com/users/BrentonEarl/received_events', 0); +INSERT INTO `developer` VALUES (716, 'malomalo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Bracy', '42Floors', '', '未知', 'jonbracy@gmail.com', NULL, NULL, NULL, 0, 0, 28, 11, 0, 0, 0, '2008-02-23T22:51:41Z', '2024-04-10T20:35:57Z', 'https://avatars.githubusercontent.com/u/716?v=4', 'https://api.github.com/users/malomalo', 'https://github.com/malomalo', 'https://api.github.com/users/malomalo/followers', 'https://api.github.com/users/malomalo/following', 'https://api.github.com/users/malomalo/gists', 'https://api.github.com/users/malomalo/starred', 'https://api.github.com/users/malomalo/repos', 'https://api.github.com/users/malomalo/events', 'https://api.github.com/users/malomalo/received_events', 0); +INSERT INTO `developer` VALUES (717, 'peregrine', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seth Engelhard', '@observablehq ', '', 'Portland, OR', NULL, NULL, 'VP of Engineering @ Observable', NULL, 0, 0, 15, 1, 0, 0, 0, '2008-02-23T23:44:03Z', '2024-09-10T03:38:00Z', 'https://avatars.githubusercontent.com/u/717?v=4', 'https://api.github.com/users/peregrine', 'https://github.com/peregrine', 'https://api.github.com/users/peregrine/followers', 'https://api.github.com/users/peregrine/following', 'https://api.github.com/users/peregrine/gists', 'https://api.github.com/users/peregrine/starred', 'https://api.github.com/users/peregrine/repos', 'https://api.github.com/users/peregrine/events', 'https://api.github.com/users/peregrine/received_events', 0); +INSERT INTO `developer` VALUES (718, 'chrislloyd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Lloyd', NULL, 'http://chrislloyd.net', '未知', 'chris@chrislloyd.net', NULL, NULL, NULL, 0, 0, 284, 170, 0, 0, 0, '2008-02-23T23:58:36Z', '2024-10-11T13:51:26Z', 'https://avatars.githubusercontent.com/u/718?v=4', 'https://api.github.com/users/chrislloyd', 'https://github.com/chrislloyd', 'https://api.github.com/users/chrislloyd/followers', 'https://api.github.com/users/chrislloyd/following', 'https://api.github.com/users/chrislloyd/gists', 'https://api.github.com/users/chrislloyd/starred', 'https://api.github.com/users/chrislloyd/repos', 'https://api.github.com/users/chrislloyd/events', 'https://api.github.com/users/chrislloyd/received_events', 0); +INSERT INTO `developer` VALUES (719, 'gregbell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Bell', 'Walter Software', 'http://www.gregbell.ca', 'Vancouver, BC, Canada', NULL, 'true', 'Principal Engineer @ Walter on a mission to use AI to transform and automate the legal back office. Ex-AWS and Hootsuite.\r\n', NULL, 0, 0, 237, 0, 0, 0, 0, '2008-02-24T00:29:10Z', '2024-09-01T17:18:50Z', 'https://avatars.githubusercontent.com/u/719?v=4', 'https://api.github.com/users/gregbell', 'https://github.com/gregbell', 'https://api.github.com/users/gregbell/followers', 'https://api.github.com/users/gregbell/following', 'https://api.github.com/users/gregbell/gists', 'https://api.github.com/users/gregbell/starred', 'https://api.github.com/users/gregbell/repos', 'https://api.github.com/users/gregbell/events', 'https://api.github.com/users/gregbell/received_events', 0); +INSERT INTO `developer` VALUES (720, 'pclouds', 'C', 0, 0, 0, 0, 0, 0, 0, 'Duy Nguyen', NULL, '', '未知', NULL, NULL, 'No!', NULL, 0, 0, 198, 1, 0, 0, 0, '2008-02-24T00:31:23Z', '2024-02-09T17:49:40Z', 'https://avatars.githubusercontent.com/u/720?v=4', 'https://api.github.com/users/pclouds', 'https://github.com/pclouds', 'https://api.github.com/users/pclouds/followers', 'https://api.github.com/users/pclouds/following', 'https://api.github.com/users/pclouds/gists', 'https://api.github.com/users/pclouds/starred', 'https://api.github.com/users/pclouds/repos', 'https://api.github.com/users/pclouds/events', 'https://api.github.com/users/pclouds/received_events', 0); +INSERT INTO `developer` VALUES (721, 'yesmar', 'C', 0, 0, 0, 0, 0, 0, 0, 'ɹɐɯsǝʎ', NULL, '', '/dev/funk', 'yesmar@gmail.com', NULL, '.byte 0x0f, 0x3f', NULL, 0, 0, 14, 6, 0, 0, 0, '2008-02-24T00:45:05Z', '2024-09-10T15:36:22Z', 'https://avatars.githubusercontent.com/u/721?v=4', 'https://api.github.com/users/yesmar', 'https://github.com/yesmar', 'https://api.github.com/users/yesmar/followers', 'https://api.github.com/users/yesmar/following', 'https://api.github.com/users/yesmar/gists', 'https://api.github.com/users/yesmar/starred', 'https://api.github.com/users/yesmar/repos', 'https://api.github.com/users/yesmar/events', 'https://api.github.com/users/yesmar/received_events', 0); +INSERT INTO `developer` VALUES (722, 'brettg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brett Gibson', '@initialized @posthaven', '', 'SF', NULL, NULL, 'Initialized Capital, Posthaven', 'brettdg', 0, 0, 23, 3, 0, 0, 0, '2008-02-24T01:43:38Z', '2024-10-08T06:15:18Z', 'https://avatars.githubusercontent.com/u/722?v=4', 'https://api.github.com/users/brettg', 'https://github.com/brettg', 'https://api.github.com/users/brettg/followers', 'https://api.github.com/users/brettg/following', 'https://api.github.com/users/brettg/gists', 'https://api.github.com/users/brettg/starred', 'https://api.github.com/users/brettg/repos', 'https://api.github.com/users/brettg/events', 'https://api.github.com/users/brettg/received_events', 0); +INSERT INTO `developer` VALUES (723, 'xenith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Seabrook-Rocha', '@xenith-studios ', 'http://xenith.org/', 'Vancouver, BC, CA', 'xenith@xenith.org', 'true', NULL, NULL, 0, 0, 40, 27, 0, 0, 0, '2008-02-24T01:58:23Z', '2024-10-16T16:21:34Z', 'https://avatars.githubusercontent.com/u/723?v=4', 'https://api.github.com/users/xenith', 'https://github.com/xenith', 'https://api.github.com/users/xenith/followers', 'https://api.github.com/users/xenith/following', 'https://api.github.com/users/xenith/gists', 'https://api.github.com/users/xenith/starred', 'https://api.github.com/users/xenith/repos', 'https://api.github.com/users/xenith/events', 'https://api.github.com/users/xenith/received_events', 0); +INSERT INTO `developer` VALUES (724, 'martinisoft', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Kalin', '@slightlyfurry', 'https://www.martinisoftware.com', 'Seattle, WA', 'akalin@martinisoftware.com', NULL, 'Semi-Retired (24+yr) sysadmin/dev fox now making hard cider and mead.', 'martinisoft', 0, 0, 116, 10, 0, 0, 0, '2008-02-24T03:29:48Z', '2024-11-03T19:07:09Z', 'https://avatars.githubusercontent.com/u/724?v=4', 'https://api.github.com/users/martinisoft', 'https://github.com/martinisoft', 'https://api.github.com/users/martinisoft/followers', 'https://api.github.com/users/martinisoft/following', 'https://api.github.com/users/martinisoft/gists', 'https://api.github.com/users/martinisoft/starred', 'https://api.github.com/users/martinisoft/repos', 'https://api.github.com/users/martinisoft/events', 'https://api.github.com/users/martinisoft/received_events', 0); +INSERT INTO `developer` VALUES (725, 'marc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Bellingrath', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 22, 12, 0, 0, 0, '2008-02-24T03:57:36Z', '2024-09-09T18:04:03Z', 'https://avatars.githubusercontent.com/u/725?v=4', 'https://api.github.com/users/marc', 'https://github.com/marc', 'https://api.github.com/users/marc/followers', 'https://api.github.com/users/marc/following', 'https://api.github.com/users/marc/gists', 'https://api.github.com/users/marc/starred', 'https://api.github.com/users/marc/repos', 'https://api.github.com/users/marc/events', 'https://api.github.com/users/marc/received_events', 0); +INSERT INTO `developer` VALUES (726, 'pjb3', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Barry', 'Spark Golf', 'http://paulbarry.com', 'Bainbridge Island, WA', 'pauljbarry3@gmail.com', NULL, 'CTO @ Spark Golf', 'pjb3', 0, 0, 79, 57, 0, 0, 0, '2008-02-24T04:14:52Z', '2024-01-29T20:09:59Z', 'https://avatars.githubusercontent.com/u/726?v=4', 'https://api.github.com/users/pjb3', 'https://github.com/pjb3', 'https://api.github.com/users/pjb3/followers', 'https://api.github.com/users/pjb3/following', 'https://api.github.com/users/pjb3/gists', 'https://api.github.com/users/pjb3/starred', 'https://api.github.com/users/pjb3/repos', 'https://api.github.com/users/pjb3/events', 'https://api.github.com/users/pjb3/received_events', 0); +INSERT INTO `developer` VALUES (727, 'cvk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gibberish Umbra', NULL, '', 'Pacific NW, USA', 'speak@gibberish.cyou', NULL, 'Joined GitHub\r\non February 23, 2008 ', NULL, 0, 0, 6, 8, 0, 0, 0, '2008-02-24T05:23:07Z', '2023-04-08T02:32:16Z', 'https://avatars.githubusercontent.com/u/727?v=4', 'https://api.github.com/users/cvk', 'https://github.com/cvk', 'https://api.github.com/users/cvk/followers', 'https://api.github.com/users/cvk/following', 'https://api.github.com/users/cvk/gists', 'https://api.github.com/users/cvk/starred', 'https://api.github.com/users/cvk/repos', 'https://api.github.com/users/cvk/events', 'https://api.github.com/users/cvk/received_events', 0); +INSERT INTO `developer` VALUES (728, 'revelation', 'C', 0, 0, 0, 0, 0, 0, 0, 'Revelation', NULL, 'http://www.focusvision.com', 'Portland OR', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-24T05:45:15Z', '2019-07-11T06:05:22Z', 'https://avatars.githubusercontent.com/u/728?v=4', 'https://api.github.com/users/revelation', 'https://github.com/revelation', 'https://api.github.com/users/revelation/followers', 'https://api.github.com/users/revelation/following', 'https://api.github.com/users/revelation/gists', 'https://api.github.com/users/revelation/starred', 'https://api.github.com/users/revelation/repos', 'https://api.github.com/users/revelation/events', 'https://api.github.com/users/revelation/received_events', 0); +INSERT INTO `developer` VALUES (729, 'xuejm', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-24T05:59:45Z', '2020-05-18T18:06:43Z', 'https://avatars.githubusercontent.com/u/729?v=4', 'https://api.github.com/users/xuejm', 'https://github.com/xuejm', 'https://api.github.com/users/xuejm/followers', 'https://api.github.com/users/xuejm/following', 'https://api.github.com/users/xuejm/gists', 'https://api.github.com/users/xuejm/starred', 'https://api.github.com/users/xuejm/repos', 'https://api.github.com/users/xuejm/events', 'https://api.github.com/users/xuejm/received_events', 0); +INSERT INTO `developer` VALUES (730, 'blowmage', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Moore', NULL, 'http://blowmage.com/', 'Highland, UT', 'mike@blowmage.com', 'true', 'Breaker of things', NULL, 0, 0, 230, 21, 0, 0, 0, '2008-02-24T06:37:06Z', '2024-08-29T13:48:34Z', 'https://avatars.githubusercontent.com/u/730?v=4', 'https://api.github.com/users/blowmage', 'https://github.com/blowmage', 'https://api.github.com/users/blowmage/followers', 'https://api.github.com/users/blowmage/following', 'https://api.github.com/users/blowmage/gists', 'https://api.github.com/users/blowmage/starred', 'https://api.github.com/users/blowmage/repos', 'https://api.github.com/users/blowmage/events', 'https://api.github.com/users/blowmage/received_events', 0); +INSERT INTO `developer` VALUES (731, 'gnu-lorien', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Sayman', NULL, '', 'Atlanta, GA, USA', 'andrew.sayman+github@gmail.com', NULL, NULL, NULL, 0, 0, 12, 5, 0, 0, 0, '2008-02-24T06:46:19Z', '2024-10-15T16:03:15Z', 'https://avatars.githubusercontent.com/u/731?v=4', 'https://api.github.com/users/gnu-lorien', 'https://github.com/gnu-lorien', 'https://api.github.com/users/gnu-lorien/followers', 'https://api.github.com/users/gnu-lorien/following', 'https://api.github.com/users/gnu-lorien/gists', 'https://api.github.com/users/gnu-lorien/starred', 'https://api.github.com/users/gnu-lorien/repos', 'https://api.github.com/users/gnu-lorien/events', 'https://api.github.com/users/gnu-lorien/received_events', 0); +INSERT INTO `developer` VALUES (732, 'bledig', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bernd Ledig', NULL, 'https://working-it.de', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-24T08:27:45Z', '2024-08-03T13:48:55Z', 'https://avatars.githubusercontent.com/u/732?v=4', 'https://api.github.com/users/bledig', 'https://github.com/bledig', 'https://api.github.com/users/bledig/followers', 'https://api.github.com/users/bledig/following', 'https://api.github.com/users/bledig/gists', 'https://api.github.com/users/bledig/starred', 'https://api.github.com/users/bledig/repos', 'https://api.github.com/users/bledig/events', 'https://api.github.com/users/bledig/received_events', 0); +INSERT INTO `developer` VALUES (733, 'travo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Travis Winters', NULL, 'www.prozacblues.com', 'Melbourne, Australia', 'traviswinters@gmail.com', NULL, NULL, NULL, 0, 0, 29, 13, 0, 0, 0, '2008-02-24T08:45:00Z', '2024-10-04T07:01:32Z', 'https://avatars.githubusercontent.com/u/733?v=4', 'https://api.github.com/users/travo', 'https://github.com/travo', 'https://api.github.com/users/travo/followers', 'https://api.github.com/users/travo/following', 'https://api.github.com/users/travo/gists', 'https://api.github.com/users/travo/starred', 'https://api.github.com/users/travo/repos', 'https://api.github.com/users/travo/events', 'https://api.github.com/users/travo/received_events', 0); +INSERT INTO `developer` VALUES (734, 'schmidt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gregor Schmidt', '@tourlane', 'https://schmidt.dev/', 'Berlin, Germany', 'schmidt@nach-vorne.eu', 'true', 'ruby developer', 'schmidtwisser', 0, 0, 57, 40, 0, 0, 0, '2008-02-24T10:23:26Z', '2023-04-07T04:07:06Z', 'https://avatars.githubusercontent.com/u/734?v=4', 'https://api.github.com/users/schmidt', 'https://github.com/schmidt', 'https://api.github.com/users/schmidt/followers', 'https://api.github.com/users/schmidt/following', 'https://api.github.com/users/schmidt/gists', 'https://api.github.com/users/schmidt/starred', 'https://api.github.com/users/schmidt/repos', 'https://api.github.com/users/schmidt/events', 'https://api.github.com/users/schmidt/received_events', 0); +INSERT INTO `developer` VALUES (735, 'tschacht', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 12, 0, 0, 0, '2008-02-24T13:32:38Z', '2022-02-12T13:03:14Z', 'https://avatars.githubusercontent.com/u/735?v=4', 'https://api.github.com/users/tschacht', 'https://github.com/tschacht', 'https://api.github.com/users/tschacht/followers', 'https://api.github.com/users/tschacht/following', 'https://api.github.com/users/tschacht/gists', 'https://api.github.com/users/tschacht/starred', 'https://api.github.com/users/tschacht/repos', 'https://api.github.com/users/tschacht/events', 'https://api.github.com/users/tschacht/received_events', 0); +INSERT INTO `developer` VALUES (736, 'christos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christos Zisopoulos', '@lingokids ', '', 'Madrid, Spain', NULL, NULL, NULL, NULL, 0, 0, 76, 46, 0, 0, 0, '2008-02-24T13:40:58Z', '2024-09-26T20:02:53Z', 'https://avatars.githubusercontent.com/u/736?v=4', 'https://api.github.com/users/christos', 'https://github.com/christos', 'https://api.github.com/users/christos/followers', 'https://api.github.com/users/christos/following', 'https://api.github.com/users/christos/gists', 'https://api.github.com/users/christos/starred', 'https://api.github.com/users/christos/repos', 'https://api.github.com/users/christos/events', 'https://api.github.com/users/christos/received_events', 0); +INSERT INTO `developer` VALUES (737, 'v15h', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-24T15:50:39Z', '2024-10-10T13:25:12Z', 'https://avatars.githubusercontent.com/u/737?v=4', 'https://api.github.com/users/v15h', 'https://github.com/v15h', 'https://api.github.com/users/v15h/followers', 'https://api.github.com/users/v15h/following', 'https://api.github.com/users/v15h/gists', 'https://api.github.com/users/v15h/starred', 'https://api.github.com/users/v15h/repos', 'https://api.github.com/users/v15h/events', 'https://api.github.com/users/v15h/received_events', 0); +INSERT INTO `developer` VALUES (738, 'jasherai', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pritesh', 'Phatforge', '', 'London', 'pritesh@phatforge.com', 'true', NULL, NULL, 0, 0, 35, 74, 0, 0, 0, '2008-02-24T16:35:46Z', '2024-09-12T16:35:40Z', 'https://avatars.githubusercontent.com/u/738?v=4', 'https://api.github.com/users/jasherai', 'https://github.com/jasherai', 'https://api.github.com/users/jasherai/followers', 'https://api.github.com/users/jasherai/following', 'https://api.github.com/users/jasherai/gists', 'https://api.github.com/users/jasherai/starred', 'https://api.github.com/users/jasherai/repos', 'https://api.github.com/users/jasherai/events', 'https://api.github.com/users/jasherai/received_events', 0); +INSERT INTO `developer` VALUES (739, 'cylence', 'C', 0, 0, 0, 0, 0, 0, 0, 'Moved to github.com/slant', '@heroku', 'https://github.com/slant', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2008-02-24T16:33:27Z', '2019-12-09T23:17:34Z', 'https://avatars.githubusercontent.com/u/739?v=4', 'https://api.github.com/users/cylence', 'https://github.com/cylence', 'https://api.github.com/users/cylence/followers', 'https://api.github.com/users/cylence/following', 'https://api.github.com/users/cylence/gists', 'https://api.github.com/users/cylence/starred', 'https://api.github.com/users/cylence/repos', 'https://api.github.com/users/cylence/events', 'https://api.github.com/users/cylence/received_events', 0); +INSERT INTO `developer` VALUES (740, 'rmm5t', 'C', 1.0491950508253238, 0, 0, 0, 0, 0, 0, 'Ryan McGeary', '@McGearyGroup', 'http://ryan.mcgeary.org', 'Lafayette / Boulder, CO (Colorado)', 'ryan@mcgeary.org', 'true', 'Business Starter, Software Consultant, Rubyist, CrossFit Nerd, Amateur Triathlete, Father, @McGearyGroup Owner', 'rmm5t', 0, 0, 346, 18, 0, 0, 0, '2008-02-24T17:33:27Z', '2024-09-12T15:08:58Z', 'https://avatars.githubusercontent.com/u/740?v=4', 'https://api.github.com/users/rmm5t', 'https://github.com/rmm5t', 'https://api.github.com/users/rmm5t/followers', 'https://api.github.com/users/rmm5t/following', 'https://api.github.com/users/rmm5t/gists', 'https://api.github.com/users/rmm5t/starred', 'https://api.github.com/users/rmm5t/repos', 'https://api.github.com/users/rmm5t/events', 'https://api.github.com/users/rmm5t/received_events', 0); +INSERT INTO `developer` VALUES (741, 'quigebo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen Wooten', NULL, 'http://www.StephenWooten.com', 'Chicago, IL', NULL, NULL, 'I\'ve got 2 shoes!!!', 'quigebo', 0, 0, 24, 4, 0, 0, 0, '2008-02-24T18:36:07Z', '2024-09-09T19:58:49Z', 'https://avatars.githubusercontent.com/u/741?v=4', 'https://api.github.com/users/quigebo', 'https://github.com/quigebo', 'https://api.github.com/users/quigebo/followers', 'https://api.github.com/users/quigebo/following', 'https://api.github.com/users/quigebo/gists', 'https://api.github.com/users/quigebo/starred', 'https://api.github.com/users/quigebo/repos', 'https://api.github.com/users/quigebo/events', 'https://api.github.com/users/quigebo/received_events', 0); +INSERT INTO `developer` VALUES (742, 'shirkevich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mikhail Shirkov', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 5, 0, 0, 0, '2008-02-24T18:38:16Z', '2024-08-16T06:49:44Z', 'https://avatars.githubusercontent.com/u/742?v=4', 'https://api.github.com/users/shirkevich', 'https://github.com/shirkevich', 'https://api.github.com/users/shirkevich/followers', 'https://api.github.com/users/shirkevich/following', 'https://api.github.com/users/shirkevich/gists', 'https://api.github.com/users/shirkevich/starred', 'https://api.github.com/users/shirkevich/repos', 'https://api.github.com/users/shirkevich/events', 'https://api.github.com/users/shirkevich/received_events', 0); +INSERT INTO `developer` VALUES (743, 'lukehoersten', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Hoersten', '@Bitnomial ', 'luke.hoersten.org', 'Chicago, IL', 'luke@hoersten.org', NULL, 'Founder & CEO of @bitnomial. Previously Partner at @AllstonTrading. Member of @chicagohaskell.', 'lukehoersten', 0, 0, 118, 1, 0, 0, 0, '2008-02-24T18:38:46Z', '2024-10-07T11:19:50Z', 'https://avatars.githubusercontent.com/u/743?v=4', 'https://api.github.com/users/lukehoersten', 'https://github.com/lukehoersten', 'https://api.github.com/users/lukehoersten/followers', 'https://api.github.com/users/lukehoersten/following', 'https://api.github.com/users/lukehoersten/gists', 'https://api.github.com/users/lukehoersten/starred', 'https://api.github.com/users/lukehoersten/repos', 'https://api.github.com/users/lukehoersten/events', 'https://api.github.com/users/lukehoersten/received_events', 0); +INSERT INTO `developer` VALUES (744, 'roncohen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ron Cohen', 'co-founder @ Bucket.so', '', 'Copenhagen', 'cohen1@gmail.com', NULL, NULL, 'roncohen', 0, 0, 82, 85, 0, 0, 0, '2008-02-24T18:39:34Z', '2024-10-25T22:04:44Z', 'https://avatars.githubusercontent.com/u/744?v=4', 'https://api.github.com/users/roncohen', 'https://github.com/roncohen', 'https://api.github.com/users/roncohen/followers', 'https://api.github.com/users/roncohen/following', 'https://api.github.com/users/roncohen/gists', 'https://api.github.com/users/roncohen/starred', 'https://api.github.com/users/roncohen/repos', 'https://api.github.com/users/roncohen/events', 'https://api.github.com/users/roncohen/received_events', 0); +INSERT INTO `developer` VALUES (745, 'Bregor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maxim Filatov', 'SEMrush', 'https://semrush.com/', 'Czech Republic, Prague', 'pipopolam@gmail.com', NULL, 'SRE at SEMrush', 'pipopolam', 0, 0, 94, 35, 0, 0, 0, '2008-02-24T18:40:11Z', '2024-08-14T08:43:58Z', 'https://avatars.githubusercontent.com/u/745?v=4', 'https://api.github.com/users/Bregor', 'https://github.com/Bregor', 'https://api.github.com/users/Bregor/followers', 'https://api.github.com/users/Bregor/following', 'https://api.github.com/users/Bregor/gists', 'https://api.github.com/users/Bregor/starred', 'https://api.github.com/users/Bregor/repos', 'https://api.github.com/users/Bregor/events', 'https://api.github.com/users/Bregor/received_events', 0); +INSERT INTO `developer` VALUES (746, 'juretta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Saasen', NULL, 'https://stefan.saasen.me/', 'Germany', NULL, NULL, 'Ex-Atlassian (Confluence, Stash, Bitbucket, Cloud & Data Center). \r\n\r\nNowadays mainly Swift/Java/Go.\r\n\r\n', 'stefansaasen', 0, 0, 54, 33, 0, 0, 0, '2008-02-24T18:40:58Z', '2024-03-26T09:04:09Z', 'https://avatars.githubusercontent.com/u/746?v=4', 'https://api.github.com/users/juretta', 'https://github.com/juretta', 'https://api.github.com/users/juretta/followers', 'https://api.github.com/users/juretta/following', 'https://api.github.com/users/juretta/gists', 'https://api.github.com/users/juretta/starred', 'https://api.github.com/users/juretta/repos', 'https://api.github.com/users/juretta/events', 'https://api.github.com/users/juretta/received_events', 0); +INSERT INTO `developer` VALUES (747, 'jney', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jean-Sébastien Ney', '@missena-corp ', '', 'Europe', 'jeansebastien.ney@gmail.com', 'true', NULL, NULL, 0, 0, 76, 341, 0, 0, 0, '2008-02-24T18:41:26Z', '2024-08-23T11:45:44Z', 'https://avatars.githubusercontent.com/u/747?v=4', 'https://api.github.com/users/jney', 'https://github.com/jney', 'https://api.github.com/users/jney/followers', 'https://api.github.com/users/jney/following', 'https://api.github.com/users/jney/gists', 'https://api.github.com/users/jney/starred', 'https://api.github.com/users/jney/repos', 'https://api.github.com/users/jney/events', 'https://api.github.com/users/jney/received_events', 0); +INSERT INTO `developer` VALUES (748, 'tom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Malone', NULL, '', '未知', 'tom.malone@mac.com', NULL, NULL, NULL, 0, 0, 42, 3, 0, 0, 0, '2008-02-24T18:44:45Z', '2023-07-05T14:52:41Z', 'https://avatars.githubusercontent.com/u/748?v=4', 'https://api.github.com/users/tom', 'https://github.com/tom', 'https://api.github.com/users/tom/followers', 'https://api.github.com/users/tom/following', 'https://api.github.com/users/tom/gists', 'https://api.github.com/users/tom/starred', 'https://api.github.com/users/tom/repos', 'https://api.github.com/users/tom/events', 'https://api.github.com/users/tom/received_events', 0); +INSERT INTO `developer` VALUES (749, 'mortenbagai', 'C', 7.943265499214561, 0, 47, 23, 5, 0, 0, 'Morten Bagai', NULL, '', 'Los Angeles', 'mortenbagai@gmail.com', NULL, NULL, NULL, 0, 0, 30, 0, 0, 0, 0, '2008-02-24T18:45:49Z', '2023-08-30T23:18:46Z', 'https://avatars.githubusercontent.com/u/749?v=4', 'https://api.github.com/users/mortenbagai', 'https://github.com/mortenbagai', 'https://api.github.com/users/mortenbagai/followers', 'https://api.github.com/users/mortenbagai/following', 'https://api.github.com/users/mortenbagai/gists', 'https://api.github.com/users/mortenbagai/starred', 'https://api.github.com/users/mortenbagai/repos', 'https://api.github.com/users/mortenbagai/events', 'https://api.github.com/users/mortenbagai/received_events', 0); +INSERT INTO `developer` VALUES (750, 'smerickson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Erickson', NULL, 'www.smerickson.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-24T18:50:03Z', '2024-06-24T01:19:13Z', 'https://avatars.githubusercontent.com/u/750?v=4', 'https://api.github.com/users/smerickson', 'https://github.com/smerickson', 'https://api.github.com/users/smerickson/followers', 'https://api.github.com/users/smerickson/following', 'https://api.github.com/users/smerickson/gists', 'https://api.github.com/users/smerickson/starred', 'https://api.github.com/users/smerickson/repos', 'https://api.github.com/users/smerickson/events', 'https://api.github.com/users/smerickson/received_events', 0); +INSERT INTO `developer` VALUES (751, 'lagsalot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandt Lofton', 'Verizon', '', 'Fort Worth', 'brandtlofton@gmail.com', NULL, NULL, NULL, 0, 0, 8, 12, 0, 0, 0, '2008-02-24T18:53:21Z', '2024-10-20T16:51:28Z', 'https://avatars.githubusercontent.com/u/751?v=4', 'https://api.github.com/users/lagsalot', 'https://github.com/lagsalot', 'https://api.github.com/users/lagsalot/followers', 'https://api.github.com/users/lagsalot/following', 'https://api.github.com/users/lagsalot/gists', 'https://api.github.com/users/lagsalot/starred', 'https://api.github.com/users/lagsalot/repos', 'https://api.github.com/users/lagsalot/events', 'https://api.github.com/users/lagsalot/received_events', 0); +INSERT INTO `developer` VALUES (752, 'djspiewak', 'B-', 34.60885531677872, 0, 0, 0, 0, 0, 0, 'Daniel Spiewak', '@nvidia', '', 'Chicago, IL', 'djspiewak@gmail.com', NULL, 'I write code, read papers, and think thoughts. Broadly, I\'m interested in: type theory, parser theory, functional abstractions, data structures, performance.', NULL, 0, 0, 2303, 0, 0, 0, 0, '2008-02-24T18:54:37Z', '2024-07-02T18:32:50Z', 'https://avatars.githubusercontent.com/u/752?v=4', 'https://api.github.com/users/djspiewak', 'https://github.com/djspiewak', 'https://api.github.com/users/djspiewak/followers', 'https://api.github.com/users/djspiewak/following', 'https://api.github.com/users/djspiewak/gists', 'https://api.github.com/users/djspiewak/starred', 'https://api.github.com/users/djspiewak/repos', 'https://api.github.com/users/djspiewak/events', 'https://api.github.com/users/djspiewak/received_events', 0); +INSERT INTO `developer` VALUES (754, 'jsgoecke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Goecke', NULL, 'http://twitter.com/jsgoecke', 'Half Moon Bay, CA', 'jason@goecke.net', NULL, NULL, NULL, 0, 0, 136, 11, 0, 0, 0, '2008-02-24T19:03:55Z', '2024-09-16T06:42:34Z', 'https://avatars.githubusercontent.com/u/754?v=4', 'https://api.github.com/users/jsgoecke', 'https://github.com/jsgoecke', 'https://api.github.com/users/jsgoecke/followers', 'https://api.github.com/users/jsgoecke/following', 'https://api.github.com/users/jsgoecke/gists', 'https://api.github.com/users/jsgoecke/starred', 'https://api.github.com/users/jsgoecke/repos', 'https://api.github.com/users/jsgoecke/events', 'https://api.github.com/users/jsgoecke/received_events', 0); +INSERT INTO `developer` VALUES (755, 'myabc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Brandon Coles', NULL, '', 'London, England', NULL, 'true', NULL, NULL, 0, 0, 186, 226, 0, 0, 0, '2008-02-24T19:04:05Z', '2024-11-04T10:36:24Z', 'https://avatars.githubusercontent.com/u/755?v=4', 'https://api.github.com/users/myabc', 'https://github.com/myabc', 'https://api.github.com/users/myabc/followers', 'https://api.github.com/users/myabc/following', 'https://api.github.com/users/myabc/gists', 'https://api.github.com/users/myabc/starred', 'https://api.github.com/users/myabc/repos', 'https://api.github.com/users/myabc/events', 'https://api.github.com/users/myabc/received_events', 0); +INSERT INTO `developer` VALUES (756, 'stefanoc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefano Cobianchi', 'TrustLayer Inc.', '', 'Pavia, Italy', NULL, NULL, NULL, 'stefano_c', 0, 0, 16, 1, 0, 0, 0, '2008-02-24T19:04:32Z', '2024-10-25T11:26:18Z', 'https://avatars.githubusercontent.com/u/756?v=4', 'https://api.github.com/users/stefanoc', 'https://github.com/stefanoc', 'https://api.github.com/users/stefanoc/followers', 'https://api.github.com/users/stefanoc/following', 'https://api.github.com/users/stefanoc/gists', 'https://api.github.com/users/stefanoc/starred', 'https://api.github.com/users/stefanoc/repos', 'https://api.github.com/users/stefanoc/events', 'https://api.github.com/users/stefanoc/received_events', 0); +INSERT INTO `developer` VALUES (757, 'mde', 'C', 7.548485414032447, 0, 0, 0, 0, 0, 0, 'Matthew Eernisse', NULL, 'http://fleegix.org', 'San Francisco, California, USA', 'mde@fleegix.org', NULL, 'Literal rock star developer. JavaScript, music, Japanese, and serial commas. Author and maintainer of EJS.', NULL, 0, 0, 725, 10, 0, 0, 0, '2008-02-24T19:15:00Z', '2024-10-28T03:51:55Z', 'https://avatars.githubusercontent.com/u/757?v=4', 'https://api.github.com/users/mde', 'https://github.com/mde', 'https://api.github.com/users/mde/followers', 'https://api.github.com/users/mde/following', 'https://api.github.com/users/mde/gists', 'https://api.github.com/users/mde/starred', 'https://api.github.com/users/mde/repos', 'https://api.github.com/users/mde/events', 'https://api.github.com/users/mde/received_events', 0); +INSERT INTO `developer` VALUES (758, 'oliverandrich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oliver Andrich', NULL, 'https://andrich.me/', 'Koblenz, Germany', 'oliver@andrich.me', NULL, 'Loves coffee, code and a good conversation.', NULL, 0, 0, 48, 18, 0, 0, 0, '2008-02-24T19:15:45Z', '2024-11-01T08:00:18Z', 'https://avatars.githubusercontent.com/u/758?v=4', 'https://api.github.com/users/oliverandrich', 'https://github.com/oliverandrich', 'https://api.github.com/users/oliverandrich/followers', 'https://api.github.com/users/oliverandrich/following', 'https://api.github.com/users/oliverandrich/gists', 'https://api.github.com/users/oliverandrich/starred', 'https://api.github.com/users/oliverandrich/repos', 'https://api.github.com/users/oliverandrich/events', 'https://api.github.com/users/oliverandrich/received_events', 0); +INSERT INTO `developer` VALUES (759, 'baldur', 'C', 0, 0, 0, 0, 0, 0, 0, 'Baldur Gudbjornsson', NULL, '', 'New York', 'baldur.gudbjornsson@gmail.com', 'true', NULL, NULL, 0, 0, 44, 21, 0, 0, 0, '2008-02-24T19:18:34Z', '2023-11-05T19:58:55Z', 'https://avatars.githubusercontent.com/u/759?v=4', 'https://api.github.com/users/baldur', 'https://github.com/baldur', 'https://api.github.com/users/baldur/followers', 'https://api.github.com/users/baldur/following', 'https://api.github.com/users/baldur/gists', 'https://api.github.com/users/baldur/starred', 'https://api.github.com/users/baldur/repos', 'https://api.github.com/users/baldur/events', 'https://api.github.com/users/baldur/received_events', 0); +INSERT INTO `developer` VALUES (760, 'ctcherry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Cherry', NULL, 'http://chrischerry.name', '未知', NULL, 'true', NULL, NULL, 0, 0, 40, 14, 0, 0, 0, '2008-02-24T19:18:39Z', '2024-05-27T23:43:07Z', 'https://avatars.githubusercontent.com/u/760?v=4', 'https://api.github.com/users/ctcherry', 'https://github.com/ctcherry', 'https://api.github.com/users/ctcherry/followers', 'https://api.github.com/users/ctcherry/following', 'https://api.github.com/users/ctcherry/gists', 'https://api.github.com/users/ctcherry/starred', 'https://api.github.com/users/ctcherry/repos', 'https://api.github.com/users/ctcherry/events', 'https://api.github.com/users/ctcherry/received_events', 0); +INSERT INTO `developer` VALUES (761, 'rjspotter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Randall Potter', 'Intentionally Blank', 'http://www.intentionally-blank.com/', 'Cheyenne, WY', NULL, 'true', NULL, NULL, 0, 0, 21, 14, 0, 0, 0, '2008-02-24T19:34:29Z', '2024-10-09T01:28:28Z', 'https://avatars.githubusercontent.com/u/761?v=4', 'https://api.github.com/users/rjspotter', 'https://github.com/rjspotter', 'https://api.github.com/users/rjspotter/followers', 'https://api.github.com/users/rjspotter/following', 'https://api.github.com/users/rjspotter/gists', 'https://api.github.com/users/rjspotter/starred', 'https://api.github.com/users/rjspotter/repos', 'https://api.github.com/users/rjspotter/events', 'https://api.github.com/users/rjspotter/received_events', 0); +INSERT INTO `developer` VALUES (762, 'asanghi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aditya Sanghi', 'Rising Sun', '', 'Dubai, UAE', 'aditya.sanghi@risingsuntech.net', NULL, 'Builder and problem solver at heart. Passionately built and scaled Punchh', NULL, 0, 0, 112, 74, 0, 0, 0, '2008-02-24T19:38:29Z', '2024-03-13T11:40:50Z', 'https://avatars.githubusercontent.com/u/762?v=4', 'https://api.github.com/users/asanghi', 'https://github.com/asanghi', 'https://api.github.com/users/asanghi/followers', 'https://api.github.com/users/asanghi/following', 'https://api.github.com/users/asanghi/gists', 'https://api.github.com/users/asanghi/starred', 'https://api.github.com/users/asanghi/repos', 'https://api.github.com/users/asanghi/events', 'https://api.github.com/users/asanghi/received_events', 0); +INSERT INTO `developer` VALUES (763, 'malkomalko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Malko', 'Doximity', '', 'Atlanta, GA', 'robmalko@gmail.com', NULL, 'Innovation @ MGM Resorts International', NULL, 0, 0, 157, 106, 0, 0, 0, '2008-02-24T19:45:04Z', '2024-09-17T18:50:23Z', 'https://avatars.githubusercontent.com/u/763?v=4', 'https://api.github.com/users/malkomalko', 'https://github.com/malkomalko', 'https://api.github.com/users/malkomalko/followers', 'https://api.github.com/users/malkomalko/following', 'https://api.github.com/users/malkomalko/gists', 'https://api.github.com/users/malkomalko/starred', 'https://api.github.com/users/malkomalko/repos', 'https://api.github.com/users/malkomalko/events', 'https://api.github.com/users/malkomalko/received_events', 0); +INSERT INTO `developer` VALUES (764, 'PabloC', 'C', 0, 0, 0, 0, 0, 0, 0, 'PabloC', NULL, '', 'Madrid, Spain.', NULL, NULL, NULL, 'pablocorral', 0, 0, 0, 0, 0, 0, 0, '2008-02-24T19:49:38Z', '2024-09-14T19:58:55Z', 'https://avatars.githubusercontent.com/u/764?v=4', 'https://api.github.com/users/PabloC', 'https://github.com/PabloC', 'https://api.github.com/users/PabloC/followers', 'https://api.github.com/users/PabloC/following', 'https://api.github.com/users/PabloC/gists', 'https://api.github.com/users/PabloC/starred', 'https://api.github.com/users/PabloC/repos', 'https://api.github.com/users/PabloC/events', 'https://api.github.com/users/PabloC/received_events', 0); +INSERT INTO `developer` VALUES (765, 'jerrod', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jerrod Blavos', '@usertesting ', 'http://www.usertesting.com', 'Raleigh, NC', NULL, NULL, 'VP Engineering - @usertesting ', NULL, 0, 0, 25, 18, 0, 0, 0, '2008-02-24T19:51:34Z', '2024-10-10T01:36:35Z', 'https://avatars.githubusercontent.com/u/765?v=4', 'https://api.github.com/users/jerrod', 'https://github.com/jerrod', 'https://api.github.com/users/jerrod/followers', 'https://api.github.com/users/jerrod/following', 'https://api.github.com/users/jerrod/gists', 'https://api.github.com/users/jerrod/starred', 'https://api.github.com/users/jerrod/repos', 'https://api.github.com/users/jerrod/events', 'https://api.github.com/users/jerrod/received_events', 0); +INSERT INTO `developer` VALUES (766, 'jfreeze', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Freeze', 'ElixirConf', 'ElixirConf.com', 'Prosper, TX', 'jimfreeze@gmail.com', 'true', 'Electrical and Computer Engineer M.S., Ph.D.', 'jimfreeze', 0, 0, 37, 0, 0, 0, 0, '2008-02-24T19:52:16Z', '2024-09-07T00:05:18Z', 'https://avatars.githubusercontent.com/u/766?v=4', 'https://api.github.com/users/jfreeze', 'https://github.com/jfreeze', 'https://api.github.com/users/jfreeze/followers', 'https://api.github.com/users/jfreeze/following', 'https://api.github.com/users/jfreeze/gists', 'https://api.github.com/users/jfreeze/starred', 'https://api.github.com/users/jfreeze/repos', 'https://api.github.com/users/jfreeze/events', 'https://api.github.com/users/jfreeze/received_events', 0); +INSERT INTO `developer` VALUES (767, 'vigosan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vicent Gozalbes', 'Flywire', '', 'Xàtiva', 'vigosan@gmail.com', 'true', NULL, 'vigosan', 0, 0, 59, 98, 0, 0, 0, '2008-02-24T19:53:15Z', '2024-10-18T10:33:38Z', 'https://avatars.githubusercontent.com/u/767?v=4', 'https://api.github.com/users/vigosan', 'https://github.com/vigosan', 'https://api.github.com/users/vigosan/followers', 'https://api.github.com/users/vigosan/following', 'https://api.github.com/users/vigosan/gists', 'https://api.github.com/users/vigosan/starred', 'https://api.github.com/users/vigosan/repos', 'https://api.github.com/users/vigosan/events', 'https://api.github.com/users/vigosan/received_events', 0); +INSERT INTO `developer` VALUES (768, 'fbrubacher', 'C', 0, 0, 0, 0, 0, 0, 0, 'Federico Brubacher', NULL, '', 'Montevideo, Uruguay', 'fbrubacher@gmail.com', NULL, NULL, NULL, 0, 0, 42, 4, 0, 0, 0, '2008-02-24T20:03:22Z', '2024-05-01T13:27:49Z', 'https://avatars.githubusercontent.com/u/768?v=4', 'https://api.github.com/users/fbrubacher', 'https://github.com/fbrubacher', 'https://api.github.com/users/fbrubacher/followers', 'https://api.github.com/users/fbrubacher/following', 'https://api.github.com/users/fbrubacher/gists', 'https://api.github.com/users/fbrubacher/starred', 'https://api.github.com/users/fbrubacher/repos', 'https://api.github.com/users/fbrubacher/events', 'https://api.github.com/users/fbrubacher/received_events', 0); +INSERT INTO `developer` VALUES (769, 'mvanholstyn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Van Holstyn', 'Mutually Human Software', 'http://about.me/mvanholstyn', 'Grand Rapids, MI', 'mvanholstyn@gmail.com', 'true', NULL, NULL, 0, 0, 41, 3, 0, 0, 0, '2008-02-24T20:07:29Z', '2024-08-13T15:09:56Z', 'https://avatars.githubusercontent.com/u/769?v=4', 'https://api.github.com/users/mvanholstyn', 'https://github.com/mvanholstyn', 'https://api.github.com/users/mvanholstyn/followers', 'https://api.github.com/users/mvanholstyn/following', 'https://api.github.com/users/mvanholstyn/gists', 'https://api.github.com/users/mvanholstyn/starred', 'https://api.github.com/users/mvanholstyn/repos', 'https://api.github.com/users/mvanholstyn/events', 'https://api.github.com/users/mvanholstyn/received_events', 0); +INSERT INTO `developer` VALUES (770, 'zach', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zach Baker', NULL, 'http://www.zachbaker.com/', 'Austin, TX', 'zach@zachbaker.com', 'true', NULL, NULL, 0, 0, 15, 10, 0, 0, 0, '2008-02-24T20:27:21Z', '2024-07-24T20:38:27Z', 'https://avatars.githubusercontent.com/u/770?v=4', 'https://api.github.com/users/zach', 'https://github.com/zach', 'https://api.github.com/users/zach/followers', 'https://api.github.com/users/zach/following', 'https://api.github.com/users/zach/gists', 'https://api.github.com/users/zach/starred', 'https://api.github.com/users/zach/repos', 'https://api.github.com/users/zach/events', 'https://api.github.com/users/zach/received_events', 0); +INSERT INTO `developer` VALUES (771, 'lydgate', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bryan Kam', NULL, 'http://bryankam.com', 'London, UK', 'github@vo.racio.us', NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-02-24T20:42:11Z', '2024-08-09T16:21:53Z', 'https://avatars.githubusercontent.com/u/771?v=4', 'https://api.github.com/users/lydgate', 'https://github.com/lydgate', 'https://api.github.com/users/lydgate/followers', 'https://api.github.com/users/lydgate/following', 'https://api.github.com/users/lydgate/gists', 'https://api.github.com/users/lydgate/starred', 'https://api.github.com/users/lydgate/repos', 'https://api.github.com/users/lydgate/events', 'https://api.github.com/users/lydgate/received_events', 0); +INSERT INTO `developer` VALUES (772, 'alex', 'S', 100, 0, 0, 0, 0, 0, 0, 'Alex Gaynor', NULL, 'https://alexgaynor.net', 'Washington D.C.', 'alex.gaynor@gmail.com', NULL, 'I program computers, and build teams that program computers, with a heavy focus on security.', NULL, 0, 0, 9964, 38, 0, 0, 0, '2008-02-24T20:44:41Z', '2024-10-06T01:57:33Z', 'https://avatars.githubusercontent.com/u/772?v=4', 'https://api.github.com/users/alex', 'https://github.com/alex', 'https://api.github.com/users/alex/followers', 'https://api.github.com/users/alex/following', 'https://api.github.com/users/alex/gists', 'https://api.github.com/users/alex/starred', 'https://api.github.com/users/alex/repos', 'https://api.github.com/users/alex/events', 'https://api.github.com/users/alex/received_events', 0); +INSERT INTO `developer` VALUES (773, 'clupprich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christoph Lupprich', NULL, 'http://christoph.luppri.ch', 'Vienna, Europe', 'christoph@luppri.ch', 'true', NULL, 'clupprich', 0, 0, 35, 18, 0, 0, 0, '2008-02-24T20:59:21Z', '2024-09-19T15:21:04Z', 'https://avatars.githubusercontent.com/u/773?v=4', 'https://api.github.com/users/clupprich', 'https://github.com/clupprich', 'https://api.github.com/users/clupprich/followers', 'https://api.github.com/users/clupprich/following', 'https://api.github.com/users/clupprich/gists', 'https://api.github.com/users/clupprich/starred', 'https://api.github.com/users/clupprich/repos', 'https://api.github.com/users/clupprich/events', 'https://api.github.com/users/clupprich/received_events', 0); +INSERT INTO `developer` VALUES (775, 'jordanbrock', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jordan Brock', NULL, 'http://jordanbrock.com', 'Perth, Western Australia', 'jordan@brock.id.au', NULL, NULL, NULL, 0, 0, 28, 12, 0, 0, 0, '2008-02-24T21:08:59Z', '2024-06-30T05:29:36Z', 'https://avatars.githubusercontent.com/u/775?v=4', 'https://api.github.com/users/jordanbrock', 'https://github.com/jordanbrock', 'https://api.github.com/users/jordanbrock/followers', 'https://api.github.com/users/jordanbrock/following', 'https://api.github.com/users/jordanbrock/gists', 'https://api.github.com/users/jordanbrock/starred', 'https://api.github.com/users/jordanbrock/repos', 'https://api.github.com/users/jordanbrock/events', 'https://api.github.com/users/jordanbrock/received_events', 0); +INSERT INTO `developer` VALUES (776, 'brijohn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Johnson', NULL, '', 'Michigan', 'brijohn@gmail.com', NULL, NULL, NULL, 0, 0, 32, 0, 0, 0, 0, '2008-02-24T21:29:11Z', '2024-10-09T11:20:28Z', 'https://avatars.githubusercontent.com/u/776?v=4', 'https://api.github.com/users/brijohn', 'https://github.com/brijohn', 'https://api.github.com/users/brijohn/followers', 'https://api.github.com/users/brijohn/following', 'https://api.github.com/users/brijohn/gists', 'https://api.github.com/users/brijohn/starred', 'https://api.github.com/users/brijohn/repos', 'https://api.github.com/users/brijohn/events', 'https://api.github.com/users/brijohn/received_events', 0); +INSERT INTO `developer` VALUES (777, 'mahnve', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcus Ahnve', 'Marcus Ahnve AB', 'https://www.marcusahnve.org', 'Stockholm, Sweden', NULL, NULL, 'I have moved all my repos to Sourcehut, https://git.sr.ht/~mahnve/. ', NULL, 0, 0, 26, 26, 0, 0, 0, '2008-02-24T21:40:25Z', '2024-10-14T12:16:47Z', 'https://avatars.githubusercontent.com/u/777?v=4', 'https://api.github.com/users/mahnve', 'https://github.com/mahnve', 'https://api.github.com/users/mahnve/followers', 'https://api.github.com/users/mahnve/following', 'https://api.github.com/users/mahnve/gists', 'https://api.github.com/users/mahnve/starred', 'https://api.github.com/users/mahnve/repos', 'https://api.github.com/users/mahnve/events', 'https://api.github.com/users/mahnve/received_events', 0); +INSERT INTO `developer` VALUES (778, 'peburrows', 'C', 0, 0, 0, 0, 0, 0, 0, 'Phil Burrows', '@brexhq', '', 'Memphis, TN', 'github@philburrows.com', NULL, 'Working on things at @brexhq ', 'peburrows', 0, 0, 74, 9, 0, 0, 0, '2008-02-24T21:40:36Z', '2024-10-19T18:54:23Z', 'https://avatars.githubusercontent.com/u/778?v=4', 'https://api.github.com/users/peburrows', 'https://github.com/peburrows', 'https://api.github.com/users/peburrows/followers', 'https://api.github.com/users/peburrows/following', 'https://api.github.com/users/peburrows/gists', 'https://api.github.com/users/peburrows/starred', 'https://api.github.com/users/peburrows/repos', 'https://api.github.com/users/peburrows/events', 'https://api.github.com/users/peburrows/received_events', 0); +INSERT INTO `developer` VALUES (779, 'asynkayo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Boussinet', NULL, '', 'France', 'alex.boussinet@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-24T21:56:07Z', '2024-09-06T10:04:38Z', 'https://avatars.githubusercontent.com/u/779?v=4', 'https://api.github.com/users/asynkayo', 'https://github.com/asynkayo', 'https://api.github.com/users/asynkayo/followers', 'https://api.github.com/users/asynkayo/following', 'https://api.github.com/users/asynkayo/gists', 'https://api.github.com/users/asynkayo/starred', 'https://api.github.com/users/asynkayo/repos', 'https://api.github.com/users/asynkayo/events', 'https://api.github.com/users/asynkayo/received_events', 0); +INSERT INTO `developer` VALUES (780, 'jaf', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-24T21:59:04Z', '2022-06-22T19:54:01Z', 'https://avatars.githubusercontent.com/u/780?v=4', 'https://api.github.com/users/jaf', 'https://github.com/jaf', 'https://api.github.com/users/jaf/followers', 'https://api.github.com/users/jaf/following', 'https://api.github.com/users/jaf/gists', 'https://api.github.com/users/jaf/starred', 'https://api.github.com/users/jaf/repos', 'https://api.github.com/users/jaf/events', 'https://api.github.com/users/jaf/received_events', 0); +INSERT INTO `developer` VALUES (781, 'piclez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter WD', NULL, 'www.frenti.com', 'San Diego, CA', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-24T22:18:39Z', '2024-09-23T15:03:04Z', 'https://avatars.githubusercontent.com/u/781?v=4', 'https://api.github.com/users/piclez', 'https://github.com/piclez', 'https://api.github.com/users/piclez/followers', 'https://api.github.com/users/piclez/following', 'https://api.github.com/users/piclez/gists', 'https://api.github.com/users/piclez/starred', 'https://api.github.com/users/piclez/repos', 'https://api.github.com/users/piclez/events', 'https://api.github.com/users/piclez/received_events', 0); +INSERT INTO `developer` VALUES (782, 'ebello', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ernie Bello', 'Addepar', '', 'New York, NY', 'ernie@bello.nyc', NULL, NULL, NULL, 0, 0, 68, 22, 0, 0, 0, '2008-02-24T22:24:30Z', '2024-11-02T13:25:31Z', 'https://avatars.githubusercontent.com/u/782?v=4', 'https://api.github.com/users/ebello', 'https://github.com/ebello', 'https://api.github.com/users/ebello/followers', 'https://api.github.com/users/ebello/following', 'https://api.github.com/users/ebello/gists', 'https://api.github.com/users/ebello/starred', 'https://api.github.com/users/ebello/repos', 'https://api.github.com/users/ebello/events', 'https://api.github.com/users/ebello/received_events', 0); +INSERT INTO `developer` VALUES (783, 'wkeenan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wayne Keenan', NULL, 'www.waynekeenan.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-24T22:37:38Z', '2019-06-04T23:48:21Z', 'https://avatars.githubusercontent.com/u/783?v=4', 'https://api.github.com/users/wkeenan', 'https://github.com/wkeenan', 'https://api.github.com/users/wkeenan/followers', 'https://api.github.com/users/wkeenan/following', 'https://api.github.com/users/wkeenan/gists', 'https://api.github.com/users/wkeenan/starred', 'https://api.github.com/users/wkeenan/repos', 'https://api.github.com/users/wkeenan/events', 'https://api.github.com/users/wkeenan/received_events', 0); +INSERT INTO `developer` VALUES (784, 'benslavin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Slavin', 'Superscalar', 'https://benslavin.com', 'Washington, DC / United States', 'ben@benslavin.com', 'true', NULL, NULL, 0, 0, 39, 12, 0, 0, 0, '2008-02-24T23:03:08Z', '2024-08-20T17:50:36Z', 'https://avatars.githubusercontent.com/u/784?v=4', 'https://api.github.com/users/benslavin', 'https://github.com/benslavin', 'https://api.github.com/users/benslavin/followers', 'https://api.github.com/users/benslavin/following', 'https://api.github.com/users/benslavin/gists', 'https://api.github.com/users/benslavin/starred', 'https://api.github.com/users/benslavin/repos', 'https://api.github.com/users/benslavin/events', 'https://api.github.com/users/benslavin/received_events', 0); +INSERT INTO `developer` VALUES (785, 'kevinfinlayson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Finlayson', NULL, 'http://kevinfinlayson.com', 'Montreal', 'kevin@kevinfinlayson.com', NULL, 'Design, dev, running. Former Shopify UX Director.', 'kevinfinlayson', 0, 0, 16, 11, 0, 0, 0, '2008-02-24T23:05:23Z', '2024-01-22T18:47:41Z', 'https://avatars.githubusercontent.com/u/785?v=4', 'https://api.github.com/users/kevinfinlayson', 'https://github.com/kevinfinlayson', 'https://api.github.com/users/kevinfinlayson/followers', 'https://api.github.com/users/kevinfinlayson/following', 'https://api.github.com/users/kevinfinlayson/gists', 'https://api.github.com/users/kevinfinlayson/starred', 'https://api.github.com/users/kevinfinlayson/repos', 'https://api.github.com/users/kevinfinlayson/events', 'https://api.github.com/users/kevinfinlayson/received_events', 0); +INSERT INTO `developer` VALUES (786, 'adamsalter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Salter', 'CodeBright', 'http://codebright.net', 'Sydney, Australia', 'adam@codebright.net', NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2008-02-24T23:07:26Z', '2018-02-10T08:28:37Z', 'https://avatars.githubusercontent.com/u/786?v=4', 'https://api.github.com/users/adamsalter', 'https://github.com/adamsalter', 'https://api.github.com/users/adamsalter/followers', 'https://api.github.com/users/adamsalter/following', 'https://api.github.com/users/adamsalter/gists', 'https://api.github.com/users/adamsalter/starred', 'https://api.github.com/users/adamsalter/repos', 'https://api.github.com/users/adamsalter/events', 'https://api.github.com/users/adamsalter/received_events', 0); +INSERT INTO `developer` VALUES (787, 'joe', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 22, 0, 0, 0, 0, '2008-02-25T00:03:12Z', '2024-02-22T13:59:25Z', 'https://avatars.githubusercontent.com/u/787?v=4', 'https://api.github.com/users/joe', 'https://github.com/joe', 'https://api.github.com/users/joe/followers', 'https://api.github.com/users/joe/following', 'https://api.github.com/users/joe/gists', 'https://api.github.com/users/joe/starred', 'https://api.github.com/users/joe/repos', 'https://api.github.com/users/joe/events', 'https://api.github.com/users/joe/received_events', 0); +INSERT INTO `developer` VALUES (788, 'sxh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Hayes', NULL, '', '未知', 'steve.e.hayes@gmail.com', NULL, NULL, NULL, 0, 0, 15, 5, 0, 0, 0, '2008-02-25T00:53:23Z', '2024-10-14T09:38:25Z', 'https://avatars.githubusercontent.com/u/788?v=4', 'https://api.github.com/users/sxh', 'https://github.com/sxh', 'https://api.github.com/users/sxh/followers', 'https://api.github.com/users/sxh/following', 'https://api.github.com/users/sxh/gists', 'https://api.github.com/users/sxh/starred', 'https://api.github.com/users/sxh/repos', 'https://api.github.com/users/sxh/events', 'https://api.github.com/users/sxh/received_events', 0); +INSERT INTO `developer` VALUES (789, 'rpheath', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Heath', 'SolarWinds Cloud', 'http://rpheath.com', 'Morgantown, WV', 'rpheath@gmail.com', NULL, NULL, NULL, 0, 0, 38, 3, 0, 0, 0, '2008-02-25T01:27:20Z', '2024-04-13T20:16:57Z', 'https://avatars.githubusercontent.com/u/789?v=4', 'https://api.github.com/users/rpheath', 'https://github.com/rpheath', 'https://api.github.com/users/rpheath/followers', 'https://api.github.com/users/rpheath/following', 'https://api.github.com/users/rpheath/gists', 'https://api.github.com/users/rpheath/starred', 'https://api.github.com/users/rpheath/repos', 'https://api.github.com/users/rpheath/events', 'https://api.github.com/users/rpheath/received_events', 0); +INSERT INTO `developer` VALUES (790, 'bordy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Rohde', 'Humana', 'http://chrisrohde.net', 'Louisville, KY', 'christopher.rohde@gmail.com', NULL, NULL, NULL, 0, 0, 9, 6, 0, 0, 0, '2008-02-25T01:40:33Z', '2020-12-04T16:30:10Z', 'https://avatars.githubusercontent.com/u/790?v=4', 'https://api.github.com/users/bordy', 'https://github.com/bordy', 'https://api.github.com/users/bordy/followers', 'https://api.github.com/users/bordy/following', 'https://api.github.com/users/bordy/gists', 'https://api.github.com/users/bordy/starred', 'https://api.github.com/users/bordy/repos', 'https://api.github.com/users/bordy/events', 'https://api.github.com/users/bordy/received_events', 0); +INSERT INTO `developer` VALUES (791, 'companygardener', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Peterson', 'Free Agent', 'https://angel.co/companygardener', 'Chicago, IL', NULL, 'true', NULL, NULL, 0, 0, 42, 27, 0, 0, 0, '2008-02-25T01:41:54Z', '2024-06-27T20:51:25Z', 'https://avatars.githubusercontent.com/u/791?v=4', 'https://api.github.com/users/companygardener', 'https://github.com/companygardener', 'https://api.github.com/users/companygardener/followers', 'https://api.github.com/users/companygardener/following', 'https://api.github.com/users/companygardener/gists', 'https://api.github.com/users/companygardener/starred', 'https://api.github.com/users/companygardener/repos', 'https://api.github.com/users/companygardener/events', 'https://api.github.com/users/companygardener/received_events', 0); +INSERT INTO `developer` VALUES (792, 'dusty', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dusty Doris', '@postal-io ', 'https://www.linkedin.com/in/dusty', 'Phoenix, AZ', 'dusty@doris.name', NULL, NULL, NULL, 0, 0, 35, 26, 0, 0, 0, '2008-02-25T03:19:05Z', '2024-10-21T20:40:39Z', 'https://avatars.githubusercontent.com/u/792?v=4', 'https://api.github.com/users/dusty', 'https://github.com/dusty', 'https://api.github.com/users/dusty/followers', 'https://api.github.com/users/dusty/following', 'https://api.github.com/users/dusty/gists', 'https://api.github.com/users/dusty/starred', 'https://api.github.com/users/dusty/repos', 'https://api.github.com/users/dusty/events', 'https://api.github.com/users/dusty/received_events', 0); +INSERT INTO `developer` VALUES (793, 'janson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Janson Hartliep', '@wistia ', '', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 24, 11, 0, 0, 0, '2008-02-25T03:26:39Z', '2024-09-28T07:21:05Z', 'https://avatars.githubusercontent.com/u/793?v=4', 'https://api.github.com/users/janson', 'https://github.com/janson', 'https://api.github.com/users/janson/followers', 'https://api.github.com/users/janson/following', 'https://api.github.com/users/janson/gists', 'https://api.github.com/users/janson/starred', 'https://api.github.com/users/janson/repos', 'https://api.github.com/users/janson/events', 'https://api.github.com/users/janson/received_events', 0); +INSERT INTO `developer` VALUES (794, 'nexneo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Niket Patel', 'Beehively', 'https://twitter.com/nexneo', '未知', 'nexneo@gmail.com', NULL, 'Engineer, programmer and a reader. \r\n\r\nCan converse in Ruby, Javascript, Go, English, Hindi, Gujarati...', NULL, 0, 0, 32, 6, 0, 0, 0, '2008-02-25T03:45:33Z', '2024-10-29T07:32:09Z', 'https://avatars.githubusercontent.com/u/794?v=4', 'https://api.github.com/users/nexneo', 'https://github.com/nexneo', 'https://api.github.com/users/nexneo/followers', 'https://api.github.com/users/nexneo/following', 'https://api.github.com/users/nexneo/gists', 'https://api.github.com/users/nexneo/starred', 'https://api.github.com/users/nexneo/repos', 'https://api.github.com/users/nexneo/events', 'https://api.github.com/users/nexneo/received_events', 0); +INSERT INTO `developer` VALUES (795, 'DimaD', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dmitry Dzema', NULL, 'dzema.name', 'Singapore', NULL, NULL, NULL, NULL, 0, 0, 26, 10, 0, 0, 0, '2008-02-25T03:47:20Z', '2024-10-31T07:01:22Z', 'https://avatars.githubusercontent.com/u/795?v=4', 'https://api.github.com/users/DimaD', 'https://github.com/DimaD', 'https://api.github.com/users/DimaD/followers', 'https://api.github.com/users/DimaD/following', 'https://api.github.com/users/DimaD/gists', 'https://api.github.com/users/DimaD/starred', 'https://api.github.com/users/DimaD/repos', 'https://api.github.com/users/DimaD/events', 'https://api.github.com/users/DimaD/received_events', 0); +INSERT INTO `developer` VALUES (796, 'kogent', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Carey', NULL, 'https://www.markcarey.io', 'San Francisco, CA', NULL, NULL, 'monitoring, troubleshooting, research. ', NULL, 0, 0, 14, 5, 0, 0, 0, '2008-02-25T04:25:48Z', '2023-10-19T17:17:05Z', 'https://avatars.githubusercontent.com/u/796?v=4', 'https://api.github.com/users/kogent', 'https://github.com/kogent', 'https://api.github.com/users/kogent/followers', 'https://api.github.com/users/kogent/following', 'https://api.github.com/users/kogent/gists', 'https://api.github.com/users/kogent/starred', 'https://api.github.com/users/kogent/repos', 'https://api.github.com/users/kogent/events', 'https://api.github.com/users/kogent/received_events', 0); +INSERT INTO `developer` VALUES (797, 'tarcieri', 'B-', 26.994910933496506, 0, 0, 0, 0, 0, 0, 'Tony Arcieri', '@iqlusioninc', 'https://tonyarcieri.com', 'Denver, CO', 'bascule@gmail.com', NULL, 'Co-founder @iqlusioninc, formerly @square. Cryptography and infrastructure engineer.', NULL, 0, 0, 1859, 34, 0, 0, 0, '2008-02-25T04:32:26Z', '2024-10-27T02:57:04Z', 'https://avatars.githubusercontent.com/u/797?v=4', 'https://api.github.com/users/tarcieri', 'https://github.com/tarcieri', 'https://api.github.com/users/tarcieri/followers', 'https://api.github.com/users/tarcieri/following', 'https://api.github.com/users/tarcieri/gists', 'https://api.github.com/users/tarcieri/starred', 'https://api.github.com/users/tarcieri/repos', 'https://api.github.com/users/tarcieri/events', 'https://api.github.com/users/tarcieri/received_events', 0); +INSERT INTO `developer` VALUES (798, 'kfl62', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ferenc-Loránt Kiss', 'freelancer', 'http://kfl62.trst.ro', 'Luna de Sus, Romania', 'kfl62g@gmail.com', 'true', 'Freelancer', NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-25T05:28:47Z', '2024-08-28T17:33:48Z', 'https://avatars.githubusercontent.com/u/798?v=4', 'https://api.github.com/users/kfl62', 'https://github.com/kfl62', 'https://api.github.com/users/kfl62/followers', 'https://api.github.com/users/kfl62/following', 'https://api.github.com/users/kfl62/gists', 'https://api.github.com/users/kfl62/starred', 'https://api.github.com/users/kfl62/repos', 'https://api.github.com/users/kfl62/events', 'https://api.github.com/users/kfl62/received_events', 0); +INSERT INTO `developer` VALUES (799, 'mattrenquist', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-02-25T06:32:04Z', '2024-10-14T03:56:51Z', 'https://avatars.githubusercontent.com/u/799?v=4', 'https://api.github.com/users/mattrenquist', 'https://github.com/mattrenquist', 'https://api.github.com/users/mattrenquist/followers', 'https://api.github.com/users/mattrenquist/following', 'https://api.github.com/users/mattrenquist/gists', 'https://api.github.com/users/mattrenquist/starred', 'https://api.github.com/users/mattrenquist/repos', 'https://api.github.com/users/mattrenquist/events', 'https://api.github.com/users/mattrenquist/received_events', 0); +INSERT INTO `developer` VALUES (800, 'lauri', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-25T07:21:18Z', '2022-11-27T15:01:40Z', 'https://avatars.githubusercontent.com/u/800?v=4', 'https://api.github.com/users/lauri', 'https://github.com/lauri', 'https://api.github.com/users/lauri/followers', 'https://api.github.com/users/lauri/following', 'https://api.github.com/users/lauri/gists', 'https://api.github.com/users/lauri/starred', 'https://api.github.com/users/lauri/repos', 'https://api.github.com/users/lauri/events', 'https://api.github.com/users/lauri/received_events', 0); +INSERT INTO `developer` VALUES (801, 'jdskufca', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joseph Skufca', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-02-25T07:32:37Z', '2024-09-05T22:24:30Z', 'https://avatars.githubusercontent.com/u/801?v=4', 'https://api.github.com/users/jdskufca', 'https://github.com/jdskufca', 'https://api.github.com/users/jdskufca/followers', 'https://api.github.com/users/jdskufca/following', 'https://api.github.com/users/jdskufca/gists', 'https://api.github.com/users/jdskufca/starred', 'https://api.github.com/users/jdskufca/repos', 'https://api.github.com/users/jdskufca/events', 'https://api.github.com/users/jdskufca/received_events', 0); +INSERT INTO `developer` VALUES (802, 'seangeo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean Geoghegan', 'Me', 'http://seangeo.me', 'Adelaide, Australia', 'sean@seangeo.me', 'true', NULL, NULL, 0, 0, 24, 5, 0, 0, 0, '2008-02-25T07:43:33Z', '2024-09-19T05:28:04Z', 'https://avatars.githubusercontent.com/u/802?v=4', 'https://api.github.com/users/seangeo', 'https://github.com/seangeo', 'https://api.github.com/users/seangeo/followers', 'https://api.github.com/users/seangeo/following', 'https://api.github.com/users/seangeo/gists', 'https://api.github.com/users/seangeo/starred', 'https://api.github.com/users/seangeo/repos', 'https://api.github.com/users/seangeo/events', 'https://api.github.com/users/seangeo/received_events', 0); +INSERT INTO `developer` VALUES (804, 'apod', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Podaras', NULL, '', 'Athens, Greece', 'apodaras@gmail.com', NULL, NULL, NULL, 0, 0, 22, 5, 0, 0, 0, '2008-02-25T08:48:29Z', '2024-09-11T14:21:10Z', 'https://avatars.githubusercontent.com/u/804?v=4', 'https://api.github.com/users/apod', 'https://github.com/apod', 'https://api.github.com/users/apod/followers', 'https://api.github.com/users/apod/following', 'https://api.github.com/users/apod/gists', 'https://api.github.com/users/apod/starred', 'https://api.github.com/users/apod/repos', 'https://api.github.com/users/apod/events', 'https://api.github.com/users/apod/received_events', 0); +INSERT INTO `developer` VALUES (805, 'denis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Denis Barushev', '@Square', 'http://barushev.net', 'San Francisco, CA', 'barushev+github@gmail.com', 'true', 'My GitHub user_id is 805', NULL, 0, 0, 43, 34, 0, 0, 0, '2008-02-25T09:47:36Z', '2024-08-23T01:42:57Z', 'https://avatars.githubusercontent.com/u/805?v=4', 'https://api.github.com/users/denis', 'https://github.com/denis', 'https://api.github.com/users/denis/followers', 'https://api.github.com/users/denis/following', 'https://api.github.com/users/denis/gists', 'https://api.github.com/users/denis/starred', 'https://api.github.com/users/denis/repos', 'https://api.github.com/users/denis/events', 'https://api.github.com/users/denis/received_events', 0); +INSERT INTO `developer` VALUES (806, 'znarf', 'C', 0, 0, 0, 0, 0, 0, 0, 'François Hodierne', '@opencollective ', 'francois.hodierne.net', 'Berlin, Germany', 'francois@hodierne.net', 'true', 'French in Berlin. Engineering & CTO @opencollective', 'znarf', 0, 0, 210, 65, 0, 0, 0, '2008-02-25T09:47:59Z', '2024-10-08T08:47:02Z', 'https://avatars.githubusercontent.com/u/806?v=4', 'https://api.github.com/users/znarf', 'https://github.com/znarf', 'https://api.github.com/users/znarf/followers', 'https://api.github.com/users/znarf/following', 'https://api.github.com/users/znarf/gists', 'https://api.github.com/users/znarf/starred', 'https://api.github.com/users/znarf/repos', 'https://api.github.com/users/znarf/events', 'https://api.github.com/users/znarf/received_events', 0); +INSERT INTO `developer` VALUES (807, 'wiktorschmidt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wiktor Schmidt', '@netguru', 'http://wiktorschmidt.com', 'Poznań, Poland', 'wiktorschmidt@gmail.com', NULL, 'CEO @netguru', NULL, 0, 0, 35, 0, 0, 0, 0, '2008-02-25T10:04:10Z', '2024-05-11T09:24:37Z', 'https://avatars.githubusercontent.com/u/807?v=4', 'https://api.github.com/users/wiktorschmidt', 'https://github.com/wiktorschmidt', 'https://api.github.com/users/wiktorschmidt/followers', 'https://api.github.com/users/wiktorschmidt/following', 'https://api.github.com/users/wiktorschmidt/gists', 'https://api.github.com/users/wiktorschmidt/starred', 'https://api.github.com/users/wiktorschmidt/repos', 'https://api.github.com/users/wiktorschmidt/events', 'https://api.github.com/users/wiktorschmidt/received_events', 0); +INSERT INTO `developer` VALUES (808, 'cmrichards', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Richards', 'christopher-richards.net', '', 'Manchester, England', 'chris@christopher-richards.net', NULL, NULL, NULL, 0, 0, 8, 4, 0, 0, 0, '2008-02-25T10:18:24Z', '2021-05-20T17:24:23Z', 'https://avatars.githubusercontent.com/u/808?v=4', 'https://api.github.com/users/cmrichards', 'https://github.com/cmrichards', 'https://api.github.com/users/cmrichards/followers', 'https://api.github.com/users/cmrichards/following', 'https://api.github.com/users/cmrichards/gists', 'https://api.github.com/users/cmrichards/starred', 'https://api.github.com/users/cmrichards/repos', 'https://api.github.com/users/cmrichards/events', 'https://api.github.com/users/cmrichards/received_events', 0); +INSERT INTO `developer` VALUES (809, 'tarsolya', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://tarsolya.me', '未知', NULL, NULL, NULL, NULL, 0, 0, 22, 7, 0, 0, 0, '2008-02-25T10:30:53Z', '2024-10-20T11:21:00Z', 'https://avatars.githubusercontent.com/u/809?v=4', 'https://api.github.com/users/tarsolya', 'https://github.com/tarsolya', 'https://api.github.com/users/tarsolya/followers', 'https://api.github.com/users/tarsolya/following', 'https://api.github.com/users/tarsolya/gists', 'https://api.github.com/users/tarsolya/starred', 'https://api.github.com/users/tarsolya/repos', 'https://api.github.com/users/tarsolya/events', 'https://api.github.com/users/tarsolya/received_events', 0); +INSERT INTO `developer` VALUES (810, 'vvarp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maciek Szczesniak', 'Preo ApS', '', 'Warsaw, PL', NULL, NULL, NULL, 'vvarp', 0, 0, 37, 31, 0, 0, 0, '2008-02-25T11:02:26Z', '2024-08-25T22:42:06Z', 'https://avatars.githubusercontent.com/u/810?v=4', 'https://api.github.com/users/vvarp', 'https://github.com/vvarp', 'https://api.github.com/users/vvarp/followers', 'https://api.github.com/users/vvarp/following', 'https://api.github.com/users/vvarp/gists', 'https://api.github.com/users/vvarp/starred', 'https://api.github.com/users/vvarp/repos', 'https://api.github.com/users/vvarp/events', 'https://api.github.com/users/vvarp/received_events', 0); +INSERT INTO `developer` VALUES (812, 'daveliu', 'C', 0, 0, 0, 0, 0, 0, 0, 'liu wen ju', 'http://www.liageren.com/', 'daveliu.github.com', 'Beijing', NULL, 'true', NULL, NULL, 0, 0, 54, 19, 0, 0, 0, '2008-02-25T12:04:17Z', '2024-10-09T03:24:03Z', 'https://avatars.githubusercontent.com/u/812?v=4', 'https://api.github.com/users/daveliu', 'https://github.com/daveliu', 'https://api.github.com/users/daveliu/followers', 'https://api.github.com/users/daveliu/following', 'https://api.github.com/users/daveliu/gists', 'https://api.github.com/users/daveliu/starred', 'https://api.github.com/users/daveliu/repos', 'https://api.github.com/users/daveliu/events', 'https://api.github.com/users/daveliu/received_events', 0); +INSERT INTO `developer` VALUES (813, 'Imbrondir', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-25T12:24:12Z', '2024-03-27T23:24:27Z', 'https://avatars.githubusercontent.com/u/813?v=4', 'https://api.github.com/users/Imbrondir', 'https://github.com/Imbrondir', 'https://api.github.com/users/Imbrondir/followers', 'https://api.github.com/users/Imbrondir/following', 'https://api.github.com/users/Imbrondir/gists', 'https://api.github.com/users/Imbrondir/starred', 'https://api.github.com/users/Imbrondir/repos', 'https://api.github.com/users/Imbrondir/events', 'https://api.github.com/users/Imbrondir/received_events', 0); +INSERT INTO `developer` VALUES (814, 'nimms', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nimai Etheridge', 'Your Pants', '', 'Brisbane, Australia', 'nimai.e@gmail.com.au', 'true', NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-02-25T12:43:18Z', '2022-09-20T12:39:26Z', 'https://avatars.githubusercontent.com/u/814?v=4', 'https://api.github.com/users/nimms', 'https://github.com/nimms', 'https://api.github.com/users/nimms/followers', 'https://api.github.com/users/nimms/following', 'https://api.github.com/users/nimms/gists', 'https://api.github.com/users/nimms/starred', 'https://api.github.com/users/nimms/repos', 'https://api.github.com/users/nimms/events', 'https://api.github.com/users/nimms/received_events', 0); +INSERT INTO `developer` VALUES (815, 'evs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elliot Schoemaker', NULL, '', 'Brisbane, Australia', 'evschoemaker@gmail.com', NULL, NULL, NULL, 0, 0, 13, 14, 0, 0, 0, '2008-02-25T12:54:04Z', '2024-11-04T02:44:28Z', 'https://avatars.githubusercontent.com/u/815?v=4', 'https://api.github.com/users/evs', 'https://github.com/evs', 'https://api.github.com/users/evs/followers', 'https://api.github.com/users/evs/following', 'https://api.github.com/users/evs/gists', 'https://api.github.com/users/evs/starred', 'https://api.github.com/users/evs/repos', 'https://api.github.com/users/evs/events', 'https://api.github.com/users/evs/received_events', 0); +INSERT INTO `developer` VALUES (816, 'svperfecta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Corrigan', 'Falconer', 'https://www.svperfecta.com', 'Saratoga Springs, NY', NULL, 'true', NULL, NULL, 0, 0, 61, 24, 0, 0, 0, '2008-02-25T13:34:42Z', '2024-10-20T04:51:38Z', 'https://avatars.githubusercontent.com/u/816?v=4', 'https://api.github.com/users/svperfecta', 'https://github.com/svperfecta', 'https://api.github.com/users/svperfecta/followers', 'https://api.github.com/users/svperfecta/following', 'https://api.github.com/users/svperfecta/gists', 'https://api.github.com/users/svperfecta/starred', 'https://api.github.com/users/svperfecta/repos', 'https://api.github.com/users/svperfecta/events', 'https://api.github.com/users/svperfecta/received_events', 0); +INSERT INTO `developer` VALUES (817, 'akatz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Avrohom Katz', 'ShopKeep POS', '', 'Brooklyn, NY', 'iambpentameter@gmail.com', 'true', NULL, NULL, 0, 0, 37, 19, 0, 0, 0, '2008-02-25T14:16:45Z', '2024-10-23T02:44:19Z', 'https://avatars.githubusercontent.com/u/817?v=4', 'https://api.github.com/users/akatz', 'https://github.com/akatz', 'https://api.github.com/users/akatz/followers', 'https://api.github.com/users/akatz/following', 'https://api.github.com/users/akatz/gists', 'https://api.github.com/users/akatz/starred', 'https://api.github.com/users/akatz/repos', 'https://api.github.com/users/akatz/events', 'https://api.github.com/users/akatz/received_events', 0); +INSERT INTO `developer` VALUES (818, 'rocanion', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Coutu', 'Snowy Owl Consulting, LLC', 'http://www.snowy-owl.com', 'Derby, VT, USA', 'coutu@snowy-owl.com', 'true', NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-25T14:18:43Z', '2021-04-01T17:00:04Z', 'https://avatars.githubusercontent.com/u/818?v=4', 'https://api.github.com/users/rocanion', 'https://github.com/rocanion', 'https://api.github.com/users/rocanion/followers', 'https://api.github.com/users/rocanion/following', 'https://api.github.com/users/rocanion/gists', 'https://api.github.com/users/rocanion/starred', 'https://api.github.com/users/rocanion/repos', 'https://api.github.com/users/rocanion/events', 'https://api.github.com/users/rocanion/received_events', 0); +INSERT INTO `developer` VALUES (819, 'FooBarWidget', 'C', 10.03502130496921, 0, 0, 0, 0, 0, 0, 'Hongli Lai', '@phusion', 'https://www.joyfulbikeshedding.com/', 'Amsterdam, Netherlands', 'hongli@hongli.nl', NULL, 'Co-founder of Phusion, developer of the Passenger application server for Ruby, Python and Node. Passionate about web development and computing infrastructure.', NULL, 0, 0, 870, 0, 0, 0, 0, '2008-02-25T14:44:50Z', '2024-10-29T15:45:07Z', 'https://avatars.githubusercontent.com/u/819?v=4', 'https://api.github.com/users/FooBarWidget', 'https://github.com/FooBarWidget', 'https://api.github.com/users/FooBarWidget/followers', 'https://api.github.com/users/FooBarWidget/following', 'https://api.github.com/users/FooBarWidget/gists', 'https://api.github.com/users/FooBarWidget/starred', 'https://api.github.com/users/FooBarWidget/repos', 'https://api.github.com/users/FooBarWidget/events', 'https://api.github.com/users/FooBarWidget/received_events', 0); +INSERT INTO `developer` VALUES (820, 'weepy', 'C', 0, 0, 0, 0, 0, 0, 0, 'weepy', 'dub.live', 'https://dub.live', 'A cloud somewhere', 'jonahfox@gmail.com', 'true', NULL, 'weepy', 0, 0, 133, 23, 0, 0, 0, '2008-02-25T16:56:57Z', '2024-10-10T20:24:21Z', 'https://avatars.githubusercontent.com/u/820?v=4', 'https://api.github.com/users/weepy', 'https://github.com/weepy', 'https://api.github.com/users/weepy/followers', 'https://api.github.com/users/weepy/following', 'https://api.github.com/users/weepy/gists', 'https://api.github.com/users/weepy/starred', 'https://api.github.com/users/weepy/repos', 'https://api.github.com/users/weepy/events', 'https://api.github.com/users/weepy/received_events', 0); +INSERT INTO `developer` VALUES (821, 'bitshape', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 29, 5, 0, 0, 0, '2008-02-25T16:57:40Z', '2024-07-29T00:33:11Z', 'https://avatars.githubusercontent.com/u/821?v=4', 'https://api.github.com/users/bitshape', 'https://github.com/bitshape', 'https://api.github.com/users/bitshape/followers', 'https://api.github.com/users/bitshape/following', 'https://api.github.com/users/bitshape/gists', 'https://api.github.com/users/bitshape/starred', 'https://api.github.com/users/bitshape/repos', 'https://api.github.com/users/bitshape/events', 'https://api.github.com/users/bitshape/received_events', 0); +INSERT INTO `developer` VALUES (822, 'peleteiro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jose Peleteiro', NULL, 'https://peleteiro.net', 'Earth', 'jose@peleteiro.net', NULL, 'Someone who has worked long enough to stop giving himself fancy titles.', NULL, 0, 0, 211, 147, 0, 0, 0, '2008-02-25T16:58:12Z', '2024-09-30T13:44:07Z', 'https://avatars.githubusercontent.com/u/822?v=4', 'https://api.github.com/users/peleteiro', 'https://github.com/peleteiro', 'https://api.github.com/users/peleteiro/followers', 'https://api.github.com/users/peleteiro/following', 'https://api.github.com/users/peleteiro/gists', 'https://api.github.com/users/peleteiro/starred', 'https://api.github.com/users/peleteiro/repos', 'https://api.github.com/users/peleteiro/events', 'https://api.github.com/users/peleteiro/received_events', 0); +INSERT INTO `developer` VALUES (823, 'igor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Igor Schwarzmann', NULL, 'http://wiredvanity.com/', 'Berlin, Europe', 'schwarzmann@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-25T16:58:15Z', '2022-05-01T09:46:39Z', 'https://avatars.githubusercontent.com/u/823?v=4', 'https://api.github.com/users/igor', 'https://github.com/igor', 'https://api.github.com/users/igor/followers', 'https://api.github.com/users/igor/following', 'https://api.github.com/users/igor/gists', 'https://api.github.com/users/igor/starred', 'https://api.github.com/users/igor/repos', 'https://api.github.com/users/igor/events', 'https://api.github.com/users/igor/received_events', 0); +INSERT INTO `developer` VALUES (824, 'miles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Miles Forrest', NULL, 'milesforrest.com', 'Earth', NULL, NULL, NULL, NULL, 0, 0, 37, 22, 0, 0, 0, '2008-02-25T16:58:56Z', '2024-09-23T23:12:11Z', 'https://avatars.githubusercontent.com/u/824?v=4', 'https://api.github.com/users/miles', 'https://github.com/miles', 'https://api.github.com/users/miles/followers', 'https://api.github.com/users/miles/following', 'https://api.github.com/users/miles/gists', 'https://api.github.com/users/miles/starred', 'https://api.github.com/users/miles/repos', 'https://api.github.com/users/miles/events', 'https://api.github.com/users/miles/received_events', 0); +INSERT INTO `developer` VALUES (825, 'wunki', 'C', 0, 0, 0, 0, 0, 0, 0, 'Petar Radošević', 'Workera', 'petar.dev', 'Netherlands', 'petar@petar.dev', NULL, 'Dad and software engineer with paper and pencil.\r\n\r\nHead of Engineering at Workera.ai.', NULL, 0, 0, 96, 10, 0, 0, 0, '2008-02-25T16:59:02Z', '2024-11-01T06:03:31Z', 'https://avatars.githubusercontent.com/u/825?v=4', 'https://api.github.com/users/wunki', 'https://github.com/wunki', 'https://api.github.com/users/wunki/followers', 'https://api.github.com/users/wunki/following', 'https://api.github.com/users/wunki/gists', 'https://api.github.com/users/wunki/starred', 'https://api.github.com/users/wunki/repos', 'https://api.github.com/users/wunki/events', 'https://api.github.com/users/wunki/received_events', 0); +INSERT INTO `developer` VALUES (826, 'mkomitee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Komitee', NULL, '', '未知', 'mkomitee@gmail.com', NULL, NULL, NULL, 0, 0, 21, 1, 0, 0, 0, '2008-02-25T16:59:07Z', '2024-09-20T00:46:50Z', 'https://avatars.githubusercontent.com/u/826?v=4', 'https://api.github.com/users/mkomitee', 'https://github.com/mkomitee', 'https://api.github.com/users/mkomitee/followers', 'https://api.github.com/users/mkomitee/following', 'https://api.github.com/users/mkomitee/gists', 'https://api.github.com/users/mkomitee/starred', 'https://api.github.com/users/mkomitee/repos', 'https://api.github.com/users/mkomitee/events', 'https://api.github.com/users/mkomitee/received_events', 0); +INSERT INTO `developer` VALUES (828, 'joergbattermann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jörg Battermann', 'Think First Software LLC', 'https://joergbattermann.com', 'San Francisco Bay Area, CA', NULL, 'true', 'Software Business Owner | Prev. Engineering Manager, Software Architect & Tech Lead', NULL, 0, 0, 33, 0, 0, 0, 0, '2008-02-25T16:59:22Z', '2024-10-03T17:25:40Z', 'https://avatars.githubusercontent.com/u/828?v=4', 'https://api.github.com/users/joergbattermann', 'https://github.com/joergbattermann', 'https://api.github.com/users/joergbattermann/followers', 'https://api.github.com/users/joergbattermann/following', 'https://api.github.com/users/joergbattermann/gists', 'https://api.github.com/users/joergbattermann/starred', 'https://api.github.com/users/joergbattermann/repos', 'https://api.github.com/users/joergbattermann/events', 'https://api.github.com/users/joergbattermann/received_events', 0); +INSERT INTO `developer` VALUES (829, 'mutle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mutwin Kraus', 'GitHub', 'http://mutwinkraus.com', 'Düsseldorf, Germany', NULL, NULL, '\r\n Senior Engineer at @github\r\n', NULL, 0, 0, 161, 3, 0, 0, 0, '2008-02-25T17:00:02Z', '2024-10-04T22:48:00Z', 'https://avatars.githubusercontent.com/u/829?v=4', 'https://api.github.com/users/mutle', 'https://github.com/mutle', 'https://api.github.com/users/mutle/followers', 'https://api.github.com/users/mutle/following', 'https://api.github.com/users/mutle/gists', 'https://api.github.com/users/mutle/starred', 'https://api.github.com/users/mutle/repos', 'https://api.github.com/users/mutle/events', 'https://api.github.com/users/mutle/received_events', 0); +INSERT INTO `developer` VALUES (830, 'baxter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Boxley', NULL, 'http://paulboxley.com', 'Newcastle, UK', NULL, NULL, NULL, NULL, 0, 0, 30, 9, 0, 0, 0, '2008-02-25T17:00:19Z', '2024-05-03T11:30:57Z', 'https://avatars.githubusercontent.com/u/830?v=4', 'https://api.github.com/users/baxter', 'https://github.com/baxter', 'https://api.github.com/users/baxter/followers', 'https://api.github.com/users/baxter/following', 'https://api.github.com/users/baxter/gists', 'https://api.github.com/users/baxter/starred', 'https://api.github.com/users/baxter/repos', 'https://api.github.com/users/baxter/events', 'https://api.github.com/users/baxter/received_events', 0); +INSERT INTO `developer` VALUES (831, 'shanesveller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shane Sveller', NULL, 'https://www.shanesveller.com/', 'Chicago, IL', NULL, NULL, 'Elixir and Kubernetes by day, Rust and amateur PLT/gamedev by night.', NULL, 0, 0, 125, 191, 0, 0, 0, '2008-02-25T17:00:28Z', '2024-10-16T20:50:10Z', 'https://avatars.githubusercontent.com/u/831?v=4', 'https://api.github.com/users/shanesveller', 'https://github.com/shanesveller', 'https://api.github.com/users/shanesveller/followers', 'https://api.github.com/users/shanesveller/following', 'https://api.github.com/users/shanesveller/gists', 'https://api.github.com/users/shanesveller/starred', 'https://api.github.com/users/shanesveller/repos', 'https://api.github.com/users/shanesveller/events', 'https://api.github.com/users/shanesveller/received_events', 0); +INSERT INTO `developer` VALUES (832, 'brenton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brenton Leanhardt', 'Red Hat, Inc.', '', 'Raleigh, NC', 'brenton.leanhardt@gmail.com', NULL, NULL, NULL, 0, 0, 41, 0, 0, 0, 0, '2008-02-25T17:01:15Z', '2024-08-30T12:46:14Z', 'https://avatars.githubusercontent.com/u/832?v=4', 'https://api.github.com/users/brenton', 'https://github.com/brenton', 'https://api.github.com/users/brenton/followers', 'https://api.github.com/users/brenton/following', 'https://api.github.com/users/brenton/gists', 'https://api.github.com/users/brenton/starred', 'https://api.github.com/users/brenton/repos', 'https://api.github.com/users/brenton/events', 'https://api.github.com/users/brenton/received_events', 0); +INSERT INTO `developer` VALUES (833, 'zygote', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 19, 1, 0, 0, 0, '2008-02-25T17:01:21Z', '2024-03-30T03:00:37Z', 'https://avatars.githubusercontent.com/u/833?v=4', 'https://api.github.com/users/zygote', 'https://github.com/zygote', 'https://api.github.com/users/zygote/followers', 'https://api.github.com/users/zygote/following', 'https://api.github.com/users/zygote/gists', 'https://api.github.com/users/zygote/starred', 'https://api.github.com/users/zygote/repos', 'https://api.github.com/users/zygote/events', 'https://api.github.com/users/zygote/received_events', 0); +INSERT INTO `developer` VALUES (834, 'peks', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Zibert', 'peks', 'peks.org', 'Slovenia', NULL, NULL, NULL, NULL, 0, 0, 16, 12, 0, 0, 0, '2008-02-25T17:01:23Z', '2023-12-19T01:21:31Z', 'https://avatars.githubusercontent.com/u/834?v=4', 'https://api.github.com/users/peks', 'https://github.com/peks', 'https://api.github.com/users/peks/followers', 'https://api.github.com/users/peks/following', 'https://api.github.com/users/peks/gists', 'https://api.github.com/users/peks/starred', 'https://api.github.com/users/peks/repos', 'https://api.github.com/users/peks/events', 'https://api.github.com/users/peks/received_events', 0); +INSERT INTO `developer` VALUES (835, 'EugZol', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eugene Zolotarev', NULL, '', 'Russia, Moscow region', 'eugzol@gmail.com', NULL, NULL, NULL, 0, 0, 39, 1, 0, 0, 0, '2008-02-25T17:02:02Z', '2024-08-02T01:00:54Z', 'https://avatars.githubusercontent.com/u/835?v=4', 'https://api.github.com/users/EugZol', 'https://github.com/EugZol', 'https://api.github.com/users/EugZol/followers', 'https://api.github.com/users/EugZol/following', 'https://api.github.com/users/EugZol/gists', 'https://api.github.com/users/EugZol/starred', 'https://api.github.com/users/EugZol/repos', 'https://api.github.com/users/EugZol/events', 'https://api.github.com/users/EugZol/received_events', 0); +INSERT INTO `developer` VALUES (836, 'cdb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cameron Booth', 'GitHub', 'http://www.cdbdesign.net', 'Redwood City, CA', NULL, NULL, NULL, NULL, 0, 0, 36, 3, 0, 0, 0, '2008-02-25T17:03:26Z', '2024-08-12T16:31:08Z', 'https://avatars.githubusercontent.com/u/836?v=4', 'https://api.github.com/users/cdb', 'https://github.com/cdb', 'https://api.github.com/users/cdb/followers', 'https://api.github.com/users/cdb/following', 'https://api.github.com/users/cdb/gists', 'https://api.github.com/users/cdb/starred', 'https://api.github.com/users/cdb/repos', 'https://api.github.com/users/cdb/events', 'https://api.github.com/users/cdb/received_events', 0); +INSERT INTO `developer` VALUES (837, 'DanielVF', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Von Fange', NULL, '', 'Charlotte, NC', NULL, NULL, 'I ♡ distributed systems.', 'danielvf', 0, 0, 116, 2, 0, 0, 0, '2008-02-25T17:03:26Z', '2024-07-23T14:25:26Z', 'https://avatars.githubusercontent.com/u/837?v=4', 'https://api.github.com/users/DanielVF', 'https://github.com/DanielVF', 'https://api.github.com/users/DanielVF/followers', 'https://api.github.com/users/DanielVF/following', 'https://api.github.com/users/DanielVF/gists', 'https://api.github.com/users/DanielVF/starred', 'https://api.github.com/users/DanielVF/repos', 'https://api.github.com/users/DanielVF/events', 'https://api.github.com/users/DanielVF/received_events', 0); +INSERT INTO `developer` VALUES (838, 'michele', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michele Finotto', 'Akiflow', 'http://finotto.org/', 'Italy', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-25T17:03:38Z', '2024-10-31T11:24:18Z', 'https://avatars.githubusercontent.com/u/838?v=4', 'https://api.github.com/users/michele', 'https://github.com/michele', 'https://api.github.com/users/michele/followers', 'https://api.github.com/users/michele/following', 'https://api.github.com/users/michele/gists', 'https://api.github.com/users/michele/starred', 'https://api.github.com/users/michele/repos', 'https://api.github.com/users/michele/events', 'https://api.github.com/users/michele/received_events', 0); +INSERT INTO `developer` VALUES (839, 'huxley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Taylor', NULL, '', 'Halifax, NS', 'patricktaylor@mac.com', NULL, NULL, NULL, 0, 0, 21, 9, 0, 0, 0, '2008-02-25T17:04:02Z', '2024-11-04T15:12:57Z', 'https://avatars.githubusercontent.com/u/839?v=4', 'https://api.github.com/users/huxley', 'https://github.com/huxley', 'https://api.github.com/users/huxley/followers', 'https://api.github.com/users/huxley/following', 'https://api.github.com/users/huxley/gists', 'https://api.github.com/users/huxley/starred', 'https://api.github.com/users/huxley/repos', 'https://api.github.com/users/huxley/events', 'https://api.github.com/users/huxley/received_events', 0); +INSERT INTO `developer` VALUES (840, 'noin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Noin Claude', 'Foxhound', '', 'Estonia, Tallinn', 'nclaude@gmail.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-25T17:05:14Z', '2019-12-19T01:42:15Z', 'https://avatars.githubusercontent.com/u/840?v=4', 'https://api.github.com/users/noin', 'https://github.com/noin', 'https://api.github.com/users/noin/followers', 'https://api.github.com/users/noin/following', 'https://api.github.com/users/noin/gists', 'https://api.github.com/users/noin/starred', 'https://api.github.com/users/noin/repos', 'https://api.github.com/users/noin/events', 'https://api.github.com/users/noin/received_events', 0); +INSERT INTO `developer` VALUES (841, 'blanco', 'C', 0, 0, 0, 0, 0, 0, 0, 'blanco', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 16, 0, 0, 0, '2008-02-25T17:05:54Z', '2024-10-08T13:09:43Z', 'https://avatars.githubusercontent.com/u/841?v=4', 'https://api.github.com/users/blanco', 'https://github.com/blanco', 'https://api.github.com/users/blanco/followers', 'https://api.github.com/users/blanco/following', 'https://api.github.com/users/blanco/gists', 'https://api.github.com/users/blanco/starred', 'https://api.github.com/users/blanco/repos', 'https://api.github.com/users/blanco/events', 'https://api.github.com/users/blanco/received_events', 0); +INSERT INTO `developer` VALUES (842, 'raucao', 'C', 0, 0, 0, 0, 0, 0, 0, 'Râu Cao', 'Kosmos ', '', 'Earth', NULL, NULL, NULL, NULL, 0, 0, 130, 33, 0, 0, 0, '2008-02-25T17:06:18Z', '2024-06-14T14:06:27Z', 'https://avatars.githubusercontent.com/u/842?v=4', 'https://api.github.com/users/raucao', 'https://github.com/raucao', 'https://api.github.com/users/raucao/followers', 'https://api.github.com/users/raucao/following', 'https://api.github.com/users/raucao/gists', 'https://api.github.com/users/raucao/starred', 'https://api.github.com/users/raucao/repos', 'https://api.github.com/users/raucao/events', 'https://api.github.com/users/raucao/received_events', 0); +INSERT INTO `developer` VALUES (843, 'galfert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Garret Alfert', NULL, 'http://garretalfert.com', '未知', 'garret.alfert@gmail.com', 'true', NULL, NULL, 0, 0, 65, 38, 0, 0, 0, '2008-02-25T17:07:20Z', '2024-10-08T18:05:12Z', 'https://avatars.githubusercontent.com/u/843?v=4', 'https://api.github.com/users/galfert', 'https://github.com/galfert', 'https://api.github.com/users/galfert/followers', 'https://api.github.com/users/galfert/following', 'https://api.github.com/users/galfert/gists', 'https://api.github.com/users/galfert/starred', 'https://api.github.com/users/galfert/repos', 'https://api.github.com/users/galfert/events', 'https://api.github.com/users/galfert/received_events', 0); +INSERT INTO `developer` VALUES (844, 'haikuwebdev', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'tjstankus+haikuwebdev@gmail.com', NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-02-25T17:08:04Z', '2018-02-10T08:28:44Z', 'https://avatars.githubusercontent.com/u/844?v=4', 'https://api.github.com/users/haikuwebdev', 'https://github.com/haikuwebdev', 'https://api.github.com/users/haikuwebdev/followers', 'https://api.github.com/users/haikuwebdev/following', 'https://api.github.com/users/haikuwebdev/gists', 'https://api.github.com/users/haikuwebdev/starred', 'https://api.github.com/users/haikuwebdev/repos', 'https://api.github.com/users/haikuwebdev/events', 'https://api.github.com/users/haikuwebdev/received_events', 0); +INSERT INTO `developer` VALUES (845, 'medic0747', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-25T17:13:37Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/845?v=4', 'https://api.github.com/users/medic0747', 'https://github.com/medic0747', 'https://api.github.com/users/medic0747/followers', 'https://api.github.com/users/medic0747/following', 'https://api.github.com/users/medic0747/gists', 'https://api.github.com/users/medic0747/starred', 'https://api.github.com/users/medic0747/repos', 'https://api.github.com/users/medic0747/events', 'https://api.github.com/users/medic0747/received_events', 0); +INSERT INTO `developer` VALUES (846, 'natacado', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Paradise', 'Meta', 'http://www.paulparadise.com', 'Seattle, WA', NULL, NULL, NULL, 'natacado', 0, 0, 35, 11, 0, 0, 0, '2008-02-25T17:14:38Z', '2024-11-04T19:58:58Z', 'https://avatars.githubusercontent.com/u/846?v=4', 'https://api.github.com/users/natacado', 'https://github.com/natacado', 'https://api.github.com/users/natacado/followers', 'https://api.github.com/users/natacado/following', 'https://api.github.com/users/natacado/gists', 'https://api.github.com/users/natacado/starred', 'https://api.github.com/users/natacado/repos', 'https://api.github.com/users/natacado/events', 'https://api.github.com/users/natacado/received_events', 0); +INSERT INTO `developer` VALUES (847, 'hotsyk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Volodymyr Hotsyk', NULL, 'https://hotsyk.com', 'PDX', NULL, NULL, NULL, NULL, 0, 0, 118, 123, 0, 0, 0, '2008-02-25T17:19:39Z', '2024-10-15T22:39:57Z', 'https://avatars.githubusercontent.com/u/847?v=4', 'https://api.github.com/users/hotsyk', 'https://github.com/hotsyk', 'https://api.github.com/users/hotsyk/followers', 'https://api.github.com/users/hotsyk/following', 'https://api.github.com/users/hotsyk/gists', 'https://api.github.com/users/hotsyk/starred', 'https://api.github.com/users/hotsyk/repos', 'https://api.github.com/users/hotsyk/events', 'https://api.github.com/users/hotsyk/received_events', 0); +INSERT INTO `developer` VALUES (848, 'keeran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keeran Raj Hawoldar', NULL, 'http://www.keeran.com', 'Cardiff, Wales, UK', NULL, NULL, NULL, NULL, 0, 0, 53, 9, 0, 0, 0, '2008-02-25T17:25:38Z', '2024-09-24T17:33:14Z', 'https://avatars.githubusercontent.com/u/848?v=4', 'https://api.github.com/users/keeran', 'https://github.com/keeran', 'https://api.github.com/users/keeran/followers', 'https://api.github.com/users/keeran/following', 'https://api.github.com/users/keeran/gists', 'https://api.github.com/users/keeran/starred', 'https://api.github.com/users/keeran/repos', 'https://api.github.com/users/keeran/events', 'https://api.github.com/users/keeran/received_events', 0); +INSERT INTO `developer` VALUES (849, 'juliamae', 'C', 4.324563017507542, 0, 0, 0, 0, 0, 0, 'Julia Valentine', NULL, '', 'Saranac Lake, NY', NULL, NULL, NULL, NULL, 0, 0, 537, 72, 0, 0, 0, '2008-02-25T17:25:55Z', '2024-05-06T04:44:43Z', 'https://avatars.githubusercontent.com/u/849?v=4', 'https://api.github.com/users/juliamae', 'https://github.com/juliamae', 'https://api.github.com/users/juliamae/followers', 'https://api.github.com/users/juliamae/following', 'https://api.github.com/users/juliamae/gists', 'https://api.github.com/users/juliamae/starred', 'https://api.github.com/users/juliamae/repos', 'https://api.github.com/users/juliamae/events', 'https://api.github.com/users/juliamae/received_events', 0); +INSERT INTO `developer` VALUES (850, 'mphilpot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Philpott', NULL, 'www.zencoding.net', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-02-25T17:28:26Z', '2024-10-16T16:34:55Z', 'https://avatars.githubusercontent.com/u/850?v=4', 'https://api.github.com/users/mphilpot', 'https://github.com/mphilpot', 'https://api.github.com/users/mphilpot/followers', 'https://api.github.com/users/mphilpot/following', 'https://api.github.com/users/mphilpot/gists', 'https://api.github.com/users/mphilpot/starred', 'https://api.github.com/users/mphilpot/repos', 'https://api.github.com/users/mphilpot/events', 'https://api.github.com/users/mphilpot/received_events', 0); +INSERT INTO `developer` VALUES (851, 'mountain', 'C', 0.7062245831099081, 0, 0, 0, 0, 0, 0, 'Mingli Yuan', NULL, 'https://onecorner.org', 'Earth', NULL, 'true', 'Independent Researcher', 'mountain', 0, 0, 326, 719, 0, 0, 0, '2008-02-25T17:33:02Z', '2024-11-02T00:40:47Z', 'https://avatars.githubusercontent.com/u/851?v=4', 'https://api.github.com/users/mountain', 'https://github.com/mountain', 'https://api.github.com/users/mountain/followers', 'https://api.github.com/users/mountain/following', 'https://api.github.com/users/mountain/gists', 'https://api.github.com/users/mountain/starred', 'https://api.github.com/users/mountain/repos', 'https://api.github.com/users/mountain/events', 'https://api.github.com/users/mountain/received_events', 0); +INSERT INTO `developer` VALUES (852, 'remash', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-25T17:33:14Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/852?v=4', 'https://api.github.com/users/remash', 'https://github.com/remash', 'https://api.github.com/users/remash/followers', 'https://api.github.com/users/remash/following', 'https://api.github.com/users/remash/gists', 'https://api.github.com/users/remash/starred', 'https://api.github.com/users/remash/repos', 'https://api.github.com/users/remash/events', 'https://api.github.com/users/remash/received_events', 0); +INSERT INTO `developer` VALUES (853, 'shantanoo', 'C', 0, 0, 0, 0, 0, 0, 0, 'शंतनू (Shantanoo)', NULL, 'https://dhoomketu.net.in', 'पुणे, महाराष्ट्र, भारत', 'shantanoo@gmail.com', NULL, NULL, NULL, 0, 0, 37, 37, 0, 0, 0, '2008-02-25T17:37:02Z', '2024-10-26T10:42:33Z', 'https://avatars.githubusercontent.com/u/853?v=4', 'https://api.github.com/users/shantanoo', 'https://github.com/shantanoo', 'https://api.github.com/users/shantanoo/followers', 'https://api.github.com/users/shantanoo/following', 'https://api.github.com/users/shantanoo/gists', 'https://api.github.com/users/shantanoo/starred', 'https://api.github.com/users/shantanoo/repos', 'https://api.github.com/users/shantanoo/events', 'https://api.github.com/users/shantanoo/received_events', 0); +INSERT INTO `developer` VALUES (854, 'janfri', 'C', 0, 0, 0, 0, 0, 0, 0, 'janfri', NULL, '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 22, 43, 0, 0, 0, '2008-02-25T17:37:49Z', '2024-09-27T06:15:28Z', 'https://avatars.githubusercontent.com/u/854?v=4', 'https://api.github.com/users/janfri', 'https://github.com/janfri', 'https://api.github.com/users/janfri/followers', 'https://api.github.com/users/janfri/following', 'https://api.github.com/users/janfri/gists', 'https://api.github.com/users/janfri/starred', 'https://api.github.com/users/janfri/repos', 'https://api.github.com/users/janfri/events', 'https://api.github.com/users/janfri/received_events', 0); +INSERT INTO `developer` VALUES (855, 'olivM', 'C', 0, 0, 0, 0, 0, 0, 0, 'Olivier Mourlevat', 'Mahi-Mahi', 'http://un-petit-p.eu', 'Paris, France', 'olivier.mourlevat@gmail.com', NULL, NULL, NULL, 0, 0, 52, 34, 0, 0, 0, '2008-02-25T17:38:12Z', '2024-10-12T14:13:36Z', 'https://avatars.githubusercontent.com/u/855?v=4', 'https://api.github.com/users/olivM', 'https://github.com/olivM', 'https://api.github.com/users/olivM/followers', 'https://api.github.com/users/olivM/following', 'https://api.github.com/users/olivM/gists', 'https://api.github.com/users/olivM/starred', 'https://api.github.com/users/olivM/repos', 'https://api.github.com/users/olivM/events', 'https://api.github.com/users/olivM/received_events', 0); +INSERT INTO `developer` VALUES (856, 'cavalle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luismi Cavallé', NULL, '', 'Madrid', 'lmcavalle@gmail.com', NULL, 'Freelance full-stack developer & consultant, open-source contributor and conference speaker. Formerly, Director of Technology at BeBanjo. He/him', 'cavalle', 0, 0, 130, 12, 0, 0, 0, '2008-02-25T17:44:06Z', '2024-10-08T16:01:19Z', 'https://avatars.githubusercontent.com/u/856?v=4', 'https://api.github.com/users/cavalle', 'https://github.com/cavalle', 'https://api.github.com/users/cavalle/followers', 'https://api.github.com/users/cavalle/following', 'https://api.github.com/users/cavalle/gists', 'https://api.github.com/users/cavalle/starred', 'https://api.github.com/users/cavalle/repos', 'https://api.github.com/users/cavalle/events', 'https://api.github.com/users/cavalle/received_events', 0); +INSERT INTO `developer` VALUES (857, 'andypearson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Pearson', NULL, 'http://andypearson.co', 'Buckinghamshire, UK', NULL, NULL, 'Programmer. PC gamer. Comic reader. Model painter. Bike rider. Runner. Cat fan. Beard grower. Totally a nerd', NULL, 0, 0, 53, 46, 0, 0, 0, '2008-02-25T17:45:44Z', '2024-10-18T09:01:38Z', 'https://avatars.githubusercontent.com/u/857?v=4', 'https://api.github.com/users/andypearson', 'https://github.com/andypearson', 'https://api.github.com/users/andypearson/followers', 'https://api.github.com/users/andypearson/following', 'https://api.github.com/users/andypearson/gists', 'https://api.github.com/users/andypearson/starred', 'https://api.github.com/users/andypearson/repos', 'https://api.github.com/users/andypearson/events', 'https://api.github.com/users/andypearson/received_events', 0); +INSERT INTO `developer` VALUES (858, 'fredlee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fred Lee', 'PartsSource', '', 'Chicago, IL', 'lee.fred.1@gmail.com', NULL, NULL, NULL, 0, 0, 31, 28, 0, 0, 0, '2008-02-25T17:49:47Z', '2024-10-29T16:39:05Z', 'https://avatars.githubusercontent.com/u/858?v=4', 'https://api.github.com/users/fredlee', 'https://github.com/fredlee', 'https://api.github.com/users/fredlee/followers', 'https://api.github.com/users/fredlee/following', 'https://api.github.com/users/fredlee/gists', 'https://api.github.com/users/fredlee/starred', 'https://api.github.com/users/fredlee/repos', 'https://api.github.com/users/fredlee/events', 'https://api.github.com/users/fredlee/received_events', 0); +INSERT INTO `developer` VALUES (859, 'EatenHardship', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-25T17:58:59Z', '2021-11-24T15:23:34Z', 'https://avatars.githubusercontent.com/u/859?v=4', 'https://api.github.com/users/EatenHardship', 'https://github.com/EatenHardship', 'https://api.github.com/users/EatenHardship/followers', 'https://api.github.com/users/EatenHardship/following', 'https://api.github.com/users/EatenHardship/gists', 'https://api.github.com/users/EatenHardship/starred', 'https://api.github.com/users/EatenHardship/repos', 'https://api.github.com/users/EatenHardship/events', 'https://api.github.com/users/EatenHardship/received_events', 0); +INSERT INTO `developer` VALUES (860, 'bkudria', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Kudria', NULL, 'http://ben.kudria.net', 'San Francisco', 'ben@kudria.net', 'true', NULL, NULL, 0, 0, 54, 3, 0, 0, 0, '2008-02-25T18:02:46Z', '2024-10-24T02:08:33Z', 'https://avatars.githubusercontent.com/u/860?v=4', 'https://api.github.com/users/bkudria', 'https://github.com/bkudria', 'https://api.github.com/users/bkudria/followers', 'https://api.github.com/users/bkudria/following', 'https://api.github.com/users/bkudria/gists', 'https://api.github.com/users/bkudria/starred', 'https://api.github.com/users/bkudria/repos', 'https://api.github.com/users/bkudria/events', 'https://api.github.com/users/bkudria/received_events', 0); +INSERT INTO `developer` VALUES (861, 'whynot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Bob Pipes', 'Depot6, LLC', 'http://depot6.com', 'Manti, UT', NULL, NULL, NULL, NULL, 0, 0, 16, 7, 0, 0, 0, '2008-02-25T18:03:18Z', '2024-05-16T17:52:43Z', 'https://avatars.githubusercontent.com/u/861?v=4', 'https://api.github.com/users/whynot', 'https://github.com/whynot', 'https://api.github.com/users/whynot/followers', 'https://api.github.com/users/whynot/following', 'https://api.github.com/users/whynot/gists', 'https://api.github.com/users/whynot/starred', 'https://api.github.com/users/whynot/repos', 'https://api.github.com/users/whynot/events', 'https://api.github.com/users/whynot/received_events', 0); +INSERT INTO `developer` VALUES (862, 'derekperrault', 'C', 0, 0, 0, 0, 0, 0, 0, 'Derek Perrault', 'USAF', 'http://derekperrault.wordpress.com/', 'Rapid City, SD', 'derek.perrault@gmail.com', NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-02-25T18:05:19Z', '2019-06-05T02:58:16Z', 'https://avatars.githubusercontent.com/u/862?v=4', 'https://api.github.com/users/derekperrault', 'https://github.com/derekperrault', 'https://api.github.com/users/derekperrault/followers', 'https://api.github.com/users/derekperrault/following', 'https://api.github.com/users/derekperrault/gists', 'https://api.github.com/users/derekperrault/starred', 'https://api.github.com/users/derekperrault/repos', 'https://api.github.com/users/derekperrault/events', 'https://api.github.com/users/derekperrault/received_events', 0); +INSERT INTO `developer` VALUES (863, 'cpjolicoeur', 'C', 0, 0, 0, 0, 0, 0, 0, 'Craig P Jolicoeur', 'MojoTech', 'http://craigjolicoeur.com', 'Rhode Island, USA', 'cpjolicoeur@gmail.com', 'true', 'GitHub ID #863', 'cpjolicoeur', 0, 0, 83, 11, 0, 0, 0, '2008-02-25T18:07:40Z', '2024-11-01T22:37:22Z', 'https://avatars.githubusercontent.com/u/863?v=4', 'https://api.github.com/users/cpjolicoeur', 'https://github.com/cpjolicoeur', 'https://api.github.com/users/cpjolicoeur/followers', 'https://api.github.com/users/cpjolicoeur/following', 'https://api.github.com/users/cpjolicoeur/gists', 'https://api.github.com/users/cpjolicoeur/starred', 'https://api.github.com/users/cpjolicoeur/repos', 'https://api.github.com/users/cpjolicoeur/events', 'https://api.github.com/users/cpjolicoeur/received_events', 0); +INSERT INTO `developer` VALUES (864, 'pager', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dmitriy Timokhin', NULL, 'http://devblog.msk.ru', 'Moscow, Russia', NULL, NULL, NULL, NULL, 0, 0, 20, 5, 0, 0, 0, '2008-02-25T18:16:17Z', '2021-07-29T00:15:09Z', 'https://avatars.githubusercontent.com/u/864?v=4', 'https://api.github.com/users/pager', 'https://github.com/pager', 'https://api.github.com/users/pager/followers', 'https://api.github.com/users/pager/following', 'https://api.github.com/users/pager/gists', 'https://api.github.com/users/pager/starred', 'https://api.github.com/users/pager/repos', 'https://api.github.com/users/pager/events', 'https://api.github.com/users/pager/received_events', 0); +INSERT INTO `developer` VALUES (865, 'pengwynn', 'C+', 14.390746244954986, 0, 0, 0, 0, 0, 0, 'Wynn Netherland', NULL, 'https://wynnnetherland.com', 'Denton, TX', NULL, NULL, 'Director, Engineering @adobe', 'pengwynn', 0, 0, 1124, 345, 0, 0, 0, '2008-02-25T18:24:19Z', '2024-10-13T18:02:59Z', 'https://avatars.githubusercontent.com/u/865?v=4', 'https://api.github.com/users/pengwynn', 'https://github.com/pengwynn', 'https://api.github.com/users/pengwynn/followers', 'https://api.github.com/users/pengwynn/following', 'https://api.github.com/users/pengwynn/gists', 'https://api.github.com/users/pengwynn/starred', 'https://api.github.com/users/pengwynn/repos', 'https://api.github.com/users/pengwynn/events', 'https://api.github.com/users/pengwynn/received_events', 0); +INSERT INTO `developer` VALUES (866, 'thom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Weibel', NULL, 'http://ikhono.net', 'Zürich, Switzerland', 'thom@ikhono.net', NULL, NULL, NULL, 0, 0, 13, 1, 0, 0, 0, '2008-02-25T18:26:23Z', '2024-04-02T03:50:56Z', 'https://avatars.githubusercontent.com/u/866?v=4', 'https://api.github.com/users/thom', 'https://github.com/thom', 'https://api.github.com/users/thom/followers', 'https://api.github.com/users/thom/following', 'https://api.github.com/users/thom/gists', 'https://api.github.com/users/thom/starred', 'https://api.github.com/users/thom/repos', 'https://api.github.com/users/thom/events', 'https://api.github.com/users/thom/received_events', 0); +INSERT INTO `developer` VALUES (867, 'sintaxi', 'C', 10.77240781055735, 0, 0, 0, 0, 0, 0, 'Brock Whitten', 'Chloi Inc.', 'https://sintaxi.com', '未知', 'brock@sintaxi.com', NULL, NULL, 'sintaxi', 0, 0, 913, 53, 0, 0, 0, '2008-02-25T18:28:38Z', '2024-09-29T16:52:08Z', 'https://avatars.githubusercontent.com/u/867?v=4', 'https://api.github.com/users/sintaxi', 'https://github.com/sintaxi', 'https://api.github.com/users/sintaxi/followers', 'https://api.github.com/users/sintaxi/following', 'https://api.github.com/users/sintaxi/gists', 'https://api.github.com/users/sintaxi/starred', 'https://api.github.com/users/sintaxi/repos', 'https://api.github.com/users/sintaxi/events', 'https://api.github.com/users/sintaxi/received_events', 0); +INSERT INTO `developer` VALUES (868, 'scotu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matteo Scotuzzi', 'Qwil', 'http://matteoscotuzzi.com/', 'San Francisco (CA)', 'matteo.scotuzzi@gmail.com', NULL, NULL, 'scotu', 0, 0, 76, 74, 0, 0, 0, '2008-02-25T18:30:32Z', '2024-11-04T11:01:50Z', 'https://avatars.githubusercontent.com/u/868?v=4', 'https://api.github.com/users/scotu', 'https://github.com/scotu', 'https://api.github.com/users/scotu/followers', 'https://api.github.com/users/scotu/following', 'https://api.github.com/users/scotu/gists', 'https://api.github.com/users/scotu/starred', 'https://api.github.com/users/scotu/repos', 'https://api.github.com/users/scotu/events', 'https://api.github.com/users/scotu/received_events', 0); +INSERT INTO `developer` VALUES (869, 'peters', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Rekdal Khan-Sunde', '@fintermobilityas ', '', 'Norway', 'peter.sunde@gmail.com', NULL, NULL, NULL, 0, 0, 140, 28, 0, 0, 0, '2008-02-25T18:36:57Z', '2024-10-12T16:37:54Z', 'https://avatars.githubusercontent.com/u/869?v=4', 'https://api.github.com/users/peters', 'https://github.com/peters', 'https://api.github.com/users/peters/followers', 'https://api.github.com/users/peters/following', 'https://api.github.com/users/peters/gists', 'https://api.github.com/users/peters/starred', 'https://api.github.com/users/peters/repos', 'https://api.github.com/users/peters/events', 'https://api.github.com/users/peters/received_events', 0); +INSERT INTO `developer` VALUES (870, 'mmmurf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Murphy', NULL, 'most of my new code is on bitbucket', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 53, 85, 0, 0, 0, '2008-02-25T18:40:03Z', '2024-11-04T20:05:47Z', 'https://avatars.githubusercontent.com/u/870?v=4', 'https://api.github.com/users/mmmurf', 'https://github.com/mmmurf', 'https://api.github.com/users/mmmurf/followers', 'https://api.github.com/users/mmmurf/following', 'https://api.github.com/users/mmmurf/gists', 'https://api.github.com/users/mmmurf/starred', 'https://api.github.com/users/mmmurf/repos', 'https://api.github.com/users/mmmurf/events', 'https://api.github.com/users/mmmurf/received_events', 0); +INSERT INTO `developer` VALUES (872, 'thetamind', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Boehlig', NULL, '', 'Winnipeg, MB, Canada', NULL, 'true', 'Software enthusiast. Always learning.', 'thetamind', 0, 0, 59, 257, 0, 0, 0, '2008-02-25T18:45:46Z', '2024-10-21T05:04:04Z', 'https://avatars.githubusercontent.com/u/872?v=4', 'https://api.github.com/users/thetamind', 'https://github.com/thetamind', 'https://api.github.com/users/thetamind/followers', 'https://api.github.com/users/thetamind/following', 'https://api.github.com/users/thetamind/gists', 'https://api.github.com/users/thetamind/starred', 'https://api.github.com/users/thetamind/repos', 'https://api.github.com/users/thetamind/events', 'https://api.github.com/users/thetamind/received_events', 0); +INSERT INTO `developer` VALUES (873, 'spejman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergio Espeja', 'Finletic.com, Jobandtalent.com Former CTO, Verycocinar.com Founder', 'http://sergioespeja.com', 'Barcelona, Spain', NULL, NULL, NULL, NULL, 0, 0, 74, 41, 0, 0, 0, '2008-02-25T18:50:59Z', '2024-09-15T11:09:43Z', 'https://avatars.githubusercontent.com/u/873?v=4', 'https://api.github.com/users/spejman', 'https://github.com/spejman', 'https://api.github.com/users/spejman/followers', 'https://api.github.com/users/spejman/following', 'https://api.github.com/users/spejman/gists', 'https://api.github.com/users/spejman/starred', 'https://api.github.com/users/spejman/repos', 'https://api.github.com/users/spejman/events', 'https://api.github.com/users/spejman/received_events', 0); +INSERT INTO `developer` VALUES (874, 'alexvetter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Vetter', '@dealercenter-digital', 'https://www.alexvetter.de', 'Landshut, Germany', 'vettera@gmail.com', NULL, NULL, NULL, 0, 0, 25, 44, 0, 0, 0, '2008-02-25T18:55:28Z', '2024-10-31T20:16:10Z', 'https://avatars.githubusercontent.com/u/874?v=4', 'https://api.github.com/users/alexvetter', 'https://github.com/alexvetter', 'https://api.github.com/users/alexvetter/followers', 'https://api.github.com/users/alexvetter/following', 'https://api.github.com/users/alexvetter/gists', 'https://api.github.com/users/alexvetter/starred', 'https://api.github.com/users/alexvetter/repos', 'https://api.github.com/users/alexvetter/events', 'https://api.github.com/users/alexvetter/received_events', 0); +INSERT INTO `developer` VALUES (875, 'jiphex', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Hannah', '@stfc', 'jph.im', 'Cambridge, UK', NULL, 'true', 'DevOps Engineer', NULL, 0, 0, 27, 7, 0, 0, 0, '2008-02-25T18:56:46Z', '2024-10-12T19:15:20Z', 'https://avatars.githubusercontent.com/u/875?v=4', 'https://api.github.com/users/jiphex', 'https://github.com/jiphex', 'https://api.github.com/users/jiphex/followers', 'https://api.github.com/users/jiphex/following', 'https://api.github.com/users/jiphex/gists', 'https://api.github.com/users/jiphex/starred', 'https://api.github.com/users/jiphex/repos', 'https://api.github.com/users/jiphex/events', 'https://api.github.com/users/jiphex/received_events', 0); +INSERT INTO `developer` VALUES (877, 'larssg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lars G. Sehested', NULL, '', 'Denmark', 'lars@sehested.me', NULL, NULL, NULL, 0, 0, 19, 11, 0, 0, 0, '2008-02-25T19:03:30Z', '2024-10-09T00:25:15Z', 'https://avatars.githubusercontent.com/u/877?v=4', 'https://api.github.com/users/larssg', 'https://github.com/larssg', 'https://api.github.com/users/larssg/followers', 'https://api.github.com/users/larssg/following', 'https://api.github.com/users/larssg/gists', 'https://api.github.com/users/larssg/starred', 'https://api.github.com/users/larssg/repos', 'https://api.github.com/users/larssg/events', 'https://api.github.com/users/larssg/received_events', 0); +INSERT INTO `developer` VALUES (878, 'lukerandall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Randall', NULL, 'http://lukerandall.github.com', 'United Kingdom', NULL, NULL, NULL, NULL, 0, 0, 24, 3, 0, 0, 0, '2008-02-25T19:03:32Z', '2024-09-11T10:39:12Z', 'https://avatars.githubusercontent.com/u/878?v=4', 'https://api.github.com/users/lukerandall', 'https://github.com/lukerandall', 'https://api.github.com/users/lukerandall/followers', 'https://api.github.com/users/lukerandall/following', 'https://api.github.com/users/lukerandall/gists', 'https://api.github.com/users/lukerandall/starred', 'https://api.github.com/users/lukerandall/repos', 'https://api.github.com/users/lukerandall/events', 'https://api.github.com/users/lukerandall/received_events', 0); +INSERT INTO `developer` VALUES (879, 'tobinibot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tobin Juday', NULL, '', 'Ohio', 'tobinibot@gmail.com', NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-02-25T19:08:23Z', '2024-10-30T16:05:10Z', 'https://avatars.githubusercontent.com/u/879?v=4', 'https://api.github.com/users/tobinibot', 'https://github.com/tobinibot', 'https://api.github.com/users/tobinibot/followers', 'https://api.github.com/users/tobinibot/following', 'https://api.github.com/users/tobinibot/gists', 'https://api.github.com/users/tobinibot/starred', 'https://api.github.com/users/tobinibot/repos', 'https://api.github.com/users/tobinibot/events', 'https://api.github.com/users/tobinibot/received_events', 0); +INSERT INTO `developer` VALUES (880, 'eugen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eugen Anghel', NULL, 'http://syntactic.org', 'Iasi, Romania', 'eugen@syntactic.org', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-02-25T19:19:58Z', '2024-10-15T07:38:49Z', 'https://avatars.githubusercontent.com/u/880?v=4', 'https://api.github.com/users/eugen', 'https://github.com/eugen', 'https://api.github.com/users/eugen/followers', 'https://api.github.com/users/eugen/following', 'https://api.github.com/users/eugen/gists', 'https://api.github.com/users/eugen/starred', 'https://api.github.com/users/eugen/repos', 'https://api.github.com/users/eugen/events', 'https://api.github.com/users/eugen/received_events', 0); +INSERT INTO `developer` VALUES (881, 'neves', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcos Neves', NULL, '', 'Maringá/PR/Brazil', NULL, 'true', NULL, NULL, 0, 0, 121, 1, 0, 0, 0, '2008-02-25T19:44:13Z', '2024-11-04T17:52:03Z', 'https://avatars.githubusercontent.com/u/881?v=4', 'https://api.github.com/users/neves', 'https://github.com/neves', 'https://api.github.com/users/neves/followers', 'https://api.github.com/users/neves/following', 'https://api.github.com/users/neves/gists', 'https://api.github.com/users/neves/starred', 'https://api.github.com/users/neves/repos', 'https://api.github.com/users/neves/events', 'https://api.github.com/users/neves/received_events', 0); +INSERT INTO `developer` VALUES (882, 'ragnard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ragnar Dahlén', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 46, 10, 0, 0, 0, '2008-02-25T19:48:45Z', '2024-08-02T13:01:21Z', 'https://avatars.githubusercontent.com/u/882?v=4', 'https://api.github.com/users/ragnard', 'https://github.com/ragnard', 'https://api.github.com/users/ragnard/followers', 'https://api.github.com/users/ragnard/following', 'https://api.github.com/users/ragnard/gists', 'https://api.github.com/users/ragnard/starred', 'https://api.github.com/users/ragnard/repos', 'https://api.github.com/users/ragnard/events', 'https://api.github.com/users/ragnard/received_events', 0); +INSERT INTO `developer` VALUES (883, 'benoitgoby', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benoit Goby', NULL, '', 'Paris', NULL, NULL, NULL, NULL, 0, 0, 21, 33, 0, 0, 0, '2008-02-25T19:52:14Z', '2024-09-04T17:01:55Z', 'https://avatars.githubusercontent.com/u/883?v=4', 'https://api.github.com/users/benoitgoby', 'https://github.com/benoitgoby', 'https://api.github.com/users/benoitgoby/followers', 'https://api.github.com/users/benoitgoby/following', 'https://api.github.com/users/benoitgoby/gists', 'https://api.github.com/users/benoitgoby/starred', 'https://api.github.com/users/benoitgoby/repos', 'https://api.github.com/users/benoitgoby/events', 'https://api.github.com/users/benoitgoby/received_events', 0); +INSERT INTO `developer` VALUES (884, 'codeslinger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Toby DiPasquale', NULL, 'http://cbcg.net/', '未知', NULL, NULL, NULL, NULL, 0, 0, 78, 51, 0, 0, 0, '2008-02-25T20:03:32Z', '2024-08-25T01:35:49Z', 'https://avatars.githubusercontent.com/u/884?v=4', 'https://api.github.com/users/codeslinger', 'https://github.com/codeslinger', 'https://api.github.com/users/codeslinger/followers', 'https://api.github.com/users/codeslinger/following', 'https://api.github.com/users/codeslinger/gists', 'https://api.github.com/users/codeslinger/starred', 'https://api.github.com/users/codeslinger/repos', 'https://api.github.com/users/codeslinger/events', 'https://api.github.com/users/codeslinger/received_events', 0); +INSERT INTO `developer` VALUES (885, 'acidburnz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-25T20:11:49Z', '2023-09-21T09:22:21Z', 'https://avatars.githubusercontent.com/u/885?v=4', 'https://api.github.com/users/acidburnz', 'https://github.com/acidburnz', 'https://api.github.com/users/acidburnz/followers', 'https://api.github.com/users/acidburnz/following', 'https://api.github.com/users/acidburnz/gists', 'https://api.github.com/users/acidburnz/starred', 'https://api.github.com/users/acidburnz/repos', 'https://api.github.com/users/acidburnz/events', 'https://api.github.com/users/acidburnz/received_events', 0); +INSERT INTO `developer` VALUES (886, 'dennisreimann', 'C', 10.926744521029287, 0, 0, 0, 0, 0, 0, 'd11n', 'Freelance Software Developer', 'https://d11n.net', 'Mainnet', 'mail@dennisreimann.de', 'true', '₿ Bitcoin 🦸‍♂️ Open Source ⚡️donate@d11n.net', NULL, 0, 0, 922, 229, 0, 0, 0, '2008-02-25T20:15:49Z', '2024-11-01T11:08:52Z', 'https://avatars.githubusercontent.com/u/886?v=4', 'https://api.github.com/users/dennisreimann', 'https://github.com/dennisreimann', 'https://api.github.com/users/dennisreimann/followers', 'https://api.github.com/users/dennisreimann/following', 'https://api.github.com/users/dennisreimann/gists', 'https://api.github.com/users/dennisreimann/starred', 'https://api.github.com/users/dennisreimann/repos', 'https://api.github.com/users/dennisreimann/events', 'https://api.github.com/users/dennisreimann/received_events', 0); +INSERT INTO `developer` VALUES (887, 'mislav', 'A', 77.27438150057641, 0, 0, 0, 0, 0, 0, 'Mislav Marohnić', NULL, 'https://mislav.net', 'The Netherlands', 'hi@mislav.net', NULL, '\r\n =(◉ᴥ◉)=', 'mislav', 0, 0, 4791, 22, 0, 0, 0, '2008-02-25T20:18:33Z', '2023-06-06T06:56:29Z', 'https://avatars.githubusercontent.com/u/887?v=4', 'https://api.github.com/users/mislav', 'https://github.com/mislav', 'https://api.github.com/users/mislav/followers', 'https://api.github.com/users/mislav/following', 'https://api.github.com/users/mislav/gists', 'https://api.github.com/users/mislav/starred', 'https://api.github.com/users/mislav/repos', 'https://api.github.com/users/mislav/events', 'https://api.github.com/users/mislav/received_events', 0); +INSERT INTO `developer` VALUES (888, 'armitage', 'C', 0, 0, 0, 0, 0, 0, 0, 'Milan Zoufal', 'http://nikoblue.co.uk', 'http://lean.photography', 'Austria', 'lord.armitage@gmail.com', NULL, NULL, NULL, 0, 0, 11, 9, 0, 0, 0, '2008-02-25T20:28:30Z', '2024-01-14T12:38:08Z', 'https://avatars.githubusercontent.com/u/888?v=4', 'https://api.github.com/users/armitage', 'https://github.com/armitage', 'https://api.github.com/users/armitage/followers', 'https://api.github.com/users/armitage/following', 'https://api.github.com/users/armitage/gists', 'https://api.github.com/users/armitage/starred', 'https://api.github.com/users/armitage/repos', 'https://api.github.com/users/armitage/events', 'https://api.github.com/users/armitage/received_events', 0); +INSERT INTO `developer` VALUES (890, 'slaytanic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carlos Eduardo Monti', NULL, '', 'Barcelona, Spain', 'slaytanic@gmail.com', NULL, NULL, NULL, 0, 0, 8, 6, 0, 0, 0, '2008-02-25T20:47:24Z', '2024-10-30T08:27:24Z', 'https://avatars.githubusercontent.com/u/890?v=4', 'https://api.github.com/users/slaytanic', 'https://github.com/slaytanic', 'https://api.github.com/users/slaytanic/followers', 'https://api.github.com/users/slaytanic/following', 'https://api.github.com/users/slaytanic/gists', 'https://api.github.com/users/slaytanic/starred', 'https://api.github.com/users/slaytanic/repos', 'https://api.github.com/users/slaytanic/events', 'https://api.github.com/users/slaytanic/received_events', 0); +INSERT INTO `developer` VALUES (891, 'mattly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Lyon', NULL, 'https://lyonheart.us', 'Olympia, Washington', NULL, NULL, 'Not a part of the \"Software Supply Chain\"\r\n\r\nI\'m only here because I have to be – I\'m active on Codeberg, now', NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-25T20:47:33Z', '2024-10-09T21:56:25Z', 'https://avatars.githubusercontent.com/u/891?v=4', 'https://api.github.com/users/mattly', 'https://github.com/mattly', 'https://api.github.com/users/mattly/followers', 'https://api.github.com/users/mattly/following', 'https://api.github.com/users/mattly/gists', 'https://api.github.com/users/mattly/starred', 'https://api.github.com/users/mattly/repos', 'https://api.github.com/users/mattly/events', 'https://api.github.com/users/mattly/received_events', 0); +INSERT INTO `developer` VALUES (892, 'pyrat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alastair Brunton', NULL, 'https://oslo.vision', '未知', NULL, 'true', NULL, NULL, 0, 0, 33, 19, 0, 0, 0, '2008-02-25T20:58:43Z', '2024-09-24T20:58:18Z', 'https://avatars.githubusercontent.com/u/892?v=4', 'https://api.github.com/users/pyrat', 'https://github.com/pyrat', 'https://api.github.com/users/pyrat/followers', 'https://api.github.com/users/pyrat/following', 'https://api.github.com/users/pyrat/gists', 'https://api.github.com/users/pyrat/starred', 'https://api.github.com/users/pyrat/repos', 'https://api.github.com/users/pyrat/events', 'https://api.github.com/users/pyrat/received_events', 0); +INSERT INTO `developer` VALUES (894, 'rigagoogoo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-25T21:19:33Z', '2023-06-29T13:46:24Z', 'https://avatars.githubusercontent.com/u/894?v=4', 'https://api.github.com/users/rigagoogoo', 'https://github.com/rigagoogoo', 'https://api.github.com/users/rigagoogoo/followers', 'https://api.github.com/users/rigagoogoo/following', 'https://api.github.com/users/rigagoogoo/gists', 'https://api.github.com/users/rigagoogoo/starred', 'https://api.github.com/users/rigagoogoo/repos', 'https://api.github.com/users/rigagoogoo/events', 'https://api.github.com/users/rigagoogoo/received_events', 0); +INSERT INTO `developer` VALUES (895, 'luisbarrueco', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luis Barrueco', NULL, 'https://noc.social/@luis', 'Córdoba, AR', NULL, 'true', NULL, NULL, 0, 0, 12, 4, 0, 0, 0, '2008-02-25T21:32:19Z', '2024-10-18T16:42:48Z', 'https://avatars.githubusercontent.com/u/895?v=4', 'https://api.github.com/users/luisbarrueco', 'https://github.com/luisbarrueco', 'https://api.github.com/users/luisbarrueco/followers', 'https://api.github.com/users/luisbarrueco/following', 'https://api.github.com/users/luisbarrueco/gists', 'https://api.github.com/users/luisbarrueco/starred', 'https://api.github.com/users/luisbarrueco/repos', 'https://api.github.com/users/luisbarrueco/events', 'https://api.github.com/users/luisbarrueco/received_events', 0); +INSERT INTO `developer` VALUES (896, 'lucas-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-25T22:00:33Z', '2016-02-26T22:34:35Z', 'https://avatars.githubusercontent.com/u/896?v=4', 'https://api.github.com/users/lucas-xx', 'https://github.com/lucas-xx', 'https://api.github.com/users/lucas-xx/followers', 'https://api.github.com/users/lucas-xx/following', 'https://api.github.com/users/lucas-xx/gists', 'https://api.github.com/users/lucas-xx/starred', 'https://api.github.com/users/lucas-xx/repos', 'https://api.github.com/users/lucas-xx/events', 'https://api.github.com/users/lucas-xx/received_events', 0); +INSERT INTO `developer` VALUES (897, 'Val', 'C', 0, 0, 0, 0, 0, 0, 0, 'Laurent Vallar', '@scaleway ', 'https://www.linkedin.com/in/lvallar/', '未知', 'val@zbla.net', NULL, 'Senior DevOps/SRE, R&D Engineer, Engineering Manager', NULL, 0, 0, 42, 28, 0, 0, 0, '2008-02-25T22:25:52Z', '2024-07-20T13:33:52Z', 'https://avatars.githubusercontent.com/u/897?v=4', 'https://api.github.com/users/Val', 'https://github.com/Val', 'https://api.github.com/users/Val/followers', 'https://api.github.com/users/Val/following', 'https://api.github.com/users/Val/gists', 'https://api.github.com/users/Val/starred', 'https://api.github.com/users/Val/repos', 'https://api.github.com/users/Val/events', 'https://api.github.com/users/Val/received_events', 0); +INSERT INTO `developer` VALUES (898, 'hunter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hunter Nield', NULL, 'http://interfacelounge.net', 'Singapore', NULL, NULL, 'Eclectic Technologist\r\n\r\n💼 Distinguished Engineer at Govtech Singapore', 'hunternield', 0, 0, 81, 65, 0, 0, 0, '2008-02-25T23:08:56Z', '2024-11-03T09:01:49Z', 'https://avatars.githubusercontent.com/u/898?v=4', 'https://api.github.com/users/hunter', 'https://github.com/hunter', 'https://api.github.com/users/hunter/followers', 'https://api.github.com/users/hunter/following', 'https://api.github.com/users/hunter/gists', 'https://api.github.com/users/hunter/starred', 'https://api.github.com/users/hunter/repos', 'https://api.github.com/users/hunter/events', 'https://api.github.com/users/hunter/received_events', 0); +INSERT INTO `developer` VALUES (899, 'gensym', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Altenburg', '@inventables ', 'http://gensym.org', 'Chicago, IL', 'david@gensym.org', NULL, NULL, NULL, 0, 0, 14, 4, 0, 0, 0, '2008-02-25T23:41:06Z', '2024-07-03T17:45:16Z', 'https://avatars.githubusercontent.com/u/899?v=4', 'https://api.github.com/users/gensym', 'https://github.com/gensym', 'https://api.github.com/users/gensym/followers', 'https://api.github.com/users/gensym/following', 'https://api.github.com/users/gensym/gists', 'https://api.github.com/users/gensym/starred', 'https://api.github.com/users/gensym/repos', 'https://api.github.com/users/gensym/events', 'https://api.github.com/users/gensym/received_events', 0); +INSERT INTO `developer` VALUES (900, 'joseph', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joseph Pearson', NULL, '', 'NYC', NULL, NULL, NULL, NULL, 0, 0, 91, 5, 0, 0, 0, '2008-02-25T23:57:36Z', '2024-08-27T15:49:24Z', 'https://avatars.githubusercontent.com/u/900?v=4', 'https://api.github.com/users/joseph', 'https://github.com/joseph', 'https://api.github.com/users/joseph/followers', 'https://api.github.com/users/joseph/following', 'https://api.github.com/users/joseph/gists', 'https://api.github.com/users/joseph/starred', 'https://api.github.com/users/joseph/repos', 'https://api.github.com/users/joseph/events', 'https://api.github.com/users/joseph/received_events', 0); +INSERT INTO `developer` VALUES (901, 'benhoskings', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Hoskings', '@Ferocia ', '', 'Melbourne, Australia', 'ben@hoskings.net', NULL, NULL, NULL, 0, 0, 256, 5, 0, 0, 0, '2008-02-26T00:14:48Z', '2024-07-08T05:21:02Z', 'https://avatars.githubusercontent.com/u/901?v=4', 'https://api.github.com/users/benhoskings', 'https://github.com/benhoskings', 'https://api.github.com/users/benhoskings/followers', 'https://api.github.com/users/benhoskings/following', 'https://api.github.com/users/benhoskings/gists', 'https://api.github.com/users/benhoskings/starred', 'https://api.github.com/users/benhoskings/repos', 'https://api.github.com/users/benhoskings/events', 'https://api.github.com/users/benhoskings/received_events', 0); +INSERT INTO `developer` VALUES (902, 'kennyp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kenny Parnell', '@heroku', 'http://kennethparnell.com', 'Monroe, NC, USA', 'k.parnell@gmail.com', NULL, NULL, NULL, 0, 0, 89, 10, 0, 0, 0, '2008-02-26T00:49:36Z', '2024-11-04T12:09:33Z', 'https://avatars.githubusercontent.com/u/902?v=4', 'https://api.github.com/users/kennyp', 'https://github.com/kennyp', 'https://api.github.com/users/kennyp/followers', 'https://api.github.com/users/kennyp/following', 'https://api.github.com/users/kennyp/gists', 'https://api.github.com/users/kennyp/starred', 'https://api.github.com/users/kennyp/repos', 'https://api.github.com/users/kennyp/events', 'https://api.github.com/users/kennyp/received_events', 0); +INSERT INTO `developer` VALUES (903, 'luke0x', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Crawford', NULL, 'https://lukecrawford.net', 'Los Angeles, California', 'luke0x@gmail.com', NULL, NULL, NULL, 0, 0, 99, 40, 0, 0, 0, '2008-02-26T02:25:30Z', '2024-11-02T05:27:18Z', 'https://avatars.githubusercontent.com/u/903?v=4', 'https://api.github.com/users/luke0x', 'https://github.com/luke0x', 'https://api.github.com/users/luke0x/followers', 'https://api.github.com/users/luke0x/following', 'https://api.github.com/users/luke0x/gists', 'https://api.github.com/users/luke0x/starred', 'https://api.github.com/users/luke0x/repos', 'https://api.github.com/users/luke0x/events', 'https://api.github.com/users/luke0x/received_events', 0); +INSERT INTO `developer` VALUES (904, 'harrylove', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harry Love', NULL, '', 'Bellingham, WA', NULL, NULL, NULL, NULL, 0, 0, 10, 7, 0, 0, 0, '2008-02-26T03:07:49Z', '2024-06-01T20:21:45Z', 'https://avatars.githubusercontent.com/u/904?v=4', 'https://api.github.com/users/harrylove', 'https://github.com/harrylove', 'https://api.github.com/users/harrylove/followers', 'https://api.github.com/users/harrylove/following', 'https://api.github.com/users/harrylove/gists', 'https://api.github.com/users/harrylove/starred', 'https://api.github.com/users/harrylove/repos', 'https://api.github.com/users/harrylove/events', 'https://api.github.com/users/harrylove/received_events', 0); +INSERT INTO `developer` VALUES (905, 'tohchye', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Goh', NULL, 'detrack.com', 'Singapore', 'tohchye@gmail.com', NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-26T04:00:54Z', '2024-01-07T12:05:53Z', 'https://avatars.githubusercontent.com/u/905?v=4', 'https://api.github.com/users/tohchye', 'https://github.com/tohchye', 'https://api.github.com/users/tohchye/followers', 'https://api.github.com/users/tohchye/following', 'https://api.github.com/users/tohchye/gists', 'https://api.github.com/users/tohchye/starred', 'https://api.github.com/users/tohchye/repos', 'https://api.github.com/users/tohchye/events', 'https://api.github.com/users/tohchye/received_events', 0); +INSERT INTO `developer` VALUES (906, 'r8u', 'C', 0, 0, 0, 0, 0, 4, 0, 'night', NULL, '', 'PST/California Time', 'R8U@RISEUP.NET', NULL, 'design ai cybersec threat intel opsec blah blah', 'nighhhhht', 0, 0, 9, 24, 0, 0, 0, '2008-02-26T04:01:49Z', '2023-05-15T00:39:20Z', 'https://avatars.githubusercontent.com/u/906?v=4', 'https://api.github.com/users/r8u', 'https://github.com/r8u', 'https://api.github.com/users/r8u/followers', 'https://api.github.com/users/r8u/following', 'https://api.github.com/users/r8u/gists', 'https://api.github.com/users/r8u/starred', 'https://api.github.com/users/r8u/repos', 'https://api.github.com/users/r8u/events', 'https://api.github.com/users/r8u/received_events', 0); +INSERT INTO `developer` VALUES (907, 'lukaszcho', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Kowalski', NULL, '', 'Warszawa, Polska', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-26T05:25:32Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/907?v=4', 'https://api.github.com/users/lukaszcho', 'https://github.com/lukaszcho', 'https://api.github.com/users/lukaszcho/followers', 'https://api.github.com/users/lukaszcho/following', 'https://api.github.com/users/lukaszcho/gists', 'https://api.github.com/users/lukaszcho/starred', 'https://api.github.com/users/lukaszcho/repos', 'https://api.github.com/users/lukaszcho/events', 'https://api.github.com/users/lukaszcho/received_events', 0); +INSERT INTO `developer` VALUES (908, 'wasnotrice', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Watson', NULL, '', '未知', 'wasnotrice@gmail.com', 'true', NULL, NULL, 0, 0, 32, 2, 0, 0, 0, '2008-02-26T05:32:30Z', '2024-10-27T03:26:08Z', 'https://avatars.githubusercontent.com/u/908?v=4', 'https://api.github.com/users/wasnotrice', 'https://github.com/wasnotrice', 'https://api.github.com/users/wasnotrice/followers', 'https://api.github.com/users/wasnotrice/following', 'https://api.github.com/users/wasnotrice/gists', 'https://api.github.com/users/wasnotrice/starred', 'https://api.github.com/users/wasnotrice/repos', 'https://api.github.com/users/wasnotrice/events', 'https://api.github.com/users/wasnotrice/received_events', 0); +INSERT INTO `developer` VALUES (909, 'bartcortooms', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bart Cortooms', NULL, 'http://www.hiccup.nl/', 'Nantes, France', 'bart@hiccup.nl', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-26T08:11:02Z', '2024-09-14T07:49:07Z', 'https://avatars.githubusercontent.com/u/909?v=4', 'https://api.github.com/users/bartcortooms', 'https://github.com/bartcortooms', 'https://api.github.com/users/bartcortooms/followers', 'https://api.github.com/users/bartcortooms/following', 'https://api.github.com/users/bartcortooms/gists', 'https://api.github.com/users/bartcortooms/starred', 'https://api.github.com/users/bartcortooms/repos', 'https://api.github.com/users/bartcortooms/events', 'https://api.github.com/users/bartcortooms/received_events', 0); +INSERT INTO `developer` VALUES (910, 'ejdraper', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elliott Draper', '@kickcode ', 'https://ejdraper.com', 'Hampshire, United Kingdom', 'el@kickcode.com', NULL, NULL, NULL, 0, 0, 66, 49, 0, 0, 0, '2008-02-26T08:18:04Z', '2024-10-21T00:53:25Z', 'https://avatars.githubusercontent.com/u/910?v=4', 'https://api.github.com/users/ejdraper', 'https://github.com/ejdraper', 'https://api.github.com/users/ejdraper/followers', 'https://api.github.com/users/ejdraper/following', 'https://api.github.com/users/ejdraper/gists', 'https://api.github.com/users/ejdraper/starred', 'https://api.github.com/users/ejdraper/repos', 'https://api.github.com/users/ejdraper/events', 'https://api.github.com/users/ejdraper/received_events', 0); +INSERT INTO `developer` VALUES (911, 'shenoudab', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shenouda Bertel', 'mobiThought', 'shenoudabertel.net', 'Germany', 'shenoudab@mobiThought.com', 'true', 'Passionate Product Mindset, Product Manager, Entrepreneur & Developer .. Thinking for Clarity of Thoughts ', NULL, 0, 0, 54, 63, 0, 0, 0, '2008-02-26T08:25:24Z', '2024-09-06T14:24:07Z', 'https://avatars.githubusercontent.com/u/911?v=4', 'https://api.github.com/users/shenoudab', 'https://github.com/shenoudab', 'https://api.github.com/users/shenoudab/followers', 'https://api.github.com/users/shenoudab/following', 'https://api.github.com/users/shenoudab/gists', 'https://api.github.com/users/shenoudab/starred', 'https://api.github.com/users/shenoudab/repos', 'https://api.github.com/users/shenoudab/events', 'https://api.github.com/users/shenoudab/received_events', 0); +INSERT INTO `developer` VALUES (912, 'kaitanie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pekka Kaitaniemi', 'Metosin', '', 'Helsinki, Finland', NULL, NULL, NULL, NULL, 0, 0, 15, 2, 0, 0, 0, '2008-02-26T09:22:47Z', '2024-10-20T03:36:52Z', 'https://avatars.githubusercontent.com/u/912?v=4', 'https://api.github.com/users/kaitanie', 'https://github.com/kaitanie', 'https://api.github.com/users/kaitanie/followers', 'https://api.github.com/users/kaitanie/following', 'https://api.github.com/users/kaitanie/gists', 'https://api.github.com/users/kaitanie/starred', 'https://api.github.com/users/kaitanie/repos', 'https://api.github.com/users/kaitanie/events', 'https://api.github.com/users/kaitanie/received_events', 0); +INSERT INTO `developer` VALUES (913, 'Norgg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Norgg', 'http://mhnltd.co.uk', 'http://norgg.org', 'Edinburgh, Scotland', 'norgg at (see below)', NULL, NULL, NULL, 0, 0, 42, 28, 0, 0, 0, '2008-02-26T09:29:22Z', '2024-09-20T11:09:58Z', 'https://avatars.githubusercontent.com/u/913?v=4', 'https://api.github.com/users/Norgg', 'https://github.com/Norgg', 'https://api.github.com/users/Norgg/followers', 'https://api.github.com/users/Norgg/following', 'https://api.github.com/users/Norgg/gists', 'https://api.github.com/users/Norgg/starred', 'https://api.github.com/users/Norgg/repos', 'https://api.github.com/users/Norgg/events', 'https://api.github.com/users/Norgg/received_events', 0); +INSERT INTO `developer` VALUES (914, 'webzense', 'C', 0, 0, 0, 0, 0, 0, 0, 'webzense', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-26T09:32:50Z', '2016-02-26T22:34:35Z', 'https://avatars.githubusercontent.com/u/914?v=4', 'https://api.github.com/users/webzense', 'https://github.com/webzense', 'https://api.github.com/users/webzense/followers', 'https://api.github.com/users/webzense/following', 'https://api.github.com/users/webzense/gists', 'https://api.github.com/users/webzense/starred', 'https://api.github.com/users/webzense/repos', 'https://api.github.com/users/webzense/events', 'https://api.github.com/users/webzense/received_events', 0); +INSERT INTO `developer` VALUES (917, 'antramm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ant Ramm', 'Carousel Digital', 'http://www.carouseldigital.com/', 'Birmingham, UK', NULL, 'true', NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2008-02-26T10:56:44Z', '2021-11-12T04:57:49Z', 'https://avatars.githubusercontent.com/u/917?v=4', 'https://api.github.com/users/antramm', 'https://github.com/antramm', 'https://api.github.com/users/antramm/followers', 'https://api.github.com/users/antramm/following', 'https://api.github.com/users/antramm/gists', 'https://api.github.com/users/antramm/starred', 'https://api.github.com/users/antramm/repos', 'https://api.github.com/users/antramm/events', 'https://api.github.com/users/antramm/received_events', 0); +INSERT INTO `developer` VALUES (919, 'amiroff', 'C', 0, 0, 0, 0, 0, 0, 0, 'Metin Emiroğlu', 'Akinon', 'www.amiroff.dev', 'Istanbul', 'amiroff@gmail.com', NULL, 'Software craftsman enjoying developing webapps & riding a bike. Lead solution architect @akinon', 'amiroff', 0, 0, 102, 108, 0, 0, 0, '2008-02-26T11:56:47Z', '2024-10-15T13:02:01Z', 'https://avatars.githubusercontent.com/u/919?v=4', 'https://api.github.com/users/amiroff', 'https://github.com/amiroff', 'https://api.github.com/users/amiroff/followers', 'https://api.github.com/users/amiroff/following', 'https://api.github.com/users/amiroff/gists', 'https://api.github.com/users/amiroff/starred', 'https://api.github.com/users/amiroff/repos', 'https://api.github.com/users/amiroff/events', 'https://api.github.com/users/amiroff/received_events', 0); +INSERT INTO `developer` VALUES (920, 'be9', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oleg Dashevskii', 'Plaid', 'http://twitter.com/be9', 'Novosibirsk, Russia', 'olegdashevskii@gmail.com', 'true', NULL, NULL, 0, 0, 89, 2, 0, 0, 0, '2008-02-26T12:06:42Z', '2024-09-25T12:19:46Z', 'https://avatars.githubusercontent.com/u/920?v=4', 'https://api.github.com/users/be9', 'https://github.com/be9', 'https://api.github.com/users/be9/followers', 'https://api.github.com/users/be9/following', 'https://api.github.com/users/be9/gists', 'https://api.github.com/users/be9/starred', 'https://api.github.com/users/be9/repos', 'https://api.github.com/users/be9/events', 'https://api.github.com/users/be9/received_events', 0); +INSERT INTO `developer` VALUES (922, 'greenpart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergei Zimakov', NULL, '', '未知', 'zimakov@gmail.com', NULL, NULL, NULL, 0, 0, 13, 3, 0, 0, 0, '2008-02-26T12:20:27Z', '2023-06-22T20:56:18Z', 'https://avatars.githubusercontent.com/u/922?v=4', 'https://api.github.com/users/greenpart', 'https://github.com/greenpart', 'https://api.github.com/users/greenpart/followers', 'https://api.github.com/users/greenpart/following', 'https://api.github.com/users/greenpart/gists', 'https://api.github.com/users/greenpart/starred', 'https://api.github.com/users/greenpart/repos', 'https://api.github.com/users/greenpart/events', 'https://api.github.com/users/greenpart/received_events', 0); +INSERT INTO `developer` VALUES (923, 'wisesmile', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Pazaryna', NULL, '', 'The Jersey Shore', 'mpazaryna@gmail.com', NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2008-02-26T12:35:27Z', '2024-08-06T13:00:51Z', 'https://avatars.githubusercontent.com/u/923?v=4', 'https://api.github.com/users/wisesmile', 'https://github.com/wisesmile', 'https://api.github.com/users/wisesmile/followers', 'https://api.github.com/users/wisesmile/following', 'https://api.github.com/users/wisesmile/gists', 'https://api.github.com/users/wisesmile/starred', 'https://api.github.com/users/wisesmile/repos', 'https://api.github.com/users/wisesmile/events', 'https://api.github.com/users/wisesmile/received_events', 0); +INSERT INTO `developer` VALUES (924, 'benschwarz', 'C', 10.875298950871976, 0, 0, 0, 0, 0, 0, 'Ben Schwarz', '@calibreapp ', 'https://germanforblack.com', 'Melbourne, Australia', NULL, NULL, 'Founder & CEO @calibreapp ', NULL, 0, 0, 919, 50, 0, 0, 0, '2008-02-26T12:54:41Z', '2024-11-03T13:42:05Z', 'https://avatars.githubusercontent.com/u/924?v=4', 'https://api.github.com/users/benschwarz', 'https://github.com/benschwarz', 'https://api.github.com/users/benschwarz/followers', 'https://api.github.com/users/benschwarz/following', 'https://api.github.com/users/benschwarz/gists', 'https://api.github.com/users/benschwarz/starred', 'https://api.github.com/users/benschwarz/repos', 'https://api.github.com/users/benschwarz/events', 'https://api.github.com/users/benschwarz/received_events', 0); +INSERT INTO `developer` VALUES (925, 'cbartlett', 'C', 0, 0, 0, 0, 0, 0, 0, 'Colin Bartlett', 'Co-Founder, @statusgator', 'https://colinabartlett.com', 'New York, NY, USA', NULL, 'true', 'Entrepreneur, nerd herder, and bit pusher. ', NULL, 0, 0, 116, 75, 0, 0, 0, '2008-02-26T13:40:22Z', '2024-10-20T00:05:17Z', 'https://avatars.githubusercontent.com/u/925?v=4', 'https://api.github.com/users/cbartlett', 'https://github.com/cbartlett', 'https://api.github.com/users/cbartlett/followers', 'https://api.github.com/users/cbartlett/following', 'https://api.github.com/users/cbartlett/gists', 'https://api.github.com/users/cbartlett/starred', 'https://api.github.com/users/cbartlett/repos', 'https://api.github.com/users/cbartlett/events', 'https://api.github.com/users/cbartlett/received_events', 0); +INSERT INTO `developer` VALUES (926, 'r38y', 'C', 0, 0, 0, 0, 0, 0, 0, 'Randy Schmidt', NULL, 'http://r38y.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 57, 49, 0, 0, 0, '2008-02-26T13:56:30Z', '2024-10-10T15:45:37Z', 'https://avatars.githubusercontent.com/u/926?v=4', 'https://api.github.com/users/r38y', 'https://github.com/r38y', 'https://api.github.com/users/r38y/followers', 'https://api.github.com/users/r38y/following', 'https://api.github.com/users/r38y/gists', 'https://api.github.com/users/r38y/starred', 'https://api.github.com/users/r38y/repos', 'https://api.github.com/users/r38y/events', 'https://api.github.com/users/r38y/received_events', 0); +INSERT INTO `developer` VALUES (927, 'constantine-nikolaou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Constantine Nikolaou', 'Booking.com', 'https://cnikolaou.com', 'Amsterdam, Netherlands', NULL, NULL, 'Solutions Architect. Startups. Ruby, Python & GoLang. Passionate about communities and the Open Source movement: @mena-devs', 'cnikolaou_com', 0, 0, 97, 142, 0, 0, 0, '2008-02-26T14:16:49Z', '2024-09-09T07:47:52Z', 'https://avatars.githubusercontent.com/u/927?v=4', 'https://api.github.com/users/constantine-nikolaou', 'https://github.com/constantine-nikolaou', 'https://api.github.com/users/constantine-nikolaou/followers', 'https://api.github.com/users/constantine-nikolaou/following', 'https://api.github.com/users/constantine-nikolaou/gists', 'https://api.github.com/users/constantine-nikolaou/starred', 'https://api.github.com/users/constantine-nikolaou/repos', 'https://api.github.com/users/constantine-nikolaou/events', 'https://api.github.com/users/constantine-nikolaou/received_events', 0); +INSERT INTO `developer` VALUES (928, 'ewhitten', 'C', 0, 0, 0, 0, 0, 0, 0, 'eric whitten', 'Twentyeight Health, Inc.', '', 'Philadelphia, PA', 'ewhitten@gmail.com', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-26T14:17:53Z', '2024-07-03T00:20:19Z', 'https://avatars.githubusercontent.com/u/928?v=4', 'https://api.github.com/users/ewhitten', 'https://github.com/ewhitten', 'https://api.github.com/users/ewhitten/followers', 'https://api.github.com/users/ewhitten/following', 'https://api.github.com/users/ewhitten/gists', 'https://api.github.com/users/ewhitten/starred', 'https://api.github.com/users/ewhitten/repos', 'https://api.github.com/users/ewhitten/events', 'https://api.github.com/users/ewhitten/received_events', 0); +INSERT INTO `developer` VALUES (929, 'julesss', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-26T14:33:44Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/929?v=4', 'https://api.github.com/users/julesss', 'https://github.com/julesss', 'https://api.github.com/users/julesss/followers', 'https://api.github.com/users/julesss/following', 'https://api.github.com/users/julesss/gists', 'https://api.github.com/users/julesss/starred', 'https://api.github.com/users/julesss/repos', 'https://api.github.com/users/julesss/events', 'https://api.github.com/users/julesss/received_events', 0); +INSERT INTO `developer` VALUES (931, 'muness', 'C', 0, 0, 0, 0, 0, 0, 0, 'Muness Castle', NULL, 'https://muness.com/', '未知', NULL, 'true', NULL, 'muness', 0, 0, 33, 11, 0, 0, 0, '2008-02-26T15:03:11Z', '2024-11-04T14:44:08Z', 'https://avatars.githubusercontent.com/u/931?v=4', 'https://api.github.com/users/muness', 'https://github.com/muness', 'https://api.github.com/users/muness/followers', 'https://api.github.com/users/muness/following', 'https://api.github.com/users/muness/gists', 'https://api.github.com/users/muness/starred', 'https://api.github.com/users/muness/repos', 'https://api.github.com/users/muness/events', 'https://api.github.com/users/muness/received_events', 0); +INSERT INTO `developer` VALUES (932, 'gonzague', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gonzague Dambricourt', NULL, 'https://gonzague.me', 'Paris', NULL, NULL, NULL, NULL, 0, 0, 8, 13, 0, 0, 0, '2008-02-26T15:21:29Z', '2024-10-14T14:29:54Z', 'https://avatars.githubusercontent.com/u/932?v=4', 'https://api.github.com/users/gonzague', 'https://github.com/gonzague', 'https://api.github.com/users/gonzague/followers', 'https://api.github.com/users/gonzague/following', 'https://api.github.com/users/gonzague/gists', 'https://api.github.com/users/gonzague/starred', 'https://api.github.com/users/gonzague/repos', 'https://api.github.com/users/gonzague/events', 'https://api.github.com/users/gonzague/received_events', 0); +INSERT INTO `developer` VALUES (934, 'keeg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keegan Jones', '@sgtmstudio ', 'http://keeg.co', 'San Francisco', 'keegan@keeganjones.com', 'true', NULL, NULL, 0, 0, 117, 27, 0, 0, 0, '2008-02-26T16:22:51Z', '2024-10-01T18:23:38Z', 'https://avatars.githubusercontent.com/u/934?v=4', 'https://api.github.com/users/keeg', 'https://github.com/keeg', 'https://api.github.com/users/keeg/followers', 'https://api.github.com/users/keeg/following', 'https://api.github.com/users/keeg/gists', 'https://api.github.com/users/keeg/starred', 'https://api.github.com/users/keeg/repos', 'https://api.github.com/users/keeg/events', 'https://api.github.com/users/keeg/received_events', 0); +INSERT INTO `developer` VALUES (935, 'iconmaster', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'john@johnmarstall.com', NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-26T16:27:15Z', '2024-03-11T19:55:27Z', 'https://avatars.githubusercontent.com/u/935?v=4', 'https://api.github.com/users/iconmaster', 'https://github.com/iconmaster', 'https://api.github.com/users/iconmaster/followers', 'https://api.github.com/users/iconmaster/following', 'https://api.github.com/users/iconmaster/gists', 'https://api.github.com/users/iconmaster/starred', 'https://api.github.com/users/iconmaster/repos', 'https://api.github.com/users/iconmaster/events', 'https://api.github.com/users/iconmaster/received_events', 0); +INSERT INTO `developer` VALUES (936, 'cjmartin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Martin', NULL, 'http://roundhere.net', 'San Francisco', '@cjmartin', NULL, NULL, NULL, 0, 0, 54, 13, 0, 0, 0, '2008-02-26T16:30:02Z', '2024-10-17T17:01:42Z', 'https://avatars.githubusercontent.com/u/936?v=4', 'https://api.github.com/users/cjmartin', 'https://github.com/cjmartin', 'https://api.github.com/users/cjmartin/followers', 'https://api.github.com/users/cjmartin/following', 'https://api.github.com/users/cjmartin/gists', 'https://api.github.com/users/cjmartin/starred', 'https://api.github.com/users/cjmartin/repos', 'https://api.github.com/users/cjmartin/events', 'https://api.github.com/users/cjmartin/received_events', 0); +INSERT INTO `developer` VALUES (937, 'samsm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Schenkman-Moore', NULL, 'http://samsm.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 41, 5, 0, 0, 0, '2008-02-26T16:45:50Z', '2024-09-16T22:28:56Z', 'https://avatars.githubusercontent.com/u/937?v=4', 'https://api.github.com/users/samsm', 'https://github.com/samsm', 'https://api.github.com/users/samsm/followers', 'https://api.github.com/users/samsm/following', 'https://api.github.com/users/samsm/gists', 'https://api.github.com/users/samsm/starred', 'https://api.github.com/users/samsm/repos', 'https://api.github.com/users/samsm/events', 'https://api.github.com/users/samsm/received_events', 0); +INSERT INTO `developer` VALUES (939, 'nick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Poulden', NULL, 'https://poulden.com', 'Boulder, CO', 'nick@poulden.com', NULL, NULL, 'nick_p', 0, 0, 120, 30, 0, 0, 0, '2008-02-26T17:14:30Z', '2024-09-05T19:09:31Z', 'https://avatars.githubusercontent.com/u/939?v=4', 'https://api.github.com/users/nick', 'https://github.com/nick', 'https://api.github.com/users/nick/followers', 'https://api.github.com/users/nick/following', 'https://api.github.com/users/nick/gists', 'https://api.github.com/users/nick/starred', 'https://api.github.com/users/nick/repos', 'https://api.github.com/users/nick/events', 'https://api.github.com/users/nick/received_events', 0); +INSERT INTO `developer` VALUES (940, 'pusewicz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Piotr Usewicz', '@harvesthq', 'https://www.layer22.com', 'Benicarló, Spain', 'piotr@layer22.com', NULL, 'I punch code at @harvesthq.', 'pusewicz', 0, 0, 61, 125, 0, 0, 0, '2008-02-26T17:16:39Z', '2024-10-24T19:36:23Z', 'https://avatars.githubusercontent.com/u/940?v=4', 'https://api.github.com/users/pusewicz', 'https://github.com/pusewicz', 'https://api.github.com/users/pusewicz/followers', 'https://api.github.com/users/pusewicz/following', 'https://api.github.com/users/pusewicz/gists', 'https://api.github.com/users/pusewicz/starred', 'https://api.github.com/users/pusewicz/repos', 'https://api.github.com/users/pusewicz/events', 'https://api.github.com/users/pusewicz/received_events', 0); +INSERT INTO `developer` VALUES (941, 'wadewinningham', 'C', 3.2292128633977213, 0, 32, 1, 20, 0, 0, 'Wade Winningham', '@powerhome ', 'https://wadewinningham.com', 'Sedona, AZ', 'wade@updrift.com', NULL, NULL, NULL, 0, 0, 24, 0, 0, 0, 0, '2008-02-26T17:18:06Z', '2024-11-04T14:34:27Z', 'https://avatars.githubusercontent.com/u/941?v=4', 'https://api.github.com/users/wadewinningham', 'https://github.com/wadewinningham', 'https://api.github.com/users/wadewinningham/followers', 'https://api.github.com/users/wadewinningham/following', 'https://api.github.com/users/wadewinningham/gists', 'https://api.github.com/users/wadewinningham/starred', 'https://api.github.com/users/wadewinningham/repos', 'https://api.github.com/users/wadewinningham/events', 'https://api.github.com/users/wadewinningham/received_events', 0); +INSERT INTO `developer` VALUES (942, 'fonseca', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-26T17:18:28Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/942?v=4', 'https://api.github.com/users/fonseca', 'https://github.com/fonseca', 'https://api.github.com/users/fonseca/followers', 'https://api.github.com/users/fonseca/following', 'https://api.github.com/users/fonseca/gists', 'https://api.github.com/users/fonseca/starred', 'https://api.github.com/users/fonseca/repos', 'https://api.github.com/users/fonseca/events', 'https://api.github.com/users/fonseca/received_events', 0); +INSERT INTO `developer` VALUES (943, 'teftin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stan', NULL, '', 'London, UK', 'teftin@gmail.com', NULL, NULL, NULL, 0, 0, 15, 7, 0, 0, 0, '2008-02-26T17:19:06Z', '2019-04-24T18:04:15Z', 'https://avatars.githubusercontent.com/u/943?v=4', 'https://api.github.com/users/teftin', 'https://github.com/teftin', 'https://api.github.com/users/teftin/followers', 'https://api.github.com/users/teftin/following', 'https://api.github.com/users/teftin/gists', 'https://api.github.com/users/teftin/starred', 'https://api.github.com/users/teftin/repos', 'https://api.github.com/users/teftin/events', 'https://api.github.com/users/teftin/received_events', 0); +INSERT INTO `developer` VALUES (944, 'scivi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gwen Glaser', 'gl.aser software & gestaltung', 'https://gl.aser.de/', 'Leipzig ', 'gcg@gl.aser.de', 'true', NULL, NULL, 0, 0, 36, 39, 0, 0, 0, '2008-02-26T17:20:25Z', '2024-10-24T23:27:35Z', 'https://avatars.githubusercontent.com/u/944?v=4', 'https://api.github.com/users/scivi', 'https://github.com/scivi', 'https://api.github.com/users/scivi/followers', 'https://api.github.com/users/scivi/following', 'https://api.github.com/users/scivi/gists', 'https://api.github.com/users/scivi/starred', 'https://api.github.com/users/scivi/repos', 'https://api.github.com/users/scivi/events', 'https://api.github.com/users/scivi/received_events', 0); +INSERT INTO `developer` VALUES (945, 'jeremy6d', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Weiland', NULL, 'http://www.jeremyweiland.com', 'Richmond, VA', NULL, NULL, 'Software developer, musician, writer', NULL, 0, 0, 44, 13, 0, 0, 0, '2008-02-26T17:25:54Z', '2024-08-21T19:48:08Z', 'https://avatars.githubusercontent.com/u/945?v=4', 'https://api.github.com/users/jeremy6d', 'https://github.com/jeremy6d', 'https://api.github.com/users/jeremy6d/followers', 'https://api.github.com/users/jeremy6d/following', 'https://api.github.com/users/jeremy6d/gists', 'https://api.github.com/users/jeremy6d/starred', 'https://api.github.com/users/jeremy6d/repos', 'https://api.github.com/users/jeremy6d/events', 'https://api.github.com/users/jeremy6d/received_events', 0); +INSERT INTO `developer` VALUES (946, 'jodo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-26T17:26:46Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/946?v=4', 'https://api.github.com/users/jodo', 'https://github.com/jodo', 'https://api.github.com/users/jodo/followers', 'https://api.github.com/users/jodo/following', 'https://api.github.com/users/jodo/gists', 'https://api.github.com/users/jodo/starred', 'https://api.github.com/users/jodo/repos', 'https://api.github.com/users/jodo/events', 'https://api.github.com/users/jodo/received_events', 0); +INSERT INTO `developer` VALUES (947, 'raskchanky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Black', '@hashicorp', 'http://raskchanky.com', 'Chico, CA', 'raskchanky@gmail.com', NULL, 'Never rock the mic with the pantyhose.', NULL, 0, 0, 43, 2, 0, 0, 0, '2008-02-26T17:26:51Z', '2024-10-30T19:59:49Z', 'https://avatars.githubusercontent.com/u/947?v=4', 'https://api.github.com/users/raskchanky', 'https://github.com/raskchanky', 'https://api.github.com/users/raskchanky/followers', 'https://api.github.com/users/raskchanky/following', 'https://api.github.com/users/raskchanky/gists', 'https://api.github.com/users/raskchanky/starred', 'https://api.github.com/users/raskchanky/repos', 'https://api.github.com/users/raskchanky/events', 'https://api.github.com/users/raskchanky/received_events', 0); +INSERT INTO `developer` VALUES (948, 'jonuts', 'C', 0, 0, 0, 0, 0, 0, 0, 'jonah honeyman', NULL, '', 'Israel', NULL, 'true', NULL, NULL, 0, 0, 19, 6, 0, 0, 0, '2008-02-26T17:27:34Z', '2020-06-10T18:03:19Z', 'https://avatars.githubusercontent.com/u/948?v=4', 'https://api.github.com/users/jonuts', 'https://github.com/jonuts', 'https://api.github.com/users/jonuts/followers', 'https://api.github.com/users/jonuts/following', 'https://api.github.com/users/jonuts/gists', 'https://api.github.com/users/jonuts/starred', 'https://api.github.com/users/jonuts/repos', 'https://api.github.com/users/jonuts/events', 'https://api.github.com/users/jonuts/received_events', 0); +INSERT INTO `developer` VALUES (949, 'rbriski', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-26T17:28:40Z', '2024-11-04T19:57:43Z', 'https://avatars.githubusercontent.com/u/949?v=4', 'https://api.github.com/users/rbriski', 'https://github.com/rbriski', 'https://api.github.com/users/rbriski/followers', 'https://api.github.com/users/rbriski/following', 'https://api.github.com/users/rbriski/gists', 'https://api.github.com/users/rbriski/starred', 'https://api.github.com/users/rbriski/repos', 'https://api.github.com/users/rbriski/events', 'https://api.github.com/users/rbriski/received_events', 0); +INSERT INTO `developer` VALUES (950, 'colin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Colin Schlueter', 'sofatutor GmbH (@sofatutor)', 'http://www.colinschlueter.com/', 'Berlin, Germany', 'colin@sofatutor.com', NULL, 'managing director & coo/cto @sofatutor ', 'colinschlueter', 0, 0, 80, 94, 0, 0, 0, '2008-02-26T17:30:53Z', '2024-07-04T09:14:05Z', 'https://avatars.githubusercontent.com/u/950?v=4', 'https://api.github.com/users/colin', 'https://github.com/colin', 'https://api.github.com/users/colin/followers', 'https://api.github.com/users/colin/following', 'https://api.github.com/users/colin/gists', 'https://api.github.com/users/colin/starred', 'https://api.github.com/users/colin/repos', 'https://api.github.com/users/colin/events', 'https://api.github.com/users/colin/received_events', 0); +INSERT INTO `developer` VALUES (951, 'soveran', 'C', 10.395140296070394, 0, 0, 0, 0, 0, 0, 'Michel Martens', NULL, 'https://soveran.com', '未知', NULL, NULL, NULL, 'soveran', 0, 0, 891, 3, 0, 0, 0, '2008-02-26T17:35:16Z', '2024-10-20T20:56:41Z', 'https://avatars.githubusercontent.com/u/951?v=4', 'https://api.github.com/users/soveran', 'https://github.com/soveran', 'https://api.github.com/users/soveran/followers', 'https://api.github.com/users/soveran/following', 'https://api.github.com/users/soveran/gists', 'https://api.github.com/users/soveran/starred', 'https://api.github.com/users/soveran/repos', 'https://api.github.com/users/soveran/events', 'https://api.github.com/users/soveran/received_events', 0); +INSERT INTO `developer` VALUES (952, 'jreynolds', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Reynolds', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-26T17:35:31Z', '2020-10-05T23:21:14Z', 'https://avatars.githubusercontent.com/u/952?v=4', 'https://api.github.com/users/jreynolds', 'https://github.com/jreynolds', 'https://api.github.com/users/jreynolds/followers', 'https://api.github.com/users/jreynolds/following', 'https://api.github.com/users/jreynolds/gists', 'https://api.github.com/users/jreynolds/starred', 'https://api.github.com/users/jreynolds/repos', 'https://api.github.com/users/jreynolds/events', 'https://api.github.com/users/jreynolds/received_events', 0); +INSERT INTO `developer` VALUES (953, 'daddz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-26T17:36:03Z', '2024-10-01T19:50:25Z', 'https://avatars.githubusercontent.com/u/953?v=4', 'https://api.github.com/users/daddz', 'https://github.com/daddz', 'https://api.github.com/users/daddz/followers', 'https://api.github.com/users/daddz/following', 'https://api.github.com/users/daddz/gists', 'https://api.github.com/users/daddz/starred', 'https://api.github.com/users/daddz/repos', 'https://api.github.com/users/daddz/events', 'https://api.github.com/users/daddz/received_events', 0); +INSERT INTO `developer` VALUES (954, 'tamersalama', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tamer Salama', 'Noria Technologies', 'http://tamersalama.com', 'Calgary, AB', 'tamer.salama@noriatechnologies.com', NULL, NULL, NULL, 0, 0, 11, 17, 0, 0, 0, '2008-02-26T17:38:46Z', '2024-10-12T22:08:44Z', 'https://avatars.githubusercontent.com/u/954?v=4', 'https://api.github.com/users/tamersalama', 'https://github.com/tamersalama', 'https://api.github.com/users/tamersalama/followers', 'https://api.github.com/users/tamersalama/following', 'https://api.github.com/users/tamersalama/gists', 'https://api.github.com/users/tamersalama/starred', 'https://api.github.com/users/tamersalama/repos', 'https://api.github.com/users/tamersalama/events', 'https://api.github.com/users/tamersalama/received_events', 0); +INSERT INTO `developer` VALUES (955, 'minter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wade Minter', 'Dualboot Partners', 'https://wademinter.com/', 'Raleigh, NC', 'wade@wademinter.com', 'true', 'PA Announcer for the NHL\'s Carolina Hurricanes. Product Principal at Dualboot Partners. Founder/CTO at @Suggestion-Ox. Ruby dev.', NULL, 0, 0, 68, 36, 0, 0, 0, '2008-02-26T17:47:13Z', '2024-11-01T16:08:57Z', 'https://avatars.githubusercontent.com/u/955?v=4', 'https://api.github.com/users/minter', 'https://github.com/minter', 'https://api.github.com/users/minter/followers', 'https://api.github.com/users/minter/following', 'https://api.github.com/users/minter/gists', 'https://api.github.com/users/minter/starred', 'https://api.github.com/users/minter/repos', 'https://api.github.com/users/minter/events', 'https://api.github.com/users/minter/received_events', 0); +INSERT INTO `developer` VALUES (956, 'cndreisbach', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clinton N. Dreisbach', '@loomhq', 'https://www.dreisbach.us', 'Durham, NC', 'clinton@dreisbach.us', NULL, 'Hi - I\'m Clinton, and I\'m a software engineer at @loomhq. My big passions are my kids and making the world of programming a more welcoming place.', NULL, 0, 0, 272, 48, 0, 0, 0, '2008-02-26T17:48:16Z', '2024-06-12T16:07:15Z', 'https://avatars.githubusercontent.com/u/956?v=4', 'https://api.github.com/users/cndreisbach', 'https://github.com/cndreisbach', 'https://api.github.com/users/cndreisbach/followers', 'https://api.github.com/users/cndreisbach/following', 'https://api.github.com/users/cndreisbach/gists', 'https://api.github.com/users/cndreisbach/starred', 'https://api.github.com/users/cndreisbach/repos', 'https://api.github.com/users/cndreisbach/events', 'https://api.github.com/users/cndreisbach/received_events', 0); +INSERT INTO `developer` VALUES (957, 'melito', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mel Gray', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 55, 100, 0, 0, 0, '2008-02-26T17:48:18Z', '2024-08-05T18:36:16Z', 'https://avatars.githubusercontent.com/u/957?v=4', 'https://api.github.com/users/melito', 'https://github.com/melito', 'https://api.github.com/users/melito/followers', 'https://api.github.com/users/melito/following', 'https://api.github.com/users/melito/gists', 'https://api.github.com/users/melito/starred', 'https://api.github.com/users/melito/repos', 'https://api.github.com/users/melito/events', 'https://api.github.com/users/melito/received_events', 0); +INSERT INTO `developer` VALUES (958, 'ibspoof', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brad Vernon', '@nvidia', '', 'Silicon Valley', 'bradbury.vernon@gmail.com', NULL, NULL, NULL, 0, 0, 54, 44, 0, 0, 0, '2008-02-26T17:49:17Z', '2024-05-28T16:53:28Z', 'https://avatars.githubusercontent.com/u/958?v=4', 'https://api.github.com/users/ibspoof', 'https://github.com/ibspoof', 'https://api.github.com/users/ibspoof/followers', 'https://api.github.com/users/ibspoof/following', 'https://api.github.com/users/ibspoof/gists', 'https://api.github.com/users/ibspoof/starred', 'https://api.github.com/users/ibspoof/repos', 'https://api.github.com/users/ibspoof/events', 'https://api.github.com/users/ibspoof/received_events', 0); +INSERT INTO `developer` VALUES (959, 'glv', 'C', 0, 0, 0, 0, 0, 0, 0, 'Glenn Vanderburg', 'Engineering Director at Nubank', 'http://vanderburg.org/', 'Plano, Texas, USA', 'glv@vanderburg.org', NULL, NULL, NULL, 0, 0, 90, 1, 0, 0, 0, '2008-02-26T17:50:32Z', '2024-11-01T04:47:53Z', 'https://avatars.githubusercontent.com/u/959?v=4', 'https://api.github.com/users/glv', 'https://github.com/glv', 'https://api.github.com/users/glv/followers', 'https://api.github.com/users/glv/following', 'https://api.github.com/users/glv/gists', 'https://api.github.com/users/glv/starred', 'https://api.github.com/users/glv/repos', 'https://api.github.com/users/glv/events', 'https://api.github.com/users/glv/received_events', 0); +INSERT INTO `developer` VALUES (960, 'heymarcel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcel Levy', 'SPIRL', 'https://honestbutcurio.us/', 'Seattle, WA', 'heymarcel@gmail.com', NULL, 'Community Engineer at SPIRL. Former Amazon software engineer and journalist.', NULL, 0, 0, 14, 18, 0, 0, 0, '2008-02-26T17:51:55Z', '2024-10-26T20:46:51Z', 'https://avatars.githubusercontent.com/u/960?v=4', 'https://api.github.com/users/heymarcel', 'https://github.com/heymarcel', 'https://api.github.com/users/heymarcel/followers', 'https://api.github.com/users/heymarcel/following', 'https://api.github.com/users/heymarcel/gists', 'https://api.github.com/users/heymarcel/starred', 'https://api.github.com/users/heymarcel/repos', 'https://api.github.com/users/heymarcel/events', 'https://api.github.com/users/heymarcel/received_events', 0); +INSERT INTO `developer` VALUES (961, 'cromney', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-26T17:59:20Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/961?v=4', 'https://api.github.com/users/cromney', 'https://github.com/cromney', 'https://api.github.com/users/cromney/followers', 'https://api.github.com/users/cromney/following', 'https://api.github.com/users/cromney/gists', 'https://api.github.com/users/cromney/starred', 'https://api.github.com/users/cromney/repos', 'https://api.github.com/users/cromney/events', 'https://api.github.com/users/cromney/received_events', 0); +INSERT INTO `developer` VALUES (962, 'blchamberlain', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-26T18:05:35Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/962?v=4', 'https://api.github.com/users/blchamberlain', 'https://github.com/blchamberlain', 'https://api.github.com/users/blchamberlain/followers', 'https://api.github.com/users/blchamberlain/following', 'https://api.github.com/users/blchamberlain/gists', 'https://api.github.com/users/blchamberlain/starred', 'https://api.github.com/users/blchamberlain/repos', 'https://api.github.com/users/blchamberlain/events', 'https://api.github.com/users/blchamberlain/received_events', 0); +INSERT INTO `developer` VALUES (964, 'objo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe O\'Brien', NULL, '', 'Columbus Ohio', NULL, NULL, NULL, NULL, 0, 0, 76, 1, 0, 0, 0, '2008-02-26T18:13:08Z', '2024-07-29T19:42:49Z', 'https://avatars.githubusercontent.com/u/964?v=4', 'https://api.github.com/users/objo', 'https://github.com/objo', 'https://api.github.com/users/objo/followers', 'https://api.github.com/users/objo/following', 'https://api.github.com/users/objo/gists', 'https://api.github.com/users/objo/starred', 'https://api.github.com/users/objo/repos', 'https://api.github.com/users/objo/events', 'https://api.github.com/users/objo/received_events', 0); +INSERT INTO `developer` VALUES (965, 'ddemaree', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Demaree', NULL, 'http://demaree.me/', 'New Jersey, U.S.A.', 'david@demaree.me', NULL, 'Product ', 'ddemaree', 0, 0, 80, 16, 0, 0, 0, '2008-02-26T18:13:47Z', '2024-09-18T21:00:04Z', 'https://avatars.githubusercontent.com/u/965?v=4', 'https://api.github.com/users/ddemaree', 'https://github.com/ddemaree', 'https://api.github.com/users/ddemaree/followers', 'https://api.github.com/users/ddemaree/following', 'https://api.github.com/users/ddemaree/gists', 'https://api.github.com/users/ddemaree/starred', 'https://api.github.com/users/ddemaree/repos', 'https://api.github.com/users/ddemaree/events', 'https://api.github.com/users/ddemaree/received_events', 0); +INSERT INTO `developer` VALUES (966, 'hosh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ho-Sheng Hsiao', 'Remine', '', 'Phoenix, AZ', 'talktohosh@gmail.com', NULL, 'Elixir | Ruby | Kubernetes', NULL, 0, 0, 97, 53, 0, 0, 0, '2008-02-26T18:18:21Z', '2024-07-16T23:28:35Z', 'https://avatars.githubusercontent.com/u/966?v=4', 'https://api.github.com/users/hosh', 'https://github.com/hosh', 'https://api.github.com/users/hosh/followers', 'https://api.github.com/users/hosh/following', 'https://api.github.com/users/hosh/gists', 'https://api.github.com/users/hosh/starred', 'https://api.github.com/users/hosh/repos', 'https://api.github.com/users/hosh/events', 'https://api.github.com/users/hosh/received_events', 0); +INSERT INTO `developer` VALUES (967, 'zdennis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zach Dennis', NULL, 'http://www.continuousthinking.com', 'Grand Rapids, MI, USA', 'zach.dennis@gmail.com', 'true', NULL, NULL, 0, 0, 142, 1, 0, 0, 0, '2008-02-26T18:28:17Z', '2024-10-15T22:01:03Z', 'https://avatars.githubusercontent.com/u/967?v=4', 'https://api.github.com/users/zdennis', 'https://github.com/zdennis', 'https://api.github.com/users/zdennis/followers', 'https://api.github.com/users/zdennis/following', 'https://api.github.com/users/zdennis/gists', 'https://api.github.com/users/zdennis/starred', 'https://api.github.com/users/zdennis/repos', 'https://api.github.com/users/zdennis/events', 'https://api.github.com/users/zdennis/received_events', 0); +INSERT INTO `developer` VALUES (968, 'champion-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-26T18:28:58Z', '2016-02-26T22:34:36Z', 'https://avatars.githubusercontent.com/u/968?v=4', 'https://api.github.com/users/champion-xx', 'https://github.com/champion-xx', 'https://api.github.com/users/champion-xx/followers', 'https://api.github.com/users/champion-xx/following', 'https://api.github.com/users/champion-xx/gists', 'https://api.github.com/users/champion-xx/starred', 'https://api.github.com/users/champion-xx/repos', 'https://api.github.com/users/champion-xx/events', 'https://api.github.com/users/champion-xx/received_events', 0); +INSERT INTO `developer` VALUES (969, 'conorh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Conor Hunt', 'SquareMill Labs', 'http://squaremill.com', 'Phoenix, AZ', NULL, 'true', NULL, NULL, 0, 0, 45, 11, 0, 0, 0, '2008-02-26T18:29:56Z', '2024-07-15T14:34:10Z', 'https://avatars.githubusercontent.com/u/969?v=4', 'https://api.github.com/users/conorh', 'https://github.com/conorh', 'https://api.github.com/users/conorh/followers', 'https://api.github.com/users/conorh/following', 'https://api.github.com/users/conorh/gists', 'https://api.github.com/users/conorh/starred', 'https://api.github.com/users/conorh/repos', 'https://api.github.com/users/conorh/events', 'https://api.github.com/users/conorh/received_events', 0); +INSERT INTO `developer` VALUES (970, 'jackbaty', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jack Baty', NULL, 'https://baty.net/', 'West Michigan', 'jack@baty.net', NULL, NULL, NULL, 0, 0, 36, 2, 0, 0, 0, '2008-02-26T18:32:02Z', '2024-10-16T10:21:43Z', 'https://avatars.githubusercontent.com/u/970?v=4', 'https://api.github.com/users/jackbaty', 'https://github.com/jackbaty', 'https://api.github.com/users/jackbaty/followers', 'https://api.github.com/users/jackbaty/following', 'https://api.github.com/users/jackbaty/gists', 'https://api.github.com/users/jackbaty/starred', 'https://api.github.com/users/jackbaty/repos', 'https://api.github.com/users/jackbaty/events', 'https://api.github.com/users/jackbaty/received_events', 0); +INSERT INTO `developer` VALUES (971, 'TaYpworm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastian Smith', 'Robotics Researcher', 'http://taypworm.com', 'Reno, Nevada', 'taypworm@gmail.com', 'true', NULL, NULL, 0, 0, 11, 3, 0, 0, 0, '2008-02-26T18:36:16Z', '2024-04-12T17:42:47Z', 'https://avatars.githubusercontent.com/u/971?v=4', 'https://api.github.com/users/TaYpworm', 'https://github.com/TaYpworm', 'https://api.github.com/users/TaYpworm/followers', 'https://api.github.com/users/TaYpworm/following', 'https://api.github.com/users/TaYpworm/gists', 'https://api.github.com/users/TaYpworm/starred', 'https://api.github.com/users/TaYpworm/repos', 'https://api.github.com/users/TaYpworm/events', 'https://api.github.com/users/TaYpworm/received_events', 0); +INSERT INTO `developer` VALUES (972, 'wharle', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-26T18:54:14Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/972?v=4', 'https://api.github.com/users/wharle', 'https://github.com/wharle', 'https://api.github.com/users/wharle/followers', 'https://api.github.com/users/wharle/following', 'https://api.github.com/users/wharle/gists', 'https://api.github.com/users/wharle/starred', 'https://api.github.com/users/wharle/repos', 'https://api.github.com/users/wharle/events', 'https://api.github.com/users/wharle/received_events', 0); +INSERT INTO `developer` VALUES (973, 'mhat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Knopp', 'Mode Analytics', '', 'San Francisco, CA', 'matt.knopp@gmail.com', NULL, NULL, NULL, 0, 0, 29, 14, 0, 0, 0, '2008-02-26T18:58:55Z', '2024-05-31T21:50:12Z', 'https://avatars.githubusercontent.com/u/973?v=4', 'https://api.github.com/users/mhat', 'https://github.com/mhat', 'https://api.github.com/users/mhat/followers', 'https://api.github.com/users/mhat/following', 'https://api.github.com/users/mhat/gists', 'https://api.github.com/users/mhat/starred', 'https://api.github.com/users/mhat/repos', 'https://api.github.com/users/mhat/events', 'https://api.github.com/users/mhat/received_events', 0); +INSERT INTO `developer` VALUES (974, 'gilesbowkett', 'C', 3.552879465147857, 0, 0, 0, 0, 0, 0, 'Giles', NULL, '', 'Santa Fe NM', 'gilesb@gmail.com', NULL, NULL, NULL, 0, 0, 492, 3, 0, 0, 0, '2008-02-26T19:06:36Z', '2024-08-22T22:47:09Z', 'https://avatars.githubusercontent.com/u/974?v=4', 'https://api.github.com/users/gilesbowkett', 'https://github.com/gilesbowkett', 'https://api.github.com/users/gilesbowkett/followers', 'https://api.github.com/users/gilesbowkett/following', 'https://api.github.com/users/gilesbowkett/gists', 'https://api.github.com/users/gilesbowkett/starred', 'https://api.github.com/users/gilesbowkett/repos', 'https://api.github.com/users/gilesbowkett/events', 'https://api.github.com/users/gilesbowkett/received_events', 0); +INSERT INTO `developer` VALUES (975, 'ktheory', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Suggs', NULL, 'https://ktheory.com/', 'Chapel Hill, NC', NULL, NULL, NULL, 'ktheory', 0, 0, 121, 57, 0, 0, 0, '2008-02-26T19:15:09Z', '2024-10-20T14:53:47Z', 'https://avatars.githubusercontent.com/u/975?v=4', 'https://api.github.com/users/ktheory', 'https://github.com/ktheory', 'https://api.github.com/users/ktheory/followers', 'https://api.github.com/users/ktheory/following', 'https://api.github.com/users/ktheory/gists', 'https://api.github.com/users/ktheory/starred', 'https://api.github.com/users/ktheory/repos', 'https://api.github.com/users/ktheory/events', 'https://api.github.com/users/ktheory/received_events', 0); +INSERT INTO `developer` VALUES (976, 'natalie-zz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Natalie Jost', NULL, '', '未知', 'nataliejost@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-26T19:19:19Z', '2017-01-14T00:14:03Z', 'https://avatars.githubusercontent.com/u/976?v=4', 'https://api.github.com/users/natalie-zz', 'https://github.com/natalie-zz', 'https://api.github.com/users/natalie-zz/followers', 'https://api.github.com/users/natalie-zz/following', 'https://api.github.com/users/natalie-zz/gists', 'https://api.github.com/users/natalie-zz/starred', 'https://api.github.com/users/natalie-zz/repos', 'https://api.github.com/users/natalie-zz/events', 'https://api.github.com/users/natalie-zz/received_events', 0); +INSERT INTO `developer` VALUES (977, 'bricooke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Cooke', NULL, '', 'WA', NULL, NULL, '🐮🐐🐓🦆🦙🐑', NULL, 0, 0, 39, 7, 0, 0, 0, '2008-02-26T19:20:59Z', '2024-01-29T16:39:51Z', 'https://avatars.githubusercontent.com/u/977?v=4', 'https://api.github.com/users/bricooke', 'https://github.com/bricooke', 'https://api.github.com/users/bricooke/followers', 'https://api.github.com/users/bricooke/following', 'https://api.github.com/users/bricooke/gists', 'https://api.github.com/users/bricooke/starred', 'https://api.github.com/users/bricooke/repos', 'https://api.github.com/users/bricooke/events', 'https://api.github.com/users/bricooke/received_events', 0); +INSERT INTO `developer` VALUES (978, 'cypher', 'C', 0, 0, 0, 0, 0, 0, 0, 'Markus Wein', NULL, 'http://nuclearsquid.com/', 'Austria', NULL, 'true', NULL, NULL, 0, 0, 233, 41, 0, 0, 0, '2008-02-26T19:27:46Z', '2024-04-18T20:34:17Z', 'https://avatars.githubusercontent.com/u/978?v=4', 'https://api.github.com/users/cypher', 'https://github.com/cypher', 'https://api.github.com/users/cypher/followers', 'https://api.github.com/users/cypher/following', 'https://api.github.com/users/cypher/gists', 'https://api.github.com/users/cypher/starred', 'https://api.github.com/users/cypher/repos', 'https://api.github.com/users/cypher/events', 'https://api.github.com/users/cypher/received_events', 0); +INSERT INTO `developer` VALUES (979, 'mully', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Mulholland', 'Squeejee', 'http://squeejee.com', 'Houston, TX', 'jim@squeejee.com', NULL, NULL, NULL, 0, 0, 22, 4, 0, 0, 0, '2008-02-26T19:30:50Z', '2022-01-22T17:06:18Z', 'https://avatars.githubusercontent.com/u/979?v=4', 'https://api.github.com/users/mully', 'https://github.com/mully', 'https://api.github.com/users/mully/followers', 'https://api.github.com/users/mully/following', 'https://api.github.com/users/mully/gists', 'https://api.github.com/users/mully/starred', 'https://api.github.com/users/mully/repos', 'https://api.github.com/users/mully/events', 'https://api.github.com/users/mully/received_events', 0); +INSERT INTO `developer` VALUES (981, 'stickmanlabs', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-26T19:39:35Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/981?v=4', 'https://api.github.com/users/stickmanlabs', 'https://github.com/stickmanlabs', 'https://api.github.com/users/stickmanlabs/followers', 'https://api.github.com/users/stickmanlabs/following', 'https://api.github.com/users/stickmanlabs/gists', 'https://api.github.com/users/stickmanlabs/starred', 'https://api.github.com/users/stickmanlabs/repos', 'https://api.github.com/users/stickmanlabs/events', 'https://api.github.com/users/stickmanlabs/received_events', 0); +INSERT INTO `developer` VALUES (982, 'avdi', 'B-', 26.17178181097951, 0, 0, 0, 0, 0, 0, 'Avdi Grimm', 'ShipRise LLC', 'http://avdi.codes', 'St. Louis, USA', NULL, NULL, NULL, 'avdi', 0, 0, 1811, 31, 0, 0, 0, '2008-02-26T19:54:34Z', '2024-09-16T03:18:31Z', 'https://avatars.githubusercontent.com/u/982?v=4', 'https://api.github.com/users/avdi', 'https://github.com/avdi', 'https://api.github.com/users/avdi/followers', 'https://api.github.com/users/avdi/following', 'https://api.github.com/users/avdi/gists', 'https://api.github.com/users/avdi/starred', 'https://api.github.com/users/avdi/repos', 'https://api.github.com/users/avdi/events', 'https://api.github.com/users/avdi/received_events', 0); +INSERT INTO `developer` VALUES (983, 'statik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elliot Murphy', '@posit-dev @kindlyops ', '', 'Atlantic Ocean', NULL, NULL, 'Building distributed teams and creating software that matters.', NULL, 0, 0, 90, 135, 0, 0, 0, '2008-02-26T19:57:59Z', '2024-11-05T03:21:54Z', 'https://avatars.githubusercontent.com/u/983?v=4', 'https://api.github.com/users/statik', 'https://github.com/statik', 'https://api.github.com/users/statik/followers', 'https://api.github.com/users/statik/following', 'https://api.github.com/users/statik/gists', 'https://api.github.com/users/statik/starred', 'https://api.github.com/users/statik/repos', 'https://api.github.com/users/statik/events', 'https://api.github.com/users/statik/received_events', 0); +INSERT INTO `developer` VALUES (984, 'phlipper', 'C', 2.421076921686985, 0, 0, 0, 0, 0, 0, 'Phil Cohen', NULL, 'https://phlippers.net', 'Near Lake Tahoe, CA', NULL, 'true', NULL, NULL, 0, 0, 426, 88, 0, 0, 0, '2008-02-26T19:58:08Z', '2024-09-26T21:35:46Z', 'https://avatars.githubusercontent.com/u/984?v=4', 'https://api.github.com/users/phlipper', 'https://github.com/phlipper', 'https://api.github.com/users/phlipper/followers', 'https://api.github.com/users/phlipper/following', 'https://api.github.com/users/phlipper/gists', 'https://api.github.com/users/phlipper/starred', 'https://api.github.com/users/phlipper/repos', 'https://api.github.com/users/phlipper/events', 'https://api.github.com/users/phlipper/received_events', 0); +INSERT INTO `developer` VALUES (985, 'pierro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pierro Marie', NULL, 'http://www.konterfai.com', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-26T20:00:37Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/985?v=4', 'https://api.github.com/users/pierro', 'https://github.com/pierro', 'https://api.github.com/users/pierro/followers', 'https://api.github.com/users/pierro/following', 'https://api.github.com/users/pierro/gists', 'https://api.github.com/users/pierro/starred', 'https://api.github.com/users/pierro/repos', 'https://api.github.com/users/pierro/events', 'https://api.github.com/users/pierro/received_events', 0); +INSERT INTO `developer` VALUES (986, 'firewheel', 'C', 0, 0, 0, 0, 0, 0, 0, 'jw', NULL, '', 'California', 'jw@firewheel.co', NULL, NULL, 'jw', 0, 0, 12, 2, 0, 0, 0, '2008-02-26T20:18:43Z', '2024-08-21T00:08:53Z', 'https://avatars.githubusercontent.com/u/986?v=4', 'https://api.github.com/users/firewheel', 'https://github.com/firewheel', 'https://api.github.com/users/firewheel/followers', 'https://api.github.com/users/firewheel/following', 'https://api.github.com/users/firewheel/gists', 'https://api.github.com/users/firewheel/starred', 'https://api.github.com/users/firewheel/repos', 'https://api.github.com/users/firewheel/events', 'https://api.github.com/users/firewheel/received_events', 0); +INSERT INTO `developer` VALUES (987, 'sharnik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wojciech Ogrodowczyk', '@brains-and-beards ', 'http://haikuco.de', 'Berlin, Germany', 'github@haikuco.de', NULL, 'Software developer creating lovable mobile products at @brainsandbeards. The easiest way to pronounce my name is: boy-tech.', NULL, 0, 0, 60, 1, 0, 0, 0, '2008-02-26T20:26:36Z', '2024-11-03T21:08:26Z', 'https://avatars.githubusercontent.com/u/987?v=4', 'https://api.github.com/users/sharnik', 'https://github.com/sharnik', 'https://api.github.com/users/sharnik/followers', 'https://api.github.com/users/sharnik/following', 'https://api.github.com/users/sharnik/gists', 'https://api.github.com/users/sharnik/starred', 'https://api.github.com/users/sharnik/repos', 'https://api.github.com/users/sharnik/events', 'https://api.github.com/users/sharnik/received_events', 0); +INSERT INTO `developer` VALUES (988, 'Sija', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sijawusz Pur Rahnama', NULL, 'https://sija.pl', '未知', 'sija@sija.pl', 'true', 'Binturong from the morning, chess playa by mid-day, chef for lunch, Crystal, Ruby et al. hacker by night.', 'sijawusz', 0, 0, 196, 41, 0, 0, 0, '2008-02-26T20:28:55Z', '2024-10-11T15:54:27Z', 'https://avatars.githubusercontent.com/u/988?v=4', 'https://api.github.com/users/Sija', 'https://github.com/Sija', 'https://api.github.com/users/Sija/followers', 'https://api.github.com/users/Sija/following', 'https://api.github.com/users/Sija/gists', 'https://api.github.com/users/Sija/starred', 'https://api.github.com/users/Sija/repos', 'https://api.github.com/users/Sija/events', 'https://api.github.com/users/Sija/received_events', 0); +INSERT INTO `developer` VALUES (989, 'martinemde', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Emde', '@rubygems @cloudcity', 'martinemde.com', 'Sierra Nevada Foothills, California, USA', NULL, 'true', '@rubygems & bundler maintainer. Bounty hunter at @cloudcity.', NULL, 0, 0, 74, 27, 0, 0, 0, '2008-02-26T20:43:23Z', '2024-10-31T21:04:46Z', 'https://avatars.githubusercontent.com/u/989?v=4', 'https://api.github.com/users/martinemde', 'https://github.com/martinemde', 'https://api.github.com/users/martinemde/followers', 'https://api.github.com/users/martinemde/following', 'https://api.github.com/users/martinemde/gists', 'https://api.github.com/users/martinemde/starred', 'https://api.github.com/users/martinemde/repos', 'https://api.github.com/users/martinemde/events', 'https://api.github.com/users/martinemde/received_events', 0); +INSERT INTO `developer` VALUES (990, 'brianleroux', 'B-', 26.823425699638793, 0, 0, 0, 0, 0, 0, 'Brian LeRoux', 'https://webdev.rip', '', 'Canada', NULL, NULL, 'helping build @sanity-io ✨ ', 'brianleroux', 0, 0, 1849, 682, 0, 0, 0, '2008-02-26T20:58:47Z', '2024-11-01T16:11:18Z', 'https://avatars.githubusercontent.com/u/990?v=4', 'https://api.github.com/users/brianleroux', 'https://github.com/brianleroux', 'https://api.github.com/users/brianleroux/followers', 'https://api.github.com/users/brianleroux/following', 'https://api.github.com/users/brianleroux/gists', 'https://api.github.com/users/brianleroux/starred', 'https://api.github.com/users/brianleroux/repos', 'https://api.github.com/users/brianleroux/events', 'https://api.github.com/users/brianleroux/received_events', 0); +INSERT INTO `developer` VALUES (991, 'slowernet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eliot Shepard', NULL, 'http://eliotshepard.com', 'NY, NY', 'eshepard@slower.net', NULL, NULL, NULL, 0, 0, 14, 6, 0, 0, 0, '2008-02-26T21:18:22Z', '2024-11-02T02:58:33Z', 'https://avatars.githubusercontent.com/u/991?v=4', 'https://api.github.com/users/slowernet', 'https://github.com/slowernet', 'https://api.github.com/users/slowernet/followers', 'https://api.github.com/users/slowernet/following', 'https://api.github.com/users/slowernet/gists', 'https://api.github.com/users/slowernet/starred', 'https://api.github.com/users/slowernet/repos', 'https://api.github.com/users/slowernet/events', 'https://api.github.com/users/slowernet/received_events', 0); +INSERT INTO `developer` VALUES (992, 'mlangenberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthijs Langenberg', NULL, 'https://mlangenberg.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 31, 8, 0, 0, 0, '2008-02-26T21:22:23Z', '2024-09-02T14:51:52Z', 'https://avatars.githubusercontent.com/u/992?v=4', 'https://api.github.com/users/mlangenberg', 'https://github.com/mlangenberg', 'https://api.github.com/users/mlangenberg/followers', 'https://api.github.com/users/mlangenberg/following', 'https://api.github.com/users/mlangenberg/gists', 'https://api.github.com/users/mlangenberg/starred', 'https://api.github.com/users/mlangenberg/repos', 'https://api.github.com/users/mlangenberg/events', 'https://api.github.com/users/mlangenberg/received_events', 0); +INSERT INTO `developer` VALUES (993, 'outten45', 'C', 0, 0, 0, 0, 0, 0, 0, 'Richard Outten', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 4, 0, 0, 0, '2008-02-26T21:31:18Z', '2024-10-05T11:20:53Z', 'https://avatars.githubusercontent.com/u/993?v=4', 'https://api.github.com/users/outten45', 'https://github.com/outten45', 'https://api.github.com/users/outten45/followers', 'https://api.github.com/users/outten45/following', 'https://api.github.com/users/outten45/gists', 'https://api.github.com/users/outten45/starred', 'https://api.github.com/users/outten45/repos', 'https://api.github.com/users/outten45/events', 'https://api.github.com/users/outten45/received_events', 0); +INSERT INTO `developer` VALUES (994, 'rhult', 'C', 0, 0, 0, 0, 0, 0, 0, 'Richard Hult', NULL, 'http://rhult.github.com/', '未知', NULL, 'true', NULL, NULL, 0, 0, 19, 0, 0, 0, 0, '2008-02-26T21:55:14Z', '2024-04-16T12:40:01Z', 'https://avatars.githubusercontent.com/u/994?v=4', 'https://api.github.com/users/rhult', 'https://github.com/rhult', 'https://api.github.com/users/rhult/followers', 'https://api.github.com/users/rhult/following', 'https://api.github.com/users/rhult/gists', 'https://api.github.com/users/rhult/starred', 'https://api.github.com/users/rhult/repos', 'https://api.github.com/users/rhult/events', 'https://api.github.com/users/rhult/received_events', 0); +INSERT INTO `developer` VALUES (995, 'vitaliel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vitalie Lazu', NULL, '', 'Moldova, Chisinau', 'vitalie.lazu@gmail.com', NULL, 'Ruby On Rails, Python, Typescript', NULL, 0, 0, 41, 25, 0, 0, 0, '2008-02-26T22:00:20Z', '2023-11-22T19:17:37Z', 'https://avatars.githubusercontent.com/u/995?v=4', 'https://api.github.com/users/vitaliel', 'https://github.com/vitaliel', 'https://api.github.com/users/vitaliel/followers', 'https://api.github.com/users/vitaliel/following', 'https://api.github.com/users/vitaliel/gists', 'https://api.github.com/users/vitaliel/starred', 'https://api.github.com/users/vitaliel/repos', 'https://api.github.com/users/vitaliel/events', 'https://api.github.com/users/vitaliel/received_events', 0); +INSERT INTO `developer` VALUES (997, 'trioglobal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sven Pedersen', NULL, '', 'Denmark', 'github.com@trioglobal.com', NULL, NULL, NULL, 0, 0, 16, 21, 0, 0, 0, '2008-02-26T22:07:04Z', '2024-09-26T06:26:50Z', 'https://avatars.githubusercontent.com/u/997?v=4', 'https://api.github.com/users/trioglobal', 'https://github.com/trioglobal', 'https://api.github.com/users/trioglobal/followers', 'https://api.github.com/users/trioglobal/following', 'https://api.github.com/users/trioglobal/gists', 'https://api.github.com/users/trioglobal/starred', 'https://api.github.com/users/trioglobal/repos', 'https://api.github.com/users/trioglobal/events', 'https://api.github.com/users/trioglobal/received_events', 0); +INSERT INTO `developer` VALUES (998, 'skyfallsin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pradeep Elankumaran', NULL, '', 'Silicon Valley, CA', NULL, NULL, 'co-founder, jo', 'pradeep24', 0, 0, 78, 53, 0, 0, 0, '2008-02-26T22:42:32Z', '2024-11-01T16:50:16Z', 'https://avatars.githubusercontent.com/u/998?v=4', 'https://api.github.com/users/skyfallsin', 'https://github.com/skyfallsin', 'https://api.github.com/users/skyfallsin/followers', 'https://api.github.com/users/skyfallsin/following', 'https://api.github.com/users/skyfallsin/gists', 'https://api.github.com/users/skyfallsin/starred', 'https://api.github.com/users/skyfallsin/repos', 'https://api.github.com/users/skyfallsin/events', 'https://api.github.com/users/skyfallsin/received_events', 0); +INSERT INTO `developer` VALUES (999, 'maxthelion', 'C', 0, 0, 0, 0, 0, 0, 0, 'Max Williams', 'Pusher', 'pusher.com', 'London', 'max@pusher.com', NULL, NULL, NULL, 0, 0, 72, 1, 0, 0, 0, '2008-02-26T22:54:56Z', '2024-04-16T10:10:10Z', 'https://avatars.githubusercontent.com/u/999?v=4', 'https://api.github.com/users/maxthelion', 'https://github.com/maxthelion', 'https://api.github.com/users/maxthelion/followers', 'https://api.github.com/users/maxthelion/following', 'https://api.github.com/users/maxthelion/gists', 'https://api.github.com/users/maxthelion/starred', 'https://api.github.com/users/maxthelion/repos', 'https://api.github.com/users/maxthelion/events', 'https://api.github.com/users/maxthelion/received_events', 0); +INSERT INTO `developer` VALUES (1000, 'aslakhellesoy', 'C', 8.560248293792922, 0, 0, 0, 0, 0, 0, 'Aslak Hellesøy', 'SmartBear', 'http://twitter.com/aslak_hellesoy', 'London, UK', NULL, 'true', '🥒', 'aslak_hellesoy', 0, 0, 784, 1, 0, 0, 0, '2008-02-26T22:58:16Z', '2024-11-04T11:43:45Z', 'https://avatars.githubusercontent.com/u/1000?v=4', 'https://api.github.com/users/aslakhellesoy', 'https://github.com/aslakhellesoy', 'https://api.github.com/users/aslakhellesoy/followers', 'https://api.github.com/users/aslakhellesoy/following', 'https://api.github.com/users/aslakhellesoy/gists', 'https://api.github.com/users/aslakhellesoy/starred', 'https://api.github.com/users/aslakhellesoy/repos', 'https://api.github.com/users/aslakhellesoy/events', 'https://api.github.com/users/aslakhellesoy/received_events', 0); +INSERT INTO `developer` VALUES (1001, 'sbecker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Becker', '@olioapps', 'https://www.olioapps.com', '未知', NULL, NULL, NULL, 'sbecker', 0, 0, 66, 24, 0, 0, 0, '2008-02-26T23:03:22Z', '2024-10-31T07:30:16Z', 'https://avatars.githubusercontent.com/u/1001?v=4', 'https://api.github.com/users/sbecker', 'https://github.com/sbecker', 'https://api.github.com/users/sbecker/followers', 'https://api.github.com/users/sbecker/following', 'https://api.github.com/users/sbecker/gists', 'https://api.github.com/users/sbecker/starred', 'https://api.github.com/users/sbecker/repos', 'https://api.github.com/users/sbecker/events', 'https://api.github.com/users/sbecker/received_events', 0); +INSERT INTO `developer` VALUES (1002, 'aharper', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-26T23:07:13Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1002?v=4', 'https://api.github.com/users/aharper', 'https://github.com/aharper', 'https://api.github.com/users/aharper/followers', 'https://api.github.com/users/aharper/following', 'https://api.github.com/users/aharper/gists', 'https://api.github.com/users/aharper/starred', 'https://api.github.com/users/aharper/repos', 'https://api.github.com/users/aharper/events', 'https://api.github.com/users/aharper/received_events', 0); +INSERT INTO `developer` VALUES (1003, 'stocad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Stockton', NULL, '', '未知', 'stocad@stocad.com', NULL, NULL, NULL, 0, 0, 14, 5, 0, 0, 0, '2008-02-26T23:13:39Z', '2024-06-18T16:31:06Z', 'https://avatars.githubusercontent.com/u/1003?v=4', 'https://api.github.com/users/stocad', 'https://github.com/stocad', 'https://api.github.com/users/stocad/followers', 'https://api.github.com/users/stocad/following', 'https://api.github.com/users/stocad/gists', 'https://api.github.com/users/stocad/starred', 'https://api.github.com/users/stocad/repos', 'https://api.github.com/users/stocad/events', 'https://api.github.com/users/stocad/received_events', 0); +INSERT INTO `developer` VALUES (1004, 'adambair', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Bair', 'Known Decimal', 'https://www.linkedin.com/in/adambair/', 'Portland, Maine', 'adambair+github@gmail.com', NULL, 'Recalcitrant Curmudgeon', NULL, 0, 0, 118, 60, 0, 0, 0, '2008-02-26T23:27:39Z', '2023-09-28T18:48:57Z', 'https://avatars.githubusercontent.com/u/1004?v=4', 'https://api.github.com/users/adambair', 'https://github.com/adambair', 'https://api.github.com/users/adambair/followers', 'https://api.github.com/users/adambair/following', 'https://api.github.com/users/adambair/gists', 'https://api.github.com/users/adambair/starred', 'https://api.github.com/users/adambair/repos', 'https://api.github.com/users/adambair/events', 'https://api.github.com/users/adambair/received_events', 0); +INSERT INTO `developer` VALUES (1005, 'ernesto-jimenez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ernesto Jiménez', NULL, 'https://twitter.com/ernesto_jimenez', 'London', 'me@ernesto-jimenez.com', NULL, NULL, NULL, 0, 0, 257, 34, 0, 0, 0, '2008-02-26T23:28:17Z', '2024-11-04T10:39:24Z', 'https://avatars.githubusercontent.com/u/1005?v=4', 'https://api.github.com/users/ernesto-jimenez', 'https://github.com/ernesto-jimenez', 'https://api.github.com/users/ernesto-jimenez/followers', 'https://api.github.com/users/ernesto-jimenez/following', 'https://api.github.com/users/ernesto-jimenez/gists', 'https://api.github.com/users/ernesto-jimenez/starred', 'https://api.github.com/users/ernesto-jimenez/repos', 'https://api.github.com/users/ernesto-jimenez/events', 'https://api.github.com/users/ernesto-jimenez/received_events', 0); +INSERT INTO `developer` VALUES (1006, 'aglasgall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anna Glasgall', NULL, '', 'Cambridge, MA', 'anna@crossproduct.net', NULL, NULL, 'glasgall', 0, 0, 42, 0, 0, 0, 0, '2008-02-26T23:34:02Z', '2024-10-29T22:11:24Z', 'https://avatars.githubusercontent.com/u/1006?v=4', 'https://api.github.com/users/aglasgall', 'https://github.com/aglasgall', 'https://api.github.com/users/aglasgall/followers', 'https://api.github.com/users/aglasgall/following', 'https://api.github.com/users/aglasgall/gists', 'https://api.github.com/users/aglasgall/starred', 'https://api.github.com/users/aglasgall/repos', 'https://api.github.com/users/aglasgall/events', 'https://api.github.com/users/aglasgall/received_events', 0); +INSERT INTO `developer` VALUES (1007, 'marcinpohl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcin Pohl', NULL, 'http://redhardsupra.blogspot.com', 'Laurel, MD', 'marcinpohl@gmail.com', NULL, NULL, NULL, 0, 0, 25, 24, 0, 0, 0, '2008-02-26T23:57:29Z', '2024-09-22T17:22:29Z', 'https://avatars.githubusercontent.com/u/1007?v=4', 'https://api.github.com/users/marcinpohl', 'https://github.com/marcinpohl', 'https://api.github.com/users/marcinpohl/followers', 'https://api.github.com/users/marcinpohl/following', 'https://api.github.com/users/marcinpohl/gists', 'https://api.github.com/users/marcinpohl/starred', 'https://api.github.com/users/marcinpohl/repos', 'https://api.github.com/users/marcinpohl/events', 'https://api.github.com/users/marcinpohl/received_events', 0); +INSERT INTO `developer` VALUES (1008, 'Schultz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Schultz', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-26T23:59:44Z', '2024-08-08T20:53:46Z', 'https://avatars.githubusercontent.com/u/1008?v=4', 'https://api.github.com/users/Schultz', 'https://github.com/Schultz', 'https://api.github.com/users/Schultz/followers', 'https://api.github.com/users/Schultz/following', 'https://api.github.com/users/Schultz/gists', 'https://api.github.com/users/Schultz/starred', 'https://api.github.com/users/Schultz/repos', 'https://api.github.com/users/Schultz/events', 'https://api.github.com/users/Schultz/received_events', 0); +INSERT INTO `developer` VALUES (1009, 'altano', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alan', NULL, 'https://alan.norbauer.com', 'California, USA', 'altano@gmail.com', NULL, NULL, NULL, 0, 0, 60, 2, 0, 0, 0, '2008-02-27T00:10:25Z', '2024-09-17T03:03:52Z', 'https://avatars.githubusercontent.com/u/1009?v=4', 'https://api.github.com/users/altano', 'https://github.com/altano', 'https://api.github.com/users/altano/followers', 'https://api.github.com/users/altano/following', 'https://api.github.com/users/altano/gists', 'https://api.github.com/users/altano/starred', 'https://api.github.com/users/altano/repos', 'https://api.github.com/users/altano/events', 'https://api.github.com/users/altano/received_events', 0); +INSERT INTO `developer` VALUES (1010, 'damm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott M. Likens', NULL, 'htt', 'Seattle, Washington USA', NULL, 'true', NULL, NULL, 0, 0, 81, 15, 0, 0, 0, '2008-02-27T00:16:45Z', '2021-11-26T22:44:22Z', 'https://avatars.githubusercontent.com/u/1010?v=4', 'https://api.github.com/users/damm', 'https://github.com/damm', 'https://api.github.com/users/damm/followers', 'https://api.github.com/users/damm/following', 'https://api.github.com/users/damm/gists', 'https://api.github.com/users/damm/starred', 'https://api.github.com/users/damm/repos', 'https://api.github.com/users/damm/events', 'https://api.github.com/users/damm/received_events', 0); +INSERT INTO `developer` VALUES (1011, 'plaggypig', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T00:18:08Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1011?v=4', 'https://api.github.com/users/plaggypig', 'https://github.com/plaggypig', 'https://api.github.com/users/plaggypig/followers', 'https://api.github.com/users/plaggypig/following', 'https://api.github.com/users/plaggypig/gists', 'https://api.github.com/users/plaggypig/starred', 'https://api.github.com/users/plaggypig/repos', 'https://api.github.com/users/plaggypig/events', 'https://api.github.com/users/plaggypig/received_events', 0); +INSERT INTO `developer` VALUES (1012, 'rwdaigle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Daigle', 'Glide', 'http://ryandaigle.com', 'Raleigh NC', 'ryan.daigle@gmail.com', NULL, '@glideapps Engineering. Previously @spreedly, @heroku', NULL, 0, 0, 75, 0, 0, 0, 0, '2008-02-27T00:26:21Z', '2024-11-03T01:03:15Z', 'https://avatars.githubusercontent.com/u/1012?v=4', 'https://api.github.com/users/rwdaigle', 'https://github.com/rwdaigle', 'https://api.github.com/users/rwdaigle/followers', 'https://api.github.com/users/rwdaigle/following', 'https://api.github.com/users/rwdaigle/gists', 'https://api.github.com/users/rwdaigle/starred', 'https://api.github.com/users/rwdaigle/repos', 'https://api.github.com/users/rwdaigle/events', 'https://api.github.com/users/rwdaigle/received_events', 0); +INSERT INTO `developer` VALUES (1013, 'lbuenaventura', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T01:09:31Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1013?v=4', 'https://api.github.com/users/lbuenaventura', 'https://github.com/lbuenaventura', 'https://api.github.com/users/lbuenaventura/followers', 'https://api.github.com/users/lbuenaventura/following', 'https://api.github.com/users/lbuenaventura/gists', 'https://api.github.com/users/lbuenaventura/starred', 'https://api.github.com/users/lbuenaventura/repos', 'https://api.github.com/users/lbuenaventura/events', 'https://api.github.com/users/lbuenaventura/received_events', 0); +INSERT INTO `developer` VALUES (1014, 'sunfmin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Felix Sun', 'The Plant', 'http://sunfmin.com', 'Hangzhou', 'sunfmin@gmail.com', NULL, 'WeChat: sunfmin', NULL, 0, 0, 215, 204, 0, 0, 0, '2008-02-27T01:30:50Z', '2024-10-08T05:55:28Z', 'https://avatars.githubusercontent.com/u/1014?v=4', 'https://api.github.com/users/sunfmin', 'https://github.com/sunfmin', 'https://api.github.com/users/sunfmin/followers', 'https://api.github.com/users/sunfmin/following', 'https://api.github.com/users/sunfmin/gists', 'https://api.github.com/users/sunfmin/starred', 'https://api.github.com/users/sunfmin/repos', 'https://api.github.com/users/sunfmin/events', 'https://api.github.com/users/sunfmin/received_events', 0); +INSERT INTO `developer` VALUES (1015, 'hilc', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T01:46:44Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1015?v=4', 'https://api.github.com/users/hilc', 'https://github.com/hilc', 'https://api.github.com/users/hilc/followers', 'https://api.github.com/users/hilc/following', 'https://api.github.com/users/hilc/gists', 'https://api.github.com/users/hilc/starred', 'https://api.github.com/users/hilc/repos', 'https://api.github.com/users/hilc/events', 'https://api.github.com/users/hilc/received_events', 0); +INSERT INTO `developer` VALUES (1016, 'amerine', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Turner', 'Freelance', 'http://amerine.net', 'Portland', 'mark@amerine.net', NULL, 'Just a human slinging code and solving problems while floating on sunbeams through space. 😍', 'amerine', 0, 0, 238, 360, 0, 0, 0, '2008-02-27T01:52:38Z', '2024-10-25T05:07:34Z', 'https://avatars.githubusercontent.com/u/1016?v=4', 'https://api.github.com/users/amerine', 'https://github.com/amerine', 'https://api.github.com/users/amerine/followers', 'https://api.github.com/users/amerine/following', 'https://api.github.com/users/amerine/gists', 'https://api.github.com/users/amerine/starred', 'https://api.github.com/users/amerine/repos', 'https://api.github.com/users/amerine/events', 'https://api.github.com/users/amerine/received_events', 0); +INSERT INTO `developer` VALUES (1017, 'jjgod', 'C', 5.456365560968411, 0, 0, 0, 0, 0, 0, 'Jiang Jiang', NULL, 'http://blog.jjgod.org', '未知', 'gzjjgod@gmail.com', NULL, NULL, NULL, 0, 0, 603, 8, 0, 0, 0, '2008-02-27T01:58:54Z', '2024-11-01T11:20:53Z', 'https://avatars.githubusercontent.com/u/1017?v=4', 'https://api.github.com/users/jjgod', 'https://github.com/jjgod', 'https://api.github.com/users/jjgod/followers', 'https://api.github.com/users/jjgod/following', 'https://api.github.com/users/jjgod/gists', 'https://api.github.com/users/jjgod/starred', 'https://api.github.com/users/jjgod/repos', 'https://api.github.com/users/jjgod/events', 'https://api.github.com/users/jjgod/received_events', 0); +INSERT INTO `developer` VALUES (1018, 'mystical', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T02:13:19Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1018?v=4', 'https://api.github.com/users/mystical', 'https://github.com/mystical', 'https://api.github.com/users/mystical/followers', 'https://api.github.com/users/mystical/following', 'https://api.github.com/users/mystical/gists', 'https://api.github.com/users/mystical/starred', 'https://api.github.com/users/mystical/repos', 'https://api.github.com/users/mystical/events', 'https://api.github.com/users/mystical/received_events', 0); +INSERT INTO `developer` VALUES (1019, 'holin', 'C', 0, 0, 0, 0, 0, 0, 0, 'holin he', NULL, '', 'Suzhou, China', 'holin.he@gmail.com', NULL, NULL, NULL, 0, 0, 49, 166, 0, 0, 0, '2008-02-27T02:31:33Z', '2024-10-14T10:04:34Z', 'https://avatars.githubusercontent.com/u/1019?v=4', 'https://api.github.com/users/holin', 'https://github.com/holin', 'https://api.github.com/users/holin/followers', 'https://api.github.com/users/holin/following', 'https://api.github.com/users/holin/gists', 'https://api.github.com/users/holin/starred', 'https://api.github.com/users/holin/repos', 'https://api.github.com/users/holin/events', 'https://api.github.com/users/holin/received_events', 0); +INSERT INTO `developer` VALUES (1020, 'justinweiss', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Weiss', '@aha-app ', 'http://www.justinweiss.com', 'Seattle, WA', 'justin@justinweiss.com', NULL, NULL, NULL, 0, 0, 211, 12, 0, 0, 0, '2008-02-27T02:41:03Z', '2024-10-31T20:49:53Z', 'https://avatars.githubusercontent.com/u/1020?v=4', 'https://api.github.com/users/justinweiss', 'https://github.com/justinweiss', 'https://api.github.com/users/justinweiss/followers', 'https://api.github.com/users/justinweiss/following', 'https://api.github.com/users/justinweiss/gists', 'https://api.github.com/users/justinweiss/starred', 'https://api.github.com/users/justinweiss/repos', 'https://api.github.com/users/justinweiss/events', 'https://api.github.com/users/justinweiss/received_events', 0); +INSERT INTO `developer` VALUES (1021, 'sethtrain', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seth Buntin', NULL, '', 'Nashville, TN', NULL, NULL, NULL, NULL, 0, 0, 53, 29, 0, 0, 0, '2008-02-27T02:46:01Z', '2024-05-10T03:51:51Z', 'https://avatars.githubusercontent.com/u/1021?v=4', 'https://api.github.com/users/sethtrain', 'https://github.com/sethtrain', 'https://api.github.com/users/sethtrain/followers', 'https://api.github.com/users/sethtrain/following', 'https://api.github.com/users/sethtrain/gists', 'https://api.github.com/users/sethtrain/starred', 'https://api.github.com/users/sethtrain/repos', 'https://api.github.com/users/sethtrain/events', 'https://api.github.com/users/sethtrain/received_events', 0); +INSERT INTO `developer` VALUES (1022, 'mbleigh', 'C', 11.18397237181585, 0, 0, 0, 0, 0, 0, 'Michael Bleigh', '@firebase (@google)', 'http://www.mbleigh.com/', 'Castro Valley, CA', 'mbleigh@mbleigh.com', NULL, 'Makin\' devs happy @firebase ', NULL, 0, 0, 937, 32, 0, 0, 0, '2008-02-27T02:52:53Z', '2024-10-05T05:33:17Z', 'https://avatars.githubusercontent.com/u/1022?v=4', 'https://api.github.com/users/mbleigh', 'https://github.com/mbleigh', 'https://api.github.com/users/mbleigh/followers', 'https://api.github.com/users/mbleigh/following', 'https://api.github.com/users/mbleigh/gists', 'https://api.github.com/users/mbleigh/starred', 'https://api.github.com/users/mbleigh/repos', 'https://api.github.com/users/mbleigh/events', 'https://api.github.com/users/mbleigh/received_events', 0); +INSERT INTO `developer` VALUES (1023, 'cobrien', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles O\'Brien', NULL, '', 'Maryland', 'charles.obrien@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T03:20:35Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1023?v=4', 'https://api.github.com/users/cobrien', 'https://github.com/cobrien', 'https://api.github.com/users/cobrien/followers', 'https://api.github.com/users/cobrien/following', 'https://api.github.com/users/cobrien/gists', 'https://api.github.com/users/cobrien/starred', 'https://api.github.com/users/cobrien/repos', 'https://api.github.com/users/cobrien/events', 'https://api.github.com/users/cobrien/received_events', 0); +INSERT INTO `developer` VALUES (1024, 'pstuteville', 'C', 0, 0, 0, 0, 0, 0, 0, 'Preston Blair', NULL, '', '未知', 'preston@blair.io', NULL, NULL, NULL, 0, 0, 20, 9, 0, 0, 0, '2008-02-27T03:22:31Z', '2024-10-30T17:17:52Z', 'https://avatars.githubusercontent.com/u/1024?v=4', 'https://api.github.com/users/pstuteville', 'https://github.com/pstuteville', 'https://api.github.com/users/pstuteville/followers', 'https://api.github.com/users/pstuteville/following', 'https://api.github.com/users/pstuteville/gists', 'https://api.github.com/users/pstuteville/starred', 'https://api.github.com/users/pstuteville/repos', 'https://api.github.com/users/pstuteville/events', 'https://api.github.com/users/pstuteville/received_events', 0); +INSERT INTO `developer` VALUES (1025, 'da3mon', 'C', 0, 0, 0, 0, 0, 0, 0, 'da3mon', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 175, 20, 0, 0, 0, '2008-02-27T03:23:27Z', '2024-01-26T21:41:21Z', 'https://avatars.githubusercontent.com/u/1025?v=4', 'https://api.github.com/users/da3mon', 'https://github.com/da3mon', 'https://api.github.com/users/da3mon/followers', 'https://api.github.com/users/da3mon/following', 'https://api.github.com/users/da3mon/gists', 'https://api.github.com/users/da3mon/starred', 'https://api.github.com/users/da3mon/repos', 'https://api.github.com/users/da3mon/events', 'https://api.github.com/users/da3mon/received_events', 0); +INSERT INTO `developer` VALUES (1026, 'fiveruns', 'C', 0, 0, 0, 0, 0, 0, 0, 'FiveRuns Development Team', 'FiveRuns', 'http://fiveruns.org', 'Austin, TX', 'dev@fiveruns.com', NULL, NULL, NULL, 0, 0, 72, 0, 0, 0, 0, '2008-02-27T03:27:36Z', '2018-02-10T08:43:19Z', 'https://avatars.githubusercontent.com/u/1026?v=4', 'https://api.github.com/users/fiveruns', 'https://github.com/fiveruns', 'https://api.github.com/users/fiveruns/followers', 'https://api.github.com/users/fiveruns/following', 'https://api.github.com/users/fiveruns/gists', 'https://api.github.com/users/fiveruns/starred', 'https://api.github.com/users/fiveruns/repos', 'https://api.github.com/users/fiveruns/events', 'https://api.github.com/users/fiveruns/received_events', 0); +INSERT INTO `developer` VALUES (1027, 'waferbaby', 'C', 1.1692347145257191, 0, 0, 0, 0, 0, 0, 'd', '@get-mosh', 'https://waferbaby.com/', 'Melbourne', NULL, NULL, 'I do the stuff on the Internets.', NULL, 0, 0, 353, 286, 0, 0, 0, '2008-02-27T04:09:49Z', '2024-10-28T11:18:32Z', 'https://avatars.githubusercontent.com/u/1027?v=4', 'https://api.github.com/users/waferbaby', 'https://github.com/waferbaby', 'https://api.github.com/users/waferbaby/followers', 'https://api.github.com/users/waferbaby/following', 'https://api.github.com/users/waferbaby/gists', 'https://api.github.com/users/waferbaby/starred', 'https://api.github.com/users/waferbaby/repos', 'https://api.github.com/users/waferbaby/events', 'https://api.github.com/users/waferbaby/received_events', 0); +INSERT INTO `developer` VALUES (1028, 'codabee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Codabee', 'WebZense LLC', '', 'O.C.', NULL, NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-02-27T04:31:57Z', '2023-08-16T06:29:49Z', 'https://avatars.githubusercontent.com/u/1028?v=4', 'https://api.github.com/users/codabee', 'https://github.com/codabee', 'https://api.github.com/users/codabee/followers', 'https://api.github.com/users/codabee/following', 'https://api.github.com/users/codabee/gists', 'https://api.github.com/users/codabee/starred', 'https://api.github.com/users/codabee/repos', 'https://api.github.com/users/codabee/events', 'https://api.github.com/users/codabee/received_events', 0); +INSERT INTO `developer` VALUES (1029, 'creston', 'C', 0, 0, 0, 0, 0, 0, 0, 'Creston Froats', NULL, '', 'Vancouver, BC', 'cfroats@gmail.com', NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2008-02-27T04:36:07Z', '2024-05-19T19:23:40Z', 'https://avatars.githubusercontent.com/u/1029?v=4', 'https://api.github.com/users/creston', 'https://github.com/creston', 'https://api.github.com/users/creston/followers', 'https://api.github.com/users/creston/following', 'https://api.github.com/users/creston/gists', 'https://api.github.com/users/creston/starred', 'https://api.github.com/users/creston/repos', 'https://api.github.com/users/creston/events', 'https://api.github.com/users/creston/received_events', 0); +INSERT INTO `developer` VALUES (1030, 'jkatz05', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T05:27:54Z', '2016-02-26T22:34:36Z', 'https://avatars.githubusercontent.com/u/1030?v=4', 'https://api.github.com/users/jkatz05', 'https://github.com/jkatz05', 'https://api.github.com/users/jkatz05/followers', 'https://api.github.com/users/jkatz05/following', 'https://api.github.com/users/jkatz05/gists', 'https://api.github.com/users/jkatz05/starred', 'https://api.github.com/users/jkatz05/repos', 'https://api.github.com/users/jkatz05/events', 'https://api.github.com/users/jkatz05/received_events', 0); +INSERT INTO `developer` VALUES (1031, 'jasonm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Morrison', 'Pointwise AI', 'https://jasonpmorrison.com/', 'San Francisco, CA', 'jason.p.morrison@gmail.com', NULL, 'AI engineering, educational technology, and engineering leadership. Previously engineer to VPE at @minervaproject', 'jayunit', 0, 0, 101, 22, 0, 0, 0, '2008-02-27T06:00:13Z', '2024-07-28T23:22:36Z', 'https://avatars.githubusercontent.com/u/1031?v=4', 'https://api.github.com/users/jasonm', 'https://github.com/jasonm', 'https://api.github.com/users/jasonm/followers', 'https://api.github.com/users/jasonm/following', 'https://api.github.com/users/jasonm/gists', 'https://api.github.com/users/jasonm/starred', 'https://api.github.com/users/jasonm/repos', 'https://api.github.com/users/jasonm/events', 'https://api.github.com/users/jasonm/received_events', 0); +INSERT INTO `developer` VALUES (1032, 'antage', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'USA', 'antage@gmail.com', NULL, NULL, NULL, 0, 0, 60, 20, 0, 0, 0, '2008-02-27T06:00:35Z', '2024-08-11T02:00:51Z', 'https://avatars.githubusercontent.com/u/1032?v=4', 'https://api.github.com/users/antage', 'https://github.com/antage', 'https://api.github.com/users/antage/followers', 'https://api.github.com/users/antage/following', 'https://api.github.com/users/antage/gists', 'https://api.github.com/users/antage/starred', 'https://api.github.com/users/antage/repos', 'https://api.github.com/users/antage/events', 'https://api.github.com/users/antage/received_events', 0); +INSERT INTO `developer` VALUES (1033, 'cduhard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Duhard', 'Twofold Software', 'http://www.twofoldsoftware.com', 'Ottawa, ON, Canada', 'christian@twofoldsoftware.com', 'true', NULL, NULL, 0, 0, 6, 16, 0, 0, 0, '2008-02-27T06:02:34Z', '2024-10-03T22:44:33Z', 'https://avatars.githubusercontent.com/u/1033?v=4', 'https://api.github.com/users/cduhard', 'https://github.com/cduhard', 'https://api.github.com/users/cduhard/followers', 'https://api.github.com/users/cduhard/following', 'https://api.github.com/users/cduhard/gists', 'https://api.github.com/users/cduhard/starred', 'https://api.github.com/users/cduhard/repos', 'https://api.github.com/users/cduhard/events', 'https://api.github.com/users/cduhard/received_events', 0); +INSERT INTO `developer` VALUES (1034, 'matthewd', 'C', 4.650384961837186, 0, 0, 0, 0, 0, 0, 'Matthew Draper', NULL, '', 'Adelaide, Australia', 'matthew@trebex.net', NULL, NULL, NULL, 0, 0, 556, 7, 0, 0, 0, '2008-02-27T06:27:12Z', '2024-10-29T17:22:04Z', 'https://avatars.githubusercontent.com/u/1034?v=4', 'https://api.github.com/users/matthewd', 'https://github.com/matthewd', 'https://api.github.com/users/matthewd/followers', 'https://api.github.com/users/matthewd/following', 'https://api.github.com/users/matthewd/gists', 'https://api.github.com/users/matthewd/starred', 'https://api.github.com/users/matthewd/repos', 'https://api.github.com/users/matthewd/events', 'https://api.github.com/users/matthewd/received_events', 0); +INSERT INTO `developer` VALUES (1035, 'mattman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Didcoe', NULL, 'http://mattdidcoe.com', 'Perth, Western Australia', NULL, NULL, '🚑 Paramedic; and\r\n💻 Very occasional programer', 'mattdidcoe', 0, 0, 25, 10, 0, 0, 0, '2008-02-27T07:27:42Z', '2024-10-19T08:10:31Z', 'https://avatars.githubusercontent.com/u/1035?v=4', 'https://api.github.com/users/mattman', 'https://github.com/mattman', 'https://api.github.com/users/mattman/followers', 'https://api.github.com/users/mattman/following', 'https://api.github.com/users/mattman/gists', 'https://api.github.com/users/mattman/starred', 'https://api.github.com/users/mattman/repos', 'https://api.github.com/users/mattman/events', 'https://api.github.com/users/mattman/received_events', 0); +INSERT INTO `developer` VALUES (1036, 'asiemar', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T07:37:51Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1036?v=4', 'https://api.github.com/users/asiemar', 'https://github.com/asiemar', 'https://api.github.com/users/asiemar/followers', 'https://api.github.com/users/asiemar/following', 'https://api.github.com/users/asiemar/gists', 'https://api.github.com/users/asiemar/starred', 'https://api.github.com/users/asiemar/repos', 'https://api.github.com/users/asiemar/events', 'https://api.github.com/users/asiemar/received_events', 0); +INSERT INTO `developer` VALUES (1037, 'zmack', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrei Bocan', NULL, 'http://nope.space', '未知', 'zmaxor@gmail.com', NULL, NULL, NULL, 0, 0, 84, 66, 0, 0, 0, '2008-02-27T07:42:35Z', '2024-08-25T22:13:21Z', 'https://avatars.githubusercontent.com/u/1037?v=4', 'https://api.github.com/users/zmack', 'https://github.com/zmack', 'https://api.github.com/users/zmack/followers', 'https://api.github.com/users/zmack/following', 'https://api.github.com/users/zmack/gists', 'https://api.github.com/users/zmack/starred', 'https://api.github.com/users/zmack/repos', 'https://api.github.com/users/zmack/events', 'https://api.github.com/users/zmack/received_events', 0); +INSERT INTO `developer` VALUES (1038, 'Arthur', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 23, 20, 0, 0, 0, '2008-02-27T07:59:17Z', '2024-09-18T12:49:20Z', 'https://avatars.githubusercontent.com/u/1038?v=4', 'https://api.github.com/users/Arthur', 'https://github.com/Arthur', 'https://api.github.com/users/Arthur/followers', 'https://api.github.com/users/Arthur/following', 'https://api.github.com/users/Arthur/gists', 'https://api.github.com/users/Arthur/starred', 'https://api.github.com/users/Arthur/repos', 'https://api.github.com/users/Arthur/events', 'https://api.github.com/users/Arthur/received_events', 0); +INSERT INTO `developer` VALUES (1039, 'nalin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 4, 0, 0, 0, '2008-02-27T08:01:33Z', '2024-10-12T15:28:26Z', 'https://avatars.githubusercontent.com/u/1039?v=4', 'https://api.github.com/users/nalin', 'https://github.com/nalin', 'https://api.github.com/users/nalin/followers', 'https://api.github.com/users/nalin/following', 'https://api.github.com/users/nalin/gists', 'https://api.github.com/users/nalin/starred', 'https://api.github.com/users/nalin/repos', 'https://api.github.com/users/nalin/events', 'https://api.github.com/users/nalin/received_events', 0); +INSERT INTO `developer` VALUES (1040, 'vivaopensource', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T08:04:46Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1040?v=4', 'https://api.github.com/users/vivaopensource', 'https://github.com/vivaopensource', 'https://api.github.com/users/vivaopensource/followers', 'https://api.github.com/users/vivaopensource/following', 'https://api.github.com/users/vivaopensource/gists', 'https://api.github.com/users/vivaopensource/starred', 'https://api.github.com/users/vivaopensource/repos', 'https://api.github.com/users/vivaopensource/events', 'https://api.github.com/users/vivaopensource/received_events', 0); +INSERT INTO `developer` VALUES (1041, 'joao', 'C', 0, 0, 0, 0, 0, 0, 0, 'João Antunes', '@numero', 'https://joaoantunes.com', '未知', 'joao.antunes@me.com', 'true', 'Software designer', 'joao', 0, 0, 74, 0, 0, 0, 0, '2008-02-27T08:07:11Z', '2024-11-01T16:50:44Z', 'https://avatars.githubusercontent.com/u/1041?v=4', 'https://api.github.com/users/joao', 'https://github.com/joao', 'https://api.github.com/users/joao/followers', 'https://api.github.com/users/joao/following', 'https://api.github.com/users/joao/gists', 'https://api.github.com/users/joao/starred', 'https://api.github.com/users/joao/repos', 'https://api.github.com/users/joao/events', 'https://api.github.com/users/joao/received_events', 0); +INSERT INTO `developer` VALUES (1042, 'bloodearnest', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Davy', 'Bennett Institute for Appllied Data Science, Oxford University', '', 'Leeds, UK', 'bloodearnest@gmail.com', NULL, NULL, 'bloodearnest', 0, 0, 28, 1, 0, 0, 0, '2008-02-27T08:10:24Z', '2024-07-18T11:06:25Z', 'https://avatars.githubusercontent.com/u/1042?v=4', 'https://api.github.com/users/bloodearnest', 'https://github.com/bloodearnest', 'https://api.github.com/users/bloodearnest/followers', 'https://api.github.com/users/bloodearnest/following', 'https://api.github.com/users/bloodearnest/gists', 'https://api.github.com/users/bloodearnest/starred', 'https://api.github.com/users/bloodearnest/repos', 'https://api.github.com/users/bloodearnest/events', 'https://api.github.com/users/bloodearnest/received_events', 0); +INSERT INTO `developer` VALUES (1043, 'ealameda', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eldon Alameda', NULL, 'http://simplifi.es', 'Florida', 'alameda.eldon@gmail.com', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-02-27T08:21:19Z', '2024-08-18T19:26:01Z', 'https://avatars.githubusercontent.com/u/1043?v=4', 'https://api.github.com/users/ealameda', 'https://github.com/ealameda', 'https://api.github.com/users/ealameda/followers', 'https://api.github.com/users/ealameda/following', 'https://api.github.com/users/ealameda/gists', 'https://api.github.com/users/ealameda/starred', 'https://api.github.com/users/ealameda/repos', 'https://api.github.com/users/ealameda/events', 'https://api.github.com/users/ealameda/received_events', 0); +INSERT INTO `developer` VALUES (1044, 'edbond', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eduard Bondarenko', 'NomiHealth', '', 'Austin, TX, USA', NULL, 'true', 'Senior software developer @agiliway and @nomihealth', 'edbond', 0, 0, 60, 11, 0, 0, 0, '2008-02-27T08:22:28Z', '2024-10-23T12:58:58Z', 'https://avatars.githubusercontent.com/u/1044?v=4', 'https://api.github.com/users/edbond', 'https://github.com/edbond', 'https://api.github.com/users/edbond/followers', 'https://api.github.com/users/edbond/following', 'https://api.github.com/users/edbond/gists', 'https://api.github.com/users/edbond/starred', 'https://api.github.com/users/edbond/repos', 'https://api.github.com/users/edbond/events', 'https://api.github.com/users/edbond/received_events', 0); +INSERT INTO `developer` VALUES (1045, 'pejorative', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T08:35:36Z', '2019-06-05T03:50:02Z', 'https://avatars.githubusercontent.com/u/1045?v=4', 'https://api.github.com/users/pejorative', 'https://github.com/pejorative', 'https://api.github.com/users/pejorative/followers', 'https://api.github.com/users/pejorative/following', 'https://api.github.com/users/pejorative/gists', 'https://api.github.com/users/pejorative/starred', 'https://api.github.com/users/pejorative/repos', 'https://api.github.com/users/pejorative/events', 'https://api.github.com/users/pejorative/received_events', 0); +INSERT INTO `developer` VALUES (1046, 'mewz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Hullinger', NULL, 'http://www.evilwidget.com', '未知', 'sshjason@gmail.com', NULL, NULL, NULL, 0, 0, 18, 15, 0, 0, 0, '2008-02-27T08:41:29Z', '2022-05-04T18:03:25Z', 'https://avatars.githubusercontent.com/u/1046?v=4', 'https://api.github.com/users/mewz', 'https://github.com/mewz', 'https://api.github.com/users/mewz/followers', 'https://api.github.com/users/mewz/following', 'https://api.github.com/users/mewz/gists', 'https://api.github.com/users/mewz/starred', 'https://api.github.com/users/mewz/repos', 'https://api.github.com/users/mewz/events', 'https://api.github.com/users/mewz/received_events', 0); +INSERT INTO `developer` VALUES (1047, 'btbytes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pradeep Gowda', NULL, 'https://www.btbytes.com/', 'Carmel, IN', NULL, NULL, NULL, 'btbytes', 0, 0, 206, 755, 0, 0, 0, '2008-02-27T08:49:03Z', '2024-11-01T12:48:31Z', 'https://avatars.githubusercontent.com/u/1047?v=4', 'https://api.github.com/users/btbytes', 'https://github.com/btbytes', 'https://api.github.com/users/btbytes/followers', 'https://api.github.com/users/btbytes/following', 'https://api.github.com/users/btbytes/gists', 'https://api.github.com/users/btbytes/starred', 'https://api.github.com/users/btbytes/repos', 'https://api.github.com/users/btbytes/events', 'https://api.github.com/users/btbytes/received_events', 0); +INSERT INTO `developer` VALUES (1048, 'arunthampi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arun Thampi', '@botmetrics ', 'http://mclov.in', 'San Francisco', 'arun.thampi@gmail.com', NULL, NULL, NULL, 0, 0, 112, 19, 0, 0, 0, '2008-02-27T09:25:52Z', '2022-11-26T23:33:28Z', 'https://avatars.githubusercontent.com/u/1048?v=4', 'https://api.github.com/users/arunthampi', 'https://github.com/arunthampi', 'https://api.github.com/users/arunthampi/followers', 'https://api.github.com/users/arunthampi/following', 'https://api.github.com/users/arunthampi/gists', 'https://api.github.com/users/arunthampi/starred', 'https://api.github.com/users/arunthampi/repos', 'https://api.github.com/users/arunthampi/events', 'https://api.github.com/users/arunthampi/received_events', 0); +INSERT INTO `developer` VALUES (1049, 'universal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johannes / universa1', NULL, '', 'Germany / Kiel', NULL, NULL, NULL, NULL, 0, 0, 18, 8, 0, 0, 0, '2008-02-27T09:41:19Z', '2024-10-28T11:11:16Z', 'https://avatars.githubusercontent.com/u/1049?v=4', 'https://api.github.com/users/universal', 'https://github.com/universal', 'https://api.github.com/users/universal/followers', 'https://api.github.com/users/universal/following', 'https://api.github.com/users/universal/gists', 'https://api.github.com/users/universal/starred', 'https://api.github.com/users/universal/repos', 'https://api.github.com/users/universal/events', 'https://api.github.com/users/universal/received_events', 0); +INSERT INTO `developer` VALUES (1050, 'calavera', 'C', 4.307414494121771, 0, 0, 0, 0, 0, 0, 'David Calavera', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 536, 0, 0, 0, 0, '2008-02-27T09:52:53Z', '2024-10-28T22:02:41Z', 'https://avatars.githubusercontent.com/u/1050?v=4', 'https://api.github.com/users/calavera', 'https://github.com/calavera', 'https://api.github.com/users/calavera/followers', 'https://api.github.com/users/calavera/following', 'https://api.github.com/users/calavera/gists', 'https://api.github.com/users/calavera/starred', 'https://api.github.com/users/calavera/repos', 'https://api.github.com/users/calavera/events', 'https://api.github.com/users/calavera/received_events', 0); +INSERT INTO `developer` VALUES (1051, 'elia', 'C', 3.4671368482190026, 0, 0, 0, 0, 0, 0, 'Elia Schito', '@nebulab', 'http://elia.schito.me', 'Milan, Italy', 'elia@schito.me', NULL, '@opal core · principal eng at @nebulab · useless details connoisseur ', NULL, 0, 0, 487, 251, 0, 0, 0, '2008-02-27T09:55:17Z', '2024-10-08T14:49:01Z', 'https://avatars.githubusercontent.com/u/1051?v=4', 'https://api.github.com/users/elia', 'https://github.com/elia', 'https://api.github.com/users/elia/followers', 'https://api.github.com/users/elia/following', 'https://api.github.com/users/elia/gists', 'https://api.github.com/users/elia/starred', 'https://api.github.com/users/elia/repos', 'https://api.github.com/users/elia/events', 'https://api.github.com/users/elia/received_events', 0); +INSERT INTO `developer` VALUES (1052, 'joerichsen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jørgen Orehøj Erichsen', 'erichsen.net', '', 'Århus, Denmark', 'joe@erichsen.net', 'true', NULL, NULL, 0, 0, 31, 8, 0, 0, 0, '2008-02-27T10:19:43Z', '2024-08-18T08:53:34Z', 'https://avatars.githubusercontent.com/u/1052?v=4', 'https://api.github.com/users/joerichsen', 'https://github.com/joerichsen', 'https://api.github.com/users/joerichsen/followers', 'https://api.github.com/users/joerichsen/following', 'https://api.github.com/users/joerichsen/gists', 'https://api.github.com/users/joerichsen/starred', 'https://api.github.com/users/joerichsen/repos', 'https://api.github.com/users/joerichsen/events', 'https://api.github.com/users/joerichsen/received_events', 0); +INSERT INTO `developer` VALUES (1053, 'haraldmartin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Ström', NULL, 'my-domain.se', 'Stockholm, Sweden', 'name@my-domain.se', NULL, NULL, 'haraldmartin', 0, 0, 58, 54, 0, 0, 0, '2008-02-27T10:24:15Z', '2024-10-17T09:04:01Z', 'https://avatars.githubusercontent.com/u/1053?v=4', 'https://api.github.com/users/haraldmartin', 'https://github.com/haraldmartin', 'https://api.github.com/users/haraldmartin/followers', 'https://api.github.com/users/haraldmartin/following', 'https://api.github.com/users/haraldmartin/gists', 'https://api.github.com/users/haraldmartin/starred', 'https://api.github.com/users/haraldmartin/repos', 'https://api.github.com/users/haraldmartin/events', 'https://api.github.com/users/haraldmartin/received_events', 0); +INSERT INTO `developer` VALUES (1055, 'benreesman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Reesman', 'Facebook', '', 'San Francisco', 'ben.reesman@gmail.com', NULL, NULL, NULL, 0, 0, 20, 2, 0, 0, 0, '2008-02-27T10:49:00Z', '2020-12-16T21:40:54Z', 'https://avatars.githubusercontent.com/u/1055?v=4', 'https://api.github.com/users/benreesman', 'https://github.com/benreesman', 'https://api.github.com/users/benreesman/followers', 'https://api.github.com/users/benreesman/following', 'https://api.github.com/users/benreesman/gists', 'https://api.github.com/users/benreesman/starred', 'https://api.github.com/users/benreesman/repos', 'https://api.github.com/users/benreesman/events', 'https://api.github.com/users/benreesman/received_events', 0); +INSERT INTO `developer` VALUES (1056, 'ludwig', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luis Armendariz', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 108, 132, 0, 0, 0, '2008-02-27T11:10:03Z', '2024-06-26T12:52:37Z', 'https://avatars.githubusercontent.com/u/1056?v=4', 'https://api.github.com/users/ludwig', 'https://github.com/ludwig', 'https://api.github.com/users/ludwig/followers', 'https://api.github.com/users/ludwig/following', 'https://api.github.com/users/ludwig/gists', 'https://api.github.com/users/ludwig/starred', 'https://api.github.com/users/ludwig/repos', 'https://api.github.com/users/ludwig/events', 'https://api.github.com/users/ludwig/received_events', 0); +INSERT INTO `developer` VALUES (1057, 'jkp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jamie Kirkpatrick', '@spotify / @LN-Zap ', '', 'London, England', NULL, 'true', 'I used to hang here but now you\'ll find me at https://gitlab.com/jamiekp', NULL, 0, 0, 59, 9, 0, 0, 0, '2008-02-27T11:32:42Z', '2024-10-30T22:16:27Z', 'https://avatars.githubusercontent.com/u/1057?v=4', 'https://api.github.com/users/jkp', 'https://github.com/jkp', 'https://api.github.com/users/jkp/followers', 'https://api.github.com/users/jkp/following', 'https://api.github.com/users/jkp/gists', 'https://api.github.com/users/jkp/starred', 'https://api.github.com/users/jkp/repos', 'https://api.github.com/users/jkp/events', 'https://api.github.com/users/jkp/received_events', 0); +INSERT INTO `developer` VALUES (1058, 'Cirex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Bloch', NULL, '', 'Jacksonville, Florida', NULL, 'true', NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-27T11:36:06Z', '2023-08-31T13:34:48Z', 'https://avatars.githubusercontent.com/u/1058?v=4', 'https://api.github.com/users/Cirex', 'https://github.com/Cirex', 'https://api.github.com/users/Cirex/followers', 'https://api.github.com/users/Cirex/following', 'https://api.github.com/users/Cirex/gists', 'https://api.github.com/users/Cirex/starred', 'https://api.github.com/users/Cirex/repos', 'https://api.github.com/users/Cirex/events', 'https://api.github.com/users/Cirex/received_events', 0); +INSERT INTO `developer` VALUES (1059, 'gravityblast', 'C', 1.683690416098842, 0, 0, 0, 0, 0, 0, 'Andrea Franz', NULL, 'http://gravityblast.com', 'Barcelona', 'andrea@gravityblast.com', 'true', NULL, NULL, 0, 0, 383, 5, 0, 0, 0, '2008-02-27T11:37:15Z', '2024-10-20T11:21:01Z', 'https://avatars.githubusercontent.com/u/1059?v=4', 'https://api.github.com/users/gravityblast', 'https://github.com/gravityblast', 'https://api.github.com/users/gravityblast/followers', 'https://api.github.com/users/gravityblast/following', 'https://api.github.com/users/gravityblast/gists', 'https://api.github.com/users/gravityblast/starred', 'https://api.github.com/users/gravityblast/repos', 'https://api.github.com/users/gravityblast/events', 'https://api.github.com/users/gravityblast/received_events', 0); +INSERT INTO `developer` VALUES (1060, 'andrew', 'B+', 50.17971455105859, 0, 0, 0, 0, 0, 0, 'Andrew Nesbitt', '@ecosyste-ms and @octobox ', 'https://nesbitt.io', 'Bristol, UK', 'andrewnez@gmail.com', NULL, 'Working on mapping the world of open source software @ecosyste-ms and empowering developers with @octobox ', 'teabass', 0, 0, 3211, 3270, 0, 0, 0, '2008-02-27T11:39:22Z', '2024-11-02T11:35:12Z', 'https://avatars.githubusercontent.com/u/1060?v=4', 'https://api.github.com/users/andrew', 'https://github.com/andrew', 'https://api.github.com/users/andrew/followers', 'https://api.github.com/users/andrew/following', 'https://api.github.com/users/andrew/gists', 'https://api.github.com/users/andrew/starred', 'https://api.github.com/users/andrew/repos', 'https://api.github.com/users/andrew/events', 'https://api.github.com/users/andrew/received_events', 0); +INSERT INTO `developer` VALUES (1061, 'hmans', 'C', 3.2956516143612946, 0, 0, 0, 0, 0, 0, 'Hendrik Mans', NULL, 'https://hmans.dev', 'Wedel, Germany', 'hendrik@mans.de', 'true', 'THE WIZARD MUST BE STOPPED.', NULL, 0, 0, 477, 21, 0, 0, 0, '2008-02-27T12:01:45Z', '2024-10-01T10:10:27Z', 'https://avatars.githubusercontent.com/u/1061?v=4', 'https://api.github.com/users/hmans', 'https://github.com/hmans', 'https://api.github.com/users/hmans/followers', 'https://api.github.com/users/hmans/following', 'https://api.github.com/users/hmans/gists', 'https://api.github.com/users/hmans/starred', 'https://api.github.com/users/hmans/repos', 'https://api.github.com/users/hmans/events', 'https://api.github.com/users/hmans/received_events', 0); +INSERT INTO `developer` VALUES (1062, 'aanand', 'C', 2.729750342630859, 0, 0, 0, 0, 0, 0, 'Aanand Prasad', NULL, 'http://aanandprasad.com', 'New York', 'aanand.prasad@gmail.com', 'true', NULL, NULL, 0, 0, 444, 7, 0, 0, 0, '2008-02-27T12:45:31Z', '2024-09-06T19:15:37Z', 'https://avatars.githubusercontent.com/u/1062?v=4', 'https://api.github.com/users/aanand', 'https://github.com/aanand', 'https://api.github.com/users/aanand/followers', 'https://api.github.com/users/aanand/following', 'https://api.github.com/users/aanand/gists', 'https://api.github.com/users/aanand/starred', 'https://api.github.com/users/aanand/repos', 'https://api.github.com/users/aanand/events', 'https://api.github.com/users/aanand/received_events', 0); +INSERT INTO `developer` VALUES (1063, 'pqs', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T12:50:11Z', '2022-06-22T20:50:56Z', 'https://avatars.githubusercontent.com/u/1063?v=4', 'https://api.github.com/users/pqs', 'https://github.com/pqs', 'https://api.github.com/users/pqs/followers', 'https://api.github.com/users/pqs/following', 'https://api.github.com/users/pqs/gists', 'https://api.github.com/users/pqs/starred', 'https://api.github.com/users/pqs/repos', 'https://api.github.com/users/pqs/events', 'https://api.github.com/users/pqs/received_events', 0); +INSERT INTO `developer` VALUES (1065, 'smn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon de Haan', '@turnhub ', 'https://turn.io', 'Cape Town, The Netherlands', 'simon@turn.io', 'true', NULL, 'smn', 0, 0, 104, 13, 0, 0, 0, '2008-02-27T13:08:42Z', '2024-10-20T17:26:39Z', 'https://avatars.githubusercontent.com/u/1065?v=4', 'https://api.github.com/users/smn', 'https://github.com/smn', 'https://api.github.com/users/smn/followers', 'https://api.github.com/users/smn/following', 'https://api.github.com/users/smn/gists', 'https://api.github.com/users/smn/starred', 'https://api.github.com/users/smn/repos', 'https://api.github.com/users/smn/events', 'https://api.github.com/users/smn/received_events', 0); +INSERT INTO `developer` VALUES (1066, 'solnic', 'C+', 18.540688904311516, 0, 0, 0, 0, 0, 0, 'Peter Solnica', '@getsentry', 'https://solnic.dev', '未知', NULL, 'true', '👨‍💻 Elixir/Ruby SDK dev at @getsentry\r\n❤️ Hanami/dry-rb/rom-rb Core Team\r\n💜 Creator of Elixir Drops 💦', 'solnic_dev', 0, 0, 1366, 6, 0, 0, 0, '2008-02-27T13:21:03Z', '2024-11-02T08:19:09Z', 'https://avatars.githubusercontent.com/u/1066?v=4', 'https://api.github.com/users/solnic', 'https://github.com/solnic', 'https://api.github.com/users/solnic/followers', 'https://api.github.com/users/solnic/following', 'https://api.github.com/users/solnic/gists', 'https://api.github.com/users/solnic/starred', 'https://api.github.com/users/solnic/repos', 'https://api.github.com/users/solnic/events', 'https://api.github.com/users/solnic/received_events', 0); +INSERT INTO `developer` VALUES (1067, 'railslove', 'C', 0, 0, 0, 0, 0, 0, 0, 'Railslove', NULL, 'https://railslove.com/', 'Cologne, Germany', 'team@railslove.com', NULL, 'We\'re an agile team building new products for the web. And oh boy, we\'re kind of good at it. Want to work with us?', NULL, 0, 0, 11, 0, 0, 0, 0, '2008-02-27T13:23:19Z', '2024-10-18T07:19:17Z', 'https://avatars.githubusercontent.com/u/1067?v=4', 'https://api.github.com/users/railslove', 'https://github.com/railslove', 'https://api.github.com/users/railslove/followers', 'https://api.github.com/users/railslove/following', 'https://api.github.com/users/railslove/gists', 'https://api.github.com/users/railslove/starred', 'https://api.github.com/users/railslove/repos', 'https://api.github.com/users/railslove/events', 'https://api.github.com/users/railslove/received_events', 0); +INSERT INTO `developer` VALUES (1068, 'we5', 'C', 0, 0, 0, 0, 0, 0, 0, 'Björn Wolf', NULL, '', 'Butzbach', 'bjoern@we5.de', NULL, NULL, 'we5', 0, 0, 30, 19, 0, 0, 0, '2008-02-27T13:33:21Z', '2024-10-26T11:20:58Z', 'https://avatars.githubusercontent.com/u/1068?v=4', 'https://api.github.com/users/we5', 'https://github.com/we5', 'https://api.github.com/users/we5/followers', 'https://api.github.com/users/we5/following', 'https://api.github.com/users/we5/gists', 'https://api.github.com/users/we5/starred', 'https://api.github.com/users/we5/repos', 'https://api.github.com/users/we5/events', 'https://api.github.com/users/we5/received_events', 0); +INSERT INTO `developer` VALUES (1069, 'returnthis', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T13:40:54Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1069?v=4', 'https://api.github.com/users/returnthis', 'https://github.com/returnthis', 'https://api.github.com/users/returnthis/followers', 'https://api.github.com/users/returnthis/following', 'https://api.github.com/users/returnthis/gists', 'https://api.github.com/users/returnthis/starred', 'https://api.github.com/users/returnthis/repos', 'https://api.github.com/users/returnthis/events', 'https://api.github.com/users/returnthis/received_events', 0); +INSERT INTO `developer` VALUES (1070, 'stympy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Curtis', 'Tesly, LLC', 'http://www.bencurtis.com/', 'Seattle, WA', 'ben@bencurtis.com', 'true', 'Tech entrepreneur and co-founder of Honeybadger.io', NULL, 0, 0, 244, 6, 0, 0, 0, '2008-02-27T13:53:24Z', '2024-11-01T19:37:57Z', 'https://avatars.githubusercontent.com/u/1070?v=4', 'https://api.github.com/users/stympy', 'https://github.com/stympy', 'https://api.github.com/users/stympy/followers', 'https://api.github.com/users/stympy/following', 'https://api.github.com/users/stympy/gists', 'https://api.github.com/users/stympy/starred', 'https://api.github.com/users/stympy/repos', 'https://api.github.com/users/stympy/events', 'https://api.github.com/users/stympy/received_events', 0); +INSERT INTO `developer` VALUES (1071, 'jspears', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin', NULL, '', '未知', 'speajus@gmail.com', NULL, NULL, 'speajus', 0, 0, 50, 51, 0, 0, 0, '2008-02-27T14:28:48Z', '2024-10-14T01:36:25Z', 'https://avatars.githubusercontent.com/u/1071?v=4', 'https://api.github.com/users/jspears', 'https://github.com/jspears', 'https://api.github.com/users/jspears/followers', 'https://api.github.com/users/jspears/following', 'https://api.github.com/users/jspears/gists', 'https://api.github.com/users/jspears/starred', 'https://api.github.com/users/jspears/repos', 'https://api.github.com/users/jspears/events', 'https://api.github.com/users/jspears/received_events', 0); +INSERT INTO `developer` VALUES (1072, 'mwise', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Wise', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-27T14:31:32Z', '2023-06-09T05:42:33Z', 'https://avatars.githubusercontent.com/u/1072?v=4', 'https://api.github.com/users/mwise', 'https://github.com/mwise', 'https://api.github.com/users/mwise/followers', 'https://api.github.com/users/mwise/following', 'https://api.github.com/users/mwise/gists', 'https://api.github.com/users/mwise/starred', 'https://api.github.com/users/mwise/repos', 'https://api.github.com/users/mwise/events', 'https://api.github.com/users/mwise/received_events', 0); +INSERT INTO `developer` VALUES (1073, 'georgepalmer', 'C', 0, 0, 0, 0, 0, 0, 0, 'George Palmer', NULL, 'http://rowtheboat.com', 'London', NULL, NULL, NULL, NULL, 0, 0, 39, 15, 0, 0, 0, '2008-02-27T14:32:28Z', '2022-12-10T13:56:59Z', 'https://avatars.githubusercontent.com/u/1073?v=4', 'https://api.github.com/users/georgepalmer', 'https://github.com/georgepalmer', 'https://api.github.com/users/georgepalmer/followers', 'https://api.github.com/users/georgepalmer/following', 'https://api.github.com/users/georgepalmer/gists', 'https://api.github.com/users/georgepalmer/starred', 'https://api.github.com/users/georgepalmer/repos', 'https://api.github.com/users/georgepalmer/events', 'https://api.github.com/users/georgepalmer/received_events', 0); +INSERT INTO `developer` VALUES (1074, 'andregoncalves', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andre Goncalves', NULL, 'http://andregoncalves.com', 'Portugal', 'andre@andregoncalves.com', 'true', 'I\'m a full stack developer & consultant with more than 10 years experience in developing high performance web applications.', NULL, 0, 0, 57, 22, 0, 0, 0, '2008-02-27T14:47:51Z', '2024-10-24T14:40:24Z', 'https://avatars.githubusercontent.com/u/1074?v=4', 'https://api.github.com/users/andregoncalves', 'https://github.com/andregoncalves', 'https://api.github.com/users/andregoncalves/followers', 'https://api.github.com/users/andregoncalves/following', 'https://api.github.com/users/andregoncalves/gists', 'https://api.github.com/users/andregoncalves/starred', 'https://api.github.com/users/andregoncalves/repos', 'https://api.github.com/users/andregoncalves/events', 'https://api.github.com/users/andregoncalves/received_events', 0); +INSERT INTO `developer` VALUES (1075, 'dchelimsky', 'C', 9.040406948594503, 0, 0, 0, 0, 0, 0, 'David Chelimsky', 'Retired', '', 'Chicago, IL, USA', NULL, NULL, NULL, NULL, 0, 0, 812, 7, 0, 0, 0, '2008-02-27T14:51:22Z', '2024-09-17T20:17:39Z', 'https://avatars.githubusercontent.com/u/1075?v=4', 'https://api.github.com/users/dchelimsky', 'https://github.com/dchelimsky', 'https://api.github.com/users/dchelimsky/followers', 'https://api.github.com/users/dchelimsky/following', 'https://api.github.com/users/dchelimsky/gists', 'https://api.github.com/users/dchelimsky/starred', 'https://api.github.com/users/dchelimsky/repos', 'https://api.github.com/users/dchelimsky/events', 'https://api.github.com/users/dchelimsky/received_events', 0); +INSERT INTO `developer` VALUES (1076, 'haguro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ali A.', NULL, 'haguro.io', 'Melbourne, Australia', NULL, NULL, 'Father + Engineer + Gopher + Runner.', NULL, 0, 0, 40, 66, 0, 0, 0, '2008-02-27T15:02:49Z', '2024-09-23T08:17:09Z', 'https://avatars.githubusercontent.com/u/1076?v=4', 'https://api.github.com/users/haguro', 'https://github.com/haguro', 'https://api.github.com/users/haguro/followers', 'https://api.github.com/users/haguro/following', 'https://api.github.com/users/haguro/gists', 'https://api.github.com/users/haguro/starred', 'https://api.github.com/users/haguro/repos', 'https://api.github.com/users/haguro/events', 'https://api.github.com/users/haguro/received_events', 0); +INSERT INTO `developer` VALUES (1077, 'pdlug', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Dlug', '@cadenaiorg @nicia-ai', '', 'Long Island, NY', 'paul.dlug@gmail.com', NULL, 'Founder and CEO of @cadenaiorg building RAG/GraphRAG tools and services. Nerding out on functional programming, AI, knowledge graphs, and community tech.', 'pdlug', 0, 0, 24, 9, 0, 0, 0, '2008-02-27T15:17:40Z', '2024-08-30T10:43:41Z', 'https://avatars.githubusercontent.com/u/1077?v=4', 'https://api.github.com/users/pdlug', 'https://github.com/pdlug', 'https://api.github.com/users/pdlug/followers', 'https://api.github.com/users/pdlug/following', 'https://api.github.com/users/pdlug/gists', 'https://api.github.com/users/pdlug/starred', 'https://api.github.com/users/pdlug/repos', 'https://api.github.com/users/pdlug/events', 'https://api.github.com/users/pdlug/received_events', 0); +INSERT INTO `developer` VALUES (1078, 'fredix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frédéric Logier', NULL, 'https://fredix.xyz', 'Lyon', 'fredix@protonmail.com', 'true', 'My active git repositories are on codeberg:\r\nhttps://codeberg.org/fredix\r\n\r\nI stay here because of you ... So please leave this fucking GAFAM.', NULL, 0, 0, 18, 7, 0, 0, 0, '2008-02-27T15:19:25Z', '2024-10-30T15:28:25Z', 'https://avatars.githubusercontent.com/u/1078?v=4', 'https://api.github.com/users/fredix', 'https://github.com/fredix', 'https://api.github.com/users/fredix/followers', 'https://api.github.com/users/fredix/following', 'https://api.github.com/users/fredix/gists', 'https://api.github.com/users/fredix/starred', 'https://api.github.com/users/fredix/repos', 'https://api.github.com/users/fredix/events', 'https://api.github.com/users/fredix/received_events', 0); +INSERT INTO `developer` VALUES (1079, 'agibralter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Gibralter', 'Greenhouse', 'https://twitter.com/agibralter', 'New York City', 'aaron.gibralter@gmail.com', NULL, 'Director of Engineering at @grnhse', NULL, 0, 0, 57, 120, 0, 0, 0, '2008-02-27T15:25:38Z', '2024-10-10T13:48:37Z', 'https://avatars.githubusercontent.com/u/1079?v=4', 'https://api.github.com/users/agibralter', 'https://github.com/agibralter', 'https://api.github.com/users/agibralter/followers', 'https://api.github.com/users/agibralter/following', 'https://api.github.com/users/agibralter/gists', 'https://api.github.com/users/agibralter/starred', 'https://api.github.com/users/agibralter/repos', 'https://api.github.com/users/agibralter/events', 'https://api.github.com/users/agibralter/received_events', 0); +INSERT INTO `developer` VALUES (1080, 'frac', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adriano Vieira Petrich', '@RedHatOfficial', '', 'Berlin', 'petrich@gmail.com', NULL, NULL, 'fractal', 0, 0, 81, 33, 0, 0, 0, '2021-07-26T13:01:46Z', '2024-03-14T13:00:02Z', 'https://avatars.githubusercontent.com/u/1080?v=4', 'https://api.github.com/users/frac', 'https://github.com/frac', 'https://api.github.com/users/frac/followers', 'https://api.github.com/users/frac/following', 'https://api.github.com/users/frac/gists', 'https://api.github.com/users/frac/starred', 'https://api.github.com/users/frac/repos', 'https://api.github.com/users/frac/events', 'https://api.github.com/users/frac/received_events', 0); +INSERT INTO `developer` VALUES (1081, 'ismasan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ismael Celis', NULL, 'https://ismaelcelis.com', 'London, England', 'ismaelct@gmail.com', NULL, 'Founder at https://www.bootic.io/, formerly at Thoughtbot.com, will code for food.', 'ismasan', 0, 0, 128, 22, 0, 0, 0, '2008-02-27T15:35:59Z', '2024-07-05T11:43:26Z', 'https://avatars.githubusercontent.com/u/1081?v=4', 'https://api.github.com/users/ismasan', 'https://github.com/ismasan', 'https://api.github.com/users/ismasan/followers', 'https://api.github.com/users/ismasan/following', 'https://api.github.com/users/ismasan/gists', 'https://api.github.com/users/ismasan/starred', 'https://api.github.com/users/ismasan/repos', 'https://api.github.com/users/ismasan/events', 'https://api.github.com/users/ismasan/received_events', 0); +INSERT INTO `developer` VALUES (1082, 'dpickett', 'C', 0.9977494806680113, 0, 0, 0, 0, 0, 0, 'Dan Pickett', 'Launch Academy, Inc', 'https://launchware.com', 'Boston, MA / Bridgewater, MA', NULL, 'true', 'Developer developer.', NULL, 0, 0, 343, 44, 0, 0, 0, '2008-02-27T15:36:31Z', '2024-06-28T02:01:52Z', 'https://avatars.githubusercontent.com/u/1082?v=4', 'https://api.github.com/users/dpickett', 'https://github.com/dpickett', 'https://api.github.com/users/dpickett/followers', 'https://api.github.com/users/dpickett/following', 'https://api.github.com/users/dpickett/gists', 'https://api.github.com/users/dpickett/starred', 'https://api.github.com/users/dpickett/repos', 'https://api.github.com/users/dpickett/events', 'https://api.github.com/users/dpickett/received_events', 0); +INSERT INTO `developer` VALUES (1083, 'maxterry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Max Terry', '@twilio', '', 'Maine', NULL, NULL, NULL, NULL, 0, 0, 59, 257, 0, 0, 0, '2008-02-27T15:53:59Z', '2024-10-25T20:10:42Z', 'https://avatars.githubusercontent.com/u/1083?v=4', 'https://api.github.com/users/maxterry', 'https://github.com/maxterry', 'https://api.github.com/users/maxterry/followers', 'https://api.github.com/users/maxterry/following', 'https://api.github.com/users/maxterry/gists', 'https://api.github.com/users/maxterry/starred', 'https://api.github.com/users/maxterry/repos', 'https://api.github.com/users/maxterry/events', 'https://api.github.com/users/maxterry/received_events', 0); +INSERT INTO `developer` VALUES (1084, 'fsvehla', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ferdinand Svehla', NULL, '', 'Vienna, Austria', NULL, NULL, NULL, NULL, 0, 0, 40, 65, 0, 0, 0, '2008-02-27T15:56:16Z', '2024-10-28T13:57:56Z', 'https://avatars.githubusercontent.com/u/1084?v=4', 'https://api.github.com/users/fsvehla', 'https://github.com/fsvehla', 'https://api.github.com/users/fsvehla/followers', 'https://api.github.com/users/fsvehla/following', 'https://api.github.com/users/fsvehla/gists', 'https://api.github.com/users/fsvehla/starred', 'https://api.github.com/users/fsvehla/repos', 'https://api.github.com/users/fsvehla/events', 'https://api.github.com/users/fsvehla/received_events', 0); +INSERT INTO `developer` VALUES (1085, 'glasner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jordan Glasner', 'HashiCorp', 'twitter.com/glasner', 'Wilmington, NC', 'glasner@gmail.com', NULL, NULL, NULL, 0, 0, 17, 10, 0, 0, 0, '2008-02-27T16:25:32Z', '2024-08-25T14:05:54Z', 'https://avatars.githubusercontent.com/u/1085?v=4', 'https://api.github.com/users/glasner', 'https://github.com/glasner', 'https://api.github.com/users/glasner/followers', 'https://api.github.com/users/glasner/following', 'https://api.github.com/users/glasner/gists', 'https://api.github.com/users/glasner/starred', 'https://api.github.com/users/glasner/repos', 'https://api.github.com/users/glasner/events', 'https://api.github.com/users/glasner/received_events', 0); +INSERT INTO `developer` VALUES (1086, 'dmadding', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T16:40:30Z', '2015-04-09T19:38:43Z', 'https://avatars.githubusercontent.com/u/1086?v=4', 'https://api.github.com/users/dmadding', 'https://github.com/dmadding', 'https://api.github.com/users/dmadding/followers', 'https://api.github.com/users/dmadding/following', 'https://api.github.com/users/dmadding/gists', 'https://api.github.com/users/dmadding/starred', 'https://api.github.com/users/dmadding/repos', 'https://api.github.com/users/dmadding/events', 'https://api.github.com/users/dmadding/received_events', 0); +INSERT INTO `developer` VALUES (1087, 'jwilkins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Wilkins', NULL, '', 'San Francisco, CA', 'jwilkins@bitland.net', NULL, NULL, NULL, 0, 0, 185, 193, 0, 0, 0, '2008-02-27T16:43:22Z', '2024-08-30T17:21:18Z', 'https://avatars.githubusercontent.com/u/1087?v=4', 'https://api.github.com/users/jwilkins', 'https://github.com/jwilkins', 'https://api.github.com/users/jwilkins/followers', 'https://api.github.com/users/jwilkins/following', 'https://api.github.com/users/jwilkins/gists', 'https://api.github.com/users/jwilkins/starred', 'https://api.github.com/users/jwilkins/repos', 'https://api.github.com/users/jwilkins/events', 'https://api.github.com/users/jwilkins/received_events', 0); +INSERT INTO `developer` VALUES (1088, 'shingara', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cyril Mougel', 'regate.io', '', 'Pau ( France )', 'cyril.mougel@gmail.com', 'true', NULL, NULL, 0, 0, 151, 78, 0, 0, 0, '2008-02-27T16:48:50Z', '2024-09-11T14:42:19Z', 'https://avatars.githubusercontent.com/u/1088?v=4', 'https://api.github.com/users/shingara', 'https://github.com/shingara', 'https://api.github.com/users/shingara/followers', 'https://api.github.com/users/shingara/following', 'https://api.github.com/users/shingara/gists', 'https://api.github.com/users/shingara/starred', 'https://api.github.com/users/shingara/repos', 'https://api.github.com/users/shingara/events', 'https://api.github.com/users/shingara/received_events', 0); +INSERT INTO `developer` VALUES (1089, 'sebastian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastian Probst Eide', NULL, 'https://www.probsteide.com', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 61, 24, 0, 0, 0, '2008-02-27T16:49:26Z', '2024-10-22T09:55:09Z', 'https://avatars.githubusercontent.com/u/1089?v=4', 'https://api.github.com/users/sebastian', 'https://github.com/sebastian', 'https://api.github.com/users/sebastian/followers', 'https://api.github.com/users/sebastian/following', 'https://api.github.com/users/sebastian/gists', 'https://api.github.com/users/sebastian/starred', 'https://api.github.com/users/sebastian/repos', 'https://api.github.com/users/sebastian/events', 'https://api.github.com/users/sebastian/received_events', 0); +INSERT INTO `developer` VALUES (1090, 'michaelklishin', 'B-', 26.823425699638793, 0, 0, 0, 0, 0, 0, 'Michael Klishin', '@rabbitmq at @vmware by @broadcom', 'novemberain.com', 'Toronto, Ontario, Canada', 'michael@clojurewerkz.org', NULL, 'Infrastructure, data services, distributed systems, Erlang, Elixir, Rust', NULL, 0, 0, 1849, 30, 0, 0, 0, '2008-02-27T16:49:40Z', '2024-10-19T15:54:23Z', 'https://avatars.githubusercontent.com/u/1090?v=4', 'https://api.github.com/users/michaelklishin', 'https://github.com/michaelklishin', 'https://api.github.com/users/michaelklishin/followers', 'https://api.github.com/users/michaelklishin/following', 'https://api.github.com/users/michaelklishin/gists', 'https://api.github.com/users/michaelklishin/starred', 'https://api.github.com/users/michaelklishin/repos', 'https://api.github.com/users/michaelklishin/events', 'https://api.github.com/users/michaelklishin/received_events', 0); +INSERT INTO `developer` VALUES (1091, 'yaanno', 'C', 0, 0, 0, 0, 0, 0, 0, 'Janos Hardi', NULL, '', 'Budapest, Hungary', 'janos.hardi@gmail.com', 'true', NULL, NULL, 0, 0, 31, 132, 0, 0, 0, '2008-02-27T16:49:50Z', '2024-07-19T21:40:09Z', 'https://avatars.githubusercontent.com/u/1091?v=4', 'https://api.github.com/users/yaanno', 'https://github.com/yaanno', 'https://api.github.com/users/yaanno/followers', 'https://api.github.com/users/yaanno/following', 'https://api.github.com/users/yaanno/gists', 'https://api.github.com/users/yaanno/starred', 'https://api.github.com/users/yaanno/repos', 'https://api.github.com/users/yaanno/events', 'https://api.github.com/users/yaanno/received_events', 0); +INSERT INTO `developer` VALUES (1092, 'slip', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Kennedy', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-02-27T16:50:03Z', '2019-06-05T03:50:45Z', 'https://avatars.githubusercontent.com/u/1092?v=4', 'https://api.github.com/users/slip', 'https://github.com/slip', 'https://api.github.com/users/slip/followers', 'https://api.github.com/users/slip/following', 'https://api.github.com/users/slip/gists', 'https://api.github.com/users/slip/starred', 'https://api.github.com/users/slip/repos', 'https://api.github.com/users/slip/events', 'https://api.github.com/users/slip/received_events', 0); +INSERT INTO `developer` VALUES (1093, 'jamie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jamie Macey', NULL, 'blog.tracefunc.com', 'Nanaimo, BC', 'jamie.github@tracefunc.com', NULL, NULL, NULL, 0, 0, 20, 3, 0, 0, 0, '2008-02-27T16:50:16Z', '2024-10-27T11:19:13Z', 'https://avatars.githubusercontent.com/u/1093?v=4', 'https://api.github.com/users/jamie', 'https://github.com/jamie', 'https://api.github.com/users/jamie/followers', 'https://api.github.com/users/jamie/following', 'https://api.github.com/users/jamie/gists', 'https://api.github.com/users/jamie/starred', 'https://api.github.com/users/jamie/repos', 'https://api.github.com/users/jamie/events', 'https://api.github.com/users/jamie/received_events', 0); +INSERT INTO `developer` VALUES (1094, 'azsromej', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steven Romej', NULL, 'http://romej.com', 'Atlanta', 'steven.romej@gmail.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-27T16:50:38Z', '2022-03-20T12:06:55Z', 'https://avatars.githubusercontent.com/u/1094?v=4', 'https://api.github.com/users/azsromej', 'https://github.com/azsromej', 'https://api.github.com/users/azsromej/followers', 'https://api.github.com/users/azsromej/following', 'https://api.github.com/users/azsromej/gists', 'https://api.github.com/users/azsromej/starred', 'https://api.github.com/users/azsromej/repos', 'https://api.github.com/users/azsromej/events', 'https://api.github.com/users/azsromej/received_events', 0); +INSERT INTO `developer` VALUES (1095, 'phsilva', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paulo Henrique Silva', NULL, 'https://astro-ph.dev', 'Florianópolis, SC, Brazil', 'ph.silva@gmail.com', 'true', 'Building...', 'phsilva', 0, 0, 52, 73, 0, 0, 0, '2008-02-27T16:51:12Z', '2024-10-25T22:32:31Z', 'https://avatars.githubusercontent.com/u/1095?v=4', 'https://api.github.com/users/phsilva', 'https://github.com/phsilva', 'https://api.github.com/users/phsilva/followers', 'https://api.github.com/users/phsilva/following', 'https://api.github.com/users/phsilva/gists', 'https://api.github.com/users/phsilva/starred', 'https://api.github.com/users/phsilva/repos', 'https://api.github.com/users/phsilva/events', 'https://api.github.com/users/phsilva/received_events', 0); +INSERT INTO `developer` VALUES (1096, 'wmoxam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wesley Moxam', 'Crowdmark', 'http://www.wmoxam.com', 'Hillier', 'me@wmoxam.com', NULL, NULL, NULL, 0, 0, 62, 44, 0, 0, 0, '2008-02-27T16:51:45Z', '2024-10-31T03:40:49Z', 'https://avatars.githubusercontent.com/u/1096?v=4', 'https://api.github.com/users/wmoxam', 'https://github.com/wmoxam', 'https://api.github.com/users/wmoxam/followers', 'https://api.github.com/users/wmoxam/following', 'https://api.github.com/users/wmoxam/gists', 'https://api.github.com/users/wmoxam/starred', 'https://api.github.com/users/wmoxam/repos', 'https://api.github.com/users/wmoxam/events', 'https://api.github.com/users/wmoxam/received_events', 0); +INSERT INTO `developer` VALUES (1097, 'quirkey', 'C', 4.067335166720979, 0, 0, 0, 0, 0, 0, 'Aaron Quint', 'Heroku ', 'http://www.quirkey.com/blog', 'Kingston, NY', NULL, NULL, NULL, NULL, 0, 0, 522, 40, 0, 0, 0, '2008-02-27T16:53:49Z', '2024-11-05T03:55:35Z', 'https://avatars.githubusercontent.com/u/1097?v=4', 'https://api.github.com/users/quirkey', 'https://github.com/quirkey', 'https://api.github.com/users/quirkey/followers', 'https://api.github.com/users/quirkey/following', 'https://api.github.com/users/quirkey/gists', 'https://api.github.com/users/quirkey/starred', 'https://api.github.com/users/quirkey/repos', 'https://api.github.com/users/quirkey/events', 'https://api.github.com/users/quirkey/received_events', 0); +INSERT INTO `developer` VALUES (1098, 'enhiro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Enrique', NULL, '', 'Sevilla, España', 'enhiro@gmail.com', NULL, NULL, NULL, 0, 0, 17, 2, 0, 0, 0, '2008-02-27T16:56:57Z', '2023-01-19T08:27:36Z', 'https://avatars.githubusercontent.com/u/1098?v=4', 'https://api.github.com/users/enhiro', 'https://github.com/enhiro', 'https://api.github.com/users/enhiro/followers', 'https://api.github.com/users/enhiro/following', 'https://api.github.com/users/enhiro/gists', 'https://api.github.com/users/enhiro/starred', 'https://api.github.com/users/enhiro/repos', 'https://api.github.com/users/enhiro/events', 'https://api.github.com/users/enhiro/received_events', 0); +INSERT INTO `developer` VALUES (1099, 'shillcock', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Shillcock', '@QuantumScape', 'http://shillcock.net', 'Salinas, CA', 'sshillcock@quantumscape.com', NULL, NULL, 'shillcock', 0, 0, 38, 40, 0, 0, 0, '2008-02-27T17:00:09Z', '2024-09-16T16:34:49Z', 'https://avatars.githubusercontent.com/u/1099?v=4', 'https://api.github.com/users/shillcock', 'https://github.com/shillcock', 'https://api.github.com/users/shillcock/followers', 'https://api.github.com/users/shillcock/following', 'https://api.github.com/users/shillcock/gists', 'https://api.github.com/users/shillcock/starred', 'https://api.github.com/users/shillcock/repos', 'https://api.github.com/users/shillcock/events', 'https://api.github.com/users/shillcock/received_events', 0); +INSERT INTO `developer` VALUES (1100, 'niallkennedy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Niall Kennedy', '@google', 'https://www.niallkennedy.com/blog/', 'San Francisco, CA, United States', 'niall@niallkennedy.com', NULL, 'Software developer in San Francisco.', 'niall', 0, 0, 125, 0, 0, 0, 0, '2008-02-27T17:02:23Z', '2024-10-31T21:00:49Z', 'https://avatars.githubusercontent.com/u/1100?v=4', 'https://api.github.com/users/niallkennedy', 'https://github.com/niallkennedy', 'https://api.github.com/users/niallkennedy/followers', 'https://api.github.com/users/niallkennedy/following', 'https://api.github.com/users/niallkennedy/gists', 'https://api.github.com/users/niallkennedy/starred', 'https://api.github.com/users/niallkennedy/repos', 'https://api.github.com/users/niallkennedy/events', 'https://api.github.com/users/niallkennedy/received_events', 0); +INSERT INTO `developer` VALUES (1101, 'sandropaganotti-zz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sandro Paganotti', NULL, 'http://www.sandropaganotti.com', '未知', 'sandro.paganotti@gmail.com', NULL, NULL, NULL, 0, 0, 103, 17, 0, 0, 0, '2008-02-27T17:02:36Z', '2019-06-05T03:50:52Z', 'https://avatars.githubusercontent.com/u/1101?v=4', 'https://api.github.com/users/sandropaganotti-zz', 'https://github.com/sandropaganotti-zz', 'https://api.github.com/users/sandropaganotti-zz/followers', 'https://api.github.com/users/sandropaganotti-zz/following', 'https://api.github.com/users/sandropaganotti-zz/gists', 'https://api.github.com/users/sandropaganotti-zz/starred', 'https://api.github.com/users/sandropaganotti-zz/repos', 'https://api.github.com/users/sandropaganotti-zz/events', 'https://api.github.com/users/sandropaganotti-zz/received_events', 0); +INSERT INTO `developer` VALUES (1102, 'sudothinker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Murray', 'Beehive Engineering, LLC', 'https://beehiveengineering.com', 'San Francisco, CA', 'sudothinker@gmail.com', 'true', 'Founder, Beehive Engineering - Software Engineering Boutique ', NULL, 0, 0, 27, 1, 0, 0, 0, '2008-02-27T17:06:04Z', '2024-09-09T17:40:40Z', 'https://avatars.githubusercontent.com/u/1102?v=4', 'https://api.github.com/users/sudothinker', 'https://github.com/sudothinker', 'https://api.github.com/users/sudothinker/followers', 'https://api.github.com/users/sudothinker/following', 'https://api.github.com/users/sudothinker/gists', 'https://api.github.com/users/sudothinker/starred', 'https://api.github.com/users/sudothinker/repos', 'https://api.github.com/users/sudothinker/events', 'https://api.github.com/users/sudothinker/received_events', 0); +INSERT INTO `developer` VALUES (1103, 'infovore', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Armitage', NULL, 'http://infovore.org', 'London', NULL, NULL, 'technologist, designer, musician', NULL, 0, 0, 182, 41, 0, 0, 0, '2008-02-27T17:08:20Z', '2024-09-11T14:43:45Z', 'https://avatars.githubusercontent.com/u/1103?v=4', 'https://api.github.com/users/infovore', 'https://github.com/infovore', 'https://api.github.com/users/infovore/followers', 'https://api.github.com/users/infovore/following', 'https://api.github.com/users/infovore/gists', 'https://api.github.com/users/infovore/starred', 'https://api.github.com/users/infovore/repos', 'https://api.github.com/users/infovore/events', 'https://api.github.com/users/infovore/received_events', 0); +INSERT INTO `developer` VALUES (1104, 'mateusdelbianco', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mateus Del Bianco', '@Yipit Data', '', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 41, 78, 0, 0, 0, '2008-02-27T17:08:27Z', '2019-06-05T03:50:57Z', 'https://avatars.githubusercontent.com/u/1104?v=4', 'https://api.github.com/users/mateusdelbianco', 'https://github.com/mateusdelbianco', 'https://api.github.com/users/mateusdelbianco/followers', 'https://api.github.com/users/mateusdelbianco/following', 'https://api.github.com/users/mateusdelbianco/gists', 'https://api.github.com/users/mateusdelbianco/starred', 'https://api.github.com/users/mateusdelbianco/repos', 'https://api.github.com/users/mateusdelbianco/events', 'https://api.github.com/users/mateusdelbianco/received_events', 0); +INSERT INTO `developer` VALUES (1105, 'cameroncox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cameron Cox', NULL, 'http://cameroncox.com', 'Louisville, KY', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-27T17:21:04Z', '2024-11-02T20:39:35Z', 'https://avatars.githubusercontent.com/u/1105?v=4', 'https://api.github.com/users/cameroncox', 'https://github.com/cameroncox', 'https://api.github.com/users/cameroncox/followers', 'https://api.github.com/users/cameroncox/following', 'https://api.github.com/users/cameroncox/gists', 'https://api.github.com/users/cameroncox/starred', 'https://api.github.com/users/cameroncox/repos', 'https://api.github.com/users/cameroncox/events', 'https://api.github.com/users/cameroncox/received_events', 0); +INSERT INTO `developer` VALUES (1106, 'robhudson', 'C', 2.1467005475146532, 0, 0, 0, 0, 0, 0, 'Rob Hudson', '@mozilla ', 'rob.cogit8.org', 'Eugene, Oregon', 'robhudson@mozilla.com', NULL, NULL, NULL, 0, 0, 410, 85, 0, 0, 0, '2008-02-27T17:33:23Z', '2024-10-22T11:18:21Z', 'https://avatars.githubusercontent.com/u/1106?v=4', 'https://api.github.com/users/robhudson', 'https://github.com/robhudson', 'https://api.github.com/users/robhudson/followers', 'https://api.github.com/users/robhudson/following', 'https://api.github.com/users/robhudson/gists', 'https://api.github.com/users/robhudson/starred', 'https://api.github.com/users/robhudson/repos', 'https://api.github.com/users/robhudson/events', 'https://api.github.com/users/robhudson/received_events', 0); +INSERT INTO `developer` VALUES (1107, 'tolbrino', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tino Breddin', '@hoprnet', 'https://hoprnet.org', 'Earth', NULL, NULL, 'Working on systems. Taking breaks. CTO @ HOPR', NULL, 0, 0, 55, 5, 0, 0, 0, '2008-02-27T17:38:23Z', '2024-10-28T08:55:16Z', 'https://avatars.githubusercontent.com/u/1107?v=4', 'https://api.github.com/users/tolbrino', 'https://github.com/tolbrino', 'https://api.github.com/users/tolbrino/followers', 'https://api.github.com/users/tolbrino/following', 'https://api.github.com/users/tolbrino/gists', 'https://api.github.com/users/tolbrino/starred', 'https://api.github.com/users/tolbrino/repos', 'https://api.github.com/users/tolbrino/events', 'https://api.github.com/users/tolbrino/received_events', 0); +INSERT INTO `developer` VALUES (1108, 'juggy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julien Guimont', '@EnzymeCorp ', 'http://jguimont.com', 'Montreal', 'julien.guimont@gmail.com', 'true', NULL, NULL, 0, 0, 34, 10, 0, 0, 0, '2008-02-27T17:43:15Z', '2024-10-30T20:18:35Z', 'https://avatars.githubusercontent.com/u/1108?v=4', 'https://api.github.com/users/juggy', 'https://github.com/juggy', 'https://api.github.com/users/juggy/followers', 'https://api.github.com/users/juggy/following', 'https://api.github.com/users/juggy/gists', 'https://api.github.com/users/juggy/starred', 'https://api.github.com/users/juggy/repos', 'https://api.github.com/users/juggy/events', 'https://api.github.com/users/juggy/received_events', 0); +INSERT INTO `developer` VALUES (1109, 'eliot-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T17:45:16Z', '2016-02-26T22:34:37Z', 'https://avatars.githubusercontent.com/u/1109?v=4', 'https://api.github.com/users/eliot-xx', 'https://github.com/eliot-xx', 'https://api.github.com/users/eliot-xx/followers', 'https://api.github.com/users/eliot-xx/following', 'https://api.github.com/users/eliot-xx/gists', 'https://api.github.com/users/eliot-xx/starred', 'https://api.github.com/users/eliot-xx/repos', 'https://api.github.com/users/eliot-xx/events', 'https://api.github.com/users/eliot-xx/received_events', 0); +INSERT INTO `developer` VALUES (1110, 'djwhitt', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Whittington', NULL, 'https://mastodon.social/@djwhitt', 'Madison, WI', 'djwhitt@gmail.com', NULL, NULL, 'djwhitt', 0, 0, 64, 10, 0, 0, 0, '2008-02-27T17:46:55Z', '2024-10-26T20:33:35Z', 'https://avatars.githubusercontent.com/u/1110?v=4', 'https://api.github.com/users/djwhitt', 'https://github.com/djwhitt', 'https://api.github.com/users/djwhitt/followers', 'https://api.github.com/users/djwhitt/following', 'https://api.github.com/users/djwhitt/gists', 'https://api.github.com/users/djwhitt/starred', 'https://api.github.com/users/djwhitt/repos', 'https://api.github.com/users/djwhitt/events', 'https://api.github.com/users/djwhitt/received_events', 0); +INSERT INTO `developer` VALUES (1111, 'patmaddox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pat Maddox', NULL, 'https://www.rubysteps.com', 'Vancouver, WA', 'pat@patmaddox.com', NULL, NULL, NULL, 0, 0, 261, 14, 0, 0, 0, '2008-02-27T17:47:54Z', '2024-10-18T02:38:17Z', 'https://avatars.githubusercontent.com/u/1111?v=4', 'https://api.github.com/users/patmaddox', 'https://github.com/patmaddox', 'https://api.github.com/users/patmaddox/followers', 'https://api.github.com/users/patmaddox/following', 'https://api.github.com/users/patmaddox/gists', 'https://api.github.com/users/patmaddox/starred', 'https://api.github.com/users/patmaddox/repos', 'https://api.github.com/users/patmaddox/events', 'https://api.github.com/users/patmaddox/received_events', 0); +INSERT INTO `developer` VALUES (1112, 'willnorris', 'C+', 14.647974095741546, 0, 0, 0, 0, 0, 0, 'Will Norris', '@tailscale', 'https://willnorris.com', 'Temecula, CA', 'will@willnorris.com', NULL, 'Engineering at @tailscale. Previously, open source at @google and @twitter. Most of my active personal projects are @indieweb related, using @golang.', NULL, 0, 0, 1139, 82, 0, 0, 0, '2008-02-27T17:51:34Z', '2024-10-31T02:06:42Z', 'https://avatars.githubusercontent.com/u/1112?v=4', 'https://api.github.com/users/willnorris', 'https://github.com/willnorris', 'https://api.github.com/users/willnorris/followers', 'https://api.github.com/users/willnorris/following', 'https://api.github.com/users/willnorris/gists', 'https://api.github.com/users/willnorris/starred', 'https://api.github.com/users/willnorris/repos', 'https://api.github.com/users/willnorris/events', 'https://api.github.com/users/willnorris/received_events', 0); +INSERT INTO `developer` VALUES (1113, 'travis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Travis Vachon', '@mysilio-co @storacha ', 'trav.page', 'Oakland', 'travis@storacha.network', NULL, 'building tools for a better future on the web at @mysilio-co and the hottest storage around @storacha ', NULL, 0, 0, 108, 30, 0, 0, 0, '2008-02-27T17:53:18Z', '2024-10-21T10:11:37Z', 'https://avatars.githubusercontent.com/u/1113?v=4', 'https://api.github.com/users/travis', 'https://github.com/travis', 'https://api.github.com/users/travis/followers', 'https://api.github.com/users/travis/following', 'https://api.github.com/users/travis/gists', 'https://api.github.com/users/travis/starred', 'https://api.github.com/users/travis/repos', 'https://api.github.com/users/travis/events', 'https://api.github.com/users/travis/received_events', 0); +INSERT INTO `developer` VALUES (1114, 'rickmzp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rick Martínez', 'LineLeap', '', 'New York, NY', NULL, NULL, NULL, 'rickmzp', 0, 0, 69, 69, 0, 0, 0, '2008-02-27T17:53:19Z', '2024-08-28T19:26:04Z', 'https://avatars.githubusercontent.com/u/1114?v=4', 'https://api.github.com/users/rickmzp', 'https://github.com/rickmzp', 'https://api.github.com/users/rickmzp/followers', 'https://api.github.com/users/rickmzp/following', 'https://api.github.com/users/rickmzp/gists', 'https://api.github.com/users/rickmzp/starred', 'https://api.github.com/users/rickmzp/repos', 'https://api.github.com/users/rickmzp/events', 'https://api.github.com/users/rickmzp/received_events', 0); +INSERT INTO `developer` VALUES (1115, 'fzero', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fabio Neves', '@wrapbook ', 'https://fabioneves.ca', 'Toronto, ON', NULL, NULL, 'Building web thingies since 1997', NULL, 0, 0, 87, 17, 0, 0, 0, '2008-02-27T17:54:27Z', '2024-09-24T14:00:39Z', 'https://avatars.githubusercontent.com/u/1115?v=4', 'https://api.github.com/users/fzero', 'https://github.com/fzero', 'https://api.github.com/users/fzero/followers', 'https://api.github.com/users/fzero/following', 'https://api.github.com/users/fzero/gists', 'https://api.github.com/users/fzero/starred', 'https://api.github.com/users/fzero/repos', 'https://api.github.com/users/fzero/events', 'https://api.github.com/users/fzero/received_events', 0); +INSERT INTO `developer` VALUES (1116, 'mm53bar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike McClenaghan', NULL, 'http://www.sideline.ca', 'St. Albert, AB', 'mike@sideline.ca', 'true', NULL, NULL, 0, 0, 25, 13, 0, 0, 0, '2008-02-27T17:55:34Z', '2024-09-16T13:49:13Z', 'https://avatars.githubusercontent.com/u/1116?v=4', 'https://api.github.com/users/mm53bar', 'https://github.com/mm53bar', 'https://api.github.com/users/mm53bar/followers', 'https://api.github.com/users/mm53bar/following', 'https://api.github.com/users/mm53bar/gists', 'https://api.github.com/users/mm53bar/starred', 'https://api.github.com/users/mm53bar/repos', 'https://api.github.com/users/mm53bar/events', 'https://api.github.com/users/mm53bar/received_events', 0); +INSERT INTO `developer` VALUES (1117, 'adamc', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T17:59:44Z', '2019-12-12T06:07:28Z', 'https://avatars.githubusercontent.com/u/1117?v=4', 'https://api.github.com/users/adamc', 'https://github.com/adamc', 'https://api.github.com/users/adamc/followers', 'https://api.github.com/users/adamc/following', 'https://api.github.com/users/adamc/gists', 'https://api.github.com/users/adamc/starred', 'https://api.github.com/users/adamc/repos', 'https://api.github.com/users/adamc/events', 'https://api.github.com/users/adamc/received_events', 0); +INSERT INTO `developer` VALUES (1118, 'treybean', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trey Bean', '@instructure ', 'https://twitter.com/treybean', 'Salt Lake City, UT, USA', NULL, NULL, 'Product-minded engineer and engineering-minded product leader. Trying to use my techie powers for good. Currently focussing on applying AI to the social sector.', NULL, 0, 0, 22, 7, 0, 0, 0, '2008-02-27T18:00:15Z', '2024-10-07T17:22:00Z', 'https://avatars.githubusercontent.com/u/1118?v=4', 'https://api.github.com/users/treybean', 'https://github.com/treybean', 'https://api.github.com/users/treybean/followers', 'https://api.github.com/users/treybean/following', 'https://api.github.com/users/treybean/gists', 'https://api.github.com/users/treybean/starred', 'https://api.github.com/users/treybean/repos', 'https://api.github.com/users/treybean/events', 'https://api.github.com/users/treybean/received_events', 0); +INSERT INTO `developer` VALUES (1119, 'railsdog', 'C', 0, 0, 0, 0, 0, 0, 0, 'Railsdog', NULL, 'http://railsdog.com', 'New York, NY', NULL, NULL, 'Leading Spree Commerce Integration Partner', NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-27T18:00:19Z', '2023-11-03T18:59:34Z', 'https://avatars.githubusercontent.com/u/1119?v=4', 'https://api.github.com/users/railsdog', 'https://github.com/railsdog', 'https://api.github.com/users/railsdog/followers', 'https://api.github.com/users/railsdog/following', 'https://api.github.com/users/railsdog/gists', 'https://api.github.com/users/railsdog/starred', 'https://api.github.com/users/railsdog/repos', 'https://api.github.com/users/railsdog/events', 'https://api.github.com/users/railsdog/received_events', 0); +INSERT INTO `developer` VALUES (1120, 'mtarbit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Tarbit', NULL, 'matt.tarbit.org', 'Leeds, West Yorkshire, UK', 'matt@tarbit.org', 'true', NULL, NULL, 0, 0, 67, 78, 0, 0, 0, '2008-02-27T18:00:37Z', '2024-10-30T10:21:35Z', 'https://avatars.githubusercontent.com/u/1120?v=4', 'https://api.github.com/users/mtarbit', 'https://github.com/mtarbit', 'https://api.github.com/users/mtarbit/followers', 'https://api.github.com/users/mtarbit/following', 'https://api.github.com/users/mtarbit/gists', 'https://api.github.com/users/mtarbit/starred', 'https://api.github.com/users/mtarbit/repos', 'https://api.github.com/users/mtarbit/events', 'https://api.github.com/users/mtarbit/received_events', 0); +INSERT INTO `developer` VALUES (1121, 'perpet', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-02-27T18:01:20Z', '2024-04-07T13:44:35Z', 'https://avatars.githubusercontent.com/u/1121?v=4', 'https://api.github.com/users/perpet', 'https://github.com/perpet', 'https://api.github.com/users/perpet/followers', 'https://api.github.com/users/perpet/following', 'https://api.github.com/users/perpet/gists', 'https://api.github.com/users/perpet/starred', 'https://api.github.com/users/perpet/repos', 'https://api.github.com/users/perpet/events', 'https://api.github.com/users/perpet/received_events', 0); +INSERT INTO `developer` VALUES (1122, 'eggie5', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Egg', 'Adyen', 'www.eggie5.com', 'Amsterdam', 'eggie5@hey.com', 'true', 'Data Scientist Search & Personalization\r\nML/DL/GPU/Python/Java', 'eggie5', 0, 0, 60, 21, 0, 0, 0, '2008-02-27T18:04:33Z', '2024-10-22T12:05:09Z', 'https://avatars.githubusercontent.com/u/1122?v=4', 'https://api.github.com/users/eggie5', 'https://github.com/eggie5', 'https://api.github.com/users/eggie5/followers', 'https://api.github.com/users/eggie5/following', 'https://api.github.com/users/eggie5/gists', 'https://api.github.com/users/eggie5/starred', 'https://api.github.com/users/eggie5/repos', 'https://api.github.com/users/eggie5/events', 'https://api.github.com/users/eggie5/received_events', 0); +INSERT INTO `developer` VALUES (1123, 'omghax', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dray Lacy', 'Envy Labs', '', 'Orlando, FL', NULL, NULL, NULL, NULL, 0, 0, 38, 5, 0, 0, 0, '2008-02-27T18:04:50Z', '2024-10-11T00:19:54Z', 'https://avatars.githubusercontent.com/u/1123?v=4', 'https://api.github.com/users/omghax', 'https://github.com/omghax', 'https://api.github.com/users/omghax/followers', 'https://api.github.com/users/omghax/following', 'https://api.github.com/users/omghax/gists', 'https://api.github.com/users/omghax/starred', 'https://api.github.com/users/omghax/repos', 'https://api.github.com/users/omghax/events', 'https://api.github.com/users/omghax/received_events', 0); +INSERT INTO `developer` VALUES (1124, 'pmarsh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Marsh', NULL, 'http://paulmarsh.net', 'NYC', 'paulm.arsh@gmail.com', NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-27T18:05:27Z', '2024-05-17T13:07:06Z', 'https://avatars.githubusercontent.com/u/1124?v=4', 'https://api.github.com/users/pmarsh', 'https://github.com/pmarsh', 'https://api.github.com/users/pmarsh/followers', 'https://api.github.com/users/pmarsh/following', 'https://api.github.com/users/pmarsh/gists', 'https://api.github.com/users/pmarsh/starred', 'https://api.github.com/users/pmarsh/repos', 'https://api.github.com/users/pmarsh/events', 'https://api.github.com/users/pmarsh/received_events', 0); +INSERT INTO `developer` VALUES (1125, 'drcode', 'C', 0, 0, 0, 0, 0, 0, 0, 'Conrad Barski', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 245, 0, 0, 0, 0, '2008-02-27T18:08:06Z', '2024-09-23T02:46:27Z', 'https://avatars.githubusercontent.com/u/1125?v=4', 'https://api.github.com/users/drcode', 'https://github.com/drcode', 'https://api.github.com/users/drcode/followers', 'https://api.github.com/users/drcode/following', 'https://api.github.com/users/drcode/gists', 'https://api.github.com/users/drcode/starred', 'https://api.github.com/users/drcode/repos', 'https://api.github.com/users/drcode/events', 'https://api.github.com/users/drcode/received_events', 0); +INSERT INTO `developer` VALUES (1126, 'frim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pieter de Bie', NULL, 'http://frim.nl', '未知', 'frimmirf@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T18:08:07Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1126?v=4', 'https://api.github.com/users/frim', 'https://github.com/frim', 'https://api.github.com/users/frim/followers', 'https://api.github.com/users/frim/following', 'https://api.github.com/users/frim/gists', 'https://api.github.com/users/frim/starred', 'https://api.github.com/users/frim/repos', 'https://api.github.com/users/frim/events', 'https://api.github.com/users/frim/received_events', 0); +INSERT INTO `developer` VALUES (1127, 'vg-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T18:08:20Z', '2016-02-26T22:34:37Z', 'https://avatars.githubusercontent.com/u/1127?v=4', 'https://api.github.com/users/vg-xx', 'https://github.com/vg-xx', 'https://api.github.com/users/vg-xx/followers', 'https://api.github.com/users/vg-xx/following', 'https://api.github.com/users/vg-xx/gists', 'https://api.github.com/users/vg-xx/starred', 'https://api.github.com/users/vg-xx/repos', 'https://api.github.com/users/vg-xx/events', 'https://api.github.com/users/vg-xx/received_events', 0); +INSERT INTO `developer` VALUES (1128, 'coty', 'C', 0, 0, 0, 0, 0, 0, 0, 'Coty Rosenblath', 'Katalon', '', 'Atlanta, GA', 'coty@pobox.com', NULL, 'CTO at Katalon', 'coty', 0, 0, 93, 361, 0, 0, 0, '2008-02-27T18:10:36Z', '2024-11-01T18:39:53Z', 'https://avatars.githubusercontent.com/u/1128?v=4', 'https://api.github.com/users/coty', 'https://github.com/coty', 'https://api.github.com/users/coty/followers', 'https://api.github.com/users/coty/following', 'https://api.github.com/users/coty/gists', 'https://api.github.com/users/coty/starred', 'https://api.github.com/users/coty/repos', 'https://api.github.com/users/coty/events', 'https://api.github.com/users/coty/received_events', 0); +INSERT INTO `developer` VALUES (1129, 'nickmerwin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Merwin', NULL, 'https://mer.io', 'Venice, CA', 'n@mer.io', NULL, NULL, NULL, 0, 0, 96, 4, 0, 0, 0, '2008-02-27T18:11:03Z', '2024-11-01T23:25:00Z', 'https://avatars.githubusercontent.com/u/1129?v=4', 'https://api.github.com/users/nickmerwin', 'https://github.com/nickmerwin', 'https://api.github.com/users/nickmerwin/followers', 'https://api.github.com/users/nickmerwin/following', 'https://api.github.com/users/nickmerwin/gists', 'https://api.github.com/users/nickmerwin/starred', 'https://api.github.com/users/nickmerwin/repos', 'https://api.github.com/users/nickmerwin/events', 'https://api.github.com/users/nickmerwin/received_events', 0); +INSERT INTO `developer` VALUES (1130, 'rosshq', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T18:13:07Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1130?v=4', 'https://api.github.com/users/rosshq', 'https://github.com/rosshq', 'https://api.github.com/users/rosshq/followers', 'https://api.github.com/users/rosshq/following', 'https://api.github.com/users/rosshq/gists', 'https://api.github.com/users/rosshq/starred', 'https://api.github.com/users/rosshq/repos', 'https://api.github.com/users/rosshq/events', 'https://api.github.com/users/rosshq/received_events', 0); +INSERT INTO `developer` VALUES (1131, 'larrytheliquid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Larry Diehl', '@colimit-io', 'https://colimit.io', 'New York, NY, USA', 'larrytheliquid@gmail.com', NULL, 'Formal Verification', 'larrytheliquid', 0, 0, 0, 0, 0, 0, 0, '2008-02-27T18:14:34Z', '2024-09-18T21:05:21Z', 'https://avatars.githubusercontent.com/u/1131?v=4', 'https://api.github.com/users/larrytheliquid', 'https://github.com/larrytheliquid', 'https://api.github.com/users/larrytheliquid/followers', 'https://api.github.com/users/larrytheliquid/following', 'https://api.github.com/users/larrytheliquid/gists', 'https://api.github.com/users/larrytheliquid/starred', 'https://api.github.com/users/larrytheliquid/repos', 'https://api.github.com/users/larrytheliquid/events', 'https://api.github.com/users/larrytheliquid/received_events', 0); +INSERT INTO `developer` VALUES (1132, 'Conap', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-27T18:14:54Z', '2019-12-14T06:23:50Z', 'https://avatars.githubusercontent.com/u/1132?v=4', 'https://api.github.com/users/Conap', 'https://github.com/Conap', 'https://api.github.com/users/Conap/followers', 'https://api.github.com/users/Conap/following', 'https://api.github.com/users/Conap/gists', 'https://api.github.com/users/Conap/starred', 'https://api.github.com/users/Conap/repos', 'https://api.github.com/users/Conap/events', 'https://api.github.com/users/Conap/received_events', 0); +INSERT INTO `developer` VALUES (1133, 'alce', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Alvarez', NULL, '', 'CDMX', NULL, NULL, NULL, NULL, 0, 0, 39, 0, 0, 0, 0, '2008-02-27T18:15:23Z', '2024-11-03T03:18:41Z', 'https://avatars.githubusercontent.com/u/1133?v=4', 'https://api.github.com/users/alce', 'https://github.com/alce', 'https://api.github.com/users/alce/followers', 'https://api.github.com/users/alce/following', 'https://api.github.com/users/alce/gists', 'https://api.github.com/users/alce/starred', 'https://api.github.com/users/alce/repos', 'https://api.github.com/users/alce/events', 'https://api.github.com/users/alce/received_events', 0); +INSERT INTO `developer` VALUES (1134, 'bdarcus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bruce D\'Arcus', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 74, 1, 0, 0, 0, '2008-02-27T18:18:10Z', '2024-10-21T11:19:08Z', 'https://avatars.githubusercontent.com/u/1134?v=4', 'https://api.github.com/users/bdarcus', 'https://github.com/bdarcus', 'https://api.github.com/users/bdarcus/followers', 'https://api.github.com/users/bdarcus/following', 'https://api.github.com/users/bdarcus/gists', 'https://api.github.com/users/bdarcus/starred', 'https://api.github.com/users/bdarcus/repos', 'https://api.github.com/users/bdarcus/events', 'https://api.github.com/users/bdarcus/received_events', 0); +INSERT INTO `developer` VALUES (1135, 'trym', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trym Skaar', 'Skalar AS', '', 'Oslo, Norway', NULL, NULL, NULL, NULL, 0, 0, 16, 1, 0, 0, 0, '2008-02-27T18:21:53Z', '2024-09-29T00:58:56Z', 'https://avatars.githubusercontent.com/u/1135?v=4', 'https://api.github.com/users/trym', 'https://github.com/trym', 'https://api.github.com/users/trym/followers', 'https://api.github.com/users/trym/following', 'https://api.github.com/users/trym/gists', 'https://api.github.com/users/trym/starred', 'https://api.github.com/users/trym/repos', 'https://api.github.com/users/trym/events', 'https://api.github.com/users/trym/received_events', 0); +INSERT INTO `developer` VALUES (1137, 'ovelar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lars O. Overskeid', 'Rørkjøp AS', '', 'Oslo, Norway', 'lars.overskeid@rorkjop.no', NULL, NULL, NULL, 0, 0, 18, 19, 0, 0, 0, '2008-02-27T18:22:51Z', '2024-09-10T13:19:12Z', 'https://avatars.githubusercontent.com/u/1137?v=4', 'https://api.github.com/users/ovelar', 'https://github.com/ovelar', 'https://api.github.com/users/ovelar/followers', 'https://api.github.com/users/ovelar/following', 'https://api.github.com/users/ovelar/gists', 'https://api.github.com/users/ovelar/starred', 'https://api.github.com/users/ovelar/repos', 'https://api.github.com/users/ovelar/events', 'https://api.github.com/users/ovelar/received_events', 0); +INSERT INTO `developer` VALUES (1138, 'indmill', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steven Mohapi-Banks', 'Macmillan Publishers/Indmill Ltd', 'spanx.wordpress.com', 'London', 'steven.mohapibanks@mac.com', NULL, NULL, NULL, 0, 0, 7, 3, 0, 0, 0, '2008-02-27T18:31:23Z', '2020-01-25T23:31:29Z', 'https://avatars.githubusercontent.com/u/1138?v=4', 'https://api.github.com/users/indmill', 'https://github.com/indmill', 'https://api.github.com/users/indmill/followers', 'https://api.github.com/users/indmill/following', 'https://api.github.com/users/indmill/gists', 'https://api.github.com/users/indmill/starred', 'https://api.github.com/users/indmill/repos', 'https://api.github.com/users/indmill/events', 'https://api.github.com/users/indmill/received_events', 0); +INSERT INTO `developer` VALUES (1140, 'sotirac', 'C', 0, 0, 0, 0, 0, 0, 0, 'caritos', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-27T18:33:51Z', '2018-02-11T00:50:37Z', 'https://avatars.githubusercontent.com/u/1140?v=4', 'https://api.github.com/users/sotirac', 'https://github.com/sotirac', 'https://api.github.com/users/sotirac/followers', 'https://api.github.com/users/sotirac/following', 'https://api.github.com/users/sotirac/gists', 'https://api.github.com/users/sotirac/starred', 'https://api.github.com/users/sotirac/repos', 'https://api.github.com/users/sotirac/events', 'https://api.github.com/users/sotirac/received_events', 0); +INSERT INTO `developer` VALUES (1141, 'tel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joseph Abrahamson', NULL, 'http://jspha.com', 'Boston, MA, USA', 'me@jspha.com', 'true', NULL, NULL, 0, 0, 216, 141, 0, 0, 0, '2008-02-27T18:33:51Z', '2024-10-29T17:35:04Z', 'https://avatars.githubusercontent.com/u/1141?v=4', 'https://api.github.com/users/tel', 'https://github.com/tel', 'https://api.github.com/users/tel/followers', 'https://api.github.com/users/tel/following', 'https://api.github.com/users/tel/gists', 'https://api.github.com/users/tel/starred', 'https://api.github.com/users/tel/repos', 'https://api.github.com/users/tel/events', 'https://api.github.com/users/tel/received_events', 0); +INSERT INTO `developer` VALUES (1142, 'michaelbarton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Barton', '@KariusDx ', 'www.michaelbarton.me.uk', '未知', 'mail@michaelbarton.me.uk', NULL, 'Bioinformatics software engineer.', 'bioinformatics', 0, 0, 137, 7, 0, 0, 0, '2008-02-27T18:34:16Z', '2024-09-03T19:53:48Z', 'https://avatars.githubusercontent.com/u/1142?v=4', 'https://api.github.com/users/michaelbarton', 'https://github.com/michaelbarton', 'https://api.github.com/users/michaelbarton/followers', 'https://api.github.com/users/michaelbarton/following', 'https://api.github.com/users/michaelbarton/gists', 'https://api.github.com/users/michaelbarton/starred', 'https://api.github.com/users/michaelbarton/repos', 'https://api.github.com/users/michaelbarton/events', 'https://api.github.com/users/michaelbarton/received_events', 0); +INSERT INTO `developer` VALUES (1143, 'bennettandrews', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bennett Andrews', '@reverbdotcom ', 'https://twitter.com/bennettandrews', 'Chicago, IL', 'bennett@hey.com', NULL, NULL, NULL, 0, 0, 69, 128, 0, 0, 0, '2008-02-27T18:41:45Z', '2024-10-15T22:28:55Z', 'https://avatars.githubusercontent.com/u/1143?v=4', 'https://api.github.com/users/bennettandrews', 'https://github.com/bennettandrews', 'https://api.github.com/users/bennettandrews/followers', 'https://api.github.com/users/bennettandrews/following', 'https://api.github.com/users/bennettandrews/gists', 'https://api.github.com/users/bennettandrews/starred', 'https://api.github.com/users/bennettandrews/repos', 'https://api.github.com/users/bennettandrews/events', 'https://api.github.com/users/bennettandrews/received_events', 0); +INSERT INTO `developer` VALUES (1144, 'cglee', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 48, 3, 0, 0, 0, '2008-02-27T18:43:13Z', '2024-07-06T03:56:42Z', 'https://avatars.githubusercontent.com/u/1144?v=4', 'https://api.github.com/users/cglee', 'https://github.com/cglee', 'https://api.github.com/users/cglee/followers', 'https://api.github.com/users/cglee/following', 'https://api.github.com/users/cglee/gists', 'https://api.github.com/users/cglee/starred', 'https://api.github.com/users/cglee/repos', 'https://api.github.com/users/cglee/events', 'https://api.github.com/users/cglee/received_events', 0); +INSERT INTO `developer` VALUES (1145, 'mza', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Wood', NULL, 'greenisgood.co.uk', 'Cambridge, UK', 'matt.j.wood@gmail.com', NULL, NULL, NULL, 0, 0, 77, 28, 0, 0, 0, '2008-02-27T18:52:52Z', '2024-10-30T19:50:37Z', 'https://avatars.githubusercontent.com/u/1145?v=4', 'https://api.github.com/users/mza', 'https://github.com/mza', 'https://api.github.com/users/mza/followers', 'https://api.github.com/users/mza/following', 'https://api.github.com/users/mza/gists', 'https://api.github.com/users/mza/starred', 'https://api.github.com/users/mza/repos', 'https://api.github.com/users/mza/events', 'https://api.github.com/users/mza/received_events', 0); +INSERT INTO `developer` VALUES (1146, 'netguru', 'C', 0, 0, 0, 0, 0, 0, 0, 'Netguru', NULL, 'https://www.netguru.com', 'Poznań, Poland', 'hi@netguru.com', NULL, 'Building software for world changers', NULL, 0, 0, 95, 0, 0, 0, 0, '2008-02-27T18:52:55Z', '2024-08-13T07:01:46Z', 'https://avatars.githubusercontent.com/u/1146?v=4', 'https://api.github.com/users/netguru', 'https://github.com/netguru', 'https://api.github.com/users/netguru/followers', 'https://api.github.com/users/netguru/following', 'https://api.github.com/users/netguru/gists', 'https://api.github.com/users/netguru/starred', 'https://api.github.com/users/netguru/repos', 'https://api.github.com/users/netguru/events', 'https://api.github.com/users/netguru/received_events', 0); +INSERT INTO `developer` VALUES (1148, 'markmcspadden', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark McSpadden', 'AMEX GBT', 'http://www.markmcspadden.net', 'Dallas, TX', 'markmcspadden@gmail.com', NULL, NULL, NULL, 0, 0, 70, 1, 0, 0, 0, '2008-02-27T18:58:38Z', '2022-07-22T15:06:47Z', 'https://avatars.githubusercontent.com/u/1148?v=4', 'https://api.github.com/users/markmcspadden', 'https://github.com/markmcspadden', 'https://api.github.com/users/markmcspadden/followers', 'https://api.github.com/users/markmcspadden/following', 'https://api.github.com/users/markmcspadden/gists', 'https://api.github.com/users/markmcspadden/starred', 'https://api.github.com/users/markmcspadden/repos', 'https://api.github.com/users/markmcspadden/events', 'https://api.github.com/users/markmcspadden/received_events', 0); +INSERT INTO `developer` VALUES (1149, 'expilo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 7, 0, 0, 0, '2008-02-27T19:19:16Z', '2024-10-22T18:30:18Z', 'https://avatars.githubusercontent.com/u/1149?v=4', 'https://api.github.com/users/expilo', 'https://github.com/expilo', 'https://api.github.com/users/expilo/followers', 'https://api.github.com/users/expilo/following', 'https://api.github.com/users/expilo/gists', 'https://api.github.com/users/expilo/starred', 'https://api.github.com/users/expilo/repos', 'https://api.github.com/users/expilo/events', 'https://api.github.com/users/expilo/received_events', 0); +INSERT INTO `developer` VALUES (1150, 'pingles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Ingles', '@uswitch ', 'https://medium.com/@pingles', 'London', 'pingles@protonmail.com', NULL, 'CTO @ Uswitch, London.\r\n\r\nGo, Clojure, Java, Ruby, R programmer.\r\n\r\nBlanked HHKB Pro 2 Type-S and logi ergo fan.', 'pingles', 0, 0, 143, 4, 0, 0, 0, '2008-02-27T19:23:10Z', '2024-10-15T12:22:25Z', 'https://avatars.githubusercontent.com/u/1150?v=4', 'https://api.github.com/users/pingles', 'https://github.com/pingles', 'https://api.github.com/users/pingles/followers', 'https://api.github.com/users/pingles/following', 'https://api.github.com/users/pingles/gists', 'https://api.github.com/users/pingles/starred', 'https://api.github.com/users/pingles/repos', 'https://api.github.com/users/pingles/events', 'https://api.github.com/users/pingles/received_events', 0); +INSERT INTO `developer` VALUES (1151, 'nemequ', 'C', 0, 0, 0, 0, 0, 0, 0, 'Evan Nemerson', NULL, 'https://nemequ.github.io/', 'United States', 'evan@nemerson.com', 'true', NULL, 'nemequ', 0, 0, 183, 0, 0, 0, 0, '2008-02-27T19:24:26Z', '2024-11-04T12:19:37Z', 'https://avatars.githubusercontent.com/u/1151?v=4', 'https://api.github.com/users/nemequ', 'https://github.com/nemequ', 'https://api.github.com/users/nemequ/followers', 'https://api.github.com/users/nemequ/following', 'https://api.github.com/users/nemequ/gists', 'https://api.github.com/users/nemequ/starred', 'https://api.github.com/users/nemequ/repos', 'https://api.github.com/users/nemequ/events', 'https://api.github.com/users/nemequ/received_events', 0); +INSERT INTO `developer` VALUES (1152, 'thomasritz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Ritz', '@JustRelate ', '', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 19, 26, 0, 0, 0, '2008-02-27T19:32:17Z', '2024-10-17T11:23:03Z', 'https://avatars.githubusercontent.com/u/1152?v=4', 'https://api.github.com/users/thomasritz', 'https://github.com/thomasritz', 'https://api.github.com/users/thomasritz/followers', 'https://api.github.com/users/thomasritz/following', 'https://api.github.com/users/thomasritz/gists', 'https://api.github.com/users/thomasritz/starred', 'https://api.github.com/users/thomasritz/repos', 'https://api.github.com/users/thomasritz/events', 'https://api.github.com/users/thomasritz/received_events', 0); +INSERT INTO `developer` VALUES (1153, 'jamiehoover', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2008-02-27T19:39:18Z', '2019-06-05T03:52:14Z', 'https://avatars.githubusercontent.com/u/1153?v=4', 'https://api.github.com/users/jamiehoover', 'https://github.com/jamiehoover', 'https://api.github.com/users/jamiehoover/followers', 'https://api.github.com/users/jamiehoover/following', 'https://api.github.com/users/jamiehoover/gists', 'https://api.github.com/users/jamiehoover/starred', 'https://api.github.com/users/jamiehoover/repos', 'https://api.github.com/users/jamiehoover/events', 'https://api.github.com/users/jamiehoover/received_events', 0); +INSERT INTO `developer` VALUES (1154, 'rahoulb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rahoul Baruah', 'Standard Procedure', 'https://theartandscienceofruby.com/', 'Leeds, England', 'rahoulb@echodek.co', NULL, 'Rubyist. \r\n\r\nCTO of @Collabor8Online. \r\n\r\nHead Dogsbody at @echo-dek.\r\n\r\nKeep your clients beautifully organised with @standard-procedure.', NULL, 0, 0, 32, 9, 0, 0, 0, '2008-02-27T19:41:06Z', '2024-10-30T15:01:16Z', 'https://avatars.githubusercontent.com/u/1154?v=4', 'https://api.github.com/users/rahoulb', 'https://github.com/rahoulb', 'https://api.github.com/users/rahoulb/followers', 'https://api.github.com/users/rahoulb/following', 'https://api.github.com/users/rahoulb/gists', 'https://api.github.com/users/rahoulb/starred', 'https://api.github.com/users/rahoulb/repos', 'https://api.github.com/users/rahoulb/events', 'https://api.github.com/users/rahoulb/received_events', 0); +INSERT INTO `developer` VALUES (1155, 'Furie', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2008-02-27T19:42:19Z', '2022-09-23T21:23:47Z', 'https://avatars.githubusercontent.com/u/1155?v=4', 'https://api.github.com/users/Furie', 'https://github.com/Furie', 'https://api.github.com/users/Furie/followers', 'https://api.github.com/users/Furie/following', 'https://api.github.com/users/Furie/gists', 'https://api.github.com/users/Furie/starred', 'https://api.github.com/users/Furie/repos', 'https://api.github.com/users/Furie/events', 'https://api.github.com/users/Furie/received_events', 0); +INSERT INTO `developer` VALUES (1156, 'careo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dane Jensen', NULL, '', 'Oregon', 'dane.jensen@gmail.com', NULL, NULL, NULL, 0, 0, 64, 59, 0, 0, 0, '2008-02-27T19:42:40Z', '2024-10-22T21:01:02Z', 'https://avatars.githubusercontent.com/u/1156?v=4', 'https://api.github.com/users/careo', 'https://github.com/careo', 'https://api.github.com/users/careo/followers', 'https://api.github.com/users/careo/following', 'https://api.github.com/users/careo/gists', 'https://api.github.com/users/careo/starred', 'https://api.github.com/users/careo/repos', 'https://api.github.com/users/careo/events', 'https://api.github.com/users/careo/received_events', 0); +INSERT INTO `developer` VALUES (1157, 'ndemonner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick DeMonner', 'Motor', '', '未知', 'nick@motor.dev', NULL, NULL, NULL, 0, 0, 29, 6, 0, 0, 0, '2008-02-27T19:50:37Z', '2024-10-14T19:06:35Z', 'https://avatars.githubusercontent.com/u/1157?v=4', 'https://api.github.com/users/ndemonner', 'https://github.com/ndemonner', 'https://api.github.com/users/ndemonner/followers', 'https://api.github.com/users/ndemonner/following', 'https://api.github.com/users/ndemonner/gists', 'https://api.github.com/users/ndemonner/starred', 'https://api.github.com/users/ndemonner/repos', 'https://api.github.com/users/ndemonner/events', 'https://api.github.com/users/ndemonner/received_events', 0); +INSERT INTO `developer` VALUES (1158, 'Cordobo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Jacob', 'Hirango GmbH', 'https://rheinneckar.social/@cordobo', 'Mannheim, Germany', NULL, 'true', 'Full stack developer (node.js, graphql, react, react native, angular, go, micro services)\r\n\r\n', 'cordobo', 0, 0, 46, 16, 0, 0, 0, '2008-02-27T19:52:02Z', '2024-09-29T18:34:41Z', 'https://avatars.githubusercontent.com/u/1158?v=4', 'https://api.github.com/users/Cordobo', 'https://github.com/Cordobo', 'https://api.github.com/users/Cordobo/followers', 'https://api.github.com/users/Cordobo/following', 'https://api.github.com/users/Cordobo/gists', 'https://api.github.com/users/Cordobo/starred', 'https://api.github.com/users/Cordobo/repos', 'https://api.github.com/users/Cordobo/events', 'https://api.github.com/users/Cordobo/received_events', 0); +INSERT INTO `developer` VALUES (1159, 'jesseclark', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesse Clark', NULL, 'jesseclark.com', 'Seattle', 'jesse@jesseclark.com', NULL, NULL, NULL, 0, 0, 22, 9, 0, 0, 0, '2008-02-27T19:54:32Z', '2024-09-03T11:22:20Z', 'https://avatars.githubusercontent.com/u/1159?v=4', 'https://api.github.com/users/jesseclark', 'https://github.com/jesseclark', 'https://api.github.com/users/jesseclark/followers', 'https://api.github.com/users/jesseclark/following', 'https://api.github.com/users/jesseclark/gists', 'https://api.github.com/users/jesseclark/starred', 'https://api.github.com/users/jesseclark/repos', 'https://api.github.com/users/jesseclark/events', 'https://api.github.com/users/jesseclark/received_events', 0); +INSERT INTO `developer` VALUES (1160, 'coxy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Cox', NULL, '', 'Oxford, UK', NULL, NULL, NULL, NULL, 0, 0, 13, 6, 0, 0, 0, '2008-02-27T19:54:59Z', '2024-10-29T13:01:01Z', 'https://avatars.githubusercontent.com/u/1160?v=4', 'https://api.github.com/users/coxy', 'https://github.com/coxy', 'https://api.github.com/users/coxy/followers', 'https://api.github.com/users/coxy/following', 'https://api.github.com/users/coxy/gists', 'https://api.github.com/users/coxy/starred', 'https://api.github.com/users/coxy/repos', 'https://api.github.com/users/coxy/events', 'https://api.github.com/users/coxy/received_events', 0); +INSERT INTO `developer` VALUES (1161, 'willb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Will Benton', 'NVIDIA', 'https://chapeau.freevariable.com', 'Madison, WI', 'willbenton@me.com', NULL, NULL, 'willb', 0, 0, 118, 18, 0, 0, 0, '2008-02-27T19:58:52Z', '2024-07-30T23:02:42Z', 'https://avatars.githubusercontent.com/u/1161?v=4', 'https://api.github.com/users/willb', 'https://github.com/willb', 'https://api.github.com/users/willb/followers', 'https://api.github.com/users/willb/following', 'https://api.github.com/users/willb/gists', 'https://api.github.com/users/willb/starred', 'https://api.github.com/users/willb/repos', 'https://api.github.com/users/willb/events', 'https://api.github.com/users/willb/received_events', 0); +INSERT INTO `developer` VALUES (1162, 'dust3d', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dustin Anderson', 'Onion, Inc', 'http://twitter.com/hashstin', 'Chicago, IL', NULL, NULL, 'Staff Engineer @gawkermedia ', NULL, 0, 0, 30, 13, 0, 0, 0, '2008-02-27T20:08:38Z', '2020-12-20T17:03:00Z', 'https://avatars.githubusercontent.com/u/1162?v=4', 'https://api.github.com/users/dust3d', 'https://github.com/dust3d', 'https://api.github.com/users/dust3d/followers', 'https://api.github.com/users/dust3d/following', 'https://api.github.com/users/dust3d/gists', 'https://api.github.com/users/dust3d/starred', 'https://api.github.com/users/dust3d/repos', 'https://api.github.com/users/dust3d/events', 'https://api.github.com/users/dust3d/received_events', 0); +INSERT INTO `developer` VALUES (1163, 'macgyver', 'C', 0, 0, 0, 0, 0, 0, 0, 'jz', '@slategroup ', '', 'The DMV, stolen land of the Nacotchtank and Piscataway', NULL, NULL, NULL, NULL, 0, 0, 14, 56, 0, 0, 0, '2008-02-27T20:14:19Z', '2024-10-10T20:59:01Z', 'https://avatars.githubusercontent.com/u/1163?v=4', 'https://api.github.com/users/macgyver', 'https://github.com/macgyver', 'https://api.github.com/users/macgyver/followers', 'https://api.github.com/users/macgyver/following', 'https://api.github.com/users/macgyver/gists', 'https://api.github.com/users/macgyver/starred', 'https://api.github.com/users/macgyver/repos', 'https://api.github.com/users/macgyver/events', 'https://api.github.com/users/macgyver/received_events', 0); +INSERT INTO `developer` VALUES (1164, 'Krishna', 'C', 0, 0, 0, 0, 0, 0, 0, 'Krishna', NULL, 'https://voidstar.ghost.io', 'Metaverse', NULL, NULL, NULL, NULL, 0, 0, 32, 284, 0, 0, 0, '2008-02-27T20:16:11Z', '2024-10-17T16:15:18Z', 'https://avatars.githubusercontent.com/u/1164?v=4', 'https://api.github.com/users/Krishna', 'https://github.com/Krishna', 'https://api.github.com/users/Krishna/followers', 'https://api.github.com/users/Krishna/following', 'https://api.github.com/users/Krishna/gists', 'https://api.github.com/users/Krishna/starred', 'https://api.github.com/users/Krishna/repos', 'https://api.github.com/users/Krishna/events', 'https://api.github.com/users/Krishna/received_events', 0); +INSERT INTO `developer` VALUES (1165, 'jipipayo', 'C', 0, 0, 0, 0, 0, 0, 0, 'jipipayo', NULL, '', 'Madrid', NULL, 'true', NULL, NULL, 0, 0, 27, 29, 0, 0, 0, '2008-02-27T20:18:52Z', '2024-06-20T14:09:36Z', 'https://avatars.githubusercontent.com/u/1165?v=4', 'https://api.github.com/users/jipipayo', 'https://github.com/jipipayo', 'https://api.github.com/users/jipipayo/followers', 'https://api.github.com/users/jipipayo/following', 'https://api.github.com/users/jipipayo/gists', 'https://api.github.com/users/jipipayo/starred', 'https://api.github.com/users/jipipayo/repos', 'https://api.github.com/users/jipipayo/events', 'https://api.github.com/users/jipipayo/received_events', 0); +INSERT INTO `developer` VALUES (1166, 'mschrag', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Schrag', NULL, 'http://mschrag.blogspot.com', 'Richmond, VA', 'mschrag@pobox.com', NULL, NULL, NULL, 0, 0, 133, 3, 0, 0, 0, '2008-02-27T20:21:31Z', '2024-09-26T13:09:55Z', 'https://avatars.githubusercontent.com/u/1166?v=4', 'https://api.github.com/users/mschrag', 'https://github.com/mschrag', 'https://api.github.com/users/mschrag/followers', 'https://api.github.com/users/mschrag/following', 'https://api.github.com/users/mschrag/gists', 'https://api.github.com/users/mschrag/starred', 'https://api.github.com/users/mschrag/repos', 'https://api.github.com/users/mschrag/events', 'https://api.github.com/users/mschrag/received_events', 0); +INSERT INTO `developer` VALUES (1167, 'dacresni', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nehemiah I. Dacres', 'City of St. Paul MN @stpaulmn ', 'dacresni.github.io', 'Saint Paul Minnesota', NULL, NULL, 'Nehemiah relishes in tackling new challenges. Leveraging his vast knowlege of various software and their communities, he can asses the right one for the job', 'dacresni', 0, 0, 58, 202, 0, 0, 0, '2008-02-27T20:35:03Z', '2024-10-23T19:26:21Z', 'https://avatars.githubusercontent.com/u/1167?v=4', 'https://api.github.com/users/dacresni', 'https://github.com/dacresni', 'https://api.github.com/users/dacresni/followers', 'https://api.github.com/users/dacresni/following', 'https://api.github.com/users/dacresni/gists', 'https://api.github.com/users/dacresni/starred', 'https://api.github.com/users/dacresni/repos', 'https://api.github.com/users/dacresni/events', 'https://api.github.com/users/dacresni/received_events', 0); +INSERT INTO `developer` VALUES (1168, 'rymai', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rémy Coutable', '@gitlabhq', 'https://www.rymai.me', 'Dijon, France', NULL, NULL, 'Principal Engineer, Internal Infrastructure', NULL, 0, 0, 128, 87, 0, 0, 0, '2008-02-27T20:36:41Z', '2024-09-26T13:23:01Z', 'https://avatars.githubusercontent.com/u/1168?v=4', 'https://api.github.com/users/rymai', 'https://github.com/rymai', 'https://api.github.com/users/rymai/followers', 'https://api.github.com/users/rymai/following', 'https://api.github.com/users/rymai/gists', 'https://api.github.com/users/rymai/starred', 'https://api.github.com/users/rymai/repos', 'https://api.github.com/users/rymai/events', 'https://api.github.com/users/rymai/received_events', 0); +INSERT INTO `developer` VALUES (1169, 'h3rald', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fabio Cevasco', 'n/d', 'https://h3rald.com', 'Genoa, Italy', 'h3rald@h3rald.com', NULL, NULL, 'h3rald', 0, 0, 0, 0, 0, 0, 0, '2008-02-27T20:43:30Z', '2024-10-26T11:17:15Z', 'https://avatars.githubusercontent.com/u/1169?v=4', 'https://api.github.com/users/h3rald', 'https://github.com/h3rald', 'https://api.github.com/users/h3rald/followers', 'https://api.github.com/users/h3rald/following', 'https://api.github.com/users/h3rald/gists', 'https://api.github.com/users/h3rald/starred', 'https://api.github.com/users/h3rald/repos', 'https://api.github.com/users/h3rald/events', 'https://api.github.com/users/h3rald/received_events', 0); +INSERT INTO `developer` VALUES (1170, 'davidslee9', 'C', 0, 0, 0, 0, 0, 0, 0, 'David S. Lee', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T20:45:22Z', '2019-06-05T03:53:00Z', 'https://avatars.githubusercontent.com/u/1170?v=4', 'https://api.github.com/users/davidslee9', 'https://github.com/davidslee9', 'https://api.github.com/users/davidslee9/followers', 'https://api.github.com/users/davidslee9/following', 'https://api.github.com/users/davidslee9/gists', 'https://api.github.com/users/davidslee9/starred', 'https://api.github.com/users/davidslee9/repos', 'https://api.github.com/users/davidslee9/events', 'https://api.github.com/users/davidslee9/received_events', 0); +INSERT INTO `developer` VALUES (1171, 'stefanformrausch', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T20:55:53Z', '2024-06-24T14:20:54Z', 'https://avatars.githubusercontent.com/u/1171?v=4', 'https://api.github.com/users/stefanformrausch', 'https://github.com/stefanformrausch', 'https://api.github.com/users/stefanformrausch/followers', 'https://api.github.com/users/stefanformrausch/following', 'https://api.github.com/users/stefanformrausch/gists', 'https://api.github.com/users/stefanformrausch/starred', 'https://api.github.com/users/stefanformrausch/repos', 'https://api.github.com/users/stefanformrausch/events', 'https://api.github.com/users/stefanformrausch/received_events', 0); +INSERT INTO `developer` VALUES (1172, 'ndarilek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nolan Darilek', NULL, 'https://thewordnerd.info', 'Austin, TX', NULL, NULL, NULL, NULL, 0, 0, 74, 0, 0, 0, 0, '2008-02-27T21:01:18Z', '2024-04-29T19:15:36Z', 'https://avatars.githubusercontent.com/u/1172?v=4', 'https://api.github.com/users/ndarilek', 'https://github.com/ndarilek', 'https://api.github.com/users/ndarilek/followers', 'https://api.github.com/users/ndarilek/following', 'https://api.github.com/users/ndarilek/gists', 'https://api.github.com/users/ndarilek/starred', 'https://api.github.com/users/ndarilek/repos', 'https://api.github.com/users/ndarilek/events', 'https://api.github.com/users/ndarilek/received_events', 0); +INSERT INTO `developer` VALUES (1173, 'cliffspence', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cliff Spence', '@storyco ', 'http://cliff.io', 'Los Angeles, CA', NULL, NULL, NULL, NULL, 0, 0, 20, 7, 0, 0, 0, '2008-02-27T21:04:24Z', '2024-09-24T03:37:07Z', 'https://avatars.githubusercontent.com/u/1173?v=4', 'https://api.github.com/users/cliffspence', 'https://github.com/cliffspence', 'https://api.github.com/users/cliffspence/followers', 'https://api.github.com/users/cliffspence/following', 'https://api.github.com/users/cliffspence/gists', 'https://api.github.com/users/cliffspence/starred', 'https://api.github.com/users/cliffspence/repos', 'https://api.github.com/users/cliffspence/events', 'https://api.github.com/users/cliffspence/received_events', 0); +INSERT INTO `developer` VALUES (1174, 'billturner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Turner', NULL, 'https://kindofblue.com/', 'Pittsburgh, PA', 'billturner@gmail.com', NULL, 'Engineer specializing in Ruby on Rails and a bit of JavaScript. ', NULL, 0, 0, 39, 26, 0, 0, 0, '2008-02-27T21:12:21Z', '2024-07-05T03:11:41Z', 'https://avatars.githubusercontent.com/u/1174?v=4', 'https://api.github.com/users/billturner', 'https://github.com/billturner', 'https://api.github.com/users/billturner/followers', 'https://api.github.com/users/billturner/following', 'https://api.github.com/users/billturner/gists', 'https://api.github.com/users/billturner/starred', 'https://api.github.com/users/billturner/repos', 'https://api.github.com/users/billturner/events', 'https://api.github.com/users/billturner/received_events', 0); +INSERT INTO `developer` VALUES (1175, 'bjhess', 'C', 0, 0, 0, 0, 0, 0, 0, 'Barry Hess', NULL, 'https://bjhess.com', 'Minnesota', 'barry@bjhess.com', NULL, NULL, NULL, 0, 0, 69, 49, 0, 0, 0, '2008-02-27T21:12:49Z', '2024-11-04T16:43:24Z', 'https://avatars.githubusercontent.com/u/1175?v=4', 'https://api.github.com/users/bjhess', 'https://github.com/bjhess', 'https://api.github.com/users/bjhess/followers', 'https://api.github.com/users/bjhess/following', 'https://api.github.com/users/bjhess/gists', 'https://api.github.com/users/bjhess/starred', 'https://api.github.com/users/bjhess/repos', 'https://api.github.com/users/bjhess/events', 'https://api.github.com/users/bjhess/received_events', 0); +INSERT INTO `developer` VALUES (1176, 'chopmo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob Tjoernholm', '@GoMore', 'http://chopmo.dk', 'Aarhus, Denmark', 'jacob@tjoernholm.dk', NULL, 'Current main interests: Clojure, Ruby, ElasticSearch, AWS, Postgres.\r\nBackend developer at @gomore. ', NULL, 0, 0, 38, 25, 0, 0, 0, '2008-02-27T21:18:25Z', '2024-10-15T06:14:10Z', 'https://avatars.githubusercontent.com/u/1176?v=4', 'https://api.github.com/users/chopmo', 'https://github.com/chopmo', 'https://api.github.com/users/chopmo/followers', 'https://api.github.com/users/chopmo/following', 'https://api.github.com/users/chopmo/gists', 'https://api.github.com/users/chopmo/starred', 'https://api.github.com/users/chopmo/repos', 'https://api.github.com/users/chopmo/events', 'https://api.github.com/users/chopmo/received_events', 0); +INSERT INTO `developer` VALUES (1177, 'nimbletechnique', 'C', 0, 0, 0, 0, 0, 0, 0, 'Collin VanDyck', 'Nimble Technique, LLC', 'http://www.gluedtomyseat.com', 'Atlanta, GA', 'gluedtomyseat@gmail.com', NULL, NULL, NULL, 0, 0, 14, 2, 0, 0, 0, '2008-02-27T21:19:46Z', '2018-02-10T08:47:49Z', 'https://avatars.githubusercontent.com/u/1177?v=4', 'https://api.github.com/users/nimbletechnique', 'https://github.com/nimbletechnique', 'https://api.github.com/users/nimbletechnique/followers', 'https://api.github.com/users/nimbletechnique/following', 'https://api.github.com/users/nimbletechnique/gists', 'https://api.github.com/users/nimbletechnique/starred', 'https://api.github.com/users/nimbletechnique/repos', 'https://api.github.com/users/nimbletechnique/events', 'https://api.github.com/users/nimbletechnique/received_events', 0); +INSERT INTO `developer` VALUES (1178, 'clawfire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thibault Milan', '@smileinnovation ', 'http://thibaultmilan.com', 'Luxembourg', 'hello@thibaultmilan.com', 'true', NULL, 'thibaultmilan', 0, 0, 65, 66, 0, 0, 0, '2008-02-27T21:22:43Z', '2024-10-31T13:06:26Z', 'https://avatars.githubusercontent.com/u/1178?v=4', 'https://api.github.com/users/clawfire', 'https://github.com/clawfire', 'https://api.github.com/users/clawfire/followers', 'https://api.github.com/users/clawfire/following', 'https://api.github.com/users/clawfire/gists', 'https://api.github.com/users/clawfire/starred', 'https://api.github.com/users/clawfire/repos', 'https://api.github.com/users/clawfire/events', 'https://api.github.com/users/clawfire/received_events', 0); +INSERT INTO `developer` VALUES (1179, 'joevandyk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Van Dyk', '@Crowd-Cow ', '', 'Seattle, WA', NULL, NULL, 'Crowd Cow', 'joevandyk', 0, 0, 41, 0, 0, 0, 0, '2008-02-27T21:34:30Z', '2024-09-26T23:34:28Z', 'https://avatars.githubusercontent.com/u/1179?v=4', 'https://api.github.com/users/joevandyk', 'https://github.com/joevandyk', 'https://api.github.com/users/joevandyk/followers', 'https://api.github.com/users/joevandyk/following', 'https://api.github.com/users/joevandyk/gists', 'https://api.github.com/users/joevandyk/starred', 'https://api.github.com/users/joevandyk/repos', 'https://api.github.com/users/joevandyk/events', 'https://api.github.com/users/joevandyk/received_events', 0); +INSERT INTO `developer` VALUES (1180, 'wuntoo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wuntoo Network Inc.', 'Wuntoo Network Inc.', 'http://wuntoo.com', 'Montreal, Quebec, Canada', 'john@kopanas.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-27T21:36:11Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1180?v=4', 'https://api.github.com/users/wuntoo', 'https://github.com/wuntoo', 'https://api.github.com/users/wuntoo/followers', 'https://api.github.com/users/wuntoo/following', 'https://api.github.com/users/wuntoo/gists', 'https://api.github.com/users/wuntoo/starred', 'https://api.github.com/users/wuntoo/repos', 'https://api.github.com/users/wuntoo/events', 'https://api.github.com/users/wuntoo/received_events', 0); +INSERT INTO `developer` VALUES (1181, 'mjm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Moriarity', '@slab', '', 'Denver, CO', 'matt@mattmoriarity.com', NULL, NULL, NULL, 0, 0, 55, 18, 0, 0, 0, '2008-02-27T21:39:00Z', '2024-10-10T19:23:16Z', 'https://avatars.githubusercontent.com/u/1181?v=4', 'https://api.github.com/users/mjm', 'https://github.com/mjm', 'https://api.github.com/users/mjm/followers', 'https://api.github.com/users/mjm/following', 'https://api.github.com/users/mjm/gists', 'https://api.github.com/users/mjm/starred', 'https://api.github.com/users/mjm/repos', 'https://api.github.com/users/mjm/events', 'https://api.github.com/users/mjm/received_events', 0); +INSERT INTO `developer` VALUES (1182, 'aizatto', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aizat Faiz', NULL, 'https://www.aizatto.com/', 'Kuala Lumpur, Malaysia', 'aizat.faiz@gmail.com', 'true', NULL, NULL, 0, 0, 113, 3, 0, 0, 0, '2008-02-27T21:50:33Z', '2024-11-01T15:31:43Z', 'https://avatars.githubusercontent.com/u/1182?v=4', 'https://api.github.com/users/aizatto', 'https://github.com/aizatto', 'https://api.github.com/users/aizatto/followers', 'https://api.github.com/users/aizatto/following', 'https://api.github.com/users/aizatto/gists', 'https://api.github.com/users/aizatto/starred', 'https://api.github.com/users/aizatto/repos', 'https://api.github.com/users/aizatto/events', 'https://api.github.com/users/aizatto/received_events', 0); +INSERT INTO `developer` VALUES (1183, 'gregwebs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Weber', 'Digital Mint', 'https://www.linkedin.com/in/gregabramowitzweber', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 204, 1, 0, 0, 0, '2008-02-27T21:55:47Z', '2024-10-06T16:57:17Z', 'https://avatars.githubusercontent.com/u/1183?v=4', 'https://api.github.com/users/gregwebs', 'https://github.com/gregwebs', 'https://api.github.com/users/gregwebs/followers', 'https://api.github.com/users/gregwebs/following', 'https://api.github.com/users/gregwebs/gists', 'https://api.github.com/users/gregwebs/starred', 'https://api.github.com/users/gregwebs/repos', 'https://api.github.com/users/gregwebs/events', 'https://api.github.com/users/gregwebs/received_events', 0); +INSERT INTO `developer` VALUES (1184, 'jptix', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'xjptix@gmail.com', NULL, NULL, NULL, 0, 0, 10, 7, 0, 0, 0, '2008-02-27T22:04:09Z', '2019-12-17T07:50:35Z', 'https://avatars.githubusercontent.com/u/1184?v=4', 'https://api.github.com/users/jptix', 'https://github.com/jptix', 'https://api.github.com/users/jptix/followers', 'https://api.github.com/users/jptix/following', 'https://api.github.com/users/jptix/gists', 'https://api.github.com/users/jptix/starred', 'https://api.github.com/users/jptix/repos', 'https://api.github.com/users/jptix/events', 'https://api.github.com/users/jptix/received_events', 0); +INSERT INTO `developer` VALUES (1185, 'findchris', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Johnson', 'tvScientific', 'http://linkedin.com/in/findchris', 'Los Angeles', 'chris@tvscientific.com', NULL, NULL, NULL, 0, 0, 25, 7, 0, 0, 0, '2008-02-27T22:04:20Z', '2024-08-28T03:15:00Z', 'https://avatars.githubusercontent.com/u/1185?v=4', 'https://api.github.com/users/findchris', 'https://github.com/findchris', 'https://api.github.com/users/findchris/followers', 'https://api.github.com/users/findchris/following', 'https://api.github.com/users/findchris/gists', 'https://api.github.com/users/findchris/starred', 'https://api.github.com/users/findchris/repos', 'https://api.github.com/users/findchris/events', 'https://api.github.com/users/findchris/received_events', 0); +INSERT INTO `developer` VALUES (1186, 'snusnu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Gamsjaeger', 'Quasipartikel', 'http://quasipartikel.at', 'Linz/Austria', 'gamsnjaga@gmail.com', NULL, NULL, NULL, 0, 0, 144, 19, 0, 0, 0, '2008-02-27T22:05:50Z', '2024-10-04T12:46:34Z', 'https://avatars.githubusercontent.com/u/1186?v=4', 'https://api.github.com/users/snusnu', 'https://github.com/snusnu', 'https://api.github.com/users/snusnu/followers', 'https://api.github.com/users/snusnu/following', 'https://api.github.com/users/snusnu/gists', 'https://api.github.com/users/snusnu/starred', 'https://api.github.com/users/snusnu/repos', 'https://api.github.com/users/snusnu/events', 'https://api.github.com/users/snusnu/received_events', 0); +INSERT INTO `developer` VALUES (1187, 'mk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Kavalar', '@nextjournal', '', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 153, 20, 0, 0, 0, '2008-02-27T22:10:39Z', '2024-10-19T13:05:28Z', 'https://avatars.githubusercontent.com/u/1187?v=4', 'https://api.github.com/users/mk', 'https://github.com/mk', 'https://api.github.com/users/mk/followers', 'https://api.github.com/users/mk/following', 'https://api.github.com/users/mk/gists', 'https://api.github.com/users/mk/starred', 'https://api.github.com/users/mk/repos', 'https://api.github.com/users/mk/events', 'https://api.github.com/users/mk/received_events', 0); +INSERT INTO `developer` VALUES (1188, 'JakubOboza', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jakub', NULL, 'http://lambdacu.be', 'London | Kraków', 'jakub.oboza@gmail.com', NULL, NULL, NULL, 0, 0, 42, 37, 0, 0, 0, '2008-02-27T22:16:01Z', '2024-05-08T06:19:10Z', 'https://avatars.githubusercontent.com/u/1188?v=4', 'https://api.github.com/users/JakubOboza', 'https://github.com/JakubOboza', 'https://api.github.com/users/JakubOboza/followers', 'https://api.github.com/users/JakubOboza/following', 'https://api.github.com/users/JakubOboza/gists', 'https://api.github.com/users/JakubOboza/starred', 'https://api.github.com/users/JakubOboza/repos', 'https://api.github.com/users/JakubOboza/events', 'https://api.github.com/users/JakubOboza/received_events', 0); +INSERT INTO `developer` VALUES (1190, 'animikii', 'C', 0, 0, 0, 0, 0, 0, 0, 'Animikii Inc.', NULL, 'http://www.animikii.com/', 'Victoria, Canada', 'info@animikii.com', NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-27T22:25:57Z', '2024-10-31T14:42:19Z', 'https://avatars.githubusercontent.com/u/1190?v=4', 'https://api.github.com/users/animikii', 'https://github.com/animikii', 'https://api.github.com/users/animikii/followers', 'https://api.github.com/users/animikii/following', 'https://api.github.com/users/animikii/gists', 'https://api.github.com/users/animikii/starred', 'https://api.github.com/users/animikii/repos', 'https://api.github.com/users/animikii/events', 'https://api.github.com/users/animikii/received_events', 0); +INSERT INTO `developer` VALUES (1191, 'al2o3cr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Jones', NULL, '', 'Columbus, OH', 'al2o3cr@gmail.com', NULL, NULL, NULL, 0, 0, 76, 1, 0, 0, 0, '2008-02-27T22:27:26Z', '2024-07-22T15:31:05Z', 'https://avatars.githubusercontent.com/u/1191?v=4', 'https://api.github.com/users/al2o3cr', 'https://github.com/al2o3cr', 'https://api.github.com/users/al2o3cr/followers', 'https://api.github.com/users/al2o3cr/following', 'https://api.github.com/users/al2o3cr/gists', 'https://api.github.com/users/al2o3cr/starred', 'https://api.github.com/users/al2o3cr/repos', 'https://api.github.com/users/al2o3cr/events', 'https://api.github.com/users/al2o3cr/received_events', 0); +INSERT INTO `developer` VALUES (1192, 'paltman', 'C', 0.3975511621660344, 0, 0, 0, 0, 0, 0, 'Patrick Altman', '@wedgworth', 'https://paltman.com', 'Nashville, TN / Belle Glade, FL', 'paltman@gmail.com', NULL, 'VueJS, Django, Python, Docker', 'paltman', 0, 0, 308, 74, 0, 0, 0, '2008-02-27T22:29:24Z', '2024-10-29T17:25:35Z', 'https://avatars.githubusercontent.com/u/1192?v=4', 'https://api.github.com/users/paltman', 'https://github.com/paltman', 'https://api.github.com/users/paltman/followers', 'https://api.github.com/users/paltman/following', 'https://api.github.com/users/paltman/gists', 'https://api.github.com/users/paltman/starred', 'https://api.github.com/users/paltman/repos', 'https://api.github.com/users/paltman/events', 'https://api.github.com/users/paltman/received_events', 0); +INSERT INTO `developer` VALUES (1194, 'kerryb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kerry Buckley', 'BT', 'http://kerrybuckley.org/', 'Ipswich, UK', 'kerryjbuckley@gmail.com', NULL, NULL, NULL, 0, 0, 71, 16, 0, 0, 0, '2008-02-27T22:33:04Z', '2024-10-28T10:59:14Z', 'https://avatars.githubusercontent.com/u/1194?v=4', 'https://api.github.com/users/kerryb', 'https://github.com/kerryb', 'https://api.github.com/users/kerryb/followers', 'https://api.github.com/users/kerryb/following', 'https://api.github.com/users/kerryb/gists', 'https://api.github.com/users/kerryb/starred', 'https://api.github.com/users/kerryb/repos', 'https://api.github.com/users/kerryb/events', 'https://api.github.com/users/kerryb/received_events', 0); +INSERT INTO `developer` VALUES (1195, 'Manfred', 'C', 0, 0, 0, 0, 0, 0, 0, 'Manfred Stienstra', 'Fingertips', 'http://www.fngtps.com', 'H4sIAFn6cmUAA0WMMQ7CMBAEe14RTJM0prdDEdFAh8ID0Mm5SCcs25wvIIH4O06QoNhmd3YYbxMxKnBCMVxcDMLRe+QtA3khVNZ5yLna739T2y3wvzCmOx3tgGPlLGMYkOvkgYKp1IFUY0u1BHZfV9f2RZ7LLSVPDmabzejHmdIUSAg8PXFtQXOcBLMeGB4vjlFqiUXrNk41b9uDuxpzRr4j6yzAUkNKBprVB8hGiinYAAAA', NULL, NULL, 'decode64(unzip(location))', NULL, 0, 0, 62, 1, 0, 0, 0, '2008-02-27T22:33:25Z', '2024-07-06T11:18:10Z', 'https://avatars.githubusercontent.com/u/1195?v=4', 'https://api.github.com/users/Manfred', 'https://github.com/Manfred', 'https://api.github.com/users/Manfred/followers', 'https://api.github.com/users/Manfred/following', 'https://api.github.com/users/Manfred/gists', 'https://api.github.com/users/Manfred/starred', 'https://api.github.com/users/Manfred/repos', 'https://api.github.com/users/Manfred/events', 'https://api.github.com/users/Manfred/received_events', 0); +INSERT INTO `developer` VALUES (1196, 'jaehess', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jae Hess', NULL, 'http://jaehess.com', 'Cupertino', 'jae.hess@me.com', NULL, NULL, NULL, 0, 0, 45, 83, 0, 0, 0, '2008-02-27T22:41:15Z', '2023-09-15T19:28:51Z', 'https://avatars.githubusercontent.com/u/1196?v=4', 'https://api.github.com/users/jaehess', 'https://github.com/jaehess', 'https://api.github.com/users/jaehess/followers', 'https://api.github.com/users/jaehess/following', 'https://api.github.com/users/jaehess/gists', 'https://api.github.com/users/jaehess/starred', 'https://api.github.com/users/jaehess/repos', 'https://api.github.com/users/jaehess/events', 'https://api.github.com/users/jaehess/received_events', 0); +INSERT INTO `developer` VALUES (1197, 'ricardoecosta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ricardo Costa', NULL, '', 'London', 'rdscosta@gmail.com', 'true', NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T22:42:47Z', '2024-07-30T10:37:58Z', 'https://avatars.githubusercontent.com/u/1197?v=4', 'https://api.github.com/users/ricardoecosta', 'https://github.com/ricardoecosta', 'https://api.github.com/users/ricardoecosta/followers', 'https://api.github.com/users/ricardoecosta/following', 'https://api.github.com/users/ricardoecosta/gists', 'https://api.github.com/users/ricardoecosta/starred', 'https://api.github.com/users/ricardoecosta/repos', 'https://api.github.com/users/ricardoecosta/events', 'https://api.github.com/users/ricardoecosta/received_events', 0); +INSERT INTO `developer` VALUES (1198, 'imbriaco', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Imbriaco', NULL, '', 'Wake Forest, NC', NULL, NULL, NULL, NULL, 0, 0, 149, 1, 0, 0, 0, '2008-02-27T22:44:24Z', '2024-10-07T16:47:04Z', 'https://avatars.githubusercontent.com/u/1198?v=4', 'https://api.github.com/users/imbriaco', 'https://github.com/imbriaco', 'https://api.github.com/users/imbriaco/followers', 'https://api.github.com/users/imbriaco/following', 'https://api.github.com/users/imbriaco/gists', 'https://api.github.com/users/imbriaco/starred', 'https://api.github.com/users/imbriaco/repos', 'https://api.github.com/users/imbriaco/events', 'https://api.github.com/users/imbriaco/received_events', 0); +INSERT INTO `developer` VALUES (1199, 'mdeering', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Deering', 'Big League Studios Inc.', 'http://mdeering.com', 'Edmonton, Alberta, Canada', NULL, NULL, 'Ruby on Rails veteran with extensive technical leadership experience. Open source author and maintainer.', NULL, 0, 0, 96, 73, 0, 0, 0, '2008-02-27T22:44:46Z', '2024-09-28T15:50:35Z', 'https://avatars.githubusercontent.com/u/1199?v=4', 'https://api.github.com/users/mdeering', 'https://github.com/mdeering', 'https://api.github.com/users/mdeering/followers', 'https://api.github.com/users/mdeering/following', 'https://api.github.com/users/mdeering/gists', 'https://api.github.com/users/mdeering/starred', 'https://api.github.com/users/mdeering/repos', 'https://api.github.com/users/mdeering/events', 'https://api.github.com/users/mdeering/received_events', 0); +INSERT INTO `developer` VALUES (1200, 'jwinter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Winter', NULL, 'http://jwinter.github.io/blog/', 'Philadelphia, PA', NULL, NULL, NULL, NULL, 0, 0, 21, 2, 0, 0, 0, '2008-02-27T22:44:51Z', '2023-10-12T14:25:16Z', 'https://avatars.githubusercontent.com/u/1200?v=4', 'https://api.github.com/users/jwinter', 'https://github.com/jwinter', 'https://api.github.com/users/jwinter/followers', 'https://api.github.com/users/jwinter/following', 'https://api.github.com/users/jwinter/gists', 'https://api.github.com/users/jwinter/starred', 'https://api.github.com/users/jwinter/repos', 'https://api.github.com/users/jwinter/events', 'https://api.github.com/users/jwinter/received_events', 0); +INSERT INTO `developer` VALUES (1201, 'jdthomas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Thomas', NULL, 'https://coffeetocode.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 14, 0, 0, 0, '2008-02-27T22:45:18Z', '2024-10-12T23:14:44Z', 'https://avatars.githubusercontent.com/u/1201?v=4', 'https://api.github.com/users/jdthomas', 'https://github.com/jdthomas', 'https://api.github.com/users/jdthomas/followers', 'https://api.github.com/users/jdthomas/following', 'https://api.github.com/users/jdthomas/gists', 'https://api.github.com/users/jdthomas/starred', 'https://api.github.com/users/jdthomas/repos', 'https://api.github.com/users/jdthomas/events', 'https://api.github.com/users/jdthomas/received_events', 0); +INSERT INTO `developer` VALUES (1202, 'rapind', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Rapin', 'Founder at Curling I/O', 'http://curling.io', 'Ayr, ON, Canada', NULL, NULL, NULL, NULL, 0, 0, 46, 13, 0, 0, 0, '2008-02-27T22:45:19Z', '2024-09-20T23:21:16Z', 'https://avatars.githubusercontent.com/u/1202?v=4', 'https://api.github.com/users/rapind', 'https://github.com/rapind', 'https://api.github.com/users/rapind/followers', 'https://api.github.com/users/rapind/following', 'https://api.github.com/users/rapind/gists', 'https://api.github.com/users/rapind/starred', 'https://api.github.com/users/rapind/repos', 'https://api.github.com/users/rapind/events', 'https://api.github.com/users/rapind/received_events', 0); +INSERT INTO `developer` VALUES (1203, 'dgingrich', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Gingrich', NULL, '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-27T22:45:35Z', '2023-03-24T00:55:07Z', 'https://avatars.githubusercontent.com/u/1203?v=4', 'https://api.github.com/users/dgingrich', 'https://github.com/dgingrich', 'https://api.github.com/users/dgingrich/followers', 'https://api.github.com/users/dgingrich/following', 'https://api.github.com/users/dgingrich/gists', 'https://api.github.com/users/dgingrich/starred', 'https://api.github.com/users/dgingrich/repos', 'https://api.github.com/users/dgingrich/events', 'https://api.github.com/users/dgingrich/received_events', 0); +INSERT INTO `developer` VALUES (1204, 'jhenry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Henry', NULL, '', 'Orlando, FL', NULL, NULL, NULL, NULL, 0, 0, 25, 13, 0, 0, 0, '2008-02-27T22:45:35Z', '2024-08-14T21:41:56Z', 'https://avatars.githubusercontent.com/u/1204?v=4', 'https://api.github.com/users/jhenry', 'https://github.com/jhenry', 'https://api.github.com/users/jhenry/followers', 'https://api.github.com/users/jhenry/following', 'https://api.github.com/users/jhenry/gists', 'https://api.github.com/users/jhenry/starred', 'https://api.github.com/users/jhenry/repos', 'https://api.github.com/users/jhenry/events', 'https://api.github.com/users/jhenry/received_events', 0); +INSERT INTO `developer` VALUES (1205, 'divia', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T22:45:51Z', '2019-12-14T18:42:00Z', 'https://avatars.githubusercontent.com/u/1205?v=4', 'https://api.github.com/users/divia', 'https://github.com/divia', 'https://api.github.com/users/divia/followers', 'https://api.github.com/users/divia/following', 'https://api.github.com/users/divia/gists', 'https://api.github.com/users/divia/starred', 'https://api.github.com/users/divia/repos', 'https://api.github.com/users/divia/events', 'https://api.github.com/users/divia/received_events', 0); +INSERT INTO `developer` VALUES (1206, 'delano', 'C', 0, 0, 0, 0, 0, 0, 0, 'Delano', '@onetimesecret', 'https://delanotes.com/', 'Vancouver', NULL, 'true', 'Known for building healthy, high-performing teams and operationalizing novel products.\r\n\r\n@onetimesecret; Previously @AnimalFoodBank @qcitizen @grnspace @2hat', NULL, 0, 0, 143, 65, 0, 0, 0, '2008-02-27T22:46:05Z', '2024-10-29T22:42:36Z', 'https://avatars.githubusercontent.com/u/1206?v=4', 'https://api.github.com/users/delano', 'https://github.com/delano', 'https://api.github.com/users/delano/followers', 'https://api.github.com/users/delano/following', 'https://api.github.com/users/delano/gists', 'https://api.github.com/users/delano/starred', 'https://api.github.com/users/delano/repos', 'https://api.github.com/users/delano/events', 'https://api.github.com/users/delano/received_events', 0); +INSERT INTO `developer` VALUES (1207, 'tsmckelvey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom McKelvey', NULL, '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 22, 20, 0, 0, 0, '2008-02-27T22:46:28Z', '2023-01-05T13:41:00Z', 'https://avatars.githubusercontent.com/u/1207?v=4', 'https://api.github.com/users/tsmckelvey', 'https://github.com/tsmckelvey', 'https://api.github.com/users/tsmckelvey/followers', 'https://api.github.com/users/tsmckelvey/following', 'https://api.github.com/users/tsmckelvey/gists', 'https://api.github.com/users/tsmckelvey/starred', 'https://api.github.com/users/tsmckelvey/repos', 'https://api.github.com/users/tsmckelvey/events', 'https://api.github.com/users/tsmckelvey/received_events', 0); +INSERT INTO `developer` VALUES (1208, 'dlrust', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Rust', 'DevHub.com', 'http://dlrust.com', 'Seattle', 'dlrust@gmail.com', NULL, 'Design-focused technologist that leverages automation and brings platforms and APIs together seamlessly. My passion is prototyping new innovative products', NULL, 0, 0, 25, 46, 0, 0, 0, '2008-02-27T22:46:29Z', '2024-06-05T05:00:08Z', 'https://avatars.githubusercontent.com/u/1208?v=4', 'https://api.github.com/users/dlrust', 'https://github.com/dlrust', 'https://api.github.com/users/dlrust/followers', 'https://api.github.com/users/dlrust/following', 'https://api.github.com/users/dlrust/gists', 'https://api.github.com/users/dlrust/starred', 'https://api.github.com/users/dlrust/repos', 'https://api.github.com/users/dlrust/events', 'https://api.github.com/users/dlrust/received_events', 0); +INSERT INTO `developer` VALUES (1209, 'sverrejoh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sverre Johansen', 'Microsoft', 'http://sverrejoh.org', 'Oslo, Norway', 'sverre.johansen@gmail.com', NULL, NULL, NULL, 0, 0, 142, 35, 0, 0, 0, '2008-02-27T22:47:02Z', '2024-11-02T23:45:38Z', 'https://avatars.githubusercontent.com/u/1209?v=4', 'https://api.github.com/users/sverrejoh', 'https://github.com/sverrejoh', 'https://api.github.com/users/sverrejoh/followers', 'https://api.github.com/users/sverrejoh/following', 'https://api.github.com/users/sverrejoh/gists', 'https://api.github.com/users/sverrejoh/starred', 'https://api.github.com/users/sverrejoh/repos', 'https://api.github.com/users/sverrejoh/events', 'https://api.github.com/users/sverrejoh/received_events', 0); +INSERT INTO `developer` VALUES (1210, 'paulsmith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Smith', '@adhocteam ', 'https://pauladamsmith.com/', 'Evanston, IL', 'paulsmith@gmail.com', NULL, 'Co-Founder & Chief Technologist at Ad Hoc. HealthCare.gov rescue. Ex-EveryBlock, DNC, OFA 2012.', 'paulsmith', 0, 0, 246, 36, 0, 0, 0, '2008-02-27T22:47:11Z', '2024-10-09T15:15:19Z', 'https://avatars.githubusercontent.com/u/1210?v=4', 'https://api.github.com/users/paulsmith', 'https://github.com/paulsmith', 'https://api.github.com/users/paulsmith/followers', 'https://api.github.com/users/paulsmith/following', 'https://api.github.com/users/paulsmith/gists', 'https://api.github.com/users/paulsmith/starred', 'https://api.github.com/users/paulsmith/repos', 'https://api.github.com/users/paulsmith/events', 'https://api.github.com/users/paulsmith/received_events', 0); +INSERT INTO `developer` VALUES (1211, 'mlc', 'C', 0, 0, 0, 0, 0, 0, 0, 'mike castleman', '@teamexos', 'https://mlcastle.net/', 'New York, NY, US', NULL, NULL, 'full-stack mobile software engineer', NULL, 0, 0, 67, 15, 0, 0, 0, '2008-02-27T22:47:18Z', '2024-09-02T04:08:36Z', 'https://avatars.githubusercontent.com/u/1211?v=4', 'https://api.github.com/users/mlc', 'https://github.com/mlc', 'https://api.github.com/users/mlc/followers', 'https://api.github.com/users/mlc/following', 'https://api.github.com/users/mlc/gists', 'https://api.github.com/users/mlc/starred', 'https://api.github.com/users/mlc/repos', 'https://api.github.com/users/mlc/events', 'https://api.github.com/users/mlc/received_events', 0); +INSERT INTO `developer` VALUES (1212, 'bgianfo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Gianforcaro', '@10xGenomics', 'https://bjg.io', 'Seattle, WA', 'b.gianfo@gmail.com', NULL, NULL, 'bgianf', 0, 0, 197, 94, 0, 0, 0, '2008-02-27T22:47:28Z', '2024-07-09T17:46:49Z', 'https://avatars.githubusercontent.com/u/1212?v=4', 'https://api.github.com/users/bgianfo', 'https://github.com/bgianfo', 'https://api.github.com/users/bgianfo/followers', 'https://api.github.com/users/bgianfo/following', 'https://api.github.com/users/bgianfo/gists', 'https://api.github.com/users/bgianfo/starred', 'https://api.github.com/users/bgianfo/repos', 'https://api.github.com/users/bgianfo/events', 'https://api.github.com/users/bgianfo/received_events', 0); +INSERT INTO `developer` VALUES (1213, 'berry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Berry', 'Coöperatie DOON U.A.', 'www.doon.nu', 'Netherlands', NULL, NULL, NULL, NULL, 0, 0, 9, 28, 0, 0, 0, '2008-02-27T22:47:40Z', '2024-09-12T07:04:05Z', 'https://avatars.githubusercontent.com/u/1213?v=4', 'https://api.github.com/users/berry', 'https://github.com/berry', 'https://api.github.com/users/berry/followers', 'https://api.github.com/users/berry/following', 'https://api.github.com/users/berry/gists', 'https://api.github.com/users/berry/starred', 'https://api.github.com/users/berry/repos', 'https://api.github.com/users/berry/events', 'https://api.github.com/users/berry/received_events', 0); +INSERT INTO `developer` VALUES (1214, 'mparkatti', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Parkatti', NULL, '', 'Vancouver, BC', 'mparkatti@wildstabmedia.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T22:47:51Z', '2019-01-31T01:57:58Z', 'https://avatars.githubusercontent.com/u/1214?v=4', 'https://api.github.com/users/mparkatti', 'https://github.com/mparkatti', 'https://api.github.com/users/mparkatti/followers', 'https://api.github.com/users/mparkatti/following', 'https://api.github.com/users/mparkatti/gists', 'https://api.github.com/users/mparkatti/starred', 'https://api.github.com/users/mparkatti/repos', 'https://api.github.com/users/mparkatti/events', 'https://api.github.com/users/mparkatti/received_events', 0); +INSERT INTO `developer` VALUES (1215, 'ryanwilliams', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carbon Based Lifeform', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 119, 8, 0, 0, 0, '2008-02-27T22:47:56Z', '2024-09-24T22:29:36Z', 'https://avatars.githubusercontent.com/u/1215?v=4', 'https://api.github.com/users/ryanwilliams', 'https://github.com/ryanwilliams', 'https://api.github.com/users/ryanwilliams/followers', 'https://api.github.com/users/ryanwilliams/following', 'https://api.github.com/users/ryanwilliams/gists', 'https://api.github.com/users/ryanwilliams/starred', 'https://api.github.com/users/ryanwilliams/repos', 'https://api.github.com/users/ryanwilliams/events', 'https://api.github.com/users/ryanwilliams/received_events', 0); +INSERT INTO `developer` VALUES (1216, 'vetler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vetle Leinonen-Roeim', 'Reprice', '', 'Grimstad', 'vetle@roeim.net', NULL, 'CTO @ Reprice\r\nhttp://reprice.no ', 'vetler', 0, 0, 15, 7, 0, 0, 0, '2008-02-27T22:48:00Z', '2024-10-05T19:02:58Z', 'https://avatars.githubusercontent.com/u/1216?v=4', 'https://api.github.com/users/vetler', 'https://github.com/vetler', 'https://api.github.com/users/vetler/followers', 'https://api.github.com/users/vetler/following', 'https://api.github.com/users/vetler/gists', 'https://api.github.com/users/vetler/starred', 'https://api.github.com/users/vetler/repos', 'https://api.github.com/users/vetler/events', 'https://api.github.com/users/vetler/received_events', 0); +INSERT INTO `developer` VALUES (1217, 'alexspeller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Speller', 'Stateful Ltd', 'http://alexspeller.com', 'UK', NULL, NULL, NULL, NULL, 0, 0, 102, 15, 0, 0, 0, '2008-02-27T22:48:10Z', '2024-10-16T16:23:07Z', 'https://avatars.githubusercontent.com/u/1217?v=4', 'https://api.github.com/users/alexspeller', 'https://github.com/alexspeller', 'https://api.github.com/users/alexspeller/followers', 'https://api.github.com/users/alexspeller/following', 'https://api.github.com/users/alexspeller/gists', 'https://api.github.com/users/alexspeller/starred', 'https://api.github.com/users/alexspeller/repos', 'https://api.github.com/users/alexspeller/events', 'https://api.github.com/users/alexspeller/received_events', 0); +INSERT INTO `developer` VALUES (1218, 'ajturner', 'C', 3.0212752401889618, 0, 0, 0, 0, 0, 0, 'Andrew Turner', 'Esri', 'http://highearthorbit.com', 'Washington, DC', NULL, NULL, 'Director + CTO, @Esri R&D DC\r\n\r\nCharter member @OSGeo & OpenWebFoundation\r\n\r\n\r\nFocus: Geospatial, System Architecture, Open Gov', 'ajturner', 0, 0, 461, 218, 0, 0, 0, '2008-02-27T22:48:26Z', '2024-11-04T16:39:20Z', 'https://avatars.githubusercontent.com/u/1218?v=4', 'https://api.github.com/users/ajturner', 'https://github.com/ajturner', 'https://api.github.com/users/ajturner/followers', 'https://api.github.com/users/ajturner/following', 'https://api.github.com/users/ajturner/gists', 'https://api.github.com/users/ajturner/starred', 'https://api.github.com/users/ajturner/repos', 'https://api.github.com/users/ajturner/events', 'https://api.github.com/users/ajturner/received_events', 0); +INSERT INTO `developer` VALUES (1219, 'durdn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicola Paolucci', 'Paolucci Ventures', 'https://www.durdn.com', 'Amsterdam, The Netherlands', NULL, NULL, NULL, NULL, 0, 0, 91, 17, 0, 0, 0, '2008-02-27T22:48:38Z', '2024-08-09T21:29:24Z', 'https://avatars.githubusercontent.com/u/1219?v=4', 'https://api.github.com/users/durdn', 'https://github.com/durdn', 'https://api.github.com/users/durdn/followers', 'https://api.github.com/users/durdn/following', 'https://api.github.com/users/durdn/gists', 'https://api.github.com/users/durdn/starred', 'https://api.github.com/users/durdn/repos', 'https://api.github.com/users/durdn/events', 'https://api.github.com/users/durdn/received_events', 0); +INSERT INTO `developer` VALUES (1220, 'csshsh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Weber', NULL, 'https://gradientreturn.com', 'Berlin, Germany', NULL, NULL, NULL, 'csshsh', 0, 0, 35, 62, 0, 0, 0, '2008-02-27T22:48:58Z', '2024-10-31T21:43:14Z', 'https://avatars.githubusercontent.com/u/1220?v=4', 'https://api.github.com/users/csshsh', 'https://github.com/csshsh', 'https://api.github.com/users/csshsh/followers', 'https://api.github.com/users/csshsh/following', 'https://api.github.com/users/csshsh/gists', 'https://api.github.com/users/csshsh/starred', 'https://api.github.com/users/csshsh/repos', 'https://api.github.com/users/csshsh/events', 'https://api.github.com/users/csshsh/received_events', 0); +INSERT INTO `developer` VALUES (1221, 'levinalex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Levin Alexander', NULL, 'http://levinalex.net', 'Berlin', 'mail@levinalex.net', 'true', 'Ihr seid ja gar keine Vögel!', NULL, 0, 0, 50, 26, 0, 0, 0, '2008-02-27T22:49:12Z', '2023-06-18T15:02:21Z', 'https://avatars.githubusercontent.com/u/1221?v=4', 'https://api.github.com/users/levinalex', 'https://github.com/levinalex', 'https://api.github.com/users/levinalex/followers', 'https://api.github.com/users/levinalex/following', 'https://api.github.com/users/levinalex/gists', 'https://api.github.com/users/levinalex/starred', 'https://api.github.com/users/levinalex/repos', 'https://api.github.com/users/levinalex/events', 'https://api.github.com/users/levinalex/received_events', 0); +INSERT INTO `developer` VALUES (1222, 'avh4', 'C', 2.438225445072756, 0, 0, 0, 0, 0, 0, 'Aaron VonderHaar', '@avh4', 'https://fosstodon.org/@avh4', 'Black Lives Matter', 'gruen0aermel@gmail.com', NULL, 'https://avh4.net', NULL, 0, 0, 427, 145, 0, 0, 0, '2008-02-27T22:49:36Z', '2024-05-18T03:28:34Z', 'https://avatars.githubusercontent.com/u/1222?v=4', 'https://api.github.com/users/avh4', 'https://github.com/avh4', 'https://api.github.com/users/avh4/followers', 'https://api.github.com/users/avh4/following', 'https://api.github.com/users/avh4/gists', 'https://api.github.com/users/avh4/starred', 'https://api.github.com/users/avh4/repos', 'https://api.github.com/users/avh4/events', 'https://api.github.com/users/avh4/received_events', 0); +INSERT INTO `developer` VALUES (1223, 'myles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Myles Braithwaite', '@Poparide (perviously @livebungalow, @Fairtax, & @MiyS)', 'https://mylesb.ca', 'Toronto', 'me@mylesbraithwaite.com', NULL, NULL, NULL, 0, 0, 129, 15, 0, 0, 0, '2008-02-27T22:49:45Z', '2024-08-03T23:39:58Z', 'https://avatars.githubusercontent.com/u/1223?v=4', 'https://api.github.com/users/myles', 'https://github.com/myles', 'https://api.github.com/users/myles/followers', 'https://api.github.com/users/myles/following', 'https://api.github.com/users/myles/gists', 'https://api.github.com/users/myles/starred', 'https://api.github.com/users/myles/repos', 'https://api.github.com/users/myles/events', 'https://api.github.com/users/myles/received_events', 0); +INSERT INTO `developer` VALUES (1224, 'awt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Thorsen', 'Decaf Software', '', 'SF Bay Area', 'adam.thorsen@gmail.com', NULL, NULL, NULL, 0, 0, 11, 6, 0, 0, 0, '2008-02-27T22:49:50Z', '2023-07-13T15:42:14Z', 'https://avatars.githubusercontent.com/u/1224?v=4', 'https://api.github.com/users/awt', 'https://github.com/awt', 'https://api.github.com/users/awt/followers', 'https://api.github.com/users/awt/following', 'https://api.github.com/users/awt/gists', 'https://api.github.com/users/awt/starred', 'https://api.github.com/users/awt/repos', 'https://api.github.com/users/awt/events', 'https://api.github.com/users/awt/received_events', 0); +INSERT INTO `developer` VALUES (1225, 'jasonw22', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Wehmhoener', 'Cloudforest Design', 'http://cloudforestdesign.com', 'Santa Cruz, CA', 'jasonw22@gmail.com', NULL, NULL, NULL, 0, 0, 19, 12, 0, 0, 0, '2008-02-27T22:49:51Z', '2024-10-22T19:00:10Z', 'https://avatars.githubusercontent.com/u/1225?v=4', 'https://api.github.com/users/jasonw22', 'https://github.com/jasonw22', 'https://api.github.com/users/jasonw22/followers', 'https://api.github.com/users/jasonw22/following', 'https://api.github.com/users/jasonw22/gists', 'https://api.github.com/users/jasonw22/starred', 'https://api.github.com/users/jasonw22/repos', 'https://api.github.com/users/jasonw22/events', 'https://api.github.com/users/jasonw22/received_events', 0); +INSERT INTO `developer` VALUES (1226, 'jwegis', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Wegis', NULL, 'https://jwegis.github.io', '未知', NULL, 'true', 'Backend Software Engineer', 'jwegis', 0, 0, 48, 51, 0, 0, 0, '2008-02-27T22:49:59Z', '2024-08-27T23:45:17Z', 'https://avatars.githubusercontent.com/u/1226?v=4', 'https://api.github.com/users/jwegis', 'https://github.com/jwegis', 'https://api.github.com/users/jwegis/followers', 'https://api.github.com/users/jwegis/following', 'https://api.github.com/users/jwegis/gists', 'https://api.github.com/users/jwegis/starred', 'https://api.github.com/users/jwegis/repos', 'https://api.github.com/users/jwegis/events', 'https://api.github.com/users/jwegis/received_events', 0); +INSERT INTO `developer` VALUES (1227, 'gkazulak', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T22:50:08Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1227?v=4', 'https://api.github.com/users/gkazulak', 'https://github.com/gkazulak', 'https://api.github.com/users/gkazulak/followers', 'https://api.github.com/users/gkazulak/following', 'https://api.github.com/users/gkazulak/gists', 'https://api.github.com/users/gkazulak/starred', 'https://api.github.com/users/gkazulak/repos', 'https://api.github.com/users/gkazulak/events', 'https://api.github.com/users/gkazulak/received_events', 0); +INSERT INTO `developer` VALUES (1228, 'ericflo', 'C', 10.155060968669604, 0, 0, 0, 0, 0, 0, 'Eric Florenzano', 'N/A', 'http://www.eflorenzano.com/', 'San Francisco, CA', 'floguy@gmail.com', NULL, NULL, 'ericflo', 0, 0, 877, 230, 0, 0, 0, '2008-02-27T22:50:28Z', '2024-10-22T21:56:48Z', 'https://avatars.githubusercontent.com/u/1228?v=4', 'https://api.github.com/users/ericflo', 'https://github.com/ericflo', 'https://api.github.com/users/ericflo/followers', 'https://api.github.com/users/ericflo/following', 'https://api.github.com/users/ericflo/gists', 'https://api.github.com/users/ericflo/starred', 'https://api.github.com/users/ericflo/repos', 'https://api.github.com/users/ericflo/events', 'https://api.github.com/users/ericflo/received_events', 0); +INSERT INTO `developer` VALUES (1229, 'paulca', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Campbell', 'Tito', 'https://ti.to', 'Dublin, Ireland', 'paul@rslw.com', NULL, 'Founder of @teamtito', 'paulca', 0, 0, 214, 20, 0, 0, 0, '2008-02-27T22:50:56Z', '2024-11-03T16:24:08Z', 'https://avatars.githubusercontent.com/u/1229?v=4', 'https://api.github.com/users/paulca', 'https://github.com/paulca', 'https://api.github.com/users/paulca/followers', 'https://api.github.com/users/paulca/following', 'https://api.github.com/users/paulca/gists', 'https://api.github.com/users/paulca/starred', 'https://api.github.com/users/paulca/repos', 'https://api.github.com/users/paulca/events', 'https://api.github.com/users/paulca/received_events', 0); +INSERT INTO `developer` VALUES (1230, 'yarox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adrian Martin', 'The Wonder Lab', '', 'Paradise', 'adrianmartinparra@gmail.com', 'true', NULL, NULL, 0, 0, 26, 22, 0, 0, 0, '2008-02-27T22:51:01Z', '2024-10-09T12:02:16Z', 'https://avatars.githubusercontent.com/u/1230?v=4', 'https://api.github.com/users/yarox', 'https://github.com/yarox', 'https://api.github.com/users/yarox/followers', 'https://api.github.com/users/yarox/following', 'https://api.github.com/users/yarox/gists', 'https://api.github.com/users/yarox/starred', 'https://api.github.com/users/yarox/repos', 'https://api.github.com/users/yarox/events', 'https://api.github.com/users/yarox/received_events', 0); +INSERT INTO `developer` VALUES (1231, 'prb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Brown', 'Multifarious, Inc.', 'http://mult.ifario.us', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 64, 30, 0, 0, 0, '2008-02-27T22:51:06Z', '2024-10-28T04:47:59Z', 'https://avatars.githubusercontent.com/u/1231?v=4', 'https://api.github.com/users/prb', 'https://github.com/prb', 'https://api.github.com/users/prb/followers', 'https://api.github.com/users/prb/following', 'https://api.github.com/users/prb/gists', 'https://api.github.com/users/prb/starred', 'https://api.github.com/users/prb/repos', 'https://api.github.com/users/prb/events', 'https://api.github.com/users/prb/received_events', 0); +INSERT INTO `developer` VALUES (1232, 'mindreframer', 'C', 0.3804026387802636, 0, 0, 0, 0, 0, 0, 'Roman Heinrich', NULL, 'https://mindreframer.com', 'Germany, Berlin', NULL, 'true', 'Golang / Elixir / Ruby / Clojure / React.js / Devops', NULL, 0, 0, 307, 310, 0, 0, 0, '2008-02-27T22:51:13Z', '2024-07-05T18:01:11Z', 'https://avatars.githubusercontent.com/u/1232?v=4', 'https://api.github.com/users/mindreframer', 'https://github.com/mindreframer', 'https://api.github.com/users/mindreframer/followers', 'https://api.github.com/users/mindreframer/following', 'https://api.github.com/users/mindreframer/gists', 'https://api.github.com/users/mindreframer/starred', 'https://api.github.com/users/mindreframer/repos', 'https://api.github.com/users/mindreframer/events', 'https://api.github.com/users/mindreframer/received_events', 0); +INSERT INTO `developer` VALUES (1234, 'cthachuk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Thachuk', 'Paul G. Allen School of Computer Science & Engineering, University of Washington', 'https://thachuk.com', 'Seattle, WA, USA', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-27T22:51:52Z', '2024-10-13T11:16:25Z', 'https://avatars.githubusercontent.com/u/1234?v=4', 'https://api.github.com/users/cthachuk', 'https://github.com/cthachuk', 'https://api.github.com/users/cthachuk/followers', 'https://api.github.com/users/cthachuk/following', 'https://api.github.com/users/cthachuk/gists', 'https://api.github.com/users/cthachuk/starred', 'https://api.github.com/users/cthachuk/repos', 'https://api.github.com/users/cthachuk/events', 'https://api.github.com/users/cthachuk/received_events', 0); +INSERT INTO `developer` VALUES (1235, 'hugh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hugh Morgenbesser', NULL, '', '未知', 'hyoogle@gmail.com', NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-02-27T22:52:17Z', '2024-09-20T16:56:54Z', 'https://avatars.githubusercontent.com/u/1235?v=4', 'https://api.github.com/users/hugh', 'https://github.com/hugh', 'https://api.github.com/users/hugh/followers', 'https://api.github.com/users/hugh/following', 'https://api.github.com/users/hugh/gists', 'https://api.github.com/users/hugh/starred', 'https://api.github.com/users/hugh/repos', 'https://api.github.com/users/hugh/events', 'https://api.github.com/users/hugh/received_events', 0); +INSERT INTO `developer` VALUES (1236, 'creiht', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chuck Thier', 'H-E-B', '', 'San Antonio, TX', NULL, NULL, 'Principle Engineer', NULL, 0, 0, 36, 2, 0, 0, 0, '2008-02-27T22:52:27Z', '2024-10-21T22:47:57Z', 'https://avatars.githubusercontent.com/u/1236?v=4', 'https://api.github.com/users/creiht', 'https://github.com/creiht', 'https://api.github.com/users/creiht/followers', 'https://api.github.com/users/creiht/following', 'https://api.github.com/users/creiht/gists', 'https://api.github.com/users/creiht/starred', 'https://api.github.com/users/creiht/repos', 'https://api.github.com/users/creiht/events', 'https://api.github.com/users/creiht/received_events', 0); +INSERT INTO `developer` VALUES (1237, 'durbin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Neil Durbin', NULL, 'http://durb.in', 'Los Angeles', 'neildurbin@gmail.com', NULL, NULL, NULL, 0, 0, 30, 5, 0, 0, 0, '2008-02-27T22:52:47Z', '2024-05-05T16:50:08Z', 'https://avatars.githubusercontent.com/u/1237?v=4', 'https://api.github.com/users/durbin', 'https://github.com/durbin', 'https://api.github.com/users/durbin/followers', 'https://api.github.com/users/durbin/following', 'https://api.github.com/users/durbin/gists', 'https://api.github.com/users/durbin/starred', 'https://api.github.com/users/durbin/repos', 'https://api.github.com/users/durbin/events', 'https://api.github.com/users/durbin/received_events', 0); +INSERT INTO `developer` VALUES (1238, 'mmetzger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Metzger', NULL, '', 'Dallas, TX', NULL, NULL, NULL, NULL, 0, 0, 24, 1, 0, 0, 0, '2008-02-27T22:53:08Z', '2024-10-24T21:21:49Z', 'https://avatars.githubusercontent.com/u/1238?v=4', 'https://api.github.com/users/mmetzger', 'https://github.com/mmetzger', 'https://api.github.com/users/mmetzger/followers', 'https://api.github.com/users/mmetzger/following', 'https://api.github.com/users/mmetzger/gists', 'https://api.github.com/users/mmetzger/starred', 'https://api.github.com/users/mmetzger/repos', 'https://api.github.com/users/mmetzger/events', 'https://api.github.com/users/mmetzger/received_events', 0); +INSERT INTO `developer` VALUES (1239, 'conejo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rich Cox', NULL, '', 'Phoenix, AZ', 'conejo2005@gmail.com', NULL, NULL, NULL, 0, 0, 6, 3, 0, 0, 0, '2008-02-27T22:53:12Z', '2022-12-13T21:02:08Z', 'https://avatars.githubusercontent.com/u/1239?v=4', 'https://api.github.com/users/conejo', 'https://github.com/conejo', 'https://api.github.com/users/conejo/followers', 'https://api.github.com/users/conejo/following', 'https://api.github.com/users/conejo/gists', 'https://api.github.com/users/conejo/starred', 'https://api.github.com/users/conejo/repos', 'https://api.github.com/users/conejo/events', 'https://api.github.com/users/conejo/received_events', 0); +INSERT INTO `developer` VALUES (1240, 'bcbroom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Broom', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-27T22:53:12Z', '2022-11-23T04:30:08Z', 'https://avatars.githubusercontent.com/u/1240?v=4', 'https://api.github.com/users/bcbroom', 'https://github.com/bcbroom', 'https://api.github.com/users/bcbroom/followers', 'https://api.github.com/users/bcbroom/following', 'https://api.github.com/users/bcbroom/gists', 'https://api.github.com/users/bcbroom/starred', 'https://api.github.com/users/bcbroom/repos', 'https://api.github.com/users/bcbroom/events', 'https://api.github.com/users/bcbroom/received_events', 0); +INSERT INTO `developer` VALUES (1242, 'bcg', 'C', 0, 0, 0, 0, 92, 3, 0, 'Brenden Grace', 'Fractional CTO', 'f-cto.com', 'Charlottesville VA', 'brenden.grace@gmail.com', NULL, 'Hey there! \r\n\r\nf-cto.com', NULL, 0, 0, 40, 11, 0, 0, 0, '2008-02-27T22:53:25Z', '2024-09-27T17:32:25Z', 'https://avatars.githubusercontent.com/u/1242?v=4', 'https://api.github.com/users/bcg', 'https://github.com/bcg', 'https://api.github.com/users/bcg/followers', 'https://api.github.com/users/bcg/following', 'https://api.github.com/users/bcg/gists', 'https://api.github.com/users/bcg/starred', 'https://api.github.com/users/bcg/repos', 'https://api.github.com/users/bcg/events', 'https://api.github.com/users/bcg/received_events', 0); +INSERT INTO `developer` VALUES (1243, 'floyd', 'C', 0, 0, 0, 0, 0, 0, 0, 'floyd', 'Tix Inc.', '', '未知', 'g.lecompt.e@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T22:53:25Z', '2019-06-04T23:55:45Z', 'https://avatars.githubusercontent.com/u/1243?v=4', 'https://api.github.com/users/floyd', 'https://github.com/floyd', 'https://api.github.com/users/floyd/followers', 'https://api.github.com/users/floyd/following', 'https://api.github.com/users/floyd/gists', 'https://api.github.com/users/floyd/starred', 'https://api.github.com/users/floyd/repos', 'https://api.github.com/users/floyd/events', 'https://api.github.com/users/floyd/received_events', 0); +INSERT INTO `developer` VALUES (1244, 'unabomber', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T22:53:54Z', '2022-09-06T19:09:17Z', 'https://avatars.githubusercontent.com/u/1244?v=4', 'https://api.github.com/users/unabomber', 'https://github.com/unabomber', 'https://api.github.com/users/unabomber/followers', 'https://api.github.com/users/unabomber/following', 'https://api.github.com/users/unabomber/gists', 'https://api.github.com/users/unabomber/starred', 'https://api.github.com/users/unabomber/repos', 'https://api.github.com/users/unabomber/events', 'https://api.github.com/users/unabomber/received_events', 0); +INSERT INTO `developer` VALUES (1246, 'xwmx', 'C', 0.6033334427952834, 0, 0, 0, 0, 0, 0, 'William Melody', NULL, 'www.williammelody.com', 'Santa Barbara, California', 'hi@williammelody.com', 'true', '|/|//|/| • ☠️💖 ☠️💖', NULL, 0, 0, 320, 27, 0, 0, 0, '2008-02-27T22:54:17Z', '2024-10-31T01:53:02Z', 'https://avatars.githubusercontent.com/u/1246?v=4', 'https://api.github.com/users/xwmx', 'https://github.com/xwmx', 'https://api.github.com/users/xwmx/followers', 'https://api.github.com/users/xwmx/following', 'https://api.github.com/users/xwmx/gists', 'https://api.github.com/users/xwmx/starred', 'https://api.github.com/users/xwmx/repos', 'https://api.github.com/users/xwmx/events', 'https://api.github.com/users/xwmx/received_events', 0); +INSERT INTO `developer` VALUES (1247, 'engie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen English', NULL, 'https://fb.com/stephenenglish', '未知', 'steve@secomputing.co.uk', NULL, NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2008-02-27T22:54:23Z', '2024-10-30T02:09:56Z', 'https://avatars.githubusercontent.com/u/1247?v=4', 'https://api.github.com/users/engie', 'https://github.com/engie', 'https://api.github.com/users/engie/followers', 'https://api.github.com/users/engie/following', 'https://api.github.com/users/engie/gists', 'https://api.github.com/users/engie/starred', 'https://api.github.com/users/engie/repos', 'https://api.github.com/users/engie/events', 'https://api.github.com/users/engie/received_events', 0); +INSERT INTO `developer` VALUES (1248, 'keseldude', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Keselman', NULL, '', '未知', 'keselman.michael@gmail.com', NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-02-27T22:54:26Z', '2023-10-04T16:02:00Z', 'https://avatars.githubusercontent.com/u/1248?v=4', 'https://api.github.com/users/keseldude', 'https://github.com/keseldude', 'https://api.github.com/users/keseldude/followers', 'https://api.github.com/users/keseldude/following', 'https://api.github.com/users/keseldude/gists', 'https://api.github.com/users/keseldude/starred', 'https://api.github.com/users/keseldude/repos', 'https://api.github.com/users/keseldude/events', 'https://api.github.com/users/keseldude/received_events', 0); +INSERT INTO `developer` VALUES (1249, 'godber', 'C', 0, 0, 0, 0, 0, 0, 0, 'Austin Godber', 'Terascope', 'http://uberhip.com', 'Mesa, AZ', 'godber@uberhip.com', NULL, 'Linux/Python/NodeJS Guy\r\n\r\nCurrently helping run @terascope, previously ran @desertpy ... worked on Mars a bit too.', NULL, 0, 0, 85, 51, 0, 0, 0, '2008-02-27T22:54:43Z', '2024-10-16T22:50:16Z', 'https://avatars.githubusercontent.com/u/1249?v=4', 'https://api.github.com/users/godber', 'https://github.com/godber', 'https://api.github.com/users/godber/followers', 'https://api.github.com/users/godber/following', 'https://api.github.com/users/godber/gists', 'https://api.github.com/users/godber/starred', 'https://api.github.com/users/godber/repos', 'https://api.github.com/users/godber/events', 'https://api.github.com/users/godber/received_events', 0); +INSERT INTO `developer` VALUES (1250, 'amattsmith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Smith', NULL, 'http://smith.codes', 'Mount Juliet, TN', 'matt@smith.codes', NULL, NULL, NULL, 0, 0, 30, 30, 0, 0, 0, '2008-02-27T22:54:50Z', '2024-10-21T15:52:21Z', 'https://avatars.githubusercontent.com/u/1250?v=4', 'https://api.github.com/users/amattsmith', 'https://github.com/amattsmith', 'https://api.github.com/users/amattsmith/followers', 'https://api.github.com/users/amattsmith/following', 'https://api.github.com/users/amattsmith/gists', 'https://api.github.com/users/amattsmith/starred', 'https://api.github.com/users/amattsmith/repos', 'https://api.github.com/users/amattsmith/events', 'https://api.github.com/users/amattsmith/received_events', 0); +INSERT INTO `developer` VALUES (1251, 'kendall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kendall Clark', '@stardog-union ', 'http://stardog.com/', 'Washington, DC', NULL, NULL, 'A person, spouse, parent, founder.', NULL, 0, 0, 27, 10, 0, 0, 0, '2008-02-27T22:54:59Z', '2024-08-05T18:26:12Z', 'https://avatars.githubusercontent.com/u/1251?v=4', 'https://api.github.com/users/kendall', 'https://github.com/kendall', 'https://api.github.com/users/kendall/followers', 'https://api.github.com/users/kendall/following', 'https://api.github.com/users/kendall/gists', 'https://api.github.com/users/kendall/starred', 'https://api.github.com/users/kendall/repos', 'https://api.github.com/users/kendall/events', 'https://api.github.com/users/kendall/received_events', 0); +INSERT INTO `developer` VALUES (1252, 'alinford', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Linford', NULL, '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-27T22:55:02Z', '2022-07-16T12:43:07Z', 'https://avatars.githubusercontent.com/u/1252?v=4', 'https://api.github.com/users/alinford', 'https://github.com/alinford', 'https://api.github.com/users/alinford/followers', 'https://api.github.com/users/alinford/following', 'https://api.github.com/users/alinford/gists', 'https://api.github.com/users/alinford/starred', 'https://api.github.com/users/alinford/repos', 'https://api.github.com/users/alinford/events', 'https://api.github.com/users/alinford/received_events', 0); +INSERT INTO `developer` VALUES (1253, 'qartis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Fuller', 'Google', 'http://blog.qartis.com', 'Mountain View', 'qartis@gmail.com', NULL, NULL, NULL, 0, 0, 34, 5, 0, 0, 0, '2008-02-27T22:55:05Z', '2024-08-07T18:26:29Z', 'https://avatars.githubusercontent.com/u/1253?v=4', 'https://api.github.com/users/qartis', 'https://github.com/qartis', 'https://api.github.com/users/qartis/followers', 'https://api.github.com/users/qartis/following', 'https://api.github.com/users/qartis/gists', 'https://api.github.com/users/qartis/starred', 'https://api.github.com/users/qartis/repos', 'https://api.github.com/users/qartis/events', 'https://api.github.com/users/qartis/received_events', 0); +INSERT INTO `developer` VALUES (1254, 'naturalethic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Kifer', 'Independent', 'https://moonlight.pm', '未知', 'joshua@moonlight.pm', 'true', NULL, NULL, 0, 0, 22, 9, 0, 0, 0, '2008-02-27T22:55:36Z', '2024-03-04T14:08:27Z', 'https://avatars.githubusercontent.com/u/1254?v=4', 'https://api.github.com/users/naturalethic', 'https://github.com/naturalethic', 'https://api.github.com/users/naturalethic/followers', 'https://api.github.com/users/naturalethic/following', 'https://api.github.com/users/naturalethic/gists', 'https://api.github.com/users/naturalethic/starred', 'https://api.github.com/users/naturalethic/repos', 'https://api.github.com/users/naturalethic/events', 'https://api.github.com/users/naturalethic/received_events', 0); +INSERT INTO `developer` VALUES (1255, 'jzting', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Ting', NULL, 'http://jzlabs.com', '未知', 'jzting@gmail.com', NULL, NULL, NULL, 0, 0, 45, 12, 0, 0, 0, '2008-02-27T22:55:45Z', '2024-01-09T17:04:49Z', 'https://avatars.githubusercontent.com/u/1255?v=4', 'https://api.github.com/users/jzting', 'https://github.com/jzting', 'https://api.github.com/users/jzting/followers', 'https://api.github.com/users/jzting/following', 'https://api.github.com/users/jzting/gists', 'https://api.github.com/users/jzting/starred', 'https://api.github.com/users/jzting/repos', 'https://api.github.com/users/jzting/events', 'https://api.github.com/users/jzting/received_events', 0); +INSERT INTO `developer` VALUES (1256, 'dougal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Douglas F Shearer', NULL, 'https://douglasfshearer.com/', 'Edinburgh, UK', NULL, 'true', 'Head of Engineering at Wondr Medical\r\n \r\n', NULL, 0, 0, 36, 2, 0, 0, 0, '2008-02-27T22:55:55Z', '2024-09-22T11:24:08Z', 'https://avatars.githubusercontent.com/u/1256?v=4', 'https://api.github.com/users/dougal', 'https://github.com/dougal', 'https://api.github.com/users/dougal/followers', 'https://api.github.com/users/dougal/following', 'https://api.github.com/users/dougal/gists', 'https://api.github.com/users/dougal/starred', 'https://api.github.com/users/dougal/repos', 'https://api.github.com/users/dougal/events', 'https://api.github.com/users/dougal/received_events', 0); +INSERT INTO `developer` VALUES (1257, 'ph0rque', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Shindyapin', 'tada cafe', '', 'Bridgewater, VA', 'andrei.shindyapin@gmail.com', NULL, NULL, NULL, 0, 0, 22, 12, 0, 0, 0, '2008-02-27T22:56:43Z', '2024-09-20T02:34:59Z', 'https://avatars.githubusercontent.com/u/1257?v=4', 'https://api.github.com/users/ph0rque', 'https://github.com/ph0rque', 'https://api.github.com/users/ph0rque/followers', 'https://api.github.com/users/ph0rque/following', 'https://api.github.com/users/ph0rque/gists', 'https://api.github.com/users/ph0rque/starred', 'https://api.github.com/users/ph0rque/repos', 'https://api.github.com/users/ph0rque/events', 'https://api.github.com/users/ph0rque/received_events', 0); +INSERT INTO `developer` VALUES (1258, 'bryanveloso', 'C', 6.828247431830071, 0, 0, 0, 0, 0, 0, 'Bryan Veloso', '@omnypro', 'http://avalonstar.com', 'Los Angeles, CA', 'bryan@velo.so', NULL, 'Designer & Developer Hybrid. Gamer & Content Creator, @avalonstar.', 'avalonstar', 0, 0, 683, 161, 0, 0, 0, '2008-02-27T22:57:03Z', '2024-10-28T01:25:57Z', 'https://avatars.githubusercontent.com/u/1258?v=4', 'https://api.github.com/users/bryanveloso', 'https://github.com/bryanveloso', 'https://api.github.com/users/bryanveloso/followers', 'https://api.github.com/users/bryanveloso/following', 'https://api.github.com/users/bryanveloso/gists', 'https://api.github.com/users/bryanveloso/starred', 'https://api.github.com/users/bryanveloso/repos', 'https://api.github.com/users/bryanveloso/events', 'https://api.github.com/users/bryanveloso/received_events', 0); +INSERT INTO `developer` VALUES (1259, 'britt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Britt Crawford', 'MongoDB', 'http://brittcrawford.com', 'Somewhere in Oregon', NULL, NULL, NULL, NULL, 0, 0, 30, 9, 0, 0, 0, '2008-02-27T22:57:17Z', '2024-09-20T16:57:58Z', 'https://avatars.githubusercontent.com/u/1259?v=4', 'https://api.github.com/users/britt', 'https://github.com/britt', 'https://api.github.com/users/britt/followers', 'https://api.github.com/users/britt/following', 'https://api.github.com/users/britt/gists', 'https://api.github.com/users/britt/starred', 'https://api.github.com/users/britt/repos', 'https://api.github.com/users/britt/events', 'https://api.github.com/users/britt/received_events', 0); +INSERT INTO `developer` VALUES (1260, 'damog', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Moreno', '@DeepLcom', 'https://damog.net', 'Amsterdam, NL', 'damog@damog.net', NULL, '#neverstop', NULL, 0, 0, 151, 120, 0, 0, 0, '2008-02-27T22:57:32Z', '2023-03-25T10:00:21Z', 'https://avatars.githubusercontent.com/u/1260?v=4', 'https://api.github.com/users/damog', 'https://github.com/damog', 'https://api.github.com/users/damog/followers', 'https://api.github.com/users/damog/following', 'https://api.github.com/users/damog/gists', 'https://api.github.com/users/damog/starred', 'https://api.github.com/users/damog/repos', 'https://api.github.com/users/damog/events', 'https://api.github.com/users/damog/received_events', 0); +INSERT INTO `developer` VALUES (1261, 'Townk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thiago Alves', 'Amazon', 'http://www.thiagoalves.com.br', 'Orlando, FL', 'thiago@rapinialves.com', NULL, NULL, NULL, 0, 0, 21, 3, 0, 0, 0, '2008-02-27T22:57:43Z', '2024-10-22T07:37:12Z', 'https://avatars.githubusercontent.com/u/1261?v=4', 'https://api.github.com/users/Townk', 'https://github.com/Townk', 'https://api.github.com/users/Townk/followers', 'https://api.github.com/users/Townk/following', 'https://api.github.com/users/Townk/gists', 'https://api.github.com/users/Townk/starred', 'https://api.github.com/users/Townk/repos', 'https://api.github.com/users/Townk/events', 'https://api.github.com/users/Townk/received_events', 0); +INSERT INTO `developer` VALUES (1262, 'bobbyrward', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bobby R. Ward', '@crunchbase', 'http://ohnozombi.es', 'Austin, TX', 'bobbyrward@gmail.com', 'true', NULL, NULL, 0, 0, 12, 7, 0, 0, 0, '2008-02-27T22:58:08Z', '2024-09-13T02:18:38Z', 'https://avatars.githubusercontent.com/u/1262?v=4', 'https://api.github.com/users/bobbyrward', 'https://github.com/bobbyrward', 'https://api.github.com/users/bobbyrward/followers', 'https://api.github.com/users/bobbyrward/following', 'https://api.github.com/users/bobbyrward/gists', 'https://api.github.com/users/bobbyrward/starred', 'https://api.github.com/users/bobbyrward/repos', 'https://api.github.com/users/bobbyrward/events', 'https://api.github.com/users/bobbyrward/received_events', 0); +INSERT INTO `developer` VALUES (1263, 'dfdeshom', 'C', 0, 0, 0, 0, 0, 0, 0, 'didier deshommes', NULL, '', '未知', 'dfdeshom+github@gmail.com', 'true', NULL, NULL, 0, 0, 25, 7, 0, 0, 0, '2008-02-27T22:58:31Z', '2023-12-28T17:16:28Z', 'https://avatars.githubusercontent.com/u/1263?v=4', 'https://api.github.com/users/dfdeshom', 'https://github.com/dfdeshom', 'https://api.github.com/users/dfdeshom/followers', 'https://api.github.com/users/dfdeshom/following', 'https://api.github.com/users/dfdeshom/gists', 'https://api.github.com/users/dfdeshom/starred', 'https://api.github.com/users/dfdeshom/repos', 'https://api.github.com/users/dfdeshom/events', 'https://api.github.com/users/dfdeshom/received_events', 0); +INSERT INTO `developer` VALUES (1264, 'cardmagic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lucas Carlson', 'Author of Ruby Cookbook, CEO of AppFog (acquired by CenturyLink)', 'https://www.lucascarlson.net/', 'San Diego, CA', NULL, 'true', 'craftsmanfounder.com', NULL, 0, 0, 178, 12, 0, 0, 0, '2008-02-27T22:59:04Z', '2024-10-10T21:01:42Z', 'https://avatars.githubusercontent.com/u/1264?v=4', 'https://api.github.com/users/cardmagic', 'https://github.com/cardmagic', 'https://api.github.com/users/cardmagic/followers', 'https://api.github.com/users/cardmagic/following', 'https://api.github.com/users/cardmagic/gists', 'https://api.github.com/users/cardmagic/starred', 'https://api.github.com/users/cardmagic/repos', 'https://api.github.com/users/cardmagic/events', 'https://api.github.com/users/cardmagic/received_events', 0); +INSERT INTO `developer` VALUES (1265, 'cbx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clemens', NULL, '', 'Austria', NULL, NULL, NULL, NULL, 0, 0, 43, 148, 0, 0, 0, '2008-02-27T22:59:46Z', '2024-11-04T09:24:07Z', 'https://avatars.githubusercontent.com/u/1265?v=4', 'https://api.github.com/users/cbx', 'https://github.com/cbx', 'https://api.github.com/users/cbx/followers', 'https://api.github.com/users/cbx/following', 'https://api.github.com/users/cbx/gists', 'https://api.github.com/users/cbx/starred', 'https://api.github.com/users/cbx/repos', 'https://api.github.com/users/cbx/events', 'https://api.github.com/users/cbx/received_events', 0); +INSERT INTO `developer` VALUES (1266, 'ianfieldhouse', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Fieldhouse', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2008-02-27T23:00:30Z', '2024-09-11T13:33:06Z', 'https://avatars.githubusercontent.com/u/1266?v=4', 'https://api.github.com/users/ianfieldhouse', 'https://github.com/ianfieldhouse', 'https://api.github.com/users/ianfieldhouse/followers', 'https://api.github.com/users/ianfieldhouse/following', 'https://api.github.com/users/ianfieldhouse/gists', 'https://api.github.com/users/ianfieldhouse/starred', 'https://api.github.com/users/ianfieldhouse/repos', 'https://api.github.com/users/ianfieldhouse/events', 'https://api.github.com/users/ianfieldhouse/received_events', 0); +INSERT INTO `developer` VALUES (1267, 'bear', 'C', 4.118780736878291, 0, 0, 0, 0, 0, 0, 'Mike Taylor', 'CircleCI', 'https://bear.im', 'Philadelphia, PA', 'bear@bear.im', NULL, 'Security and Compliance\r\nSenior Staff Engineer\r\n@CircleCI\r\n', NULL, 0, 0, 525, 8, 0, 0, 0, '2008-02-27T23:00:31Z', '2024-10-26T16:09:36Z', 'https://avatars.githubusercontent.com/u/1267?v=4', 'https://api.github.com/users/bear', 'https://github.com/bear', 'https://api.github.com/users/bear/followers', 'https://api.github.com/users/bear/following', 'https://api.github.com/users/bear/gists', 'https://api.github.com/users/bear/starred', 'https://api.github.com/users/bear/repos', 'https://api.github.com/users/bear/events', 'https://api.github.com/users/bear/received_events', 0); +INSERT INTO `developer` VALUES (1268, 'quamen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gareth Townsend', '@square ', 'http://www.garethtownsend.info', 'Melbourne, Australia', NULL, NULL, NULL, NULL, 0, 0, 67, 19, 0, 0, 0, '2008-02-27T23:00:55Z', '2024-07-08T23:46:20Z', 'https://avatars.githubusercontent.com/u/1268?v=4', 'https://api.github.com/users/quamen', 'https://github.com/quamen', 'https://api.github.com/users/quamen/followers', 'https://api.github.com/users/quamen/following', 'https://api.github.com/users/quamen/gists', 'https://api.github.com/users/quamen/starred', 'https://api.github.com/users/quamen/repos', 'https://api.github.com/users/quamen/events', 'https://api.github.com/users/quamen/received_events', 0); +INSERT INTO `developer` VALUES (1269, 'fa', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-27T23:01:44Z', '2020-11-22T17:51:47Z', 'https://avatars.githubusercontent.com/u/1269?v=4', 'https://api.github.com/users/fa', 'https://github.com/fa', 'https://api.github.com/users/fa/followers', 'https://api.github.com/users/fa/following', 'https://api.github.com/users/fa/gists', 'https://api.github.com/users/fa/starred', 'https://api.github.com/users/fa/repos', 'https://api.github.com/users/fa/events', 'https://api.github.com/users/fa/received_events', 0); +INSERT INTO `developer` VALUES (1270, 'haberman', 'C', 5.3706229440395585, 0, 0, 0, 0, 0, 0, 'Joshua Haberman', 'Google', 'http://blog.reverberate.org', 'Seattle, WA', 'jhaberman@gmail.com', NULL, NULL, NULL, 0, 0, 598, 2, 0, 0, 0, '2008-02-27T23:02:17Z', '2024-10-12T05:53:54Z', 'https://avatars.githubusercontent.com/u/1270?v=4', 'https://api.github.com/users/haberman', 'https://github.com/haberman', 'https://api.github.com/users/haberman/followers', 'https://api.github.com/users/haberman/following', 'https://api.github.com/users/haberman/gists', 'https://api.github.com/users/haberman/starred', 'https://api.github.com/users/haberman/repos', 'https://api.github.com/users/haberman/events', 'https://api.github.com/users/haberman/received_events', 0); +INSERT INTO `developer` VALUES (1271, 'joaomarcusc', 'C', 0, 0, 0, 0, 0, 0, 0, 'João Marcus', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-27T23:03:55Z', '2022-07-19T20:46:42Z', 'https://avatars.githubusercontent.com/u/1271?v=4', 'https://api.github.com/users/joaomarcusc', 'https://github.com/joaomarcusc', 'https://api.github.com/users/joaomarcusc/followers', 'https://api.github.com/users/joaomarcusc/following', 'https://api.github.com/users/joaomarcusc/gists', 'https://api.github.com/users/joaomarcusc/starred', 'https://api.github.com/users/joaomarcusc/repos', 'https://api.github.com/users/joaomarcusc/events', 'https://api.github.com/users/joaomarcusc/received_events', 0); +INSERT INTO `developer` VALUES (1272, 'russellc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Russell Christopher', NULL, '', 'Raleigh, NC', 'russell,christopher@gmail.com', 'true', NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-27T23:04:07Z', '2024-02-05T13:11:07Z', 'https://avatars.githubusercontent.com/u/1272?v=4', 'https://api.github.com/users/russellc', 'https://github.com/russellc', 'https://api.github.com/users/russellc/followers', 'https://api.github.com/users/russellc/following', 'https://api.github.com/users/russellc/gists', 'https://api.github.com/users/russellc/starred', 'https://api.github.com/users/russellc/repos', 'https://api.github.com/users/russellc/events', 'https://api.github.com/users/russellc/received_events', 0); +INSERT INTO `developer` VALUES (1273, 'noss', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian', NULL, '', 'Stockholm, Sweden', NULL, 'true', NULL, NULL, 0, 0, 43, 22, 0, 0, 0, '2008-02-27T23:04:16Z', '2023-04-01T19:31:10Z', 'https://avatars.githubusercontent.com/u/1273?v=4', 'https://api.github.com/users/noss', 'https://github.com/noss', 'https://api.github.com/users/noss/followers', 'https://api.github.com/users/noss/following', 'https://api.github.com/users/noss/gists', 'https://api.github.com/users/noss/starred', 'https://api.github.com/users/noss/repos', 'https://api.github.com/users/noss/events', 'https://api.github.com/users/noss/received_events', 0); +INSERT INTO `developer` VALUES (1274, 'tobowers', 'C', 0, 0, 0, 0, 0, 0, 0, 'Topper Bowers', 'CEO Quorum Control', 'quorumcontrol.com', 'Berlin', 'topper@toppingdesign.com', NULL, NULL, 'tobowers', 0, 0, 52, 7, 0, 0, 0, '2008-02-27T23:05:10Z', '2024-10-15T18:02:13Z', 'https://avatars.githubusercontent.com/u/1274?v=4', 'https://api.github.com/users/tobowers', 'https://github.com/tobowers', 'https://api.github.com/users/tobowers/followers', 'https://api.github.com/users/tobowers/following', 'https://api.github.com/users/tobowers/gists', 'https://api.github.com/users/tobowers/starred', 'https://api.github.com/users/tobowers/repos', 'https://api.github.com/users/tobowers/events', 'https://api.github.com/users/tobowers/received_events', 0); +INSERT INTO `developer` VALUES (1275, 'vangale', 'C', 0, 0, 0, 0, 0, 0, 0, 'Van Gale', '@agilest ', 'https://agile.st', 'Denver, Colorado, USA', NULL, NULL, NULL, NULL, 0, 0, 18, 13, 0, 0, 0, '2008-02-27T23:05:58Z', '2023-10-14T02:25:08Z', 'https://avatars.githubusercontent.com/u/1275?v=4', 'https://api.github.com/users/vangale', 'https://github.com/vangale', 'https://api.github.com/users/vangale/followers', 'https://api.github.com/users/vangale/following', 'https://api.github.com/users/vangale/gists', 'https://api.github.com/users/vangale/starred', 'https://api.github.com/users/vangale/repos', 'https://api.github.com/users/vangale/events', 'https://api.github.com/users/vangale/received_events', 0); +INSERT INTO `developer` VALUES (1276, 'jerry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jerry Richardson', NULL, 'http://jerryr.com/', 'Westfield, Indiana', 'jerry@jerryr.com', NULL, 'I build things by working with people (and typing).', 'jerry', 0, 0, 59, 88, 0, 0, 0, '2008-02-27T23:06:04Z', '2024-10-14T20:24:31Z', 'https://avatars.githubusercontent.com/u/1276?v=4', 'https://api.github.com/users/jerry', 'https://github.com/jerry', 'https://api.github.com/users/jerry/followers', 'https://api.github.com/users/jerry/following', 'https://api.github.com/users/jerry/gists', 'https://api.github.com/users/jerry/starred', 'https://api.github.com/users/jerry/repos', 'https://api.github.com/users/jerry/events', 'https://api.github.com/users/jerry/received_events', 0); +INSERT INTO `developer` VALUES (1277, 'beastaugh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benedict Eastaugh', 'University of Warwick', 'https://extralogical.net', '未知', NULL, NULL, NULL, NULL, 0, 0, 45, 24, 0, 0, 0, '2008-02-27T23:06:11Z', '2024-09-29T09:52:23Z', 'https://avatars.githubusercontent.com/u/1277?v=4', 'https://api.github.com/users/beastaugh', 'https://github.com/beastaugh', 'https://api.github.com/users/beastaugh/followers', 'https://api.github.com/users/beastaugh/following', 'https://api.github.com/users/beastaugh/gists', 'https://api.github.com/users/beastaugh/starred', 'https://api.github.com/users/beastaugh/repos', 'https://api.github.com/users/beastaugh/events', 'https://api.github.com/users/beastaugh/received_events', 0); +INSERT INTO `developer` VALUES (1278, 'puzza007', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Oliver', NULL, '', 'Auckland', 'pzawrk@gmail.com', 'true', NULL, NULL, 0, 0, 71, 152, 0, 0, 0, '2008-02-27T23:07:54Z', '2024-10-13T11:19:18Z', 'https://avatars.githubusercontent.com/u/1278?v=4', 'https://api.github.com/users/puzza007', 'https://github.com/puzza007', 'https://api.github.com/users/puzza007/followers', 'https://api.github.com/users/puzza007/following', 'https://api.github.com/users/puzza007/gists', 'https://api.github.com/users/puzza007/starred', 'https://api.github.com/users/puzza007/repos', 'https://api.github.com/users/puzza007/events', 'https://api.github.com/users/puzza007/received_events', 0); +INSERT INTO `developer` VALUES (1279, 'zirpu', 'C', 0, 0, 0, 0, 0, 0, 0, 'allan bailey', NULL, '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 18, 27, 0, 0, 0, '2008-02-27T23:09:03Z', '2024-10-11T23:17:09Z', 'https://avatars.githubusercontent.com/u/1279?v=4', 'https://api.github.com/users/zirpu', 'https://github.com/zirpu', 'https://api.github.com/users/zirpu/followers', 'https://api.github.com/users/zirpu/following', 'https://api.github.com/users/zirpu/gists', 'https://api.github.com/users/zirpu/starred', 'https://api.github.com/users/zirpu/repos', 'https://api.github.com/users/zirpu/events', 'https://api.github.com/users/zirpu/received_events', 0); +INSERT INTO `developer` VALUES (1280, 'brucem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bruce Morrison', NULL, 'http://www.stuffandcontent.com', 'Brisbane, Australia', NULL, 'true', NULL, NULL, 0, 0, 24, 30, 0, 0, 0, '2008-02-27T23:09:31Z', '2020-09-18T02:07:15Z', 'https://avatars.githubusercontent.com/u/1280?v=4', 'https://api.github.com/users/brucem', 'https://github.com/brucem', 'https://api.github.com/users/brucem/followers', 'https://api.github.com/users/brucem/following', 'https://api.github.com/users/brucem/gists', 'https://api.github.com/users/brucem/starred', 'https://api.github.com/users/brucem/repos', 'https://api.github.com/users/brucem/events', 'https://api.github.com/users/brucem/received_events', 0); +INSERT INTO `developer` VALUES (1281, 'jakep36', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob Parsell', 'Fluree', 'www.flur.ee', 'Denver, CO', 'jakep36@me.com', NULL, NULL, 'jakep36', 0, 0, 12, 10, 0, 0, 0, '2008-02-27T23:09:32Z', '2024-09-28T13:06:41Z', 'https://avatars.githubusercontent.com/u/1281?v=4', 'https://api.github.com/users/jakep36', 'https://github.com/jakep36', 'https://api.github.com/users/jakep36/followers', 'https://api.github.com/users/jakep36/following', 'https://api.github.com/users/jakep36/gists', 'https://api.github.com/users/jakep36/starred', 'https://api.github.com/users/jakep36/repos', 'https://api.github.com/users/jakep36/events', 'https://api.github.com/users/jakep36/received_events', 0); +INSERT INTO `developer` VALUES (1282, 'graham', 'C', 0, 0, 0, 0, 0, 0, 0, 'Graham Abbott', NULL, '', '未知', NULL, NULL, NULL, 'grahamabbott', 0, 0, 69, 32, 0, 0, 0, '2008-02-27T23:09:42Z', '2024-10-30T04:22:13Z', 'https://avatars.githubusercontent.com/u/1282?v=4', 'https://api.github.com/users/graham', 'https://github.com/graham', 'https://api.github.com/users/graham/followers', 'https://api.github.com/users/graham/following', 'https://api.github.com/users/graham/gists', 'https://api.github.com/users/graham/starred', 'https://api.github.com/users/graham/repos', 'https://api.github.com/users/graham/events', 'https://api.github.com/users/graham/received_events', 0); +INSERT INTO `developer` VALUES (1283, 'matehat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathieu D\'Amours', 'Braver', 'www.braver.net', 'Quebec, Canada', 'mathieu@damours.org', NULL, 'Programmer, Founder, Tinkerer', 'matehat', 0, 0, 80, 67, 0, 0, 0, '2008-02-27T23:11:07Z', '2024-10-27T23:54:57Z', 'https://avatars.githubusercontent.com/u/1283?v=4', 'https://api.github.com/users/matehat', 'https://github.com/matehat', 'https://api.github.com/users/matehat/followers', 'https://api.github.com/users/matehat/following', 'https://api.github.com/users/matehat/gists', 'https://api.github.com/users/matehat/starred', 'https://api.github.com/users/matehat/repos', 'https://api.github.com/users/matehat/events', 'https://api.github.com/users/matehat/received_events', 0); +INSERT INTO `developer` VALUES (1284, 'burke', 'C', 3.895849932863272, 0, 0, 0, 0, 0, 0, 'Burke Libbey', '@Shopify', 'https://burke.libbey.me', 'Westport, Ontario, Canada', 'burke@libbey.me', NULL, NULL, NULL, 0, 0, 512, 0, 0, 0, 0, '2008-02-27T23:12:54Z', '2024-09-19T18:42:55Z', 'https://avatars.githubusercontent.com/u/1284?v=4', 'https://api.github.com/users/burke', 'https://github.com/burke', 'https://api.github.com/users/burke/followers', 'https://api.github.com/users/burke/following', 'https://api.github.com/users/burke/gists', 'https://api.github.com/users/burke/starred', 'https://api.github.com/users/burke/repos', 'https://api.github.com/users/burke/events', 'https://api.github.com/users/burke/received_events', 0); +INSERT INTO `developer` VALUES (1285, 'mkbehr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Behr', '@google', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-27T23:12:59Z', '2024-10-31T00:14:38Z', 'https://avatars.githubusercontent.com/u/1285?v=4', 'https://api.github.com/users/mkbehr', 'https://github.com/mkbehr', 'https://api.github.com/users/mkbehr/followers', 'https://api.github.com/users/mkbehr/following', 'https://api.github.com/users/mkbehr/gists', 'https://api.github.com/users/mkbehr/starred', 'https://api.github.com/users/mkbehr/repos', 'https://api.github.com/users/mkbehr/events', 'https://api.github.com/users/mkbehr/received_events', 0); +INSERT INTO `developer` VALUES (1286, 'dbarros', 'C', 0, 0, 0, 0, 0, 0, 0, 'Diego Barros', NULL, '', 'Melbourne, Australia', NULL, 'true', NULL, NULL, 0, 0, 20, 20, 0, 0, 0, '2008-02-27T23:13:20Z', '2024-10-20T11:21:01Z', 'https://avatars.githubusercontent.com/u/1286?v=4', 'https://api.github.com/users/dbarros', 'https://github.com/dbarros', 'https://api.github.com/users/dbarros/followers', 'https://api.github.com/users/dbarros/following', 'https://api.github.com/users/dbarros/gists', 'https://api.github.com/users/dbarros/starred', 'https://api.github.com/users/dbarros/repos', 'https://api.github.com/users/dbarros/events', 'https://api.github.com/users/dbarros/received_events', 0); +INSERT INTO `developer` VALUES (1287, 'tomafro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Ward', NULL, 'https://tomafro.net', 'London', 'tom@popdog.net', NULL, NULL, NULL, 0, 0, 108, 13, 0, 0, 0, '2008-02-27T23:13:36Z', '2024-07-01T17:50:17Z', 'https://avatars.githubusercontent.com/u/1287?v=4', 'https://api.github.com/users/tomafro', 'https://github.com/tomafro', 'https://api.github.com/users/tomafro/followers', 'https://api.github.com/users/tomafro/following', 'https://api.github.com/users/tomafro/gists', 'https://api.github.com/users/tomafro/starred', 'https://api.github.com/users/tomafro/repos', 'https://api.github.com/users/tomafro/events', 'https://api.github.com/users/tomafro/received_events', 0); +INSERT INTO `developer` VALUES (1288, 'pvaillant', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Vaillant', NULL, 'http://paul.vaillant.ca', 'Canada', 'paul.vaillant@gmail.com', NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2008-02-27T23:13:53Z', '2024-10-23T03:57:26Z', 'https://avatars.githubusercontent.com/u/1288?v=4', 'https://api.github.com/users/pvaillant', 'https://github.com/pvaillant', 'https://api.github.com/users/pvaillant/followers', 'https://api.github.com/users/pvaillant/following', 'https://api.github.com/users/pvaillant/gists', 'https://api.github.com/users/pvaillant/starred', 'https://api.github.com/users/pvaillant/repos', 'https://api.github.com/users/pvaillant/events', 'https://api.github.com/users/pvaillant/received_events', 0); +INSERT INTO `developer` VALUES (1290, 'eclesh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Lesh', NULL, '', 'Los Angeles, CA', 'eclesh@gmail.com', NULL, NULL, NULL, 0, 0, 18, 1, 0, 0, 0, '2008-02-27T23:16:09Z', '2024-09-19T20:07:03Z', 'https://avatars.githubusercontent.com/u/1290?v=4', 'https://api.github.com/users/eclesh', 'https://github.com/eclesh', 'https://api.github.com/users/eclesh/followers', 'https://api.github.com/users/eclesh/following', 'https://api.github.com/users/eclesh/gists', 'https://api.github.com/users/eclesh/starred', 'https://api.github.com/users/eclesh/repos', 'https://api.github.com/users/eclesh/events', 'https://api.github.com/users/eclesh/received_events', 0); +INSERT INTO `developer` VALUES (1291, 'brianm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian McCallister', NULL, 'https://skife.org/', 'Seattle, WA', 'brianm@skife.org', NULL, NULL, NULL, 0, 0, 254, 39, 0, 0, 0, '2008-02-27T23:16:48Z', '2024-09-29T13:52:53Z', 'https://avatars.githubusercontent.com/u/1291?v=4', 'https://api.github.com/users/brianm', 'https://github.com/brianm', 'https://api.github.com/users/brianm/followers', 'https://api.github.com/users/brianm/following', 'https://api.github.com/users/brianm/gists', 'https://api.github.com/users/brianm/starred', 'https://api.github.com/users/brianm/repos', 'https://api.github.com/users/brianm/events', 'https://api.github.com/users/brianm/received_events', 0); +INSERT INTO `developer` VALUES (1292, 'cee-dub', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cameron Walters (cee-dub)', 'Domainr', 'https://domainr.com/', 'San Francisco, CA', 'cameron.walters@gmail.com', NULL, NULL, NULL, 0, 0, 83, 20, 0, 0, 0, '2008-02-27T23:19:05Z', '2024-11-05T00:20:46Z', 'https://avatars.githubusercontent.com/u/1292?v=4', 'https://api.github.com/users/cee-dub', 'https://github.com/cee-dub', 'https://api.github.com/users/cee-dub/followers', 'https://api.github.com/users/cee-dub/following', 'https://api.github.com/users/cee-dub/gists', 'https://api.github.com/users/cee-dub/starred', 'https://api.github.com/users/cee-dub/repos', 'https://api.github.com/users/cee-dub/events', 'https://api.github.com/users/cee-dub/received_events', 0); +INSERT INTO `developer` VALUES (1293, 'johntaschereau', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Taschereau', NULL, '', 'Vancouver, BC, Canada', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-02-27T23:20:38Z', '2022-07-12T16:26:45Z', 'https://avatars.githubusercontent.com/u/1293?v=4', 'https://api.github.com/users/johntaschereau', 'https://github.com/johntaschereau', 'https://api.github.com/users/johntaschereau/followers', 'https://api.github.com/users/johntaschereau/following', 'https://api.github.com/users/johntaschereau/gists', 'https://api.github.com/users/johntaschereau/starred', 'https://api.github.com/users/johntaschereau/repos', 'https://api.github.com/users/johntaschereau/events', 'https://api.github.com/users/johntaschereau/received_events', 0); +INSERT INTO `developer` VALUES (1295, 'zacbrown', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zac Brown', NULL, 'https://zacbrown.org', 'Seattle, WA', NULL, 'true', 'I like distributed systems, operating systems, and compilers.\r\n', 'zacbrown', 0, 0, 0, 0, 0, 0, 0, '2008-02-27T23:23:10Z', '2024-09-16T16:48:51Z', 'https://avatars.githubusercontent.com/u/1295?v=4', 'https://api.github.com/users/zacbrown', 'https://github.com/zacbrown', 'https://api.github.com/users/zacbrown/followers', 'https://api.github.com/users/zacbrown/following', 'https://api.github.com/users/zacbrown/gists', 'https://api.github.com/users/zacbrown/starred', 'https://api.github.com/users/zacbrown/repos', 'https://api.github.com/users/zacbrown/events', 'https://api.github.com/users/zacbrown/received_events', 0); +INSERT INTO `developer` VALUES (1296, 'jasonting', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-27T23:26:00Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1296?v=4', 'https://api.github.com/users/jasonting', 'https://github.com/jasonting', 'https://api.github.com/users/jasonting/followers', 'https://api.github.com/users/jasonting/following', 'https://api.github.com/users/jasonting/gists', 'https://api.github.com/users/jasonting/starred', 'https://api.github.com/users/jasonting/repos', 'https://api.github.com/users/jasonting/events', 'https://api.github.com/users/jasonting/received_events', 0); +INSERT INTO `developer` VALUES (1297, 'elq', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Lucas', NULL, '', 'Mountain View', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-02-27T23:26:14Z', '2021-08-11T22:10:18Z', 'https://avatars.githubusercontent.com/u/1297?v=4', 'https://api.github.com/users/elq', 'https://github.com/elq', 'https://api.github.com/users/elq/followers', 'https://api.github.com/users/elq/following', 'https://api.github.com/users/elq/gists', 'https://api.github.com/users/elq/starred', 'https://api.github.com/users/elq/repos', 'https://api.github.com/users/elq/events', 'https://api.github.com/users/elq/received_events', 0); +INSERT INTO `developer` VALUES (1298, 'jonass', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T23:27:47Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1298?v=4', 'https://api.github.com/users/jonass', 'https://github.com/jonass', 'https://api.github.com/users/jonass/followers', 'https://api.github.com/users/jonass/following', 'https://api.github.com/users/jonass/gists', 'https://api.github.com/users/jonass/starred', 'https://api.github.com/users/jonass/repos', 'https://api.github.com/users/jonass/events', 'https://api.github.com/users/jonass/received_events', 0); +INSERT INTO `developer` VALUES (1299, 'mitchellh', 'S', 100, 0, 0, 0, 0, 0, 0, 'Mitchell Hashimoto', NULL, 'https://mitchellh.com', 'Los Angeles, CA', 'm@mitchellh.com', NULL, NULL, 'mitchellh', 0, 0, 14270, 0, 0, 0, 0, '2008-02-27T23:27:54Z', '2024-10-31T04:50:14Z', 'https://avatars.githubusercontent.com/u/1299?v=4', 'https://api.github.com/users/mitchellh', 'https://github.com/mitchellh', 'https://api.github.com/users/mitchellh/followers', 'https://api.github.com/users/mitchellh/following', 'https://api.github.com/users/mitchellh/gists', 'https://api.github.com/users/mitchellh/starred', 'https://api.github.com/users/mitchellh/repos', 'https://api.github.com/users/mitchellh/events', 'https://api.github.com/users/mitchellh/received_events', 0); +INSERT INTO `developer` VALUES (1300, 'lgastako', 'C', 0, 0, 0, 0, 0, 0, 0, 'John', 'Francon & Heyer', '', 'Milky Way Galaxy, Third Rock from the Sun', 'lgastako@gmail.com', NULL, 'I like bacon.', NULL, 0, 0, 73, 21, 0, 0, 0, '2008-02-27T23:29:28Z', '2024-10-20T03:42:05Z', 'https://avatars.githubusercontent.com/u/1300?v=4', 'https://api.github.com/users/lgastako', 'https://github.com/lgastako', 'https://api.github.com/users/lgastako/followers', 'https://api.github.com/users/lgastako/following', 'https://api.github.com/users/lgastako/gists', 'https://api.github.com/users/lgastako/starred', 'https://api.github.com/users/lgastako/repos', 'https://api.github.com/users/lgastako/events', 'https://api.github.com/users/lgastako/received_events', 0); +INSERT INTO `developer` VALUES (1301, 'andrewlmurray', 'C', 0, 0, 0, 0, 6, 0, 0, 'Andrew Murray', '@Pancake-Labs ', '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T23:30:33Z', '2024-10-23T14:28:15Z', 'https://avatars.githubusercontent.com/u/1301?v=4', 'https://api.github.com/users/andrewlmurray', 'https://github.com/andrewlmurray', 'https://api.github.com/users/andrewlmurray/followers', 'https://api.github.com/users/andrewlmurray/following', 'https://api.github.com/users/andrewlmurray/gists', 'https://api.github.com/users/andrewlmurray/starred', 'https://api.github.com/users/andrewlmurray/repos', 'https://api.github.com/users/andrewlmurray/events', 'https://api.github.com/users/andrewlmurray/received_events', 0); +INSERT INTO `developer` VALUES (1302, 'mdiep', 'C', 6.553871057657741, 0, 0, 0, 0, 0, 0, 'Matt Diephouse', NULL, 'http://matt.diephouse.com', 'Grand Rapids, MI', 'matt@diephouse.com', NULL, NULL, NULL, 0, 0, 667, 8, 0, 0, 0, '2008-02-27T23:31:47Z', '2024-11-02T16:22:49Z', 'https://avatars.githubusercontent.com/u/1302?v=4', 'https://api.github.com/users/mdiep', 'https://github.com/mdiep', 'https://api.github.com/users/mdiep/followers', 'https://api.github.com/users/mdiep/following', 'https://api.github.com/users/mdiep/gists', 'https://api.github.com/users/mdiep/starred', 'https://api.github.com/users/mdiep/repos', 'https://api.github.com/users/mdiep/events', 'https://api.github.com/users/mdiep/received_events', 0); +INSERT INTO `developer` VALUES (1303, 'gobansaor', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T23:33:35Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1303?v=4', 'https://api.github.com/users/gobansaor', 'https://github.com/gobansaor', 'https://api.github.com/users/gobansaor/followers', 'https://api.github.com/users/gobansaor/following', 'https://api.github.com/users/gobansaor/gists', 'https://api.github.com/users/gobansaor/starred', 'https://api.github.com/users/gobansaor/repos', 'https://api.github.com/users/gobansaor/events', 'https://api.github.com/users/gobansaor/received_events', 0); +INSERT INTO `developer` VALUES (1304, 'nickd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Dufresne', 'Pioneer Valley Educational Press', '', 'San Diego, CA', 'nick.dufresne@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T23:36:16Z', '2024-04-26T23:11:37Z', 'https://avatars.githubusercontent.com/u/1304?v=4', 'https://api.github.com/users/nickd', 'https://github.com/nickd', 'https://api.github.com/users/nickd/followers', 'https://api.github.com/users/nickd/following', 'https://api.github.com/users/nickd/gists', 'https://api.github.com/users/nickd/starred', 'https://api.github.com/users/nickd/repos', 'https://api.github.com/users/nickd/events', 'https://api.github.com/users/nickd/received_events', 0); +INSERT INTO `developer` VALUES (1305, 'steveclarke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Clarke', 'Sevenview Studios', 'https://www.sevenview.ca', 'Springdale, NL, Canada', 'steve@sevenview.ca', 'true', 'GitHub user #1305', NULL, 0, 0, 33, 19, 0, 0, 0, '2008-02-27T23:36:18Z', '2024-09-25T15:39:53Z', 'https://avatars.githubusercontent.com/u/1305?v=4', 'https://api.github.com/users/steveclarke', 'https://github.com/steveclarke', 'https://api.github.com/users/steveclarke/followers', 'https://api.github.com/users/steveclarke/following', 'https://api.github.com/users/steveclarke/gists', 'https://api.github.com/users/steveclarke/starred', 'https://api.github.com/users/steveclarke/repos', 'https://api.github.com/users/steveclarke/events', 'https://api.github.com/users/steveclarke/received_events', 0); +INSERT INTO `developer` VALUES (1306, 'napcs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian P. Hogan', NULL, 'https://bphogan.com/', 'Eau Claire, WI', NULL, NULL, 'Brian Hogan is a coder, teacher, and author of eleven technical books, including Small, Sharp Software Tools and Tmux 2: Productive Mouse-Free Development.', 'bphogan', 0, 0, 196, 5, 0, 0, 0, '2008-02-27T23:36:36Z', '2024-10-01T00:30:09Z', 'https://avatars.githubusercontent.com/u/1306?v=4', 'https://api.github.com/users/napcs', 'https://github.com/napcs', 'https://api.github.com/users/napcs/followers', 'https://api.github.com/users/napcs/following', 'https://api.github.com/users/napcs/gists', 'https://api.github.com/users/napcs/starred', 'https://api.github.com/users/napcs/repos', 'https://api.github.com/users/napcs/events', 'https://api.github.com/users/napcs/received_events', 0); +INSERT INTO `developer` VALUES (1307, 'duffduff', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Boyd', NULL, '', 'Denver, CO', 'chris.m.boyd@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-27T23:37:24Z', '2024-07-12T21:41:30Z', 'https://avatars.githubusercontent.com/u/1307?v=4', 'https://api.github.com/users/duffduff', 'https://github.com/duffduff', 'https://api.github.com/users/duffduff/followers', 'https://api.github.com/users/duffduff/following', 'https://api.github.com/users/duffduff/gists', 'https://api.github.com/users/duffduff/starred', 'https://api.github.com/users/duffduff/repos', 'https://api.github.com/users/duffduff/events', 'https://api.github.com/users/duffduff/received_events', 0); +INSERT INTO `developer` VALUES (1308, 'cmd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Downey', NULL, '', 'San Diego, California', NULL, NULL, NULL, 'cmd47', 0, 0, 11, 1, 0, 0, 0, '2008-02-27T23:37:46Z', '2021-08-27T21:22:45Z', 'https://avatars.githubusercontent.com/u/1308?v=4', 'https://api.github.com/users/cmd', 'https://github.com/cmd', 'https://api.github.com/users/cmd/followers', 'https://api.github.com/users/cmd/following', 'https://api.github.com/users/cmd/gists', 'https://api.github.com/users/cmd/starred', 'https://api.github.com/users/cmd/repos', 'https://api.github.com/users/cmd/events', 'https://api.github.com/users/cmd/received_events', 0); +INSERT INTO `developer` VALUES (1309, 'mechfish', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael F. Booth', NULL, '', 'Massachusetts', NULL, NULL, NULL, NULL, 0, 0, 38, 1, 0, 0, 0, '2008-02-27T23:38:03Z', '2024-10-26T19:56:28Z', 'https://avatars.githubusercontent.com/u/1309?v=4', 'https://api.github.com/users/mechfish', 'https://github.com/mechfish', 'https://api.github.com/users/mechfish/followers', 'https://api.github.com/users/mechfish/following', 'https://api.github.com/users/mechfish/gists', 'https://api.github.com/users/mechfish/starred', 'https://api.github.com/users/mechfish/repos', 'https://api.github.com/users/mechfish/events', 'https://api.github.com/users/mechfish/received_events', 0); +INSERT INTO `developer` VALUES (1310, 'dyokomizo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Yokomizo', 'Humanity', 'https://daniel.yokomizo.org', 'São Paulo, Brazil', 'daniel.yokomizo@gmail.com', NULL, '只管打坐 -- human being, most of the time', 'dyokomizo', 0, 0, 48, 15, 0, 0, 0, '2008-02-27T23:38:19Z', '2024-08-22T10:02:43Z', 'https://avatars.githubusercontent.com/u/1310?v=4', 'https://api.github.com/users/dyokomizo', 'https://github.com/dyokomizo', 'https://api.github.com/users/dyokomizo/followers', 'https://api.github.com/users/dyokomizo/following', 'https://api.github.com/users/dyokomizo/gists', 'https://api.github.com/users/dyokomizo/starred', 'https://api.github.com/users/dyokomizo/repos', 'https://api.github.com/users/dyokomizo/events', 'https://api.github.com/users/dyokomizo/received_events', 0); +INSERT INTO `developer` VALUES (1311, 'benradler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Radler', 'DB Solutions, LLC', 'http://dbsolutionsllc.org', 'SoCal', 'benjaminradler@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T23:39:24Z', '2021-07-07T10:18:14Z', 'https://avatars.githubusercontent.com/u/1311?v=4', 'https://api.github.com/users/benradler', 'https://github.com/benradler', 'https://api.github.com/users/benradler/followers', 'https://api.github.com/users/benradler/following', 'https://api.github.com/users/benradler/gists', 'https://api.github.com/users/benradler/starred', 'https://api.github.com/users/benradler/repos', 'https://api.github.com/users/benradler/events', 'https://api.github.com/users/benradler/received_events', 0); +INSERT INTO `developer` VALUES (1312, 'benhiller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Hiller', NULL, '', 'San Francisco, CA', 'benhiller@gmail.com', NULL, NULL, NULL, 0, 0, 79, 19, 0, 0, 0, '2008-02-27T23:40:43Z', '2024-10-19T04:53:43Z', 'https://avatars.githubusercontent.com/u/1312?v=4', 'https://api.github.com/users/benhiller', 'https://github.com/benhiller', 'https://api.github.com/users/benhiller/followers', 'https://api.github.com/users/benhiller/following', 'https://api.github.com/users/benhiller/gists', 'https://api.github.com/users/benhiller/starred', 'https://api.github.com/users/benhiller/repos', 'https://api.github.com/users/benhiller/events', 'https://api.github.com/users/benhiller/received_events', 0); +INSERT INTO `developer` VALUES (1314, 'scw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shaun Walbridge', 'Esri', 'https://twitter.com/scw', 'brookline, ma', '@scw', NULL, NULL, NULL, 0, 0, 155, 83, 0, 0, 0, '2008-02-27T23:42:07Z', '2024-09-09T20:31:54Z', 'https://avatars.githubusercontent.com/u/1314?v=4', 'https://api.github.com/users/scw', 'https://github.com/scw', 'https://api.github.com/users/scw/followers', 'https://api.github.com/users/scw/following', 'https://api.github.com/users/scw/gists', 'https://api.github.com/users/scw/starred', 'https://api.github.com/users/scw/repos', 'https://api.github.com/users/scw/events', 'https://api.github.com/users/scw/received_events', 0); +INSERT INTO `developer` VALUES (1315, 'harryf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harry Fuecks', NULL, '', 'Zürich, Switzerland', NULL, NULL, NULL, NULL, 0, 0, 65, 37, 0, 0, 0, '2008-02-27T23:42:30Z', '2024-10-28T14:09:15Z', 'https://avatars.githubusercontent.com/u/1315?v=4', 'https://api.github.com/users/harryf', 'https://github.com/harryf', 'https://api.github.com/users/harryf/followers', 'https://api.github.com/users/harryf/following', 'https://api.github.com/users/harryf/gists', 'https://api.github.com/users/harryf/starred', 'https://api.github.com/users/harryf/repos', 'https://api.github.com/users/harryf/events', 'https://api.github.com/users/harryf/received_events', 0); +INSERT INTO `developer` VALUES (1316, 'mallipeddi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harish M', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 64, 19, 0, 0, 0, '2008-02-27T23:42:52Z', '2024-10-29T23:32:22Z', 'https://avatars.githubusercontent.com/u/1316?v=4', 'https://api.github.com/users/mallipeddi', 'https://github.com/mallipeddi', 'https://api.github.com/users/mallipeddi/followers', 'https://api.github.com/users/mallipeddi/following', 'https://api.github.com/users/mallipeddi/gists', 'https://api.github.com/users/mallipeddi/starred', 'https://api.github.com/users/mallipeddi/repos', 'https://api.github.com/users/mallipeddi/events', 'https://api.github.com/users/mallipeddi/received_events', 0); +INSERT INTO `developer` VALUES (1317, 'studlee2', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T23:43:07Z', '2020-10-09T11:20:10Z', 'https://avatars.githubusercontent.com/u/1317?v=4', 'https://api.github.com/users/studlee2', 'https://github.com/studlee2', 'https://api.github.com/users/studlee2/followers', 'https://api.github.com/users/studlee2/following', 'https://api.github.com/users/studlee2/gists', 'https://api.github.com/users/studlee2/starred', 'https://api.github.com/users/studlee2/repos', 'https://api.github.com/users/studlee2/events', 'https://api.github.com/users/studlee2/received_events', 0); +INSERT INTO `developer` VALUES (1318, 'michaelmelanson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Melanson', '@Secureframe', 'http://www.michaelmelanson.net', 'Ontario, Canada', 'michael@michaelmelanson.net', 'true', NULL, NULL, 0, 0, 35, 10, 0, 0, 0, '2008-02-27T23:46:31Z', '2024-08-15T15:27:43Z', 'https://avatars.githubusercontent.com/u/1318?v=4', 'https://api.github.com/users/michaelmelanson', 'https://github.com/michaelmelanson', 'https://api.github.com/users/michaelmelanson/followers', 'https://api.github.com/users/michaelmelanson/following', 'https://api.github.com/users/michaelmelanson/gists', 'https://api.github.com/users/michaelmelanson/starred', 'https://api.github.com/users/michaelmelanson/repos', 'https://api.github.com/users/michaelmelanson/events', 'https://api.github.com/users/michaelmelanson/received_events', 0); +INSERT INTO `developer` VALUES (1319, 'marrone', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 4, 0, 0, 0, '2008-02-27T23:47:00Z', '2024-10-05T18:42:24Z', 'https://avatars.githubusercontent.com/u/1319?v=4', 'https://api.github.com/users/marrone', 'https://github.com/marrone', 'https://api.github.com/users/marrone/followers', 'https://api.github.com/users/marrone/following', 'https://api.github.com/users/marrone/gists', 'https://api.github.com/users/marrone/starred', 'https://api.github.com/users/marrone/repos', 'https://api.github.com/users/marrone/events', 'https://api.github.com/users/marrone/received_events', 0); +INSERT INTO `developer` VALUES (1320, 'Muse-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-27T23:50:44Z', '2020-11-06T15:06:33Z', 'https://avatars.githubusercontent.com/u/1320?v=4', 'https://api.github.com/users/Muse-zz', 'https://github.com/Muse-zz', 'https://api.github.com/users/Muse-zz/followers', 'https://api.github.com/users/Muse-zz/following', 'https://api.github.com/users/Muse-zz/gists', 'https://api.github.com/users/Muse-zz/starred', 'https://api.github.com/users/Muse-zz/repos', 'https://api.github.com/users/Muse-zz/events', 'https://api.github.com/users/Muse-zz/received_events', 0); +INSERT INTO `developer` VALUES (1321, 'aggieben', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Collins', 'Bittrex', 'http://benjamincollins.com', 'Greenville, TX', 'aggieben@gmail.com', 'true', '.NET Developer and stuff. Señor Engineer. Former Oloite, Stacker, and Microsoftie. Affinity for .NET, F#, Rust, Bitcoin. Texas A&M CS Grad 2002, 2005', NULL, 0, 0, 43, 35, 0, 0, 0, '2008-02-27T23:54:51Z', '2024-10-28T15:15:01Z', 'https://avatars.githubusercontent.com/u/1321?v=4', 'https://api.github.com/users/aggieben', 'https://github.com/aggieben', 'https://api.github.com/users/aggieben/followers', 'https://api.github.com/users/aggieben/following', 'https://api.github.com/users/aggieben/gists', 'https://api.github.com/users/aggieben/starred', 'https://api.github.com/users/aggieben/repos', 'https://api.github.com/users/aggieben/events', 'https://api.github.com/users/aggieben/received_events', 0); +INSERT INTO `developer` VALUES (1322, 'thibaudgg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thibaud Guillaume-Gentil', 'ElectricFeel AG', 'https://thibaud.gg', 'Switzerland', 'thibaud@thibaud.gg', NULL, 'Senior Ruby on Rails dev at @electric-feel ', 'thibaudgg', 0, 0, 160, 24, 0, 0, 0, '2008-02-27T23:55:26Z', '2024-09-21T06:47:54Z', 'https://avatars.githubusercontent.com/u/1322?v=4', 'https://api.github.com/users/thibaudgg', 'https://github.com/thibaudgg', 'https://api.github.com/users/thibaudgg/followers', 'https://api.github.com/users/thibaudgg/following', 'https://api.github.com/users/thibaudgg/gists', 'https://api.github.com/users/thibaudgg/starred', 'https://api.github.com/users/thibaudgg/repos', 'https://api.github.com/users/thibaudgg/events', 'https://api.github.com/users/thibaudgg/received_events', 0); +INSERT INTO `developer` VALUES (1323, 'zenAudio', 'C', 0, 0, 0, 0, 0, 0, 0, 'zenAud.io GmbH', 'zenAud.io GmbH', 'zenAud.io', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2008-02-27T23:57:08Z', '2019-06-04T14:42:11Z', 'https://avatars.githubusercontent.com/u/1323?v=4', 'https://api.github.com/users/zenAudio', 'https://github.com/zenAudio', 'https://api.github.com/users/zenAudio/followers', 'https://api.github.com/users/zenAudio/following', 'https://api.github.com/users/zenAudio/gists', 'https://api.github.com/users/zenAudio/starred', 'https://api.github.com/users/zenAudio/repos', 'https://api.github.com/users/zenAudio/events', 'https://api.github.com/users/zenAudio/received_events', 0); +INSERT INTO `developer` VALUES (1324, 'wan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Wan', '@jawaventures ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 7, 0, 0, 0, '2008-02-27T23:57:43Z', '2024-07-09T20:09:16Z', 'https://avatars.githubusercontent.com/u/1324?v=4', 'https://api.github.com/users/wan', 'https://github.com/wan', 'https://api.github.com/users/wan/followers', 'https://api.github.com/users/wan/following', 'https://api.github.com/users/wan/gists', 'https://api.github.com/users/wan/starred', 'https://api.github.com/users/wan/repos', 'https://api.github.com/users/wan/events', 'https://api.github.com/users/wan/received_events', 0); +INSERT INTO `developer` VALUES (1325, 'daly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timothy Daly', 'Literate Software', 'http://axiom-developer.org/~daly', 'Pittsburgh, PA, USA', 'daly@axiom-developer.org', NULL, NULL, NULL, 0, 0, 92, 0, 0, 0, 0, '2008-02-27T23:57:53Z', '2023-10-04T22:46:06Z', 'https://avatars.githubusercontent.com/u/1325?v=4', 'https://api.github.com/users/daly', 'https://github.com/daly', 'https://api.github.com/users/daly/followers', 'https://api.github.com/users/daly/following', 'https://api.github.com/users/daly/gists', 'https://api.github.com/users/daly/starred', 'https://api.github.com/users/daly/repos', 'https://api.github.com/users/daly/events', 'https://api.github.com/users/daly/received_events', 0); +INSERT INTO `developer` VALUES (1326, 'waratuman86', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-02-28T00:01:48Z', '2019-06-05T03:57:41Z', 'https://avatars.githubusercontent.com/u/1326?v=4', 'https://api.github.com/users/waratuman86', 'https://github.com/waratuman86', 'https://api.github.com/users/waratuman86/followers', 'https://api.github.com/users/waratuman86/following', 'https://api.github.com/users/waratuman86/gists', 'https://api.github.com/users/waratuman86/starred', 'https://api.github.com/users/waratuman86/repos', 'https://api.github.com/users/waratuman86/events', 'https://api.github.com/users/waratuman86/received_events', 0); +INSERT INTO `developer` VALUES (1327, 'emkay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Matuzak', NULL, '', 'Los Angeles', 'mmatuzak@gmail.com', NULL, 'nope', NULL, 0, 0, 163, 53, 0, 0, 0, '2008-02-28T00:03:54Z', '2024-05-11T20:06:11Z', 'https://avatars.githubusercontent.com/u/1327?v=4', 'https://api.github.com/users/emkay', 'https://github.com/emkay', 'https://api.github.com/users/emkay/followers', 'https://api.github.com/users/emkay/following', 'https://api.github.com/users/emkay/gists', 'https://api.github.com/users/emkay/starred', 'https://api.github.com/users/emkay/repos', 'https://api.github.com/users/emkay/events', 'https://api.github.com/users/emkay/received_events', 0); +INSERT INTO `developer` VALUES (1328, 'dxoigmn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cory Cornelius', 'Intel Labs', 'http://corneli.us/', 'Portland, OR', 'cory.cornelius@intel.com', NULL, 'Research Scientist', NULL, 0, 0, 55, 2, 0, 0, 0, '2008-02-28T00:04:44Z', '2024-10-30T22:51:03Z', 'https://avatars.githubusercontent.com/u/1328?v=4', 'https://api.github.com/users/dxoigmn', 'https://github.com/dxoigmn', 'https://api.github.com/users/dxoigmn/followers', 'https://api.github.com/users/dxoigmn/following', 'https://api.github.com/users/dxoigmn/gists', 'https://api.github.com/users/dxoigmn/starred', 'https://api.github.com/users/dxoigmn/repos', 'https://api.github.com/users/dxoigmn/events', 'https://api.github.com/users/dxoigmn/received_events', 0); +INSERT INTO `developer` VALUES (1329, 'asenchi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Curt Micol', NULL, '', 'Lansing, MI', NULL, 'true', NULL, NULL, 0, 0, 161, 178, 0, 0, 0, '2008-02-28T00:06:31Z', '2024-06-19T02:03:04Z', 'https://avatars.githubusercontent.com/u/1329?v=4', 'https://api.github.com/users/asenchi', 'https://github.com/asenchi', 'https://api.github.com/users/asenchi/followers', 'https://api.github.com/users/asenchi/following', 'https://api.github.com/users/asenchi/gists', 'https://api.github.com/users/asenchi/starred', 'https://api.github.com/users/asenchi/repos', 'https://api.github.com/users/asenchi/events', 'https://api.github.com/users/asenchi/received_events', 0); +INSERT INTO `developer` VALUES (1330, 'daragh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daragh Casey', NULL, '', '未知', 'daragh.casey@gmail.com', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-28T00:07:03Z', '2023-11-21T11:40:56Z', 'https://avatars.githubusercontent.com/u/1330?v=4', 'https://api.github.com/users/daragh', 'https://github.com/daragh', 'https://api.github.com/users/daragh/followers', 'https://api.github.com/users/daragh/following', 'https://api.github.com/users/daragh/gists', 'https://api.github.com/users/daragh/starred', 'https://api.github.com/users/daragh/repos', 'https://api.github.com/users/daragh/events', 'https://api.github.com/users/daragh/received_events', 0); +INSERT INTO `developer` VALUES (1331, 'hagerman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Hagerman', NULL, '', 'Orlando, FL', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-02-28T00:07:17Z', '2024-05-15T00:52:17Z', 'https://avatars.githubusercontent.com/u/1331?v=4', 'https://api.github.com/users/hagerman', 'https://github.com/hagerman', 'https://api.github.com/users/hagerman/followers', 'https://api.github.com/users/hagerman/following', 'https://api.github.com/users/hagerman/gists', 'https://api.github.com/users/hagerman/starred', 'https://api.github.com/users/hagerman/repos', 'https://api.github.com/users/hagerman/events', 'https://api.github.com/users/hagerman/received_events', 0); +INSERT INTO `developer` VALUES (1332, 'ahri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Piper', '@PortSwigger ', 'http://ahri.net', 'Manchester, UK', 'adam@ahri.net', NULL, NULL, 'bitwog', 0, 0, 48, 7, 0, 0, 0, '2008-02-28T00:13:56Z', '2024-10-27T10:17:12Z', 'https://avatars.githubusercontent.com/u/1332?v=4', 'https://api.github.com/users/ahri', 'https://github.com/ahri', 'https://api.github.com/users/ahri/followers', 'https://api.github.com/users/ahri/following', 'https://api.github.com/users/ahri/gists', 'https://api.github.com/users/ahri/starred', 'https://api.github.com/users/ahri/repos', 'https://api.github.com/users/ahri/events', 'https://api.github.com/users/ahri/received_events', 0); +INSERT INTO `developer` VALUES (1334, 'jesper', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesper Thomschütz', '@MonkeyTestIt ', 'jespersaur.com', 'London, UK', NULL, NULL, 'Big fan of computers and lizards.', NULL, 0, 0, 38, 18, 0, 0, 0, '2008-02-28T00:16:46Z', '2024-08-12T15:21:04Z', 'https://avatars.githubusercontent.com/u/1334?v=4', 'https://api.github.com/users/jesper', 'https://github.com/jesper', 'https://api.github.com/users/jesper/followers', 'https://api.github.com/users/jesper/following', 'https://api.github.com/users/jesper/gists', 'https://api.github.com/users/jesper/starred', 'https://api.github.com/users/jesper/repos', 'https://api.github.com/users/jesper/events', 'https://api.github.com/users/jesper/received_events', 0); +INSERT INTO `developer` VALUES (1335, 'ydewit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yuri de Wit', NULL, '', 'Connecticut, USA', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-28T00:17:03Z', '2024-08-07T13:30:18Z', 'https://avatars.githubusercontent.com/u/1335?v=4', 'https://api.github.com/users/ydewit', 'https://github.com/ydewit', 'https://api.github.com/users/ydewit/followers', 'https://api.github.com/users/ydewit/following', 'https://api.github.com/users/ydewit/gists', 'https://api.github.com/users/ydewit/starred', 'https://api.github.com/users/ydewit/repos', 'https://api.github.com/users/ydewit/events', 'https://api.github.com/users/ydewit/received_events', 0); +INSERT INTO `developer` VALUES (1336, 'benwad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Wadsworth', NULL, '', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-02-28T00:23:15Z', '2024-08-20T00:25:13Z', 'https://avatars.githubusercontent.com/u/1336?v=4', 'https://api.github.com/users/benwad', 'https://github.com/benwad', 'https://api.github.com/users/benwad/followers', 'https://api.github.com/users/benwad/following', 'https://api.github.com/users/benwad/gists', 'https://api.github.com/users/benwad/starred', 'https://api.github.com/users/benwad/repos', 'https://api.github.com/users/benwad/events', 'https://api.github.com/users/benwad/received_events', 0); +INSERT INTO `developer` VALUES (1337, 'tphyahoo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, 'thomashartman1', 0, 0, 11, 1, 0, 0, 0, '2008-02-28T00:24:16Z', '2024-10-16T15:50:07Z', 'https://avatars.githubusercontent.com/u/1337?v=4', 'https://api.github.com/users/tphyahoo', 'https://github.com/tphyahoo', 'https://api.github.com/users/tphyahoo/followers', 'https://api.github.com/users/tphyahoo/following', 'https://api.github.com/users/tphyahoo/gists', 'https://api.github.com/users/tphyahoo/starred', 'https://api.github.com/users/tphyahoo/repos', 'https://api.github.com/users/tphyahoo/events', 'https://api.github.com/users/tphyahoo/received_events', 0); +INSERT INTO `developer` VALUES (1338, 'jdknezek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Knezek', NULL, '', '未知', 'jdknezek@gmail.com', NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-02-28T00:26:55Z', '2024-11-04T02:47:21Z', 'https://avatars.githubusercontent.com/u/1338?v=4', 'https://api.github.com/users/jdknezek', 'https://github.com/jdknezek', 'https://api.github.com/users/jdknezek/followers', 'https://api.github.com/users/jdknezek/following', 'https://api.github.com/users/jdknezek/gists', 'https://api.github.com/users/jdknezek/starred', 'https://api.github.com/users/jdknezek/repos', 'https://api.github.com/users/jdknezek/events', 'https://api.github.com/users/jdknezek/received_events', 0); +INSERT INTO `developer` VALUES (1339, 'issackelly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Issac Kelly', NULL, 'http://www.issackelly.com', 'Oakland, CA', 'issac.kelly@gmail.com', NULL, NULL, NULL, 0, 0, 178, 132, 0, 0, 0, '2008-02-28T00:27:04Z', '2024-07-30T14:04:31Z', 'https://avatars.githubusercontent.com/u/1339?v=4', 'https://api.github.com/users/issackelly', 'https://github.com/issackelly', 'https://api.github.com/users/issackelly/followers', 'https://api.github.com/users/issackelly/following', 'https://api.github.com/users/issackelly/gists', 'https://api.github.com/users/issackelly/starred', 'https://api.github.com/users/issackelly/repos', 'https://api.github.com/users/issackelly/events', 'https://api.github.com/users/issackelly/received_events', 0); +INSERT INTO `developer` VALUES (1340, 'webtreehouse', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-28T00:27:36Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1340?v=4', 'https://api.github.com/users/webtreehouse', 'https://github.com/webtreehouse', 'https://api.github.com/users/webtreehouse/followers', 'https://api.github.com/users/webtreehouse/following', 'https://api.github.com/users/webtreehouse/gists', 'https://api.github.com/users/webtreehouse/starred', 'https://api.github.com/users/webtreehouse/repos', 'https://api.github.com/users/webtreehouse/events', 'https://api.github.com/users/webtreehouse/received_events', 0); +INSERT INTO `developer` VALUES (1341, 'ggallego', 'C', 0, 0, 0, 0, 0, 0, 0, 'Glauber Gallego', 'Amazon Web Services', '', 'Sao Paulo, Brazil', NULL, NULL, NULL, NULL, 0, 0, 27, 2, 0, 0, 0, '2008-02-28T00:28:01Z', '2021-09-24T12:12:43Z', 'https://avatars.githubusercontent.com/u/1341?v=4', 'https://api.github.com/users/ggallego', 'https://github.com/ggallego', 'https://api.github.com/users/ggallego/followers', 'https://api.github.com/users/ggallego/following', 'https://api.github.com/users/ggallego/gists', 'https://api.github.com/users/ggallego/starred', 'https://api.github.com/users/ggallego/repos', 'https://api.github.com/users/ggallego/events', 'https://api.github.com/users/ggallego/received_events', 0); +INSERT INTO `developer` VALUES (1342, 'dimebag', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T00:30:02Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1342?v=4', 'https://api.github.com/users/dimebag', 'https://github.com/dimebag', 'https://api.github.com/users/dimebag/followers', 'https://api.github.com/users/dimebag/following', 'https://api.github.com/users/dimebag/gists', 'https://api.github.com/users/dimebag/starred', 'https://api.github.com/users/dimebag/repos', 'https://api.github.com/users/dimebag/events', 'https://api.github.com/users/dimebag/received_events', 0); +INSERT INTO `developer` VALUES (1343, 'kxtg', 'C', 0, 0, 0, 0, 0, 0, 0, 'aprl', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T00:31:36Z', '2021-06-09T14:23:18Z', 'https://avatars.githubusercontent.com/u/1343?v=4', 'https://api.github.com/users/kxtg', 'https://github.com/kxtg', 'https://api.github.com/users/kxtg/followers', 'https://api.github.com/users/kxtg/following', 'https://api.github.com/users/kxtg/gists', 'https://api.github.com/users/kxtg/starred', 'https://api.github.com/users/kxtg/repos', 'https://api.github.com/users/kxtg/events', 'https://api.github.com/users/kxtg/received_events', 0); +INSERT INTO `developer` VALUES (1344, 'reedlaw', 'C', 3.8346529031770946, 0, 0, 0, 1154, 20, 0, 'Reed G. Law', NULL, 'https://aureummedium.com/', 'Durham, NC', 'reed@aureummedium.com', NULL, NULL, NULL, 0, 0, 45, 26, 0, 0, 0, '2008-02-28T00:31:48Z', '2024-03-03T13:44:33Z', 'https://avatars.githubusercontent.com/u/1344?v=4', 'https://api.github.com/users/reedlaw', 'https://github.com/reedlaw', 'https://api.github.com/users/reedlaw/followers', 'https://api.github.com/users/reedlaw/following', 'https://api.github.com/users/reedlaw/gists', 'https://api.github.com/users/reedlaw/starred', 'https://api.github.com/users/reedlaw/repos', 'https://api.github.com/users/reedlaw/events', 'https://api.github.com/users/reedlaw/received_events', 0); +INSERT INTO `developer` VALUES (1345, 'baalim', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T00:33:40Z', '2019-12-13T14:15:11Z', 'https://avatars.githubusercontent.com/u/1345?v=4', 'https://api.github.com/users/baalim', 'https://github.com/baalim', 'https://api.github.com/users/baalim/followers', 'https://api.github.com/users/baalim/following', 'https://api.github.com/users/baalim/gists', 'https://api.github.com/users/baalim/starred', 'https://api.github.com/users/baalim/repos', 'https://api.github.com/users/baalim/events', 'https://api.github.com/users/baalim/received_events', 0); +INSERT INTO `developer` VALUES (1346, 'eddof13', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eddie Jesinsky', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 17, 4, 0, 0, 0, '2008-02-28T00:34:51Z', '2024-11-04T16:13:35Z', 'https://avatars.githubusercontent.com/u/1346?v=4', 'https://api.github.com/users/eddof13', 'https://github.com/eddof13', 'https://api.github.com/users/eddof13/followers', 'https://api.github.com/users/eddof13/following', 'https://api.github.com/users/eddof13/gists', 'https://api.github.com/users/eddof13/starred', 'https://api.github.com/users/eddof13/repos', 'https://api.github.com/users/eddof13/events', 'https://api.github.com/users/eddof13/received_events', 0); +INSERT INTO `developer` VALUES (1347, 'bousquet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Bousquet', 'New Leaders', 'https://newleaders.com', 'Lake Tahoe, CA USA', 'rbousquet@newleaders.com', 'true', NULL, 'robertbousquet', 0, 0, 28, 18, 0, 0, 0, '2008-02-28T00:35:22Z', '2024-10-16T00:01:21Z', 'https://avatars.githubusercontent.com/u/1347?v=4', 'https://api.github.com/users/bousquet', 'https://github.com/bousquet', 'https://api.github.com/users/bousquet/followers', 'https://api.github.com/users/bousquet/following', 'https://api.github.com/users/bousquet/gists', 'https://api.github.com/users/bousquet/starred', 'https://api.github.com/users/bousquet/repos', 'https://api.github.com/users/bousquet/events', 'https://api.github.com/users/bousquet/received_events', 0); +INSERT INTO `developer` VALUES (1348, 'nwjsmith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nate Smith', '@wealthsimple', 'http://theinternate.com', 'Toronto, ON', 'nate@theinternate.com', NULL, NULL, 'nwjsmith', 0, 0, 118, 650, 0, 0, 0, '2008-02-28T00:38:55Z', '2024-11-02T12:00:31Z', 'https://avatars.githubusercontent.com/u/1348?v=4', 'https://api.github.com/users/nwjsmith', 'https://github.com/nwjsmith', 'https://api.github.com/users/nwjsmith/followers', 'https://api.github.com/users/nwjsmith/following', 'https://api.github.com/users/nwjsmith/gists', 'https://api.github.com/users/nwjsmith/starred', 'https://api.github.com/users/nwjsmith/repos', 'https://api.github.com/users/nwjsmith/events', 'https://api.github.com/users/nwjsmith/received_events', 0); +INSERT INTO `developer` VALUES (1349, 'ottobar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Don Barlow', NULL, '', 'Denver, CO', 'ottobar@gmail.com', NULL, 'Logo |> JavaScript |> PHP |> FoxPro |> C# |> Python |> Ruby |> Elixir |> AI', NULL, 0, 0, 11, 1, 0, 0, 0, '2008-02-28T00:39:28Z', '2024-09-16T22:10:05Z', 'https://avatars.githubusercontent.com/u/1349?v=4', 'https://api.github.com/users/ottobar', 'https://github.com/ottobar', 'https://api.github.com/users/ottobar/followers', 'https://api.github.com/users/ottobar/following', 'https://api.github.com/users/ottobar/gists', 'https://api.github.com/users/ottobar/starred', 'https://api.github.com/users/ottobar/repos', 'https://api.github.com/users/ottobar/events', 'https://api.github.com/users/ottobar/received_events', 0); +INSERT INTO `developer` VALUES (1350, 'jba-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T00:42:05Z', '2016-04-15T00:04:32Z', 'https://avatars.githubusercontent.com/u/1350?v=4', 'https://api.github.com/users/jba-zz', 'https://github.com/jba-zz', 'https://api.github.com/users/jba-zz/followers', 'https://api.github.com/users/jba-zz/following', 'https://api.github.com/users/jba-zz/gists', 'https://api.github.com/users/jba-zz/starred', 'https://api.github.com/users/jba-zz/repos', 'https://api.github.com/users/jba-zz/events', 'https://api.github.com/users/jba-zz/received_events', 0); +INSERT INTO `developer` VALUES (1351, 'eyecat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ỵ͆̓̔̕̚̚͏͎̮͓̱͇̟̳u̝̻̪̱͖̜̙͠h̤̭̩͈͈͕̠ṳ̫̱̻i̦͓ H͢҈҃҃͠͡', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 16, 0, 0, 0, '2008-02-28T00:45:42Z', '2024-10-28T21:27:28Z', 'https://avatars.githubusercontent.com/u/1351?v=4', 'https://api.github.com/users/eyecat', 'https://github.com/eyecat', 'https://api.github.com/users/eyecat/followers', 'https://api.github.com/users/eyecat/following', 'https://api.github.com/users/eyecat/gists', 'https://api.github.com/users/eyecat/starred', 'https://api.github.com/users/eyecat/repos', 'https://api.github.com/users/eyecat/events', 'https://api.github.com/users/eyecat/received_events', 0); +INSERT INTO `developer` VALUES (1352, 'lackac', 'C', 0, 0, 0, 0, 0, 0, 0, 'László Bácsi', '@100Starlings ', 'https://www.100starlings.com/', 'Gárdony, Hungary', 'lackac@lackac.hu', NULL, NULL, NULL, 0, 0, 70, 16, 0, 0, 0, '2008-02-28T00:46:53Z', '2024-11-05T09:28:54Z', 'https://avatars.githubusercontent.com/u/1352?v=4', 'https://api.github.com/users/lackac', 'https://github.com/lackac', 'https://api.github.com/users/lackac/followers', 'https://api.github.com/users/lackac/following', 'https://api.github.com/users/lackac/gists', 'https://api.github.com/users/lackac/starred', 'https://api.github.com/users/lackac/repos', 'https://api.github.com/users/lackac/events', 'https://api.github.com/users/lackac/received_events', 0); +INSERT INTO `developer` VALUES (1353, 'Judeqiu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T00:47:56Z', '2024-10-23T13:36:52Z', 'https://avatars.githubusercontent.com/u/1353?v=4', 'https://api.github.com/users/Judeqiu', 'https://github.com/Judeqiu', 'https://api.github.com/users/Judeqiu/followers', 'https://api.github.com/users/Judeqiu/following', 'https://api.github.com/users/Judeqiu/gists', 'https://api.github.com/users/Judeqiu/starred', 'https://api.github.com/users/Judeqiu/repos', 'https://api.github.com/users/Judeqiu/events', 'https://api.github.com/users/Judeqiu/received_events', 0); +INSERT INTO `developer` VALUES (1354, 'kneath', 'C+', 15.608291405344707, 0, 0, 0, 0, 0, 0, 'Kyle Aster', NULL, 'http://warpspire.com', 'South Lake Tahoe, CA', 'kneath@gmail.com', NULL, 'A long time ago in an internet far, far away… I built this website.', NULL, 0, 0, 1195, 38, 0, 0, 0, '2008-02-28T00:48:15Z', '2024-10-23T03:32:26Z', 'https://avatars.githubusercontent.com/u/1354?v=4', 'https://api.github.com/users/kneath', 'https://github.com/kneath', 'https://api.github.com/users/kneath/followers', 'https://api.github.com/users/kneath/following', 'https://api.github.com/users/kneath/gists', 'https://api.github.com/users/kneath/starred', 'https://api.github.com/users/kneath/repos', 'https://api.github.com/users/kneath/events', 'https://api.github.com/users/kneath/received_events', 0); +INSERT INTO `developer` VALUES (1355, 'genepope', 'C', 0, 0, 0, 0, 0, 0, 0, 'gene', 'Branez', 'www.branez.com', 'Planet Earth', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-28T00:48:19Z', '2021-09-09T02:55:44Z', 'https://avatars.githubusercontent.com/u/1355?v=4', 'https://api.github.com/users/genepope', 'https://github.com/genepope', 'https://api.github.com/users/genepope/followers', 'https://api.github.com/users/genepope/following', 'https://api.github.com/users/genepope/gists', 'https://api.github.com/users/genepope/starred', 'https://api.github.com/users/genepope/repos', 'https://api.github.com/users/genepope/events', 'https://api.github.com/users/genepope/received_events', 0); +INSERT INTO `developer` VALUES (1356, 'GLXSeries', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T00:49:07Z', '2021-06-16T19:57:39Z', 'https://avatars.githubusercontent.com/u/1356?v=4', 'https://api.github.com/users/GLXSeries', 'https://github.com/GLXSeries', 'https://api.github.com/users/GLXSeries/followers', 'https://api.github.com/users/GLXSeries/following', 'https://api.github.com/users/GLXSeries/gists', 'https://api.github.com/users/GLXSeries/starred', 'https://api.github.com/users/GLXSeries/repos', 'https://api.github.com/users/GLXSeries/events', 'https://api.github.com/users/GLXSeries/received_events', 0); +INSERT INTO `developer` VALUES (1357, 'freakzzz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://fsfoundry.org/codefreak/', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-28T00:50:15Z', '2019-06-05T04:01:03Z', 'https://avatars.githubusercontent.com/u/1357?v=4', 'https://api.github.com/users/freakzzz', 'https://github.com/freakzzz', 'https://api.github.com/users/freakzzz/followers', 'https://api.github.com/users/freakzzz/following', 'https://api.github.com/users/freakzzz/gists', 'https://api.github.com/users/freakzzz/starred', 'https://api.github.com/users/freakzzz/repos', 'https://api.github.com/users/freakzzz/events', 'https://api.github.com/users/freakzzz/received_events', 0); +INSERT INTO `developer` VALUES (1358, 'cosmin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cosmin Stejerean', '@facebook', 'http://offbytwo.com', 'Las Vegas, NV', 'cosmin@offbytwo.com', NULL, NULL, NULL, 0, 0, 151, 23, 0, 0, 0, '2008-02-28T00:51:51Z', '2024-11-05T03:47:12Z', 'https://avatars.githubusercontent.com/u/1358?v=4', 'https://api.github.com/users/cosmin', 'https://github.com/cosmin', 'https://api.github.com/users/cosmin/followers', 'https://api.github.com/users/cosmin/following', 'https://api.github.com/users/cosmin/gists', 'https://api.github.com/users/cosmin/starred', 'https://api.github.com/users/cosmin/repos', 'https://api.github.com/users/cosmin/events', 'https://api.github.com/users/cosmin/received_events', 0); +INSERT INTO `developer` VALUES (1359, 'imbaczek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marek Baczyński', 'Intel', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-28T00:52:44Z', '2024-10-19T14:49:53Z', 'https://avatars.githubusercontent.com/u/1359?v=4', 'https://api.github.com/users/imbaczek', 'https://github.com/imbaczek', 'https://api.github.com/users/imbaczek/followers', 'https://api.github.com/users/imbaczek/following', 'https://api.github.com/users/imbaczek/gists', 'https://api.github.com/users/imbaczek/starred', 'https://api.github.com/users/imbaczek/repos', 'https://api.github.com/users/imbaczek/events', 'https://api.github.com/users/imbaczek/received_events', 0); +INSERT INTO `developer` VALUES (1360, 'dui', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dui', 'PayNearMe', '', '未知', 'dui.toledo@paynearme.com', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-28T00:52:51Z', '2024-10-11T23:59:55Z', 'https://avatars.githubusercontent.com/u/1360?v=4', 'https://api.github.com/users/dui', 'https://github.com/dui', 'https://api.github.com/users/dui/followers', 'https://api.github.com/users/dui/following', 'https://api.github.com/users/dui/gists', 'https://api.github.com/users/dui/starred', 'https://api.github.com/users/dui/repos', 'https://api.github.com/users/dui/events', 'https://api.github.com/users/dui/received_events', 0); +INSERT INTO `developer` VALUES (1361, 'systemride', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Redmond', 'Pancake Labs', 'http://pancake-labs.com', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 7, 6, 0, 0, 0, '2008-02-28T00:54:19Z', '2024-01-25T18:44:21Z', 'https://avatars.githubusercontent.com/u/1361?v=4', 'https://api.github.com/users/systemride', 'https://github.com/systemride', 'https://api.github.com/users/systemride/followers', 'https://api.github.com/users/systemride/following', 'https://api.github.com/users/systemride/gists', 'https://api.github.com/users/systemride/starred', 'https://api.github.com/users/systemride/repos', 'https://api.github.com/users/systemride/events', 'https://api.github.com/users/systemride/received_events', 0); +INSERT INTO `developer` VALUES (1362, 'kastravec', 'C', 0, 0, 0, 0, 0, 0, 0, 'WallBrick', NULL, '', 'Earth', NULL, NULL, NULL, NULL, 0, 0, 19, 4, 0, 0, 0, '2008-02-28T00:55:00Z', '2024-09-30T22:43:44Z', 'https://avatars.githubusercontent.com/u/1362?v=4', 'https://api.github.com/users/kastravec', 'https://github.com/kastravec', 'https://api.github.com/users/kastravec/followers', 'https://api.github.com/users/kastravec/following', 'https://api.github.com/users/kastravec/gists', 'https://api.github.com/users/kastravec/starred', 'https://api.github.com/users/kastravec/repos', 'https://api.github.com/users/kastravec/events', 'https://api.github.com/users/kastravec/received_events', 0); +INSERT INTO `developer` VALUES (1363, 'breily', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Reily', 'grad student - robotics / computer vision', '', 'colorado', NULL, 'true', NULL, NULL, 0, 0, 18, 6, 0, 0, 0, '2008-02-28T00:58:45Z', '2024-04-05T19:08:52Z', 'https://avatars.githubusercontent.com/u/1363?v=4', 'https://api.github.com/users/breily', 'https://github.com/breily', 'https://api.github.com/users/breily/followers', 'https://api.github.com/users/breily/following', 'https://api.github.com/users/breily/gists', 'https://api.github.com/users/breily/starred', 'https://api.github.com/users/breily/repos', 'https://api.github.com/users/breily/events', 'https://api.github.com/users/breily/received_events', 0); +INSERT INTO `developer` VALUES (1364, 'jh41740', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T00:59:33Z', '2016-02-26T22:34:40Z', 'https://avatars.githubusercontent.com/u/1364?v=4', 'https://api.github.com/users/jh41740', 'https://github.com/jh41740', 'https://api.github.com/users/jh41740/followers', 'https://api.github.com/users/jh41740/following', 'https://api.github.com/users/jh41740/gists', 'https://api.github.com/users/jh41740/starred', 'https://api.github.com/users/jh41740/repos', 'https://api.github.com/users/jh41740/events', 'https://api.github.com/users/jh41740/received_events', 0); +INSERT INTO `developer` VALUES (1365, 'charlenopires', 'C', 3.2613545675897533, 0, 0, 0, 0, 0, 0, 'Charleno Pires', NULL, '', 'Amarante | PI | Brazil', 'charleno@gmail.com', 'true', 'Polyglot Developer (Working: Python, JavaScript, TypeScript, Go; Know: Rust, Ocaml, ReScript, Elixir, Erlang, Ruby, Dart, Kotlin; Understand: Java, C#, PHP, Lua', 'charlenopires', 0, 0, 475, 4892, 0, 0, 0, '2008-02-28T00:59:40Z', '2024-10-09T11:20:28Z', 'https://avatars.githubusercontent.com/u/1365?v=4', 'https://api.github.com/users/charlenopires', 'https://github.com/charlenopires', 'https://api.github.com/users/charlenopires/followers', 'https://api.github.com/users/charlenopires/following', 'https://api.github.com/users/charlenopires/gists', 'https://api.github.com/users/charlenopires/starred', 'https://api.github.com/users/charlenopires/repos', 'https://api.github.com/users/charlenopires/events', 'https://api.github.com/users/charlenopires/received_events', 0); +INSERT INTO `developer` VALUES (1366, 'deontologician', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Kuhn', NULL, 'blog.abor.dev', 'Sunnyvale, CA', 'deontologician@gmail.com', NULL, 'Always bet on Rust', 'deontologician', 0, 0, 94, 37, 0, 0, 0, '2008-02-28T00:59:44Z', '2024-10-07T23:19:21Z', 'https://avatars.githubusercontent.com/u/1366?v=4', 'https://api.github.com/users/deontologician', 'https://github.com/deontologician', 'https://api.github.com/users/deontologician/followers', 'https://api.github.com/users/deontologician/following', 'https://api.github.com/users/deontologician/gists', 'https://api.github.com/users/deontologician/starred', 'https://api.github.com/users/deontologician/repos', 'https://api.github.com/users/deontologician/events', 'https://api.github.com/users/deontologician/received_events', 0); +INSERT INTO `developer` VALUES (1367, 'techthumb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kunal Parikh', NULL, 'http://www.techthumb.in', 'New York', NULL, NULL, NULL, NULL, 0, 0, 61, 241, 0, 0, 0, '2008-02-28T01:00:00Z', '2024-11-04T19:37:07Z', 'https://avatars.githubusercontent.com/u/1367?v=4', 'https://api.github.com/users/techthumb', 'https://github.com/techthumb', 'https://api.github.com/users/techthumb/followers', 'https://api.github.com/users/techthumb/following', 'https://api.github.com/users/techthumb/gists', 'https://api.github.com/users/techthumb/starred', 'https://api.github.com/users/techthumb/repos', 'https://api.github.com/users/techthumb/events', 'https://api.github.com/users/techthumb/received_events', 0); +INSERT INTO `developer` VALUES (1369, 'biochimia', 'C', 0, 0, 0, 0, 0, 0, 0, 'João Abecasis', 'Adevinta', '', 'Barcelona, Spain', 'joao@abecasis.name', NULL, NULL, NULL, 0, 0, 17, 3, 0, 0, 0, '2008-02-28T01:01:28Z', '2024-10-23T23:52:01Z', 'https://avatars.githubusercontent.com/u/1369?v=4', 'https://api.github.com/users/biochimia', 'https://github.com/biochimia', 'https://api.github.com/users/biochimia/followers', 'https://api.github.com/users/biochimia/following', 'https://api.github.com/users/biochimia/gists', 'https://api.github.com/users/biochimia/starred', 'https://api.github.com/users/biochimia/repos', 'https://api.github.com/users/biochimia/events', 'https://api.github.com/users/biochimia/received_events', 0); +INSERT INTO `developer` VALUES (1370, 'notanumber', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Sauve', 'Sauve Software Solutions', '', 'Victoria, BC', 'david@sauvesoftware.com', 'true', NULL, NULL, 0, 0, 31, 6, 0, 0, 0, '2008-02-28T01:02:09Z', '2024-10-10T23:26:34Z', 'https://avatars.githubusercontent.com/u/1370?v=4', 'https://api.github.com/users/notanumber', 'https://github.com/notanumber', 'https://api.github.com/users/notanumber/followers', 'https://api.github.com/users/notanumber/following', 'https://api.github.com/users/notanumber/gists', 'https://api.github.com/users/notanumber/starred', 'https://api.github.com/users/notanumber/repos', 'https://api.github.com/users/notanumber/events', 'https://api.github.com/users/notanumber/received_events', 0); +INSERT INTO `developer` VALUES (1371, 'fcoury', 'C', 0, 0, 0, 0, 0, 0, 0, 'Felipe Coury', 'Gistia Healthcare', 'http://gistia.com', 'Campinas, SP, Brazil', 'felipe.coury@gmail.com', NULL, NULL, 'fcoury', 0, 0, 162, 50, 0, 0, 0, '2008-02-28T01:03:42Z', '2024-10-18T21:56:21Z', 'https://avatars.githubusercontent.com/u/1371?v=4', 'https://api.github.com/users/fcoury', 'https://github.com/fcoury', 'https://api.github.com/users/fcoury/followers', 'https://api.github.com/users/fcoury/following', 'https://api.github.com/users/fcoury/gists', 'https://api.github.com/users/fcoury/starred', 'https://api.github.com/users/fcoury/repos', 'https://api.github.com/users/fcoury/events', 'https://api.github.com/users/fcoury/received_events', 0); +INSERT INTO `developer` VALUES (1373, 'jacky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacky Baltes', 'University of Manitoba', 'http://www.cs.umanitoba.ca/~jacky', 'Winnipeg, MB', 'jacky@cs.umanitoba.ca', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-02-28T01:05:54Z', '2021-06-09T03:27:02Z', 'https://avatars.githubusercontent.com/u/1373?v=4', 'https://api.github.com/users/jacky', 'https://github.com/jacky', 'https://api.github.com/users/jacky/followers', 'https://api.github.com/users/jacky/following', 'https://api.github.com/users/jacky/gists', 'https://api.github.com/users/jacky/starred', 'https://api.github.com/users/jacky/repos', 'https://api.github.com/users/jacky/events', 'https://api.github.com/users/jacky/received_events', 0); +INSERT INTO `developer` VALUES (1374, 'Interrupt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chad Cuddigan', NULL, 'www.intrrpt.com', 'Berkeley, CA', 'cuddigan@gmail.com', NULL, NULL, NULL, 0, 0, 148, 18, 0, 0, 0, '2008-02-28T01:08:27Z', '2024-07-12T20:03:34Z', 'https://avatars.githubusercontent.com/u/1374?v=4', 'https://api.github.com/users/Interrupt', 'https://github.com/Interrupt', 'https://api.github.com/users/Interrupt/followers', 'https://api.github.com/users/Interrupt/following', 'https://api.github.com/users/Interrupt/gists', 'https://api.github.com/users/Interrupt/starred', 'https://api.github.com/users/Interrupt/repos', 'https://api.github.com/users/Interrupt/events', 'https://api.github.com/users/Interrupt/received_events', 0); +INSERT INTO `developer` VALUES (1375, 'cdr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Coder (moved to @coder)', NULL, 'https://coder.com', 'Austin, TX', 'contact@coder.com', NULL, 'New home @coder ', 'CoderHQ', 0, 0, 6, 0, 0, 0, 0, '2008-02-28T01:11:21Z', '2022-02-27T08:00:01Z', 'https://avatars.githubusercontent.com/u/1375?v=4', 'https://api.github.com/users/cdr', 'https://github.com/cdr', 'https://api.github.com/users/cdr/followers', 'https://api.github.com/users/cdr/following', 'https://api.github.com/users/cdr/gists', 'https://api.github.com/users/cdr/starred', 'https://api.github.com/users/cdr/repos', 'https://api.github.com/users/cdr/events', 'https://api.github.com/users/cdr/received_events', 0); +INSERT INTO `developer` VALUES (1376, 'altitude-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T01:12:08Z', '2016-02-26T22:34:40Z', 'https://avatars.githubusercontent.com/u/1376?v=4', 'https://api.github.com/users/altitude-xx', 'https://github.com/altitude-xx', 'https://api.github.com/users/altitude-xx/followers', 'https://api.github.com/users/altitude-xx/following', 'https://api.github.com/users/altitude-xx/gists', 'https://api.github.com/users/altitude-xx/starred', 'https://api.github.com/users/altitude-xx/repos', 'https://api.github.com/users/altitude-xx/events', 'https://api.github.com/users/altitude-xx/received_events', 0); +INSERT INTO `developer` VALUES (1377, 'stefanpenner', 'C+', 22.793522703982667, 0, 0, 0, 0, 0, 0, 'Stefan Penner', '@LinkedIn', 'http://iamstef.net/', 'Salt Lake City, Utah', NULL, NULL, NULL, NULL, 0, 0, 1614, 28, 0, 0, 0, '2008-02-28T01:15:06Z', '2024-10-27T17:33:09Z', 'https://avatars.githubusercontent.com/u/1377?v=4', 'https://api.github.com/users/stefanpenner', 'https://github.com/stefanpenner', 'https://api.github.com/users/stefanpenner/followers', 'https://api.github.com/users/stefanpenner/following', 'https://api.github.com/users/stefanpenner/gists', 'https://api.github.com/users/stefanpenner/starred', 'https://api.github.com/users/stefanpenner/repos', 'https://api.github.com/users/stefanpenner/events', 'https://api.github.com/users/stefanpenner/received_events', 0); +INSERT INTO `developer` VALUES (1378, 'kjell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kjell Olsen', NULL, '', '未知', 'kjell@leanside.com', NULL, NULL, NULL, 0, 0, 27, 12, 0, 0, 0, '2008-02-28T01:17:54Z', '2023-12-16T00:23:08Z', 'https://avatars.githubusercontent.com/u/1378?v=4', 'https://api.github.com/users/kjell', 'https://github.com/kjell', 'https://api.github.com/users/kjell/followers', 'https://api.github.com/users/kjell/following', 'https://api.github.com/users/kjell/gists', 'https://api.github.com/users/kjell/starred', 'https://api.github.com/users/kjell/repos', 'https://api.github.com/users/kjell/events', 'https://api.github.com/users/kjell/received_events', 0); +INSERT INTO `developer` VALUES (1379, 'spent', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T01:21:08Z', '2022-06-22T18:54:50Z', 'https://avatars.githubusercontent.com/u/1379?v=4', 'https://api.github.com/users/spent', 'https://github.com/spent', 'https://api.github.com/users/spent/followers', 'https://api.github.com/users/spent/following', 'https://api.github.com/users/spent/gists', 'https://api.github.com/users/spent/starred', 'https://api.github.com/users/spent/repos', 'https://api.github.com/users/spent/events', 'https://api.github.com/users/spent/received_events', 0); +INSERT INTO `developer` VALUES (1380, 'ramon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ramon Soares', NULL, 'http://ramonsoares.com/', 'Salvador, Bahia, Brazil', NULL, NULL, 'Software Engineer', NULL, 0, 0, 46, 27, 0, 0, 0, '2008-02-28T01:27:40Z', '2024-08-03T20:51:28Z', 'https://avatars.githubusercontent.com/u/1380?v=4', 'https://api.github.com/users/ramon', 'https://github.com/ramon', 'https://api.github.com/users/ramon/followers', 'https://api.github.com/users/ramon/following', 'https://api.github.com/users/ramon/gists', 'https://api.github.com/users/ramon/starred', 'https://api.github.com/users/ramon/repos', 'https://api.github.com/users/ramon/events', 'https://api.github.com/users/ramon/received_events', 0); +INSERT INTO `developer` VALUES (1381, 'cleitonfco', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cleiton Francisco', 'Óticas Carol', 'http://www.cleitonfco.com.br', 'Teresina, PI, Brasil', 'cleitonfco@gmail.com', 'true', NULL, NULL, 0, 0, 54, 41, 0, 0, 0, '2008-02-28T01:34:48Z', '2024-09-11T00:15:42Z', 'https://avatars.githubusercontent.com/u/1381?v=4', 'https://api.github.com/users/cleitonfco', 'https://github.com/cleitonfco', 'https://api.github.com/users/cleitonfco/followers', 'https://api.github.com/users/cleitonfco/following', 'https://api.github.com/users/cleitonfco/gists', 'https://api.github.com/users/cleitonfco/starred', 'https://api.github.com/users/cleitonfco/repos', 'https://api.github.com/users/cleitonfco/events', 'https://api.github.com/users/cleitonfco/received_events', 0); +INSERT INTO `developer` VALUES (1382, 'Fyda', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fyda', NULL, '', 'Canada', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-28T01:35:38Z', '2023-02-04T03:13:25Z', 'https://avatars.githubusercontent.com/u/1382?v=4', 'https://api.github.com/users/Fyda', 'https://github.com/Fyda', 'https://api.github.com/users/Fyda/followers', 'https://api.github.com/users/Fyda/following', 'https://api.github.com/users/Fyda/gists', 'https://api.github.com/users/Fyda/starred', 'https://api.github.com/users/Fyda/repos', 'https://api.github.com/users/Fyda/events', 'https://api.github.com/users/Fyda/received_events', 0); +INSERT INTO `developer` VALUES (1383, 'mdaines', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://slowscan.net', '未知', NULL, NULL, NULL, NULL, 0, 0, 82, 0, 0, 0, 0, '2008-02-28T01:39:54Z', '2024-08-20T00:12:07Z', 'https://avatars.githubusercontent.com/u/1383?v=4', 'https://api.github.com/users/mdaines', 'https://github.com/mdaines', 'https://api.github.com/users/mdaines/followers', 'https://api.github.com/users/mdaines/following', 'https://api.github.com/users/mdaines/gists', 'https://api.github.com/users/mdaines/starred', 'https://api.github.com/users/mdaines/repos', 'https://api.github.com/users/mdaines/events', 'https://api.github.com/users/mdaines/received_events', 0); +INSERT INTO `developer` VALUES (1384, 'justin', 'C', 1.5293537056269053, 0, 0, 0, 0, 0, 0, 'Justin Williams', '@pro-football-focus ', 'https://justinw.me', 'Denver, CO', NULL, NULL, 'Mobile application developer located in sunny Denver, Colorado.', 'justin', 0, 0, 374, 26, 0, 0, 0, '2008-02-28T01:43:10Z', '2024-10-31T21:47:59Z', 'https://avatars.githubusercontent.com/u/1384?v=4', 'https://api.github.com/users/justin', 'https://github.com/justin', 'https://api.github.com/users/justin/followers', 'https://api.github.com/users/justin/following', 'https://api.github.com/users/justin/gists', 'https://api.github.com/users/justin/starred', 'https://api.github.com/users/justin/repos', 'https://api.github.com/users/justin/events', 'https://api.github.com/users/justin/received_events', 0); +INSERT INTO `developer` VALUES (1385, 'jonshea', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Shea', NULL, 'jonshea.com', 'Brooklyn, NY', NULL, 'true', NULL, 'jonshea', 0, 0, 39, 95, 0, 0, 0, '2008-02-28T01:43:34Z', '2024-06-05T00:02:52Z', 'https://avatars.githubusercontent.com/u/1385?v=4', 'https://api.github.com/users/jonshea', 'https://github.com/jonshea', 'https://api.github.com/users/jonshea/followers', 'https://api.github.com/users/jonshea/following', 'https://api.github.com/users/jonshea/gists', 'https://api.github.com/users/jonshea/starred', 'https://api.github.com/users/jonshea/repos', 'https://api.github.com/users/jonshea/events', 'https://api.github.com/users/jonshea/received_events', 0); +INSERT INTO `developer` VALUES (1387, 'stuart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stuart Coyle', NULL, '', 'Brisbane, Australia', 'stuart.coyle@gmail.com', NULL, NULL, NULL, 0, 0, 20, 7, 0, 0, 0, '2008-02-28T01:50:44Z', '2024-09-04T22:51:38Z', 'https://avatars.githubusercontent.com/u/1387?v=4', 'https://api.github.com/users/stuart', 'https://github.com/stuart', 'https://api.github.com/users/stuart/followers', 'https://api.github.com/users/stuart/following', 'https://api.github.com/users/stuart/gists', 'https://api.github.com/users/stuart/starred', 'https://api.github.com/users/stuart/repos', 'https://api.github.com/users/stuart/events', 'https://api.github.com/users/stuart/received_events', 0); +INSERT INTO `developer` VALUES (1388, 'greut', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yoan Blanc', NULL, 'http://yoan.dosimple.ch/', 'Switzerland', NULL, 'true', ':fondue: ', NULL, 0, 0, 284, 617, 0, 0, 0, '2008-02-28T01:54:10Z', '2024-10-15T11:18:45Z', 'https://avatars.githubusercontent.com/u/1388?v=4', 'https://api.github.com/users/greut', 'https://github.com/greut', 'https://api.github.com/users/greut/followers', 'https://api.github.com/users/greut/following', 'https://api.github.com/users/greut/gists', 'https://api.github.com/users/greut/starred', 'https://api.github.com/users/greut/repos', 'https://api.github.com/users/greut/events', 'https://api.github.com/users/greut/received_events', 0); +INSERT INTO `developer` VALUES (1389, 'crdlb', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T01:56:37Z', '2020-11-09T03:14:09Z', 'https://avatars.githubusercontent.com/u/1389?v=4', 'https://api.github.com/users/crdlb', 'https://github.com/crdlb', 'https://api.github.com/users/crdlb/followers', 'https://api.github.com/users/crdlb/following', 'https://api.github.com/users/crdlb/gists', 'https://api.github.com/users/crdlb/starred', 'https://api.github.com/users/crdlb/repos', 'https://api.github.com/users/crdlb/events', 'https://api.github.com/users/crdlb/received_events', 0); +INSERT INTO `developer` VALUES (1390, 'esiegel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Siegel', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 19, 14, 0, 0, 0, '2008-02-28T02:01:57Z', '2024-06-07T15:03:57Z', 'https://avatars.githubusercontent.com/u/1390?v=4', 'https://api.github.com/users/esiegel', 'https://github.com/esiegel', 'https://api.github.com/users/esiegel/followers', 'https://api.github.com/users/esiegel/following', 'https://api.github.com/users/esiegel/gists', 'https://api.github.com/users/esiegel/starred', 'https://api.github.com/users/esiegel/repos', 'https://api.github.com/users/esiegel/events', 'https://api.github.com/users/esiegel/received_events', 0); +INSERT INTO `developer` VALUES (1391, 'ashchan', 'C', 7.256960516474344, 0, 0, 0, 0, 0, 0, 'Jianming Chen', 'Centax Inc.', '', 'Saitama Japan', 'james@ashchan.com', 'true', 'Developer, from China with love, living in Japan.', 'ashchan', 0, 0, 708, 47, 0, 0, 0, '2008-02-28T02:13:48Z', '2024-09-27T00:30:06Z', 'https://avatars.githubusercontent.com/u/1391?v=4', 'https://api.github.com/users/ashchan', 'https://github.com/ashchan', 'https://api.github.com/users/ashchan/followers', 'https://api.github.com/users/ashchan/following', 'https://api.github.com/users/ashchan/gists', 'https://api.github.com/users/ashchan/starred', 'https://api.github.com/users/ashchan/repos', 'https://api.github.com/users/ashchan/events', 'https://api.github.com/users/ashchan/received_events', 0); +INSERT INTO `developer` VALUES (1392, 'bcotton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bob Cotton', 'Grafana Labs', 'https://medium.com/@bob_cotton', 'Boulder, CO USA', 'bob.cotton@gmail.com', NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2008-02-28T02:15:10Z', '2024-11-04T16:43:30Z', 'https://avatars.githubusercontent.com/u/1392?v=4', 'https://api.github.com/users/bcotton', 'https://github.com/bcotton', 'https://api.github.com/users/bcotton/followers', 'https://api.github.com/users/bcotton/following', 'https://api.github.com/users/bcotton/gists', 'https://api.github.com/users/bcotton/starred', 'https://api.github.com/users/bcotton/repos', 'https://api.github.com/users/bcotton/events', 'https://api.github.com/users/bcotton/received_events', 0); +INSERT INTO `developer` VALUES (1393, 'tageorgiou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Georgiou', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 9, 0, 0, 0, '2008-02-28T02:15:26Z', '2024-03-28T18:35:33Z', 'https://avatars.githubusercontent.com/u/1393?v=4', 'https://api.github.com/users/tageorgiou', 'https://github.com/tageorgiou', 'https://api.github.com/users/tageorgiou/followers', 'https://api.github.com/users/tageorgiou/following', 'https://api.github.com/users/tageorgiou/gists', 'https://api.github.com/users/tageorgiou/starred', 'https://api.github.com/users/tageorgiou/repos', 'https://api.github.com/users/tageorgiou/events', 'https://api.github.com/users/tageorgiou/received_events', 0); +INSERT INTO `developer` VALUES (1394, 'cablehead', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Gayton', NULL, 'https://ndyg.co', 'Toronto, Canada ❄️', 'andy@thecablelounge.com', NULL, NULL, 'cablelounger', 0, 0, 101, 112, 0, 0, 0, '2008-02-28T02:16:21Z', '2024-11-02T19:21:08Z', 'https://avatars.githubusercontent.com/u/1394?v=4', 'https://api.github.com/users/cablehead', 'https://github.com/cablehead', 'https://api.github.com/users/cablehead/followers', 'https://api.github.com/users/cablehead/following', 'https://api.github.com/users/cablehead/gists', 'https://api.github.com/users/cablehead/starred', 'https://api.github.com/users/cablehead/repos', 'https://api.github.com/users/cablehead/events', 'https://api.github.com/users/cablehead/received_events', 0); +INSERT INTO `developer` VALUES (1395, 'weldyss', 'C', 0, 0, 0, 0, 0, 0, 0, 'Weldys Santos', NULL, 'https://weldyss.tech', 'São Luís, MA, Brazil', NULL, 'true', 'Developer', NULL, 0, 0, 55, 36, 0, 0, 0, '2008-02-28T02:21:07Z', '2024-10-18T14:56:09Z', 'https://avatars.githubusercontent.com/u/1395?v=4', 'https://api.github.com/users/weldyss', 'https://github.com/weldyss', 'https://api.github.com/users/weldyss/followers', 'https://api.github.com/users/weldyss/following', 'https://api.github.com/users/weldyss/gists', 'https://api.github.com/users/weldyss/starred', 'https://api.github.com/users/weldyss/repos', 'https://api.github.com/users/weldyss/events', 'https://api.github.com/users/weldyss/received_events', 0); +INSERT INTO `developer` VALUES (1396, 'anaisbetts', 'B-', 31.710754864583468, 0, 0, 0, 0, 0, 0, 'Ani Betts', 'Anthropic', 'blog.anaisbetts.org', 'Berlin', 'anais@anaisbetts.org', NULL, 'Margot Tenenbaum as software developer.', NULL, 0, 0, 2134, 1, 0, 0, 0, '2008-02-28T02:26:12Z', '2024-11-01T07:57:37Z', 'https://avatars.githubusercontent.com/u/1396?v=4', 'https://api.github.com/users/anaisbetts', 'https://github.com/anaisbetts', 'https://api.github.com/users/anaisbetts/followers', 'https://api.github.com/users/anaisbetts/following', 'https://api.github.com/users/anaisbetts/gists', 'https://api.github.com/users/anaisbetts/starred', 'https://api.github.com/users/anaisbetts/repos', 'https://api.github.com/users/anaisbetts/events', 'https://api.github.com/users/anaisbetts/received_events', 0); +INSERT INTO `developer` VALUES (1397, 'jedharris', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jed Harris', 'Mindloom', 'http://jed.jive.com/', 'Berkeley, CA', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T02:26:18Z', '2022-04-29T17:01:41Z', 'https://avatars.githubusercontent.com/u/1397?v=4', 'https://api.github.com/users/jedharris', 'https://github.com/jedharris', 'https://api.github.com/users/jedharris/followers', 'https://api.github.com/users/jedharris/following', 'https://api.github.com/users/jedharris/gists', 'https://api.github.com/users/jedharris/starred', 'https://api.github.com/users/jedharris/repos', 'https://api.github.com/users/jedharris/events', 'https://api.github.com/users/jedharris/received_events', 0); +INSERT INTO `developer` VALUES (1398, 'keegnotrub', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Krug', '@elbongurk ', '', 'Stevens Point, WI', NULL, NULL, NULL, NULL, 0, 0, 14, 2, 0, 0, 0, '2008-02-28T02:27:38Z', '2024-10-05T17:07:17Z', 'https://avatars.githubusercontent.com/u/1398?v=4', 'https://api.github.com/users/keegnotrub', 'https://github.com/keegnotrub', 'https://api.github.com/users/keegnotrub/followers', 'https://api.github.com/users/keegnotrub/following', 'https://api.github.com/users/keegnotrub/gists', 'https://api.github.com/users/keegnotrub/starred', 'https://api.github.com/users/keegnotrub/repos', 'https://api.github.com/users/keegnotrub/events', 'https://api.github.com/users/keegnotrub/received_events', 0); +INSERT INTO `developer` VALUES (1400, 'neilio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Neil Lee', NULL, '', 'Toronto, Canada', NULL, 'true', NULL, NULL, 0, 0, 17, 5, 0, 0, 0, '2008-02-28T02:41:51Z', '2024-10-17T00:36:31Z', 'https://avatars.githubusercontent.com/u/1400?v=4', 'https://api.github.com/users/neilio', 'https://github.com/neilio', 'https://api.github.com/users/neilio/followers', 'https://api.github.com/users/neilio/following', 'https://api.github.com/users/neilio/gists', 'https://api.github.com/users/neilio/starred', 'https://api.github.com/users/neilio/repos', 'https://api.github.com/users/neilio/events', 'https://api.github.com/users/neilio/received_events', 0); +INSERT INTO `developer` VALUES (1401, 'h3h', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bradford Fults', NULL, 'https://bradfordfults.com/', 'Austin, Texas', NULL, NULL, 'Elegant, developer-friendly languages and code. Interfaces are everything. Code is for humans.', NULL, 0, 0, 120, 19, 0, 0, 0, '2008-02-28T02:42:37Z', '2024-10-30T01:08:33Z', 'https://avatars.githubusercontent.com/u/1401?v=4', 'https://api.github.com/users/h3h', 'https://github.com/h3h', 'https://api.github.com/users/h3h/followers', 'https://api.github.com/users/h3h/following', 'https://api.github.com/users/h3h/gists', 'https://api.github.com/users/h3h/starred', 'https://api.github.com/users/h3h/repos', 'https://api.github.com/users/h3h/events', 'https://api.github.com/users/h3h/received_events', 0); +INSERT INTO `developer` VALUES (1402, 'trevrosen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trevor Rosen', 'GitHub', '', 'R\'lyeh', NULL, NULL, 'Supply chain security engineering @ GitHub. @sigstore TSC. Previously @solarwinds @rapid7 @metasploit.', 'trevrosen', 0, 0, 80, 17, 0, 0, 0, '2008-02-28T02:44:31Z', '2024-07-03T00:21:45Z', 'https://avatars.githubusercontent.com/u/1402?v=4', 'https://api.github.com/users/trevrosen', 'https://github.com/trevrosen', 'https://api.github.com/users/trevrosen/followers', 'https://api.github.com/users/trevrosen/following', 'https://api.github.com/users/trevrosen/gists', 'https://api.github.com/users/trevrosen/starred', 'https://api.github.com/users/trevrosen/repos', 'https://api.github.com/users/trevrosen/events', 'https://api.github.com/users/trevrosen/received_events', 0); +INSERT INTO `developer` VALUES (1403, 'liebling', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-28T02:44:49Z', '2024-08-30T18:45:27Z', 'https://avatars.githubusercontent.com/u/1403?v=4', 'https://api.github.com/users/liebling', 'https://github.com/liebling', 'https://api.github.com/users/liebling/followers', 'https://api.github.com/users/liebling/following', 'https://api.github.com/users/liebling/gists', 'https://api.github.com/users/liebling/starred', 'https://api.github.com/users/liebling/repos', 'https://api.github.com/users/liebling/events', 'https://api.github.com/users/liebling/received_events', 0); +INSERT INTO `developer` VALUES (1404, 'afair', 'C', 0, 0, 0, 0, 0, 0, 0, 'Allen Fair', '@biglist ', 'https://girders.org', 'King of Prussia, PA', 'allen.fair@gmail.com', NULL, 'Searching for the perfect abstraction', 'allenfair', 0, 0, 31, 2, 0, 0, 0, '2008-02-28T02:46:00Z', '2024-10-13T17:12:07Z', 'https://avatars.githubusercontent.com/u/1404?v=4', 'https://api.github.com/users/afair', 'https://github.com/afair', 'https://api.github.com/users/afair/followers', 'https://api.github.com/users/afair/following', 'https://api.github.com/users/afair/gists', 'https://api.github.com/users/afair/starred', 'https://api.github.com/users/afair/repos', 'https://api.github.com/users/afair/events', 'https://api.github.com/users/afair/received_events', 0); +INSERT INTO `developer` VALUES (1405, 'fannar', 'C', 0, 0, 0, 0, 0, 0, 0, 'fannar', NULL, '', 'Internet', NULL, NULL, NULL, 'fannar', 0, 0, 38, 20, 0, 0, 0, '2008-02-28T02:46:12Z', '2024-10-17T18:57:04Z', 'https://avatars.githubusercontent.com/u/1405?v=4', 'https://api.github.com/users/fannar', 'https://github.com/fannar', 'https://api.github.com/users/fannar/followers', 'https://api.github.com/users/fannar/following', 'https://api.github.com/users/fannar/gists', 'https://api.github.com/users/fannar/starred', 'https://api.github.com/users/fannar/repos', 'https://api.github.com/users/fannar/events', 'https://api.github.com/users/fannar/received_events', 0); +INSERT INTO `developer` VALUES (1406, 'dangoldin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Goldin', 'https://www.twingdata.com', 'https://dangoldin.com/', 'NJ', 'dangoldin@gmail.com', 'true', 'CEO @ TwingData (https://www.twingdata.com/). I enjoy exploring obscure data sets and strongly typed languages.', 'dangoldin', 0, 0, 80, 19, 0, 0, 0, '2008-02-28T02:51:05Z', '2024-08-13T02:39:06Z', 'https://avatars.githubusercontent.com/u/1406?v=4', 'https://api.github.com/users/dangoldin', 'https://github.com/dangoldin', 'https://api.github.com/users/dangoldin/followers', 'https://api.github.com/users/dangoldin/following', 'https://api.github.com/users/dangoldin/gists', 'https://api.github.com/users/dangoldin/starred', 'https://api.github.com/users/dangoldin/repos', 'https://api.github.com/users/dangoldin/events', 'https://api.github.com/users/dangoldin/received_events', 0); +INSERT INTO `developer` VALUES (1407, 'freels', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Freels', '@fauna ', 'http://matt.freels.name', 'Boulder, CO', 'matt@freels.name', NULL, 'Co-founder and Chief Architect @fauna', NULL, 0, 0, 154, 51, 0, 0, 0, '2008-02-28T02:55:36Z', '2024-09-24T20:33:11Z', 'https://avatars.githubusercontent.com/u/1407?v=4', 'https://api.github.com/users/freels', 'https://github.com/freels', 'https://api.github.com/users/freels/followers', 'https://api.github.com/users/freels/following', 'https://api.github.com/users/freels/gists', 'https://api.github.com/users/freels/starred', 'https://api.github.com/users/freels/repos', 'https://api.github.com/users/freels/events', 'https://api.github.com/users/freels/received_events', 0); +INSERT INTO `developer` VALUES (1408, 'hadronzoo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Griffith', NULL, 'https://keybase.io/joshua', 'Dallas, TX', 'contact@joshuagriffith.com', NULL, NULL, NULL, 0, 0, 38, 20, 0, 0, 0, '2008-02-28T02:56:56Z', '2024-10-31T23:18:48Z', 'https://avatars.githubusercontent.com/u/1408?v=4', 'https://api.github.com/users/hadronzoo', 'https://github.com/hadronzoo', 'https://api.github.com/users/hadronzoo/followers', 'https://api.github.com/users/hadronzoo/following', 'https://api.github.com/users/hadronzoo/gists', 'https://api.github.com/users/hadronzoo/starred', 'https://api.github.com/users/hadronzoo/repos', 'https://api.github.com/users/hadronzoo/events', 'https://api.github.com/users/hadronzoo/received_events', 0); +INSERT INTO `developer` VALUES (1410, 'complex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tony Richards', NULL, 'http://complex.github.io', 'Colorado', NULL, NULL, NULL, NULL, 0, 0, 11, 10, 0, 0, 0, '2008-02-28T02:59:08Z', '2024-06-26T16:15:15Z', 'https://avatars.githubusercontent.com/u/1410?v=4', 'https://api.github.com/users/complex', 'https://github.com/complex', 'https://api.github.com/users/complex/followers', 'https://api.github.com/users/complex/following', 'https://api.github.com/users/complex/gists', 'https://api.github.com/users/complex/starred', 'https://api.github.com/users/complex/repos', 'https://api.github.com/users/complex/events', 'https://api.github.com/users/complex/received_events', 0); +INSERT INTO `developer` VALUES (1411, 'mcroydon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Croydon', NULL, 'https://postneo.com', 'Austin, Texas', 'mcroydon@gmail.com', NULL, NULL, NULL, 0, 0, 185, 440, 0, 0, 0, '2008-02-28T03:05:37Z', '2024-11-04T04:19:13Z', 'https://avatars.githubusercontent.com/u/1411?v=4', 'https://api.github.com/users/mcroydon', 'https://github.com/mcroydon', 'https://api.github.com/users/mcroydon/followers', 'https://api.github.com/users/mcroydon/following', 'https://api.github.com/users/mcroydon/gists', 'https://api.github.com/users/mcroydon/starred', 'https://api.github.com/users/mcroydon/repos', 'https://api.github.com/users/mcroydon/events', 'https://api.github.com/users/mcroydon/received_events', 0); +INSERT INTO `developer` VALUES (1412, 'tristan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tristan King', '@bakkenbaeck ', 'https://tristan.sh/', 'Oslo, Norway', 'tristan.king@gmail.com', NULL, NULL, 'tristanking', 0, 0, 54, 28, 0, 0, 0, '2008-02-28T03:09:43Z', '2024-08-21T06:44:30Z', 'https://avatars.githubusercontent.com/u/1412?v=4', 'https://api.github.com/users/tristan', 'https://github.com/tristan', 'https://api.github.com/users/tristan/followers', 'https://api.github.com/users/tristan/following', 'https://api.github.com/users/tristan/gists', 'https://api.github.com/users/tristan/starred', 'https://api.github.com/users/tristan/repos', 'https://api.github.com/users/tristan/events', 'https://api.github.com/users/tristan/received_events', 0); +INSERT INTO `developer` VALUES (1413, 'afairley', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-02-28T03:16:50Z', '2024-07-19T19:53:46Z', 'https://avatars.githubusercontent.com/u/1413?v=4', 'https://api.github.com/users/afairley', 'https://github.com/afairley', 'https://api.github.com/users/afairley/followers', 'https://api.github.com/users/afairley/following', 'https://api.github.com/users/afairley/gists', 'https://api.github.com/users/afairley/starred', 'https://api.github.com/users/afairley/repos', 'https://api.github.com/users/afairley/events', 'https://api.github.com/users/afairley/received_events', 0); +INSERT INTO `developer` VALUES (1414, 'rmon', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T03:19:47Z', '2024-05-13T23:34:53Z', 'https://avatars.githubusercontent.com/u/1414?v=4', 'https://api.github.com/users/rmon', 'https://github.com/rmon', 'https://api.github.com/users/rmon/followers', 'https://api.github.com/users/rmon/following', 'https://api.github.com/users/rmon/gists', 'https://api.github.com/users/rmon/starred', 'https://api.github.com/users/rmon/repos', 'https://api.github.com/users/rmon/events', 'https://api.github.com/users/rmon/received_events', 0); +INSERT INTO `developer` VALUES (1416, 'dsrw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Wadden', '@shopify', '', 'Sackville, NB, Canada', 'scott.wadden@gmail.com', NULL, NULL, NULL, 0, 0, 35, 22, 0, 0, 0, '2008-02-28T03:23:32Z', '2024-11-01T02:24:17Z', 'https://avatars.githubusercontent.com/u/1416?v=4', 'https://api.github.com/users/dsrw', 'https://github.com/dsrw', 'https://api.github.com/users/dsrw/followers', 'https://api.github.com/users/dsrw/following', 'https://api.github.com/users/dsrw/gists', 'https://api.github.com/users/dsrw/starred', 'https://api.github.com/users/dsrw/repos', 'https://api.github.com/users/dsrw/events', 'https://api.github.com/users/dsrw/received_events', 0); +INSERT INTO `developer` VALUES (1417, 'davidmohara', 'C', 0, 0, 0, 0, 0, 0, 0, 'David O\'Hara', 'Improving', 'www.driventodevelop.com', 'Dallas, TX', 'david@davidohara.net', 'true', NULL, 'davidmohara', 0, 0, 37, 14, 0, 0, 0, '2008-02-28T03:31:08Z', '2024-08-05T15:29:00Z', 'https://avatars.githubusercontent.com/u/1417?v=4', 'https://api.github.com/users/davidmohara', 'https://github.com/davidmohara', 'https://api.github.com/users/davidmohara/followers', 'https://api.github.com/users/davidmohara/following', 'https://api.github.com/users/davidmohara/gists', 'https://api.github.com/users/davidmohara/starred', 'https://api.github.com/users/davidmohara/repos', 'https://api.github.com/users/davidmohara/events', 'https://api.github.com/users/davidmohara/received_events', 0); +INSERT INTO `developer` VALUES (1418, 'ynd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yann N. Dauphin', 'Google AI', 'http://www.dauphin.io', '未知', 'yann@dauphin.io', NULL, 'Research Scientist', NULL, 0, 0, 175, 1, 0, 0, 0, '2008-02-28T03:35:28Z', '2024-09-27T07:13:58Z', 'https://avatars.githubusercontent.com/u/1418?v=4', 'https://api.github.com/users/ynd', 'https://github.com/ynd', 'https://api.github.com/users/ynd/followers', 'https://api.github.com/users/ynd/following', 'https://api.github.com/users/ynd/gists', 'https://api.github.com/users/ynd/starred', 'https://api.github.com/users/ynd/repos', 'https://api.github.com/users/ynd/events', 'https://api.github.com/users/ynd/received_events', 0); +INSERT INTO `developer` VALUES (1419, 'brentd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brent Dillingham', NULL, '', 'Asheville, NC', NULL, NULL, 'Mainly I collect LGTM gifs', NULL, 0, 0, 45, 0, 0, 0, 0, '2008-02-28T03:40:22Z', '2024-10-17T01:46:16Z', 'https://avatars.githubusercontent.com/u/1419?v=4', 'https://api.github.com/users/brentd', 'https://github.com/brentd', 'https://api.github.com/users/brentd/followers', 'https://api.github.com/users/brentd/following', 'https://api.github.com/users/brentd/gists', 'https://api.github.com/users/brentd/starred', 'https://api.github.com/users/brentd/repos', 'https://api.github.com/users/brentd/events', 'https://api.github.com/users/brentd/received_events', 0); +INSERT INTO `developer` VALUES (1420, 'vcgomes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vinicius Gomes', NULL, '', 'Oregon, USA', 'vinicius.gomes@intel.com', NULL, NULL, NULL, 0, 0, 19, 0, 0, 0, 0, '2008-02-28T03:42:58Z', '2024-10-17T02:29:00Z', 'https://avatars.githubusercontent.com/u/1420?v=4', 'https://api.github.com/users/vcgomes', 'https://github.com/vcgomes', 'https://api.github.com/users/vcgomes/followers', 'https://api.github.com/users/vcgomes/following', 'https://api.github.com/users/vcgomes/gists', 'https://api.github.com/users/vcgomes/starred', 'https://api.github.com/users/vcgomes/repos', 'https://api.github.com/users/vcgomes/events', 'https://api.github.com/users/vcgomes/received_events', 0); +INSERT INTO `developer` VALUES (1421, 'flyingmachine', 'C', 5.4049199908111, 0, 0, 0, 0, 0, 0, 'Daniel Higginbotham', NULL, 'http://www.flyingmachinestudios.com', '未知', 'daniel@flyingmachinestudios.com', NULL, NULL, NULL, 0, 0, 600, 0, 0, 0, 0, '2008-02-28T03:51:30Z', '2024-10-22T03:02:33Z', 'https://avatars.githubusercontent.com/u/1421?v=4', 'https://api.github.com/users/flyingmachine', 'https://github.com/flyingmachine', 'https://api.github.com/users/flyingmachine/followers', 'https://api.github.com/users/flyingmachine/following', 'https://api.github.com/users/flyingmachine/gists', 'https://api.github.com/users/flyingmachine/starred', 'https://api.github.com/users/flyingmachine/repos', 'https://api.github.com/users/flyingmachine/events', 'https://api.github.com/users/flyingmachine/received_events', 0); +INSERT INTO `developer` VALUES (1422, 'pphetra', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 39, 1, 0, 0, 0, '2008-02-28T03:55:13Z', '2024-10-30T01:29:49Z', 'https://avatars.githubusercontent.com/u/1422?v=4', 'https://api.github.com/users/pphetra', 'https://github.com/pphetra', 'https://api.github.com/users/pphetra/followers', 'https://api.github.com/users/pphetra/following', 'https://api.github.com/users/pphetra/gists', 'https://api.github.com/users/pphetra/starred', 'https://api.github.com/users/pphetra/repos', 'https://api.github.com/users/pphetra/events', 'https://api.github.com/users/pphetra/received_events', 0); +INSERT INTO `developer` VALUES (1423, 'lisamac', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lisa McMillan', NULL, 'http://lisamcmillan.com', 'Barrie Ontario Canada', 'lisa.mac.mcmillan@gmail.com', NULL, NULL, NULL, 0, 0, 9, 14, 0, 0, 0, '2008-02-28T04:01:42Z', '2020-11-06T03:46:35Z', 'https://avatars.githubusercontent.com/u/1423?v=4', 'https://api.github.com/users/lisamac', 'https://github.com/lisamac', 'https://api.github.com/users/lisamac/followers', 'https://api.github.com/users/lisamac/following', 'https://api.github.com/users/lisamac/gists', 'https://api.github.com/users/lisamac/starred', 'https://api.github.com/users/lisamac/repos', 'https://api.github.com/users/lisamac/events', 'https://api.github.com/users/lisamac/received_events', 0); +INSERT INTO `developer` VALUES (1424, 'mcolyer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Colyer', 'Shopify', 'http://matt.colyer.name', 'Redwood City, CA', 'matt@colyer.name', NULL, NULL, NULL, 0, 0, 268, 9, 0, 0, 0, '2008-02-28T04:04:51Z', '2024-09-26T22:28:11Z', 'https://avatars.githubusercontent.com/u/1424?v=4', 'https://api.github.com/users/mcolyer', 'https://github.com/mcolyer', 'https://api.github.com/users/mcolyer/followers', 'https://api.github.com/users/mcolyer/following', 'https://api.github.com/users/mcolyer/gists', 'https://api.github.com/users/mcolyer/starred', 'https://api.github.com/users/mcolyer/repos', 'https://api.github.com/users/mcolyer/events', 'https://api.github.com/users/mcolyer/received_events', 0); +INSERT INTO `developer` VALUES (1425, 'gdagley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Geoffrey Dagley', NULL, 'http://www.geoffreydagley.com', 'McKinney, TX', 'gdagley@gmail.com', NULL, NULL, NULL, 0, 0, 57, 96, 0, 0, 0, '2008-02-28T04:06:39Z', '2024-10-19T17:28:58Z', 'https://avatars.githubusercontent.com/u/1425?v=4', 'https://api.github.com/users/gdagley', 'https://github.com/gdagley', 'https://api.github.com/users/gdagley/followers', 'https://api.github.com/users/gdagley/following', 'https://api.github.com/users/gdagley/gists', 'https://api.github.com/users/gdagley/starred', 'https://api.github.com/users/gdagley/repos', 'https://api.github.com/users/gdagley/events', 'https://api.github.com/users/gdagley/received_events', 0); +INSERT INTO `developer` VALUES (1426, 'chrisk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Kampmeier', NULL, 'kampers.net', 'Orlando, FL', 'chris@kampers.net', NULL, NULL, NULL, 0, 0, 82, 48, 0, 0, 0, '2008-02-28T04:14:07Z', '2024-10-24T04:20:54Z', 'https://avatars.githubusercontent.com/u/1426?v=4', 'https://api.github.com/users/chrisk', 'https://github.com/chrisk', 'https://api.github.com/users/chrisk/followers', 'https://api.github.com/users/chrisk/following', 'https://api.github.com/users/chrisk/gists', 'https://api.github.com/users/chrisk/starred', 'https://api.github.com/users/chrisk/repos', 'https://api.github.com/users/chrisk/events', 'https://api.github.com/users/chrisk/received_events', 0); +INSERT INTO `developer` VALUES (1427, 'jpostula', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T04:15:26Z', '2024-10-29T13:20:10Z', 'https://avatars.githubusercontent.com/u/1427?v=4', 'https://api.github.com/users/jpostula', 'https://github.com/jpostula', 'https://api.github.com/users/jpostula/followers', 'https://api.github.com/users/jpostula/following', 'https://api.github.com/users/jpostula/gists', 'https://api.github.com/users/jpostula/starred', 'https://api.github.com/users/jpostula/repos', 'https://api.github.com/users/jpostula/events', 'https://api.github.com/users/jpostula/received_events', 0); +INSERT INTO `developer` VALUES (1428, 'sudachen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexey Sudachen', NULL, '', 'Chile', 'alexey@sudachen.xyz', NULL, 'Continuous improvement is better than delayed perfection. (c) Mark Twain', 'the_sudachen', 0, 0, 106, 62, 0, 0, 0, '2008-02-28T04:37:12Z', '2024-11-02T22:41:03Z', 'https://avatars.githubusercontent.com/u/1428?v=4', 'https://api.github.com/users/sudachen', 'https://github.com/sudachen', 'https://api.github.com/users/sudachen/followers', 'https://api.github.com/users/sudachen/following', 'https://api.github.com/users/sudachen/gists', 'https://api.github.com/users/sudachen/starred', 'https://api.github.com/users/sudachen/repos', 'https://api.github.com/users/sudachen/events', 'https://api.github.com/users/sudachen/received_events', 0); +INSERT INTO `developer` VALUES (1429, 'Rickasaurus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rick Minerich', NULL, 'richardminerich.com', 'Hoboken, NJ', NULL, NULL, NULL, NULL, 0, 0, 137, 16, 0, 0, 0, '2008-02-28T04:49:28Z', '2023-03-17T03:00:07Z', 'https://avatars.githubusercontent.com/u/1429?v=4', 'https://api.github.com/users/Rickasaurus', 'https://github.com/Rickasaurus', 'https://api.github.com/users/Rickasaurus/followers', 'https://api.github.com/users/Rickasaurus/following', 'https://api.github.com/users/Rickasaurus/gists', 'https://api.github.com/users/Rickasaurus/starred', 'https://api.github.com/users/Rickasaurus/repos', 'https://api.github.com/users/Rickasaurus/events', 'https://api.github.com/users/Rickasaurus/received_events', 0); +INSERT INTO `developer` VALUES (1430, 'na9da', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nanda', NULL, '', 'Melbourne, Australia', NULL, NULL, NULL, NULL, 0, 0, 32, 69, 0, 0, 0, '2008-02-28T04:58:03Z', '2024-10-22T04:39:43Z', 'https://avatars.githubusercontent.com/u/1430?v=4', 'https://api.github.com/users/na9da', 'https://github.com/na9da', 'https://api.github.com/users/na9da/followers', 'https://api.github.com/users/na9da/following', 'https://api.github.com/users/na9da/gists', 'https://api.github.com/users/na9da/starred', 'https://api.github.com/users/na9da/repos', 'https://api.github.com/users/na9da/events', 'https://api.github.com/users/na9da/received_events', 0); +INSERT INTO `developer` VALUES (1431, 'paulstansifer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Stansifer', 'Google', 'http://ccs.neu.edu/~pauls', 'Between the Quabbin Reservoir and the Deer Island Wastewater Treatment Plant', 'paul.stansifer@gmail.com', NULL, 'Programmer, metaprogrammer, occasional metametaprogrammer. (He/him)', 'PaulStansifer', 0, 0, 52, 1, 0, 0, 0, '2008-02-28T05:12:07Z', '2024-10-23T19:40:29Z', 'https://avatars.githubusercontent.com/u/1431?v=4', 'https://api.github.com/users/paulstansifer', 'https://github.com/paulstansifer', 'https://api.github.com/users/paulstansifer/followers', 'https://api.github.com/users/paulstansifer/following', 'https://api.github.com/users/paulstansifer/gists', 'https://api.github.com/users/paulstansifer/starred', 'https://api.github.com/users/paulstansifer/repos', 'https://api.github.com/users/paulstansifer/events', 'https://api.github.com/users/paulstansifer/received_events', 0); +INSERT INTO `developer` VALUES (1432, 'stphnclysmth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clay Smith', NULL, 'https://clay.computer', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 2, 0, 0, 0, '2008-02-28T05:16:40Z', '2024-10-01T05:52:44Z', 'https://avatars.githubusercontent.com/u/1432?v=4', 'https://api.github.com/users/stphnclysmth', 'https://github.com/stphnclysmth', 'https://api.github.com/users/stphnclysmth/followers', 'https://api.github.com/users/stphnclysmth/following', 'https://api.github.com/users/stphnclysmth/gists', 'https://api.github.com/users/stphnclysmth/starred', 'https://api.github.com/users/stphnclysmth/repos', 'https://api.github.com/users/stphnclysmth/events', 'https://api.github.com/users/stphnclysmth/received_events', 0); +INSERT INTO `developer` VALUES (1433, 'papabear', 'C', 0, 0, 0, 0, 5, 0, 0, 'Jeremy', 'Scip.io', '', 'PA', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-02-28T05:19:46Z', '2023-11-10T15:19:58Z', 'https://avatars.githubusercontent.com/u/1433?v=4', 'https://api.github.com/users/papabear', 'https://github.com/papabear', 'https://api.github.com/users/papabear/followers', 'https://api.github.com/users/papabear/following', 'https://api.github.com/users/papabear/gists', 'https://api.github.com/users/papabear/starred', 'https://api.github.com/users/papabear/repos', 'https://api.github.com/users/papabear/events', 'https://api.github.com/users/papabear/received_events', 0); +INSERT INTO `developer` VALUES (1434, 'Bertg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bert Goethals', 'Younited', '', 'Ghent, Belgium', 'bertgoethals@sent.com', 'true', NULL, NULL, 0, 0, 26, 9, 0, 0, 0, '2008-02-28T05:23:14Z', '2024-11-03T20:18:06Z', 'https://avatars.githubusercontent.com/u/1434?v=4', 'https://api.github.com/users/Bertg', 'https://github.com/Bertg', 'https://api.github.com/users/Bertg/followers', 'https://api.github.com/users/Bertg/following', 'https://api.github.com/users/Bertg/gists', 'https://api.github.com/users/Bertg/starred', 'https://api.github.com/users/Bertg/repos', 'https://api.github.com/users/Bertg/events', 'https://api.github.com/users/Bertg/received_events', 0); +INSERT INTO `developer` VALUES (1435, 'davemerwin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Merwin', 'DEPT', 'http://www.davemerwin.com', 'Eugene, OR', 'dave@davemerwin.com', 'true', NULL, NULL, 0, 0, 38, 36, 0, 0, 0, '2008-02-28T05:25:14Z', '2024-10-28T15:00:02Z', 'https://avatars.githubusercontent.com/u/1435?v=4', 'https://api.github.com/users/davemerwin', 'https://github.com/davemerwin', 'https://api.github.com/users/davemerwin/followers', 'https://api.github.com/users/davemerwin/following', 'https://api.github.com/users/davemerwin/gists', 'https://api.github.com/users/davemerwin/starred', 'https://api.github.com/users/davemerwin/repos', 'https://api.github.com/users/davemerwin/events', 'https://api.github.com/users/davemerwin/received_events', 0); +INSERT INTO `developer` VALUES (1436, 'bob', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vadym Kalion', NULL, '', 'UA', NULL, NULL, NULL, NULL, 0, 0, 20, 4, 0, 0, 0, '2008-02-28T05:38:20Z', '2024-06-22T22:08:00Z', 'https://avatars.githubusercontent.com/u/1436?v=4', 'https://api.github.com/users/bob', 'https://github.com/bob', 'https://api.github.com/users/bob/followers', 'https://api.github.com/users/bob/following', 'https://api.github.com/users/bob/gists', 'https://api.github.com/users/bob/starred', 'https://api.github.com/users/bob/repos', 'https://api.github.com/users/bob/events', 'https://api.github.com/users/bob/received_events', 0); +INSERT INTO `developer` VALUES (1437, 'kobs', 'C', 0, 0, 0, 0, 0, 0, 0, 'ken sanders', NULL, '', ' NYC, San Francisco, Gainesville, FL', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-28T05:40:03Z', '2024-11-02T21:46:09Z', 'https://avatars.githubusercontent.com/u/1437?v=4', 'https://api.github.com/users/kobs', 'https://github.com/kobs', 'https://api.github.com/users/kobs/followers', 'https://api.github.com/users/kobs/following', 'https://api.github.com/users/kobs/gists', 'https://api.github.com/users/kobs/starred', 'https://api.github.com/users/kobs/repos', 'https://api.github.com/users/kobs/events', 'https://api.github.com/users/kobs/received_events', 0); +INSERT INTO `developer` VALUES (1438, 'alexmoore', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Moore', NULL, 'http://alexmoore.io', 'Columbus, Ohio', NULL, NULL, NULL, NULL, 0, 0, 75, 60, 0, 0, 0, '2008-02-28T05:40:06Z', '2024-10-01T03:26:47Z', 'https://avatars.githubusercontent.com/u/1438?v=4', 'https://api.github.com/users/alexmoore', 'https://github.com/alexmoore', 'https://api.github.com/users/alexmoore/followers', 'https://api.github.com/users/alexmoore/following', 'https://api.github.com/users/alexmoore/gists', 'https://api.github.com/users/alexmoore/starred', 'https://api.github.com/users/alexmoore/repos', 'https://api.github.com/users/alexmoore/events', 'https://api.github.com/users/alexmoore/received_events', 0); +INSERT INTO `developer` VALUES (1440, 'mikedouglas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Douglas', 'Instagram', 'http://entropy.io', 'New York, NY', 'git@entropy.io', NULL, NULL, 'mikedouglas', 0, 0, 16, 5, 0, 0, 0, '2008-02-28T05:41:39Z', '2024-09-21T01:38:57Z', 'https://avatars.githubusercontent.com/u/1440?v=4', 'https://api.github.com/users/mikedouglas', 'https://github.com/mikedouglas', 'https://api.github.com/users/mikedouglas/followers', 'https://api.github.com/users/mikedouglas/following', 'https://api.github.com/users/mikedouglas/gists', 'https://api.github.com/users/mikedouglas/starred', 'https://api.github.com/users/mikedouglas/repos', 'https://api.github.com/users/mikedouglas/events', 'https://api.github.com/users/mikedouglas/received_events', 0); +INSERT INTO `developer` VALUES (1441, 'blakelivingston', 'C', 0, 0, 0, 0, 0, 0, 0, 'Blake Livingston', NULL, '', '未知', 'blake.a.livingston@gmail.com', NULL, NULL, NULL, 0, 0, 7, 4, 0, 0, 0, '2008-02-28T05:46:06Z', '2022-03-10T23:44:02Z', 'https://avatars.githubusercontent.com/u/1441?v=4', 'https://api.github.com/users/blakelivingston', 'https://github.com/blakelivingston', 'https://api.github.com/users/blakelivingston/followers', 'https://api.github.com/users/blakelivingston/following', 'https://api.github.com/users/blakelivingston/gists', 'https://api.github.com/users/blakelivingston/starred', 'https://api.github.com/users/blakelivingston/repos', 'https://api.github.com/users/blakelivingston/events', 'https://api.github.com/users/blakelivingston/received_events', 0); +INSERT INTO `developer` VALUES (1442, 'arturhasselblad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Artur Hasselblad', '@Partnersense', '', 'Gothenburg', NULL, NULL, 'Salaryman', NULL, 0, 0, 4, 2, 0, 0, 0, '2008-02-28T05:46:58Z', '2024-09-15T10:58:29Z', 'https://avatars.githubusercontent.com/u/1442?v=4', 'https://api.github.com/users/arturhasselblad', 'https://github.com/arturhasselblad', 'https://api.github.com/users/arturhasselblad/followers', 'https://api.github.com/users/arturhasselblad/following', 'https://api.github.com/users/arturhasselblad/gists', 'https://api.github.com/users/arturhasselblad/starred', 'https://api.github.com/users/arturhasselblad/repos', 'https://api.github.com/users/arturhasselblad/events', 'https://api.github.com/users/arturhasselblad/received_events', 0); +INSERT INTO `developer` VALUES (1443, 'Screwperman', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T05:47:04Z', '2019-12-15T13:57:21Z', 'https://avatars.githubusercontent.com/u/1443?v=4', 'https://api.github.com/users/Screwperman', 'https://github.com/Screwperman', 'https://api.github.com/users/Screwperman/followers', 'https://api.github.com/users/Screwperman/following', 'https://api.github.com/users/Screwperman/gists', 'https://api.github.com/users/Screwperman/starred', 'https://api.github.com/users/Screwperman/repos', 'https://api.github.com/users/Screwperman/events', 'https://api.github.com/users/Screwperman/received_events', 0); +INSERT INTO `developer` VALUES (1444, 'rbarazi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rida Al Barazi', '@amidship ', 'http://rida.me', 'Toronto, Canada', NULL, NULL, NULL, NULL, 0, 0, 87, 70, 0, 0, 0, '2008-02-28T06:05:11Z', '2024-11-03T09:33:03Z', 'https://avatars.githubusercontent.com/u/1444?v=4', 'https://api.github.com/users/rbarazi', 'https://github.com/rbarazi', 'https://api.github.com/users/rbarazi/followers', 'https://api.github.com/users/rbarazi/following', 'https://api.github.com/users/rbarazi/gists', 'https://api.github.com/users/rbarazi/starred', 'https://api.github.com/users/rbarazi/repos', 'https://api.github.com/users/rbarazi/events', 'https://api.github.com/users/rbarazi/received_events', 0); +INSERT INTO `developer` VALUES (1445, 'pierrevdb', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T06:06:29Z', '2024-09-23T06:02:34Z', 'https://avatars.githubusercontent.com/u/1445?v=4', 'https://api.github.com/users/pierrevdb', 'https://github.com/pierrevdb', 'https://api.github.com/users/pierrevdb/followers', 'https://api.github.com/users/pierrevdb/following', 'https://api.github.com/users/pierrevdb/gists', 'https://api.github.com/users/pierrevdb/starred', 'https://api.github.com/users/pierrevdb/repos', 'https://api.github.com/users/pierrevdb/events', 'https://api.github.com/users/pierrevdb/received_events', 0); +INSERT INTO `developer` VALUES (1446, 'maborg', 'C', 0, 0, 0, 0, 0, 0, 0, 'marco borgna', NULL, 'https://sites.google.com/view/marco-borgna/home', 'turin,italy', 'borgna.marco@gmail.com', NULL, NULL, NULL, 0, 0, 5, 4, 0, 0, 0, '2008-02-28T06:13:43Z', '2024-10-09T08:39:18Z', 'https://avatars.githubusercontent.com/u/1446?v=4', 'https://api.github.com/users/maborg', 'https://github.com/maborg', 'https://api.github.com/users/maborg/followers', 'https://api.github.com/users/maborg/following', 'https://api.github.com/users/maborg/gists', 'https://api.github.com/users/maborg/starred', 'https://api.github.com/users/maborg/repos', 'https://api.github.com/users/maborg/events', 'https://api.github.com/users/maborg/received_events', 0); +INSERT INTO `developer` VALUES (1448, 'bdainton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Dainton', 'Brian Dainton Leadership LLC', 'http://briandainton.com', 'Austin, TX', NULL, NULL, 'Engineering Leadership Coach fostering a generation of compassionate and effective dev leaders.\r\nFounder x 5, Emmy winner. Always hacking. Anti-racist.', 'bdainton', 0, 0, 31, 5, 0, 0, 0, '2008-02-28T06:22:22Z', '2024-10-24T19:30:42Z', 'https://avatars.githubusercontent.com/u/1448?v=4', 'https://api.github.com/users/bdainton', 'https://github.com/bdainton', 'https://api.github.com/users/bdainton/followers', 'https://api.github.com/users/bdainton/following', 'https://api.github.com/users/bdainton/gists', 'https://api.github.com/users/bdainton/starred', 'https://api.github.com/users/bdainton/repos', 'https://api.github.com/users/bdainton/events', 'https://api.github.com/users/bdainton/received_events', 0); +INSERT INTO `developer` VALUES (1450, 'mintchaos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Metts', NULL, '', 'Seattle, WA', 'xian@mintchaos.com', NULL, NULL, NULL, 0, 0, 131, 31, 0, 0, 0, '2008-02-28T06:24:00Z', '2024-10-01T16:17:32Z', 'https://avatars.githubusercontent.com/u/1450?v=4', 'https://api.github.com/users/mintchaos', 'https://github.com/mintchaos', 'https://api.github.com/users/mintchaos/followers', 'https://api.github.com/users/mintchaos/following', 'https://api.github.com/users/mintchaos/gists', 'https://api.github.com/users/mintchaos/starred', 'https://api.github.com/users/mintchaos/repos', 'https://api.github.com/users/mintchaos/events', 'https://api.github.com/users/mintchaos/received_events', 0); +INSERT INTO `developer` VALUES (1451, 'asp742', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Patterson', NULL, '', '未知', 'asp742@gmail.com', NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2008-02-28T06:24:02Z', '2021-04-12T01:55:07Z', 'https://avatars.githubusercontent.com/u/1451?v=4', 'https://api.github.com/users/asp742', 'https://github.com/asp742', 'https://api.github.com/users/asp742/followers', 'https://api.github.com/users/asp742/following', 'https://api.github.com/users/asp742/gists', 'https://api.github.com/users/asp742/starred', 'https://api.github.com/users/asp742/repos', 'https://api.github.com/users/asp742/events', 'https://api.github.com/users/asp742/received_events', 0); +INSERT INTO `developer` VALUES (1452, 'khamer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Hamer', 'Imarc', 'http://www.hamer.io/', 'Dover, NH', 'kevin.hamer@gmail.com', NULL, 'Principal Front-end Engineer at Imarc –\r\n http://www.imarc.com/', NULL, 0, 0, 35, 9, 0, 0, 0, '2008-02-28T06:25:22Z', '2024-10-18T18:17:38Z', 'https://avatars.githubusercontent.com/u/1452?v=4', 'https://api.github.com/users/khamer', 'https://github.com/khamer', 'https://api.github.com/users/khamer/followers', 'https://api.github.com/users/khamer/following', 'https://api.github.com/users/khamer/gists', 'https://api.github.com/users/khamer/starred', 'https://api.github.com/users/khamer/repos', 'https://api.github.com/users/khamer/events', 'https://api.github.com/users/khamer/received_events', 0); +INSERT INTO `developer` VALUES (1453, 'ghoseb', 'C', 2.541116585387381, 0, 0, 0, 0, 0, 0, 'Baishampayan Ghose', '@teamohana ', 'beegee.xyz', 'San Francisco / Pune', 'b.ghose@gnu.org', NULL, 'Hacker. Entrepreneur.\r\nFounder & CTO TeamOhana, Inc.\r\nPreviously:\r\nCo-founder & CTO Helpshift, Inc.', 'ghoseb', 0, 0, 433, 5, 0, 0, 0, '2008-02-28T06:31:54Z', '2024-08-18T11:19:54Z', 'https://avatars.githubusercontent.com/u/1453?v=4', 'https://api.github.com/users/ghoseb', 'https://github.com/ghoseb', 'https://api.github.com/users/ghoseb/followers', 'https://api.github.com/users/ghoseb/following', 'https://api.github.com/users/ghoseb/gists', 'https://api.github.com/users/ghoseb/starred', 'https://api.github.com/users/ghoseb/repos', 'https://api.github.com/users/ghoseb/events', 'https://api.github.com/users/ghoseb/received_events', 0); +INSERT INTO `developer` VALUES (1454, 'tommi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tommi Asiala', NULL, 'https://tommiasiala.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-28T06:39:48Z', '2024-10-15T13:42:19Z', 'https://avatars.githubusercontent.com/u/1454?v=4', 'https://api.github.com/users/tommi', 'https://github.com/tommi', 'https://api.github.com/users/tommi/followers', 'https://api.github.com/users/tommi/following', 'https://api.github.com/users/tommi/gists', 'https://api.github.com/users/tommi/starred', 'https://api.github.com/users/tommi/repos', 'https://api.github.com/users/tommi/events', 'https://api.github.com/users/tommi/received_events', 0); +INSERT INTO `developer` VALUES (1455, 'Petteri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Petteri', NULL, 'http://last.fm/user/petteri', 'Helsinki, Finland', NULL, NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-02-28T06:43:41Z', '2024-10-30T07:51:08Z', 'https://avatars.githubusercontent.com/u/1455?v=4', 'https://api.github.com/users/Petteri', 'https://github.com/Petteri', 'https://api.github.com/users/Petteri/followers', 'https://api.github.com/users/Petteri/following', 'https://api.github.com/users/Petteri/gists', 'https://api.github.com/users/Petteri/starred', 'https://api.github.com/users/Petteri/repos', 'https://api.github.com/users/Petteri/events', 'https://api.github.com/users/Petteri/received_events', 0); +INSERT INTO `developer` VALUES (1456, 'tomjen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tommy Jensen', 'Right', '', 'Aalborg, dk', 'git@tomjen.net', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T06:43:45Z', '2024-07-09T19:31:57Z', 'https://avatars.githubusercontent.com/u/1456?v=4', 'https://api.github.com/users/tomjen', 'https://github.com/tomjen', 'https://api.github.com/users/tomjen/followers', 'https://api.github.com/users/tomjen/following', 'https://api.github.com/users/tomjen/gists', 'https://api.github.com/users/tomjen/starred', 'https://api.github.com/users/tomjen/repos', 'https://api.github.com/users/tomjen/events', 'https://api.github.com/users/tomjen/received_events', 0); +INSERT INTO `developer` VALUES (1457, 'zwischenzugs', 'C', 0, 0, 0, 0, 0, 0, 0, 'zwischenzugs', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-02-28T06:43:54Z', '2019-06-05T04:03:24Z', 'https://avatars.githubusercontent.com/u/1457?v=4', 'https://api.github.com/users/zwischenzugs', 'https://github.com/zwischenzugs', 'https://api.github.com/users/zwischenzugs/followers', 'https://api.github.com/users/zwischenzugs/following', 'https://api.github.com/users/zwischenzugs/gists', 'https://api.github.com/users/zwischenzugs/starred', 'https://api.github.com/users/zwischenzugs/repos', 'https://api.github.com/users/zwischenzugs/events', 'https://api.github.com/users/zwischenzugs/received_events', 0); +INSERT INTO `developer` VALUES (1458, 'wilhelmtell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matan Nassau', NULL, '', '未知', 'matan.nassau@gmail.com', 'true', NULL, NULL, 0, 0, 12, 17, 0, 0, 0, '2008-02-28T06:50:52Z', '2024-07-12T13:04:57Z', 'https://avatars.githubusercontent.com/u/1458?v=4', 'https://api.github.com/users/wilhelmtell', 'https://github.com/wilhelmtell', 'https://api.github.com/users/wilhelmtell/followers', 'https://api.github.com/users/wilhelmtell/following', 'https://api.github.com/users/wilhelmtell/gists', 'https://api.github.com/users/wilhelmtell/starred', 'https://api.github.com/users/wilhelmtell/repos', 'https://api.github.com/users/wilhelmtell/events', 'https://api.github.com/users/wilhelmtell/received_events', 0); +INSERT INTO `developer` VALUES (1459, 'bartvdo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bart van der Ouderaa', 'Rabobank', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T06:51:38Z', '2023-11-14T13:52:26Z', 'https://avatars.githubusercontent.com/u/1459?v=4', 'https://api.github.com/users/bartvdo', 'https://github.com/bartvdo', 'https://api.github.com/users/bartvdo/followers', 'https://api.github.com/users/bartvdo/following', 'https://api.github.com/users/bartvdo/gists', 'https://api.github.com/users/bartvdo/starred', 'https://api.github.com/users/bartvdo/repos', 'https://api.github.com/users/bartvdo/events', 'https://api.github.com/users/bartvdo/received_events', 0); +INSERT INTO `developer` VALUES (1460, 'lunatech', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raj Shekhar', NULL, 'http://rajshekhar.net', '未知', 'rajlist@rajshekhar.net', NULL, NULL, NULL, 0, 0, 8, 22, 0, 0, 0, '2008-02-28T06:52:22Z', '2024-10-23T19:43:29Z', 'https://avatars.githubusercontent.com/u/1460?v=4', 'https://api.github.com/users/lunatech', 'https://github.com/lunatech', 'https://api.github.com/users/lunatech/followers', 'https://api.github.com/users/lunatech/following', 'https://api.github.com/users/lunatech/gists', 'https://api.github.com/users/lunatech/starred', 'https://api.github.com/users/lunatech/repos', 'https://api.github.com/users/lunatech/events', 'https://api.github.com/users/lunatech/received_events', 0); +INSERT INTO `developer` VALUES (1461, 'godeater', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bryan Childs', NULL, '', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 10, 9, 0, 0, 0, '2008-02-28T07:01:31Z', '2024-10-24T23:45:28Z', 'https://avatars.githubusercontent.com/u/1461?v=4', 'https://api.github.com/users/godeater', 'https://github.com/godeater', 'https://api.github.com/users/godeater/followers', 'https://api.github.com/users/godeater/following', 'https://api.github.com/users/godeater/gists', 'https://api.github.com/users/godeater/starred', 'https://api.github.com/users/godeater/repos', 'https://api.github.com/users/godeater/events', 'https://api.github.com/users/godeater/received_events', 0); +INSERT INTO `developer` VALUES (1462, 'sempuki', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan McDougall', NULL, '', '未知', NULL, NULL, 'I like C++.\r\n\r\nOriginal profile photo: https://www.donkom.ca/maple-leaf-flag/', NULL, 0, 0, 9, 2, 0, 0, 0, '2008-02-28T07:02:28Z', '2024-09-25T20:40:23Z', 'https://avatars.githubusercontent.com/u/1462?v=4', 'https://api.github.com/users/sempuki', 'https://github.com/sempuki', 'https://api.github.com/users/sempuki/followers', 'https://api.github.com/users/sempuki/following', 'https://api.github.com/users/sempuki/gists', 'https://api.github.com/users/sempuki/starred', 'https://api.github.com/users/sempuki/repos', 'https://api.github.com/users/sempuki/events', 'https://api.github.com/users/sempuki/received_events', 0); +INSERT INTO `developer` VALUES (1463, 'vnasvadi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vladimir Nasvadi', NULL, '', 'Austria', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T07:02:59Z', '2024-09-25T18:11:50Z', 'https://avatars.githubusercontent.com/u/1463?v=4', 'https://api.github.com/users/vnasvadi', 'https://github.com/vnasvadi', 'https://api.github.com/users/vnasvadi/followers', 'https://api.github.com/users/vnasvadi/following', 'https://api.github.com/users/vnasvadi/gists', 'https://api.github.com/users/vnasvadi/starred', 'https://api.github.com/users/vnasvadi/repos', 'https://api.github.com/users/vnasvadi/events', 'https://api.github.com/users/vnasvadi/received_events', 0); +INSERT INTO `developer` VALUES (1464, 'Oblomov', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://wok.oblomov.eu', 'Catania, Italy', NULL, 'true', NULL, NULL, 0, 0, 48, 15, 0, 0, 0, '2008-02-28T07:08:07Z', '2024-09-25T14:13:15Z', 'https://avatars.githubusercontent.com/u/1464?v=4', 'https://api.github.com/users/Oblomov', 'https://github.com/Oblomov', 'https://api.github.com/users/Oblomov/followers', 'https://api.github.com/users/Oblomov/following', 'https://api.github.com/users/Oblomov/gists', 'https://api.github.com/users/Oblomov/starred', 'https://api.github.com/users/Oblomov/repos', 'https://api.github.com/users/Oblomov/events', 'https://api.github.com/users/Oblomov/received_events', 0); +INSERT INTO `developer` VALUES (1465, 'rgrove', 'C', 8.903218761508336, 0, 0, 0, 0, 0, 0, 'Ryan Grove', 'SmugMug', 'https://wonko.com', 'Portland, OR', 'ryan@wonko.com', 'true', 'I like pie.', NULL, 0, 0, 804, 47, 0, 0, 0, '2008-02-28T07:08:51Z', '2024-10-12T04:29:41Z', 'https://avatars.githubusercontent.com/u/1465?v=4', 'https://api.github.com/users/rgrove', 'https://github.com/rgrove', 'https://api.github.com/users/rgrove/followers', 'https://api.github.com/users/rgrove/following', 'https://api.github.com/users/rgrove/gists', 'https://api.github.com/users/rgrove/starred', 'https://api.github.com/users/rgrove/repos', 'https://api.github.com/users/rgrove/events', 'https://api.github.com/users/rgrove/received_events', 0); +INSERT INTO `developer` VALUES (1466, 'dovadi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frank Oxener', 'Dovadi', 'http://dovadi.com', 'Alkmaar, Netherlands', 'frank.oxener@gmail.com', NULL, NULL, NULL, 0, 0, 23, 24, 0, 0, 0, '2008-02-28T07:14:02Z', '2024-10-02T16:03:22Z', 'https://avatars.githubusercontent.com/u/1466?v=4', 'https://api.github.com/users/dovadi', 'https://github.com/dovadi', 'https://api.github.com/users/dovadi/followers', 'https://api.github.com/users/dovadi/following', 'https://api.github.com/users/dovadi/gists', 'https://api.github.com/users/dovadi/starred', 'https://api.github.com/users/dovadi/repos', 'https://api.github.com/users/dovadi/events', 'https://api.github.com/users/dovadi/received_events', 0); +INSERT INTO `developer` VALUES (1467, 'mlesniak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Lesniak', 'Freelancer', 'https://mlesniak.com', 'Muenster, Germany', 'mail@mlesniak.com', 'true', 'Polyglot software engineer, specialised in software architecture, Java, Go, Kotlin, Clean Code, big data, algorithms, ...', 'mlesniak', 0, 0, 65, 19, 0, 0, 0, '2008-02-28T07:16:01Z', '2024-09-26T17:49:21Z', 'https://avatars.githubusercontent.com/u/1467?v=4', 'https://api.github.com/users/mlesniak', 'https://github.com/mlesniak', 'https://api.github.com/users/mlesniak/followers', 'https://api.github.com/users/mlesniak/following', 'https://api.github.com/users/mlesniak/gists', 'https://api.github.com/users/mlesniak/starred', 'https://api.github.com/users/mlesniak/repos', 'https://api.github.com/users/mlesniak/events', 'https://api.github.com/users/mlesniak/received_events', 0); +INSERT INTO `developer` VALUES (1468, 'CodeMangler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dharampal H S', '@TuxMo ', 'https://dharampal.in', 'Bangalore', 'hsdpal@gmail.com', 'true', NULL, 'CodeMangler', 0, 0, 60, 12, 0, 0, 0, '2008-02-28T07:18:54Z', '2024-11-01T09:45:03Z', 'https://avatars.githubusercontent.com/u/1468?v=4', 'https://api.github.com/users/CodeMangler', 'https://github.com/CodeMangler', 'https://api.github.com/users/CodeMangler/followers', 'https://api.github.com/users/CodeMangler/following', 'https://api.github.com/users/CodeMangler/gists', 'https://api.github.com/users/CodeMangler/starred', 'https://api.github.com/users/CodeMangler/repos', 'https://api.github.com/users/CodeMangler/events', 'https://api.github.com/users/CodeMangler/received_events', 0); +INSERT INTO `developer` VALUES (1469, 'tsvgmi', 'C', 0, 0, 0, 0, 0, 0, 0, 'gewok', NULL, '', 'Bay Area, CA', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-28T07:21:09Z', '2024-10-29T05:28:05Z', 'https://avatars.githubusercontent.com/u/1469?v=4', 'https://api.github.com/users/tsvgmi', 'https://github.com/tsvgmi', 'https://api.github.com/users/tsvgmi/followers', 'https://api.github.com/users/tsvgmi/following', 'https://api.github.com/users/tsvgmi/gists', 'https://api.github.com/users/tsvgmi/starred', 'https://api.github.com/users/tsvgmi/repos', 'https://api.github.com/users/tsvgmi/events', 'https://api.github.com/users/tsvgmi/received_events', 0); +INSERT INTO `developer` VALUES (1470, 'alexbndk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Bendiken', NULL, '', '未知', 'alex@bndk.co', NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-28T07:24:18Z', '2024-10-22T04:12:22Z', 'https://avatars.githubusercontent.com/u/1470?v=4', 'https://api.github.com/users/alexbndk', 'https://github.com/alexbndk', 'https://api.github.com/users/alexbndk/followers', 'https://api.github.com/users/alexbndk/following', 'https://api.github.com/users/alexbndk/gists', 'https://api.github.com/users/alexbndk/starred', 'https://api.github.com/users/alexbndk/repos', 'https://api.github.com/users/alexbndk/events', 'https://api.github.com/users/alexbndk/received_events', 0); +INSERT INTO `developer` VALUES (1471, 'melwin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Elwin', NULL, 'http://martin.elwin.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-28T07:29:47Z', '2024-10-20T11:21:01Z', 'https://avatars.githubusercontent.com/u/1471?v=4', 'https://api.github.com/users/melwin', 'https://github.com/melwin', 'https://api.github.com/users/melwin/followers', 'https://api.github.com/users/melwin/following', 'https://api.github.com/users/melwin/gists', 'https://api.github.com/users/melwin/starred', 'https://api.github.com/users/melwin/repos', 'https://api.github.com/users/melwin/events', 'https://api.github.com/users/melwin/received_events', 0); +INSERT INTO `developer` VALUES (1472, 'radical', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ankit Jain', 'Microsoft', '', 'Boston, MA', 'radical@corewars.org', NULL, NULL, NULL, 0, 0, 148, 20, 0, 0, 0, '2008-02-28T07:32:28Z', '2024-07-01T04:46:40Z', 'https://avatars.githubusercontent.com/u/1472?v=4', 'https://api.github.com/users/radical', 'https://github.com/radical', 'https://api.github.com/users/radical/followers', 'https://api.github.com/users/radical/following', 'https://api.github.com/users/radical/gists', 'https://api.github.com/users/radical/starred', 'https://api.github.com/users/radical/repos', 'https://api.github.com/users/radical/events', 'https://api.github.com/users/radical/received_events', 0); +INSERT INTO `developer` VALUES (1473, 'redmar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Redmar Kerkhoff', '@coinrayio', 'https://www.altrady.com/', 'Netherlands', NULL, NULL, NULL, 'rjkerkhoff', 0, 0, 18, 8, 0, 0, 0, '2008-02-28T07:36:32Z', '2024-10-08T16:25:58Z', 'https://avatars.githubusercontent.com/u/1473?v=4', 'https://api.github.com/users/redmar', 'https://github.com/redmar', 'https://api.github.com/users/redmar/followers', 'https://api.github.com/users/redmar/following', 'https://api.github.com/users/redmar/gists', 'https://api.github.com/users/redmar/starred', 'https://api.github.com/users/redmar/repos', 'https://api.github.com/users/redmar/events', 'https://api.github.com/users/redmar/received_events', 0); +INSERT INTO `developer` VALUES (1474, 'nablaone', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rafał Strzaliński', NULL, 'http://nablaone.net/', 'Warsaw, Poland', 'nablaone@gmail.com', NULL, NULL, NULL, 0, 0, 46, 11, 0, 0, 0, '2008-02-28T07:36:53Z', '2024-10-23T18:40:11Z', 'https://avatars.githubusercontent.com/u/1474?v=4', 'https://api.github.com/users/nablaone', 'https://github.com/nablaone', 'https://api.github.com/users/nablaone/followers', 'https://api.github.com/users/nablaone/following', 'https://api.github.com/users/nablaone/gists', 'https://api.github.com/users/nablaone/starred', 'https://api.github.com/users/nablaone/repos', 'https://api.github.com/users/nablaone/events', 'https://api.github.com/users/nablaone/received_events', 0); +INSERT INTO `developer` VALUES (1475, 'sawtelle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Don Sawtelle', NULL, 'linkedin.com/in/donsawtelle', '未知', 'don.sawtelle@gmail.com', 'true', NULL, NULL, 0, 0, 5, 9, 0, 0, 0, '2008-02-28T07:37:35Z', '2023-11-22T21:49:22Z', 'https://avatars.githubusercontent.com/u/1475?v=4', 'https://api.github.com/users/sawtelle', 'https://github.com/sawtelle', 'https://api.github.com/users/sawtelle/followers', 'https://api.github.com/users/sawtelle/following', 'https://api.github.com/users/sawtelle/gists', 'https://api.github.com/users/sawtelle/starred', 'https://api.github.com/users/sawtelle/repos', 'https://api.github.com/users/sawtelle/events', 'https://api.github.com/users/sawtelle/received_events', 0); +INSERT INTO `developer` VALUES (1476, 'thedaniel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Hengeveld', NULL, 'http://danielhengeveld.com', 'Amsterdam / Points beyond', 'danielwh@gmail.com', 'true', 'systems rationalizer', 'thedaniel', 0, 0, 242, 14, 0, 0, 0, '2008-02-28T07:42:30Z', '2024-11-01T15:56:13Z', 'https://avatars.githubusercontent.com/u/1476?v=4', 'https://api.github.com/users/thedaniel', 'https://github.com/thedaniel', 'https://api.github.com/users/thedaniel/followers', 'https://api.github.com/users/thedaniel/following', 'https://api.github.com/users/thedaniel/gists', 'https://api.github.com/users/thedaniel/starred', 'https://api.github.com/users/thedaniel/repos', 'https://api.github.com/users/thedaniel/events', 'https://api.github.com/users/thedaniel/received_events', 0); +INSERT INTO `developer` VALUES (1477, 'anandkunal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kunal Anand', 'Imperva', 'https://kunalanand.com', 'California', NULL, NULL, NULL, 'ka', 0, 0, 118, 52, 0, 0, 0, '2008-02-28T07:45:55Z', '2024-10-13T18:02:04Z', 'https://avatars.githubusercontent.com/u/1477?v=4', 'https://api.github.com/users/anandkunal', 'https://github.com/anandkunal', 'https://api.github.com/users/anandkunal/followers', 'https://api.github.com/users/anandkunal/following', 'https://api.github.com/users/anandkunal/gists', 'https://api.github.com/users/anandkunal/starred', 'https://api.github.com/users/anandkunal/repos', 'https://api.github.com/users/anandkunal/events', 'https://api.github.com/users/anandkunal/received_events', 0); +INSERT INTO `developer` VALUES (1478, 'kamalgs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kamal Govindraj', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 6, 0, 0, 0, '2008-02-28T07:55:26Z', '2024-10-29T09:18:37Z', 'https://avatars.githubusercontent.com/u/1478?v=4', 'https://api.github.com/users/kamalgs', 'https://github.com/kamalgs', 'https://api.github.com/users/kamalgs/followers', 'https://api.github.com/users/kamalgs/following', 'https://api.github.com/users/kamalgs/gists', 'https://api.github.com/users/kamalgs/starred', 'https://api.github.com/users/kamalgs/repos', 'https://api.github.com/users/kamalgs/events', 'https://api.github.com/users/kamalgs/received_events', 0); +INSERT INTO `developer` VALUES (1479, 'slim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Slim Amamou', 'http://supplytensor.com', 'http://NoMemorySpace.wordpress.com', 'Tunis', 'slim.amamou@gmail.com', NULL, NULL, NULL, 0, 0, 74, 63, 0, 0, 0, '2008-02-28T07:56:32Z', '2024-09-04T13:54:20Z', 'https://avatars.githubusercontent.com/u/1479?v=4', 'https://api.github.com/users/slim', 'https://github.com/slim', 'https://api.github.com/users/slim/followers', 'https://api.github.com/users/slim/following', 'https://api.github.com/users/slim/gists', 'https://api.github.com/users/slim/starred', 'https://api.github.com/users/slim/repos', 'https://api.github.com/users/slim/events', 'https://api.github.com/users/slim/received_events', 0); +INSERT INTO `developer` VALUES (1480, 'kinote', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://kinote.org/', 'Donostia', NULL, 'true', NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T07:58:01Z', '2024-09-23T06:12:09Z', 'https://avatars.githubusercontent.com/u/1480?v=4', 'https://api.github.com/users/kinote', 'https://github.com/kinote', 'https://api.github.com/users/kinote/followers', 'https://api.github.com/users/kinote/following', 'https://api.github.com/users/kinote/gists', 'https://api.github.com/users/kinote/starred', 'https://api.github.com/users/kinote/repos', 'https://api.github.com/users/kinote/events', 'https://api.github.com/users/kinote/received_events', 0); +INSERT INTO `developer` VALUES (1481, 'vegai', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vesa Kaihlavirta', NULL, '', 'Finland', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-28T07:59:18Z', '2024-10-19T16:15:37Z', 'https://avatars.githubusercontent.com/u/1481?v=4', 'https://api.github.com/users/vegai', 'https://github.com/vegai', 'https://api.github.com/users/vegai/followers', 'https://api.github.com/users/vegai/following', 'https://api.github.com/users/vegai/gists', 'https://api.github.com/users/vegai/starred', 'https://api.github.com/users/vegai/repos', 'https://api.github.com/users/vegai/events', 'https://api.github.com/users/vegai/received_events', 0); +INSERT INTO `developer` VALUES (1482, 'gaubert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guillaume Aubert', 'www.gmvault.org', 'www.gmvault.org', 'Frankfurt, Germany', 'guillaume.aubert@gmail.com', 'true', NULL, NULL, 0, 0, 94, 21, 0, 0, 0, '2008-02-28T08:07:57Z', '2024-07-09T12:32:20Z', 'https://avatars.githubusercontent.com/u/1482?v=4', 'https://api.github.com/users/gaubert', 'https://github.com/gaubert', 'https://api.github.com/users/gaubert/followers', 'https://api.github.com/users/gaubert/following', 'https://api.github.com/users/gaubert/gists', 'https://api.github.com/users/gaubert/starred', 'https://api.github.com/users/gaubert/repos', 'https://api.github.com/users/gaubert/events', 'https://api.github.com/users/gaubert/received_events', 0); +INSERT INTO `developer` VALUES (1483, 'pjay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philippe Jayet', 'Easybox Technologies Sarl', 'https://easybox.ch/', 'Lausanne, Switzerland', 'philippe@easybox.ch', NULL, 'Software Architect & Senior Software Engineer', NULL, 0, 0, 28, 29, 0, 0, 0, '2008-02-28T08:09:58Z', '2024-10-09T12:56:28Z', 'https://avatars.githubusercontent.com/u/1483?v=4', 'https://api.github.com/users/pjay', 'https://github.com/pjay', 'https://api.github.com/users/pjay/followers', 'https://api.github.com/users/pjay/following', 'https://api.github.com/users/pjay/gists', 'https://api.github.com/users/pjay/starred', 'https://api.github.com/users/pjay/repos', 'https://api.github.com/users/pjay/events', 'https://api.github.com/users/pjay/received_events', 0); +INSERT INTO `developer` VALUES (1484, 'pushkar', 'C', 0, 0, 3, 28, 55, 0, 0, 'Pushkar Kolhe', '@snapchat ', 'http://www.pushkar.name/', '未知', NULL, NULL, NULL, NULL, 0, 0, 66, 4, 0, 0, 0, '2008-02-28T08:14:49Z', '2024-11-03T12:19:30Z', 'https://avatars.githubusercontent.com/u/1484?v=4', 'https://api.github.com/users/pushkar', 'https://github.com/pushkar', 'https://api.github.com/users/pushkar/followers', 'https://api.github.com/users/pushkar/following', 'https://api.github.com/users/pushkar/gists', 'https://api.github.com/users/pushkar/starred', 'https://api.github.com/users/pushkar/repos', 'https://api.github.com/users/pushkar/events', 'https://api.github.com/users/pushkar/received_events', 0); +INSERT INTO `developer` VALUES (1485, 'mbrezu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Miron Brezuleanu', NULL, 'http://mbrezu.me', 'Bucharest', 'mbrezu@gmail.com', NULL, NULL, NULL, 0, 0, 19, 9, 0, 0, 0, '2008-02-28T08:15:06Z', '2024-09-15T07:12:55Z', 'https://avatars.githubusercontent.com/u/1485?v=4', 'https://api.github.com/users/mbrezu', 'https://github.com/mbrezu', 'https://api.github.com/users/mbrezu/followers', 'https://api.github.com/users/mbrezu/following', 'https://api.github.com/users/mbrezu/gists', 'https://api.github.com/users/mbrezu/starred', 'https://api.github.com/users/mbrezu/repos', 'https://api.github.com/users/mbrezu/events', 'https://api.github.com/users/mbrezu/received_events', 0); +INSERT INTO `developer` VALUES (1486, 'tronical', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Hausmann', '@slint-ui', 'https://fosstodon.org/@tronical', 'Berlin ', 'hausmann@gmail.com', NULL, NULL, 'tr0nical', 0, 0, 117, 15, 0, 0, 0, '2008-02-28T08:16:18Z', '2024-10-29T02:59:04Z', 'https://avatars.githubusercontent.com/u/1486?v=4', 'https://api.github.com/users/tronical', 'https://github.com/tronical', 'https://api.github.com/users/tronical/followers', 'https://api.github.com/users/tronical/following', 'https://api.github.com/users/tronical/gists', 'https://api.github.com/users/tronical/starred', 'https://api.github.com/users/tronical/repos', 'https://api.github.com/users/tronical/events', 'https://api.github.com/users/tronical/received_events', 0); +INSERT INTO `developer` VALUES (1487, 'dom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dom Sagolla', NULL, 'http://Dom.net', 'San Francisco, CA', 'Dom@dom.net', NULL, NULL, 'dom', 0, 0, 14, 31, 0, 0, 0, '2008-02-28T08:17:39Z', '2024-09-28T18:58:21Z', 'https://avatars.githubusercontent.com/u/1487?v=4', 'https://api.github.com/users/dom', 'https://github.com/dom', 'https://api.github.com/users/dom/followers', 'https://api.github.com/users/dom/following', 'https://api.github.com/users/dom/gists', 'https://api.github.com/users/dom/starred', 'https://api.github.com/users/dom/repos', 'https://api.github.com/users/dom/events', 'https://api.github.com/users/dom/received_events', 0); +INSERT INTO `developer` VALUES (1488, 'bivab', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Schneider', '@zalando ', 'bivab.de', 'Düsseldorf', 'david.schneider@bivab.de', NULL, NULL, NULL, 0, 0, 42, 40, 0, 0, 0, '2008-02-28T08:18:55Z', '2024-10-27T20:23:51Z', 'https://avatars.githubusercontent.com/u/1488?v=4', 'https://api.github.com/users/bivab', 'https://github.com/bivab', 'https://api.github.com/users/bivab/followers', 'https://api.github.com/users/bivab/following', 'https://api.github.com/users/bivab/gists', 'https://api.github.com/users/bivab/starred', 'https://api.github.com/users/bivab/repos', 'https://api.github.com/users/bivab/events', 'https://api.github.com/users/bivab/received_events', 0); +INSERT INTO `developer` VALUES (1489, 'gene9', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrey Sidorenko', NULL, 'http://www.sidorenko.com/a', 'Minnesota, US', NULL, 'true', NULL, NULL, 0, 0, 52, 29, 0, 0, 0, '2008-02-28T08:22:38Z', '2024-10-24T11:19:57Z', 'https://avatars.githubusercontent.com/u/1489?v=4', 'https://api.github.com/users/gene9', 'https://github.com/gene9', 'https://api.github.com/users/gene9/followers', 'https://api.github.com/users/gene9/following', 'https://api.github.com/users/gene9/gists', 'https://api.github.com/users/gene9/starred', 'https://api.github.com/users/gene9/repos', 'https://api.github.com/users/gene9/events', 'https://api.github.com/users/gene9/received_events', 0); +INSERT INTO `developer` VALUES (1490, 'hassy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hassy Veldstra', '@artilleryio ', 'https://artillery.io/', 'Ireland', 'h@veldstra.org', 'true', 'Working on @artilleryio ', 'hveldstra', 0, 0, 205, 3, 0, 0, 0, '2008-02-28T08:23:24Z', '2024-10-22T14:52:15Z', 'https://avatars.githubusercontent.com/u/1490?v=4', 'https://api.github.com/users/hassy', 'https://github.com/hassy', 'https://api.github.com/users/hassy/followers', 'https://api.github.com/users/hassy/following', 'https://api.github.com/users/hassy/gists', 'https://api.github.com/users/hassy/starred', 'https://api.github.com/users/hassy/repos', 'https://api.github.com/users/hassy/events', 'https://api.github.com/users/hassy/received_events', 0); +INSERT INTO `developer` VALUES (1491, 'markun', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcoen Hirschberg', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 15, 0, 0, 0, '2008-02-28T08:26:38Z', '2023-09-16T07:15:48Z', 'https://avatars.githubusercontent.com/u/1491?v=4', 'https://api.github.com/users/markun', 'https://github.com/markun', 'https://api.github.com/users/markun/followers', 'https://api.github.com/users/markun/following', 'https://api.github.com/users/markun/gists', 'https://api.github.com/users/markun/starred', 'https://api.github.com/users/markun/repos', 'https://api.github.com/users/markun/events', 'https://api.github.com/users/markun/received_events', 0); +INSERT INTO `developer` VALUES (1493, 'bandito', 'C', 0, 0, 0, 0, 0, 0, 0, 'George Chatzigeorgiou', 'Skroutz S.A', 'http://skroutz-is.com', 'Athens, Greece', 'george@skroutz.gr', NULL, NULL, NULL, 0, 0, 55, 21, 0, 0, 0, '2008-02-28T08:30:10Z', '2020-09-26T17:15:49Z', 'https://avatars.githubusercontent.com/u/1493?v=4', 'https://api.github.com/users/bandito', 'https://github.com/bandito', 'https://api.github.com/users/bandito/followers', 'https://api.github.com/users/bandito/following', 'https://api.github.com/users/bandito/gists', 'https://api.github.com/users/bandito/starred', 'https://api.github.com/users/bandito/repos', 'https://api.github.com/users/bandito/events', 'https://api.github.com/users/bandito/received_events', 0); +INSERT INTO `developer` VALUES (1494, 'darrencornwell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Darren Cornwell', 'GoDaddy', 'www.godaddy.com', 'TX', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T08:32:20Z', '2023-05-06T21:12:20Z', 'https://avatars.githubusercontent.com/u/1494?v=4', 'https://api.github.com/users/darrencornwell', 'https://github.com/darrencornwell', 'https://api.github.com/users/darrencornwell/followers', 'https://api.github.com/users/darrencornwell/following', 'https://api.github.com/users/darrencornwell/gists', 'https://api.github.com/users/darrencornwell/starred', 'https://api.github.com/users/darrencornwell/repos', 'https://api.github.com/users/darrencornwell/events', 'https://api.github.com/users/darrencornwell/received_events', 0); +INSERT INTO `developer` VALUES (1495, 'thesite', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T08:36:15Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1495?v=4', 'https://api.github.com/users/thesite', 'https://github.com/thesite', 'https://api.github.com/users/thesite/followers', 'https://api.github.com/users/thesite/following', 'https://api.github.com/users/thesite/gists', 'https://api.github.com/users/thesite/starred', 'https://api.github.com/users/thesite/repos', 'https://api.github.com/users/thesite/events', 'https://api.github.com/users/thesite/received_events', 0); +INSERT INTO `developer` VALUES (1496, 'rgilton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Gilton', 'Adventurous Machines Ltd', '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-28T08:47:43Z', '2024-10-08T16:46:42Z', 'https://avatars.githubusercontent.com/u/1496?v=4', 'https://api.github.com/users/rgilton', 'https://github.com/rgilton', 'https://api.github.com/users/rgilton/followers', 'https://api.github.com/users/rgilton/following', 'https://api.github.com/users/rgilton/gists', 'https://api.github.com/users/rgilton/starred', 'https://api.github.com/users/rgilton/repos', 'https://api.github.com/users/rgilton/events', 'https://api.github.com/users/rgilton/received_events', 0); +INSERT INTO `developer` VALUES (1497, 'mikewest', 'C', 7.548485414032447, 0, 0, 0, 0, 0, 0, 'Mike West', '@googlers ', 'https://mikewest.org/', 'Munich, Germany', 'mike@mikewest.org', NULL, NULL, 'mikewest', 0, 0, 725, 77, 0, 0, 0, '2008-02-28T08:47:55Z', '2024-10-08T06:24:23Z', 'https://avatars.githubusercontent.com/u/1497?v=4', 'https://api.github.com/users/mikewest', 'https://github.com/mikewest', 'https://api.github.com/users/mikewest/followers', 'https://api.github.com/users/mikewest/following', 'https://api.github.com/users/mikewest/gists', 'https://api.github.com/users/mikewest/starred', 'https://api.github.com/users/mikewest/repos', 'https://api.github.com/users/mikewest/events', 'https://api.github.com/users/mikewest/received_events', 0); +INSERT INTO `developer` VALUES (1498, 'arnar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arnar Birgisson', 'Google', 'http://arnar.io', 'San Francisco, California', 'arnarbi@gmail.com', NULL, NULL, NULL, 0, 0, 146, 19, 0, 0, 0, '2008-02-28T08:50:40Z', '2024-10-17T23:07:34Z', 'https://avatars.githubusercontent.com/u/1498?v=4', 'https://api.github.com/users/arnar', 'https://github.com/arnar', 'https://api.github.com/users/arnar/followers', 'https://api.github.com/users/arnar/following', 'https://api.github.com/users/arnar/gists', 'https://api.github.com/users/arnar/starred', 'https://api.github.com/users/arnar/repos', 'https://api.github.com/users/arnar/events', 'https://api.github.com/users/arnar/received_events', 0); +INSERT INTO `developer` VALUES (1499, 'deresh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Krešo Kunjas', '@trikoder ', '', 'Zagreb', 'kkunjas@gmail.com', 'true', NULL, NULL, 0, 0, 13, 4, 0, 0, 0, '2008-02-28T08:51:19Z', '2024-10-21T13:33:48Z', 'https://avatars.githubusercontent.com/u/1499?v=4', 'https://api.github.com/users/deresh', 'https://github.com/deresh', 'https://api.github.com/users/deresh/followers', 'https://api.github.com/users/deresh/following', 'https://api.github.com/users/deresh/gists', 'https://api.github.com/users/deresh/starred', 'https://api.github.com/users/deresh/repos', 'https://api.github.com/users/deresh/events', 'https://api.github.com/users/deresh/received_events', 0); +INSERT INTO `developer` VALUES (1500, 'mstormo', 'C', 0, 0, 0, 0, 0, 0, 0, 'mstormo', NULL, '', 'Houston,TX,USA', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T08:55:50Z', '2024-07-31T12:17:20Z', 'https://avatars.githubusercontent.com/u/1500?v=4', 'https://api.github.com/users/mstormo', 'https://github.com/mstormo', 'https://api.github.com/users/mstormo/followers', 'https://api.github.com/users/mstormo/following', 'https://api.github.com/users/mstormo/gists', 'https://api.github.com/users/mstormo/starred', 'https://api.github.com/users/mstormo/repos', 'https://api.github.com/users/mstormo/events', 'https://api.github.com/users/mstormo/received_events', 0); +INSERT INTO `developer` VALUES (1501, 'czottmann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carlo Zottmann', 'ActionsDotWork.', 'https://actions.work', 'Flensburg, Europe', 'carlo@zottmann.dev', NULL, 'I create productivity tools for macOS & iOS that add Shortcuts features to apps that need them. My aim is to make what you already use work even better for you.', NULL, 0, 0, 186, 33, 0, 0, 0, '2008-02-28T08:56:23Z', '2024-11-02T00:14:08Z', 'https://avatars.githubusercontent.com/u/1501?v=4', 'https://api.github.com/users/czottmann', 'https://github.com/czottmann', 'https://api.github.com/users/czottmann/followers', 'https://api.github.com/users/czottmann/following', 'https://api.github.com/users/czottmann/gists', 'https://api.github.com/users/czottmann/starred', 'https://api.github.com/users/czottmann/repos', 'https://api.github.com/users/czottmann/events', 'https://api.github.com/users/czottmann/received_events', 0); +INSERT INTO `developer` VALUES (1502, 'Niriel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Niriel', 'None, just having some fun', 'https://niriel.wordpress.com', 'Groningen, Netherlands', 'undisclosed', NULL, NULL, NULL, 0, 0, 14, 1, 0, 0, 0, '2008-02-28T08:59:59Z', '2024-08-25T08:35:33Z', 'https://avatars.githubusercontent.com/u/1502?v=4', 'https://api.github.com/users/Niriel', 'https://github.com/Niriel', 'https://api.github.com/users/Niriel/followers', 'https://api.github.com/users/Niriel/following', 'https://api.github.com/users/Niriel/gists', 'https://api.github.com/users/Niriel/starred', 'https://api.github.com/users/Niriel/repos', 'https://api.github.com/users/Niriel/events', 'https://api.github.com/users/Niriel/received_events', 0); +INSERT INTO `developer` VALUES (1503, 'HansF', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hans Fraiponts', NULL, '', 'Ghent', 'fraiponts@gmail.com', NULL, NULL, NULL, 0, 0, 30, 14, 0, 0, 0, '2008-02-28T09:00:16Z', '2024-09-24T11:09:48Z', 'https://avatars.githubusercontent.com/u/1503?v=4', 'https://api.github.com/users/HansF', 'https://github.com/HansF', 'https://api.github.com/users/HansF/followers', 'https://api.github.com/users/HansF/following', 'https://api.github.com/users/HansF/gists', 'https://api.github.com/users/HansF/starred', 'https://api.github.com/users/HansF/repos', 'https://api.github.com/users/HansF/events', 'https://api.github.com/users/HansF/received_events', 0); +INSERT INTO `developer` VALUES (1504, 'hummingbird', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T09:02:04Z', '2019-12-16T01:19:45Z', 'https://avatars.githubusercontent.com/u/1504?v=4', 'https://api.github.com/users/hummingbird', 'https://github.com/hummingbird', 'https://api.github.com/users/hummingbird/followers', 'https://api.github.com/users/hummingbird/following', 'https://api.github.com/users/hummingbird/gists', 'https://api.github.com/users/hummingbird/starred', 'https://api.github.com/users/hummingbird/repos', 'https://api.github.com/users/hummingbird/events', 'https://api.github.com/users/hummingbird/received_events', 0); +INSERT INTO `developer` VALUES (1505, 'vezquex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vezquex', NULL, 'https://vezquex.github.io/', '未知', 'admin@vezquex.com', NULL, NULL, NULL, 0, 0, 29, 42, 0, 0, 0, '2008-02-28T09:02:16Z', '2024-08-28T14:17:29Z', 'https://avatars.githubusercontent.com/u/1505?v=4', 'https://api.github.com/users/vezquex', 'https://github.com/vezquex', 'https://api.github.com/users/vezquex/followers', 'https://api.github.com/users/vezquex/following', 'https://api.github.com/users/vezquex/gists', 'https://api.github.com/users/vezquex/starred', 'https://api.github.com/users/vezquex/repos', 'https://api.github.com/users/vezquex/events', 'https://api.github.com/users/vezquex/received_events', 0); +INSERT INTO `developer` VALUES (1506, 'oyvindfanebust', 'C', 0, 0, 0, 0, 0, 0, 0, 'Øyvind Fanebust', 'Stacc', 'http://www.oyvindfanebust.com', 'Bergen, Norway', NULL, NULL, NULL, NULL, 0, 0, 15, 8, 0, 0, 0, '2008-02-28T09:02:26Z', '2024-11-02T07:42:37Z', 'https://avatars.githubusercontent.com/u/1506?v=4', 'https://api.github.com/users/oyvindfanebust', 'https://github.com/oyvindfanebust', 'https://api.github.com/users/oyvindfanebust/followers', 'https://api.github.com/users/oyvindfanebust/following', 'https://api.github.com/users/oyvindfanebust/gists', 'https://api.github.com/users/oyvindfanebust/starred', 'https://api.github.com/users/oyvindfanebust/repos', 'https://api.github.com/users/oyvindfanebust/events', 'https://api.github.com/users/oyvindfanebust/received_events', 0); +INSERT INTO `developer` VALUES (1507, 'soma', 'C', 0, 0, 0, 0, 0, 0, 0, 'Albert Ramstedt', 'Auctionet, @barsoom ', 'dev.auctionet.com', 'Stockholm, Sweden', 'albert.ramstedt@gmail.com', NULL, NULL, NULL, 0, 0, 25, 1, 0, 0, 0, '2008-02-28T09:03:00Z', '2024-10-04T09:49:59Z', 'https://avatars.githubusercontent.com/u/1507?v=4', 'https://api.github.com/users/soma', 'https://github.com/soma', 'https://api.github.com/users/soma/followers', 'https://api.github.com/users/soma/following', 'https://api.github.com/users/soma/gists', 'https://api.github.com/users/soma/starred', 'https://api.github.com/users/soma/repos', 'https://api.github.com/users/soma/events', 'https://api.github.com/users/soma/received_events', 0); +INSERT INTO `developer` VALUES (1508, 'jablan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mladen Jablanović', '@phrase', '', 'Hamburg', NULL, NULL, NULL, NULL, 0, 0, 18, 2, 0, 0, 0, '2008-02-28T09:07:41Z', '2024-11-04T08:16:39Z', 'https://avatars.githubusercontent.com/u/1508?v=4', 'https://api.github.com/users/jablan', 'https://github.com/jablan', 'https://api.github.com/users/jablan/followers', 'https://api.github.com/users/jablan/following', 'https://api.github.com/users/jablan/gists', 'https://api.github.com/users/jablan/starred', 'https://api.github.com/users/jablan/repos', 'https://api.github.com/users/jablan/events', 'https://api.github.com/users/jablan/received_events', 0); +INSERT INTO `developer` VALUES (1509, 'ml', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maciek Lotkowski', NULL, '', 'Warsaw', NULL, 'true', NULL, NULL, 0, 0, 43, 11, 0, 0, 0, '2008-02-28T09:12:37Z', '2024-10-18T14:03:01Z', 'https://avatars.githubusercontent.com/u/1509?v=4', 'https://api.github.com/users/ml', 'https://github.com/ml', 'https://api.github.com/users/ml/followers', 'https://api.github.com/users/ml/following', 'https://api.github.com/users/ml/gists', 'https://api.github.com/users/ml/starred', 'https://api.github.com/users/ml/repos', 'https://api.github.com/users/ml/events', 'https://api.github.com/users/ml/received_events', 0); +INSERT INTO `developer` VALUES (1510, 'marcoow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marco Otte-Witte', '@mainmatter', 'https://mainmatter.com', 'Munich, Germany', 'marco.otte-witte@mainmatter.com', NULL, 'Enabling companies to succeed with #rustlang, #svelte and #emberjs. Founder/Managing Director @mainmatter, Host EuroRust, Co-host EmberFest', 'marcoow', 0, 0, 237, 139, 0, 0, 0, '2008-02-28T09:12:56Z', '2024-11-04T15:34:16Z', 'https://avatars.githubusercontent.com/u/1510?v=4', 'https://api.github.com/users/marcoow', 'https://github.com/marcoow', 'https://api.github.com/users/marcoow/followers', 'https://api.github.com/users/marcoow/following', 'https://api.github.com/users/marcoow/gists', 'https://api.github.com/users/marcoow/starred', 'https://api.github.com/users/marcoow/repos', 'https://api.github.com/users/marcoow/events', 'https://api.github.com/users/marcoow/received_events', 0); +INSERT INTO `developer` VALUES (1511, 'sauspiel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sauspiel GmbH', NULL, 'https://www.sauspiel.de', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T09:15:28Z', '2023-02-17T17:03:15Z', 'https://avatars.githubusercontent.com/u/1511?v=4', 'https://api.github.com/users/sauspiel', 'https://github.com/sauspiel', 'https://api.github.com/users/sauspiel/followers', 'https://api.github.com/users/sauspiel/following', 'https://api.github.com/users/sauspiel/gists', 'https://api.github.com/users/sauspiel/starred', 'https://api.github.com/users/sauspiel/repos', 'https://api.github.com/users/sauspiel/events', 'https://api.github.com/users/sauspiel/received_events', 0); +INSERT INTO `developer` VALUES (1512, 'dacort', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damon P. Cortesi', NULL, 'https://dacort.dev/', '未知', NULL, NULL, NULL, 'dacort', 0, 0, 212, 12, 0, 0, 0, '2008-02-28T09:17:59Z', '2024-10-18T20:28:56Z', 'https://avatars.githubusercontent.com/u/1512?v=4', 'https://api.github.com/users/dacort', 'https://github.com/dacort', 'https://api.github.com/users/dacort/followers', 'https://api.github.com/users/dacort/following', 'https://api.github.com/users/dacort/gists', 'https://api.github.com/users/dacort/starred', 'https://api.github.com/users/dacort/repos', 'https://api.github.com/users/dacort/events', 'https://api.github.com/users/dacort/received_events', 0); +INSERT INTO `developer` VALUES (1513, 'SimonS', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Scarfe', NULL, 'https://breakfastdinnertea.co.uk', 'Manchester, UK', 'simon.scarfe@gmail.com', NULL, 'Principal Software Engineer at Slalom _build.', 'simonscarfe', 0, 0, 70, 68, 0, 0, 0, '2008-02-28T09:20:01Z', '2024-11-03T19:38:56Z', 'https://avatars.githubusercontent.com/u/1513?v=4', 'https://api.github.com/users/SimonS', 'https://github.com/SimonS', 'https://api.github.com/users/SimonS/followers', 'https://api.github.com/users/SimonS/following', 'https://api.github.com/users/SimonS/gists', 'https://api.github.com/users/SimonS/starred', 'https://api.github.com/users/SimonS/repos', 'https://api.github.com/users/SimonS/events', 'https://api.github.com/users/SimonS/received_events', 0); +INSERT INTO `developer` VALUES (1514, 'muffinresearch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stuart Colville', '@Mozilla', 'https://muffinresearch.co.uk/', 'United Kingdom', NULL, NULL, NULL, NULL, 0, 0, 145, 25, 0, 0, 0, '2008-02-28T09:21:44Z', '2024-08-22T11:57:30Z', 'https://avatars.githubusercontent.com/u/1514?v=4', 'https://api.github.com/users/muffinresearch', 'https://github.com/muffinresearch', 'https://api.github.com/users/muffinresearch/followers', 'https://api.github.com/users/muffinresearch/following', 'https://api.github.com/users/muffinresearch/gists', 'https://api.github.com/users/muffinresearch/starred', 'https://api.github.com/users/muffinresearch/repos', 'https://api.github.com/users/muffinresearch/events', 'https://api.github.com/users/muffinresearch/received_events', 0); +INSERT INTO `developer` VALUES (1515, 'ebb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Bergstrome', NULL, 'https://norstrulde.org', 'Ottawa, Canada', NULL, NULL, NULL, NULL, 0, 0, 9, 6, 0, 0, 0, '2008-02-28T09:23:18Z', '2023-12-11T03:38:04Z', 'https://avatars.githubusercontent.com/u/1515?v=4', 'https://api.github.com/users/ebb', 'https://github.com/ebb', 'https://api.github.com/users/ebb/followers', 'https://api.github.com/users/ebb/following', 'https://api.github.com/users/ebb/gists', 'https://api.github.com/users/ebb/starred', 'https://api.github.com/users/ebb/repos', 'https://api.github.com/users/ebb/events', 'https://api.github.com/users/ebb/received_events', 0); +INSERT INTO `developer` VALUES (1516, 'bradwright', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brad Wright', '@Shopify ', 'http://intranation.com', 'London', NULL, NULL, NULL, 'bradwright', 0, 0, 152, 88, 0, 0, 0, '2008-02-28T09:25:16Z', '2024-10-24T22:31:35Z', 'https://avatars.githubusercontent.com/u/1516?v=4', 'https://api.github.com/users/bradwright', 'https://github.com/bradwright', 'https://api.github.com/users/bradwright/followers', 'https://api.github.com/users/bradwright/following', 'https://api.github.com/users/bradwright/gists', 'https://api.github.com/users/bradwright/starred', 'https://api.github.com/users/bradwright/repos', 'https://api.github.com/users/bradwright/events', 'https://api.github.com/users/bradwright/received_events', 0); +INSERT INTO `developer` VALUES (1517, 'husio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Piotr H', NULL, 'https://husio.github.io/', 'Berlin', NULL, 'true', NULL, NULL, 0, 0, 55, 4, 0, 0, 0, '2008-02-28T09:26:51Z', '2024-10-26T11:20:58Z', 'https://avatars.githubusercontent.com/u/1517?v=4', 'https://api.github.com/users/husio', 'https://github.com/husio', 'https://api.github.com/users/husio/followers', 'https://api.github.com/users/husio/following', 'https://api.github.com/users/husio/gists', 'https://api.github.com/users/husio/starred', 'https://api.github.com/users/husio/repos', 'https://api.github.com/users/husio/events', 'https://api.github.com/users/husio/received_events', 0); +INSERT INTO `developer` VALUES (1518, 'taoufix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Taoufix', NULL, 'http://github.com/taoufix', '未知', NULL, 'true', NULL, NULL, 0, 0, 9, 7, 0, 0, 0, '2008-02-28T09:29:05Z', '2024-08-23T07:48:17Z', 'https://avatars.githubusercontent.com/u/1518?v=4', 'https://api.github.com/users/taoufix', 'https://github.com/taoufix', 'https://api.github.com/users/taoufix/followers', 'https://api.github.com/users/taoufix/following', 'https://api.github.com/users/taoufix/gists', 'https://api.github.com/users/taoufix/starred', 'https://api.github.com/users/taoufix/repos', 'https://api.github.com/users/taoufix/events', 'https://api.github.com/users/taoufix/received_events', 0); +INSERT INTO `developer` VALUES (1519, 'jan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan (Klang)', 'Klang Games', 'http://www.klang-games.com', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-02-28T09:29:07Z', '2024-09-20T16:02:21Z', 'https://avatars.githubusercontent.com/u/1519?v=4', 'https://api.github.com/users/jan', 'https://github.com/jan', 'https://api.github.com/users/jan/followers', 'https://api.github.com/users/jan/following', 'https://api.github.com/users/jan/gists', 'https://api.github.com/users/jan/starred', 'https://api.github.com/users/jan/repos', 'https://api.github.com/users/jan/events', 'https://api.github.com/users/jan/received_events', 0); +INSERT INTO `developer` VALUES (1520, 'thomasfl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Flemming', 'Thomas Flemming Consulting AS', 'http://thomasflemming.no', 'Oslo, Norway', 'thomas.flemming@gmail.com', 'true', 'Independent software contractor based in Oslo, Norway. Full stack web development using React, Python and TypeScript. Proud father of four.', 'thomasfl', 0, 0, 46, 16, 0, 0, 0, '2008-02-28T09:31:22Z', '2024-04-23T18:31:24Z', 'https://avatars.githubusercontent.com/u/1520?v=4', 'https://api.github.com/users/thomasfl', 'https://github.com/thomasfl', 'https://api.github.com/users/thomasfl/followers', 'https://api.github.com/users/thomasfl/following', 'https://api.github.com/users/thomasfl/gists', 'https://api.github.com/users/thomasfl/starred', 'https://api.github.com/users/thomasfl/repos', 'https://api.github.com/users/thomasfl/events', 'https://api.github.com/users/thomasfl/received_events', 0); +INSERT INTO `developer` VALUES (1521, 'aemkei', 'C+', 23.27368135878425, 0, 0, 0, 0, 0, 0, 'Martin Kleppe', 'Ubilabs', 'aem1k.com', 'Hamburg, Germany', NULL, NULL, 'Mapper. Reducer. – Co-Founder of @Ubilabs, GDE for the Google Maps API, Organizer of HHjs and @JSUnconf, Code-Golfing at http://aem1k.com ', 'aemkei', 0, 0, 1642, 28, 0, 0, 0, '2008-02-28T09:34:59Z', '2024-11-04T08:18:12Z', 'https://avatars.githubusercontent.com/u/1521?v=4', 'https://api.github.com/users/aemkei', 'https://github.com/aemkei', 'https://api.github.com/users/aemkei/followers', 'https://api.github.com/users/aemkei/following', 'https://api.github.com/users/aemkei/gists', 'https://api.github.com/users/aemkei/starred', 'https://api.github.com/users/aemkei/repos', 'https://api.github.com/users/aemkei/events', 'https://api.github.com/users/aemkei/received_events', 0); +INSERT INTO `developer` VALUES (1522, 'mattis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mattis Eeten-Jeppsson', NULL, '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 13, 7, 0, 0, 0, '2008-02-28T09:36:23Z', '2023-08-28T19:56:37Z', 'https://avatars.githubusercontent.com/u/1522?v=4', 'https://api.github.com/users/mattis', 'https://github.com/mattis', 'https://api.github.com/users/mattis/followers', 'https://api.github.com/users/mattis/following', 'https://api.github.com/users/mattis/gists', 'https://api.github.com/users/mattis/starred', 'https://api.github.com/users/mattis/repos', 'https://api.github.com/users/mattis/events', 'https://api.github.com/users/mattis/received_events', 0); +INSERT INTO `developer` VALUES (1523, 'gervaz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T09:38:12Z', '2020-11-22T20:05:36Z', 'https://avatars.githubusercontent.com/u/1523?v=4', 'https://api.github.com/users/gervaz', 'https://github.com/gervaz', 'https://api.github.com/users/gervaz/followers', 'https://api.github.com/users/gervaz/following', 'https://api.github.com/users/gervaz/gists', 'https://api.github.com/users/gervaz/starred', 'https://api.github.com/users/gervaz/repos', 'https://api.github.com/users/gervaz/events', 'https://api.github.com/users/gervaz/received_events', 0); +INSERT INTO `developer` VALUES (1524, 'thade', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'thade.oconnor@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T09:39:13Z', '2024-07-24T10:03:17Z', 'https://avatars.githubusercontent.com/u/1524?v=4', 'https://api.github.com/users/thade', 'https://github.com/thade', 'https://api.github.com/users/thade/followers', 'https://api.github.com/users/thade/following', 'https://api.github.com/users/thade/gists', 'https://api.github.com/users/thade/starred', 'https://api.github.com/users/thade/repos', 'https://api.github.com/users/thade/events', 'https://api.github.com/users/thade/received_events', 0); +INSERT INTO `developer` VALUES (1525, 'snoack', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastian Noack', NULL, '', 'Detroit, MI, United States', 'sebastian.noack@gmail.com', NULL, NULL, NULL, 0, 0, 69, 6, 0, 0, 0, '2008-02-28T09:39:17Z', '2024-10-15T17:37:40Z', 'https://avatars.githubusercontent.com/u/1525?v=4', 'https://api.github.com/users/snoack', 'https://github.com/snoack', 'https://api.github.com/users/snoack/followers', 'https://api.github.com/users/snoack/following', 'https://api.github.com/users/snoack/gists', 'https://api.github.com/users/snoack/starred', 'https://api.github.com/users/snoack/repos', 'https://api.github.com/users/snoack/events', 'https://api.github.com/users/snoack/received_events', 0); +INSERT INTO `developer` VALUES (1526, 'NicolasP', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Paris, France', NULL, NULL, NULL, NULL, 0, 0, 6, 5, 0, 0, 0, '2008-02-28T09:45:29Z', '2024-09-23T08:33:34Z', 'https://avatars.githubusercontent.com/u/1526?v=4', 'https://api.github.com/users/NicolasP', 'https://github.com/NicolasP', 'https://api.github.com/users/NicolasP/followers', 'https://api.github.com/users/NicolasP/following', 'https://api.github.com/users/NicolasP/gists', 'https://api.github.com/users/NicolasP/starred', 'https://api.github.com/users/NicolasP/repos', 'https://api.github.com/users/NicolasP/events', 'https://api.github.com/users/NicolasP/received_events', 0); +INSERT INTO `developer` VALUES (1527, 'rmoriz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://roland.io/', '未知', NULL, 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-28T09:47:32Z', '2024-11-02T22:09:47Z', 'https://avatars.githubusercontent.com/u/1527?v=4', 'https://api.github.com/users/rmoriz', 'https://github.com/rmoriz', 'https://api.github.com/users/rmoriz/followers', 'https://api.github.com/users/rmoriz/following', 'https://api.github.com/users/rmoriz/gists', 'https://api.github.com/users/rmoriz/starred', 'https://api.github.com/users/rmoriz/repos', 'https://api.github.com/users/rmoriz/events', 'https://api.github.com/users/rmoriz/received_events', 0); +INSERT INTO `developer` VALUES (1528, 'xinitrc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Hilscher', NULL, 'https://xinitrc.de', 'Oldenburg, Germany', 'github@xinitrc.de', NULL, NULL, NULL, 0, 0, 17, 4, 0, 0, 0, '2008-02-28T09:48:35Z', '2024-09-06T09:16:27Z', 'https://avatars.githubusercontent.com/u/1528?v=4', 'https://api.github.com/users/xinitrc', 'https://github.com/xinitrc', 'https://api.github.com/users/xinitrc/followers', 'https://api.github.com/users/xinitrc/following', 'https://api.github.com/users/xinitrc/gists', 'https://api.github.com/users/xinitrc/starred', 'https://api.github.com/users/xinitrc/repos', 'https://api.github.com/users/xinitrc/events', 'https://api.github.com/users/xinitrc/received_events', 0); +INSERT INTO `developer` VALUES (1529, 'kalin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@qcitizen ', '', 'Vancouver, BC', 'kalin@quantifiedcitizen.com', NULL, NULL, NULL, 0, 0, 16, 9, 0, 0, 0, '2008-02-28T09:48:52Z', '2024-11-04T05:20:22Z', 'https://avatars.githubusercontent.com/u/1529?v=4', 'https://api.github.com/users/kalin', 'https://github.com/kalin', 'https://api.github.com/users/kalin/followers', 'https://api.github.com/users/kalin/following', 'https://api.github.com/users/kalin/gists', 'https://api.github.com/users/kalin/starred', 'https://api.github.com/users/kalin/repos', 'https://api.github.com/users/kalin/events', 'https://api.github.com/users/kalin/received_events', 0); +INSERT INTO `developer` VALUES (1530, 'dvgb', 'C', 0, 0, 0, 0, 0, 0, 0, 'dvgb', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T09:52:09Z', '2024-11-05T03:28:28Z', 'https://avatars.githubusercontent.com/u/1530?v=4', 'https://api.github.com/users/dvgb', 'https://github.com/dvgb', 'https://api.github.com/users/dvgb/followers', 'https://api.github.com/users/dvgb/following', 'https://api.github.com/users/dvgb/gists', 'https://api.github.com/users/dvgb/starred', 'https://api.github.com/users/dvgb/repos', 'https://api.github.com/users/dvgb/events', 'https://api.github.com/users/dvgb/received_events', 0); +INSERT INTO `developer` VALUES (1532, 'nkpart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Partridge', NULL, '', 'Brisbane, Australia', 'nkpart@gmail.com', NULL, NULL, NULL, 0, 0, 95, 7, 0, 0, 0, '2008-02-28T10:02:55Z', '2024-10-24T00:28:29Z', 'https://avatars.githubusercontent.com/u/1532?v=4', 'https://api.github.com/users/nkpart', 'https://github.com/nkpart', 'https://api.github.com/users/nkpart/followers', 'https://api.github.com/users/nkpart/following', 'https://api.github.com/users/nkpart/gists', 'https://api.github.com/users/nkpart/starred', 'https://api.github.com/users/nkpart/repos', 'https://api.github.com/users/nkpart/events', 'https://api.github.com/users/nkpart/received_events', 0); +INSERT INTO `developer` VALUES (1533, 'Artied', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arthur Doohan', 'ServoMag, unMonastery, Peer to Peer Practice', 'doohan.org/blog', 'London', 'arthur@doohan.org', NULL, NULL, NULL, 0, 0, 3, 2, 0, 0, 0, '2008-02-28T10:03:10Z', '2021-06-25T06:15:26Z', 'https://avatars.githubusercontent.com/u/1533?v=4', 'https://api.github.com/users/Artied', 'https://github.com/Artied', 'https://api.github.com/users/Artied/followers', 'https://api.github.com/users/Artied/following', 'https://api.github.com/users/Artied/gists', 'https://api.github.com/users/Artied/starred', 'https://api.github.com/users/Artied/repos', 'https://api.github.com/users/Artied/events', 'https://api.github.com/users/Artied/received_events', 0); +INSERT INTO `developer` VALUES (1534, 'easytiger', 'C', 0, 0, 0, 0, 0, 0, 0, 'easytiger', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T10:08:34Z', '2024-06-12T19:20:33Z', 'https://avatars.githubusercontent.com/u/1534?v=4', 'https://api.github.com/users/easytiger', 'https://github.com/easytiger', 'https://api.github.com/users/easytiger/followers', 'https://api.github.com/users/easytiger/following', 'https://api.github.com/users/easytiger/gists', 'https://api.github.com/users/easytiger/starred', 'https://api.github.com/users/easytiger/repos', 'https://api.github.com/users/easytiger/events', 'https://api.github.com/users/easytiger/received_events', 0); +INSERT INTO `developer` VALUES (1535, 'cynix', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-28T10:24:25Z', '2024-10-24T11:19:57Z', 'https://avatars.githubusercontent.com/u/1535?v=4', 'https://api.github.com/users/cynix', 'https://github.com/cynix', 'https://api.github.com/users/cynix/followers', 'https://api.github.com/users/cynix/following', 'https://api.github.com/users/cynix/gists', 'https://api.github.com/users/cynix/starred', 'https://api.github.com/users/cynix/repos', 'https://api.github.com/users/cynix/events', 'https://api.github.com/users/cynix/received_events', 0); +INSERT INTO `developer` VALUES (1536, 'salilj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Salil Joshi', NULL, '', '未知', 'salil.ssj@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-28T10:26:17Z', '2020-11-06T06:06:15Z', 'https://avatars.githubusercontent.com/u/1536?v=4', 'https://api.github.com/users/salilj', 'https://github.com/salilj', 'https://api.github.com/users/salilj/followers', 'https://api.github.com/users/salilj/following', 'https://api.github.com/users/salilj/gists', 'https://api.github.com/users/salilj/starred', 'https://api.github.com/users/salilj/repos', 'https://api.github.com/users/salilj/events', 'https://api.github.com/users/salilj/received_events', 0); +INSERT INTO `developer` VALUES (1537, 'ricardocosta-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T10:30:06Z', '2018-11-09T13:26:50Z', 'https://avatars.githubusercontent.com/u/1537?v=4', 'https://api.github.com/users/ricardocosta-zz', 'https://github.com/ricardocosta-zz', 'https://api.github.com/users/ricardocosta-zz/followers', 'https://api.github.com/users/ricardocosta-zz/following', 'https://api.github.com/users/ricardocosta-zz/gists', 'https://api.github.com/users/ricardocosta-zz/starred', 'https://api.github.com/users/ricardocosta-zz/repos', 'https://api.github.com/users/ricardocosta-zz/events', 'https://api.github.com/users/ricardocosta-zz/received_events', 0); +INSERT INTO `developer` VALUES (1539, 'dikini', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, 'dikini', 0, 0, 11, 6, 0, 0, 0, '2008-02-28T10:34:46Z', '2024-10-26T11:20:58Z', 'https://avatars.githubusercontent.com/u/1539?v=4', 'https://api.github.com/users/dikini', 'https://github.com/dikini', 'https://api.github.com/users/dikini/followers', 'https://api.github.com/users/dikini/following', 'https://api.github.com/users/dikini/gists', 'https://api.github.com/users/dikini/starred', 'https://api.github.com/users/dikini/repos', 'https://api.github.com/users/dikini/events', 'https://api.github.com/users/dikini/received_events', 0); +INSERT INTO `developer` VALUES (1540, 'craigw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Craig R Webster', 'Barking Iguana Ltd.', 'http://barkingiguana.com/', 'London, UK', 'craig@barkingiguana.com', 'true', NULL, NULL, 0, 0, 98, 71, 0, 0, 0, '2008-02-28T10:34:48Z', '2024-10-21T03:27:05Z', 'https://avatars.githubusercontent.com/u/1540?v=4', 'https://api.github.com/users/craigw', 'https://github.com/craigw', 'https://api.github.com/users/craigw/followers', 'https://api.github.com/users/craigw/following', 'https://api.github.com/users/craigw/gists', 'https://api.github.com/users/craigw/starred', 'https://api.github.com/users/craigw/repos', 'https://api.github.com/users/craigw/events', 'https://api.github.com/users/craigw/received_events', 0); +INSERT INTO `developer` VALUES (1541, 'bakert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas David Baker', NULL, 'http://bluebones.net/', 'Planet Earth', 'bakert@gmail.com', NULL, NULL, NULL, 0, 0, 17, 0, 0, 0, 0, '2008-02-28T10:35:13Z', '2024-03-14T16:11:40Z', 'https://avatars.githubusercontent.com/u/1541?v=4', 'https://api.github.com/users/bakert', 'https://github.com/bakert', 'https://api.github.com/users/bakert/followers', 'https://api.github.com/users/bakert/following', 'https://api.github.com/users/bakert/gists', 'https://api.github.com/users/bakert/starred', 'https://api.github.com/users/bakert/repos', 'https://api.github.com/users/bakert/events', 'https://api.github.com/users/bakert/received_events', 0); +INSERT INTO `developer` VALUES (1542, 'mcmarto', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2008-02-28T10:35:32Z', '2024-04-02T13:18:02Z', 'https://avatars.githubusercontent.com/u/1542?v=4', 'https://api.github.com/users/mcmarto', 'https://github.com/mcmarto', 'https://api.github.com/users/mcmarto/followers', 'https://api.github.com/users/mcmarto/following', 'https://api.github.com/users/mcmarto/gists', 'https://api.github.com/users/mcmarto/starred', 'https://api.github.com/users/mcmarto/repos', 'https://api.github.com/users/mcmarto/events', 'https://api.github.com/users/mcmarto/received_events', 0); +INSERT INTO `developer` VALUES (1543, 'jeffshadap', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 11, 0, 0, 0, '2008-02-28T10:36:02Z', '2024-05-29T15:43:40Z', 'https://avatars.githubusercontent.com/u/1543?v=4', 'https://api.github.com/users/jeffshadap', 'https://github.com/jeffshadap', 'https://api.github.com/users/jeffshadap/followers', 'https://api.github.com/users/jeffshadap/following', 'https://api.github.com/users/jeffshadap/gists', 'https://api.github.com/users/jeffshadap/starred', 'https://api.github.com/users/jeffshadap/repos', 'https://api.github.com/users/jeffshadap/events', 'https://api.github.com/users/jeffshadap/received_events', 0); +INSERT INTO `developer` VALUES (1544, 'newtonapple', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Dai', 'Tobiko Data', '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 70, 106, 0, 0, 0, '2008-02-28T10:40:53Z', '2024-10-26T20:26:28Z', 'https://avatars.githubusercontent.com/u/1544?v=4', 'https://api.github.com/users/newtonapple', 'https://github.com/newtonapple', 'https://api.github.com/users/newtonapple/followers', 'https://api.github.com/users/newtonapple/following', 'https://api.github.com/users/newtonapple/gists', 'https://api.github.com/users/newtonapple/starred', 'https://api.github.com/users/newtonapple/repos', 'https://api.github.com/users/newtonapple/events', 'https://api.github.com/users/newtonapple/received_events', 0); +INSERT INTO `developer` VALUES (1545, 'number5', 'B-', 26.168475515070956, 0, 22, 20, 3808, 12, 0, 'Bruce Wang', '@cultureamp', 'http://brucewang.net', 'Melbourne, Australia', NULL, 'true', NULL, 'number5', 0, 0, 86, 322, 0, 0, 0, '2008-02-28T10:41:24Z', '2024-07-25T02:51:35Z', 'https://avatars.githubusercontent.com/u/1545?v=4', 'https://api.github.com/users/number5', 'https://github.com/number5', 'https://api.github.com/users/number5/followers', 'https://api.github.com/users/number5/following', 'https://api.github.com/users/number5/gists', 'https://api.github.com/users/number5/starred', 'https://api.github.com/users/number5/repos', 'https://api.github.com/users/number5/events', 'https://api.github.com/users/number5/received_events', 0); +INSERT INTO `developer` VALUES (1546, 'kolektiv', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Cherry', 'Xyncro Ltd', 'http://xyncro.com/andrew', 'Horsham, UK', 'andrew@xyncro.com', 'true', 'Generally cheerful, often functional, occasionally esoteric. Owner of @xyncro amongst other things.', 'kolektiv', 0, 0, 74, 45, 0, 0, 0, '2008-02-28T10:43:56Z', '2024-06-04T17:34:12Z', 'https://avatars.githubusercontent.com/u/1546?v=4', 'https://api.github.com/users/kolektiv', 'https://github.com/kolektiv', 'https://api.github.com/users/kolektiv/followers', 'https://api.github.com/users/kolektiv/following', 'https://api.github.com/users/kolektiv/gists', 'https://api.github.com/users/kolektiv/starred', 'https://api.github.com/users/kolektiv/repos', 'https://api.github.com/users/kolektiv/events', 'https://api.github.com/users/kolektiv/received_events', 0); +INSERT INTO `developer` VALUES (1547, 'amandasaurus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Amanda', NULL, 'https://www.technomancy.org', 'EU', 'amanda@technomancy.org', NULL, NULL, 'lalonde', 0, 0, 85, 45, 0, 0, 0, '2008-02-28T10:45:30Z', '2024-10-06T08:27:18Z', 'https://avatars.githubusercontent.com/u/1547?v=4', 'https://api.github.com/users/amandasaurus', 'https://github.com/amandasaurus', 'https://api.github.com/users/amandasaurus/followers', 'https://api.github.com/users/amandasaurus/following', 'https://api.github.com/users/amandasaurus/gists', 'https://api.github.com/users/amandasaurus/starred', 'https://api.github.com/users/amandasaurus/repos', 'https://api.github.com/users/amandasaurus/events', 'https://api.github.com/users/amandasaurus/received_events', 0); +INSERT INTO `developer` VALUES (1548, 'babo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Attila Babo', NULL, 'https://www.linkedin.com/in/ababo/', 'Oslo', 'attila.babo@gmail.com', NULL, 'Pragmatic engineer, an experienced polyglot programmer with a strong operational background. Twenty plus years of experience.', NULL, 0, 0, 46, 14, 0, 0, 0, '2008-02-28T10:48:19Z', '2024-09-15T18:06:31Z', 'https://avatars.githubusercontent.com/u/1548?v=4', 'https://api.github.com/users/babo', 'https://github.com/babo', 'https://api.github.com/users/babo/followers', 'https://api.github.com/users/babo/following', 'https://api.github.com/users/babo/gists', 'https://api.github.com/users/babo/starred', 'https://api.github.com/users/babo/repos', 'https://api.github.com/users/babo/events', 'https://api.github.com/users/babo/received_events', 0); +INSERT INTO `developer` VALUES (1549, 'ilkka', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ilkka Poutanen', '@61n ', 'http://ilkka.dev', 'Finland', 'ilkka@ilkka.dev', NULL, 'Tech guy who likes to help others do tech good', NULL, 0, 0, 62, 4, 0, 0, 0, '2008-02-28T11:12:14Z', '2024-10-05T08:17:28Z', 'https://avatars.githubusercontent.com/u/1549?v=4', 'https://api.github.com/users/ilkka', 'https://github.com/ilkka', 'https://api.github.com/users/ilkka/followers', 'https://api.github.com/users/ilkka/following', 'https://api.github.com/users/ilkka/gists', 'https://api.github.com/users/ilkka/starred', 'https://api.github.com/users/ilkka/repos', 'https://api.github.com/users/ilkka/events', 'https://api.github.com/users/ilkka/received_events', 0); +INSERT INTO `developer` VALUES (1550, 'ibroadfo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Iain D Broadfoot', NULL, 'ibroad.fo', 'edinburgh', 'ibroadfo@gmail.com', NULL, NULL, NULL, 0, 0, 12, 2, 0, 0, 0, '2008-02-28T11:14:47Z', '2023-08-02T10:25:28Z', 'https://avatars.githubusercontent.com/u/1550?v=4', 'https://api.github.com/users/ibroadfo', 'https://github.com/ibroadfo', 'https://api.github.com/users/ibroadfo/followers', 'https://api.github.com/users/ibroadfo/following', 'https://api.github.com/users/ibroadfo/gists', 'https://api.github.com/users/ibroadfo/starred', 'https://api.github.com/users/ibroadfo/repos', 'https://api.github.com/users/ibroadfo/events', 'https://api.github.com/users/ibroadfo/received_events', 0); +INSERT INTO `developer` VALUES (1551, 'abradburne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alan Bradburne', '@xenocodejpn ', 'http://alanbradburne.com', 'Fukuoka, Japan', 'abradburne@gmail.com', NULL, NULL, 'alanb', 0, 0, 57, 14, 0, 0, 0, '2008-02-28T11:30:31Z', '2024-11-04T07:50:06Z', 'https://avatars.githubusercontent.com/u/1551?v=4', 'https://api.github.com/users/abradburne', 'https://github.com/abradburne', 'https://api.github.com/users/abradburne/followers', 'https://api.github.com/users/abradburne/following', 'https://api.github.com/users/abradburne/gists', 'https://api.github.com/users/abradburne/starred', 'https://api.github.com/users/abradburne/repos', 'https://api.github.com/users/abradburne/events', 'https://api.github.com/users/abradburne/received_events', 0); +INSERT INTO `developer` VALUES (1552, 'theflow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Munz', NULL, 'https://twitter.com/theflow', 'Copenhagen', NULL, NULL, NULL, NULL, 0, 0, 43, 7, 0, 0, 0, '2008-02-28T11:33:08Z', '2024-09-12T08:59:31Z', 'https://avatars.githubusercontent.com/u/1552?v=4', 'https://api.github.com/users/theflow', 'https://github.com/theflow', 'https://api.github.com/users/theflow/followers', 'https://api.github.com/users/theflow/following', 'https://api.github.com/users/theflow/gists', 'https://api.github.com/users/theflow/starred', 'https://api.github.com/users/theflow/repos', 'https://api.github.com/users/theflow/events', 'https://api.github.com/users/theflow/received_events', 0); +INSERT INTO `developer` VALUES (1553, 'Jonty', 'C', 1.2721258548403434, 0, 0, 0, 0, 0, 0, 'Jonty Wareing', NULL, 'http://jonty.co.uk', 'London, UK', 'jonty@jonty.co.uk', 'true', 'Things', 'jonty', 0, 0, 359, 119, 0, 0, 0, '2008-02-28T11:34:54Z', '2024-10-18T12:39:59Z', 'https://avatars.githubusercontent.com/u/1553?v=4', 'https://api.github.com/users/Jonty', 'https://github.com/Jonty', 'https://api.github.com/users/Jonty/followers', 'https://api.github.com/users/Jonty/following', 'https://api.github.com/users/Jonty/gists', 'https://api.github.com/users/Jonty/starred', 'https://api.github.com/users/Jonty/repos', 'https://api.github.com/users/Jonty/events', 'https://api.github.com/users/Jonty/received_events', 0); +INSERT INTO `developer` VALUES (1554, 'neaf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tomasz Werbicki', NULL, 'http://werbicki.net', 'Poland', NULL, NULL, NULL, NULL, 0, 0, 25, 1, 0, 0, 0, '2008-02-28T11:36:03Z', '2023-10-02T16:44:15Z', 'https://avatars.githubusercontent.com/u/1554?v=4', 'https://api.github.com/users/neaf', 'https://github.com/neaf', 'https://api.github.com/users/neaf/followers', 'https://api.github.com/users/neaf/following', 'https://api.github.com/users/neaf/gists', 'https://api.github.com/users/neaf/starred', 'https://api.github.com/users/neaf/repos', 'https://api.github.com/users/neaf/events', 'https://api.github.com/users/neaf/received_events', 0); +INSERT INTO `developer` VALUES (1556, 'capisce', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samuel Rødal', NULL, '', 'Tallinn, Estonia', 'srodal@gmail.com', NULL, NULL, NULL, 0, 0, 42, 11, 0, 0, 0, '2008-02-28T12:00:51Z', '2020-12-09T10:59:12Z', 'https://avatars.githubusercontent.com/u/1556?v=4', 'https://api.github.com/users/capisce', 'https://github.com/capisce', 'https://api.github.com/users/capisce/followers', 'https://api.github.com/users/capisce/following', 'https://api.github.com/users/capisce/gists', 'https://api.github.com/users/capisce/starred', 'https://api.github.com/users/capisce/repos', 'https://api.github.com/users/capisce/events', 'https://api.github.com/users/capisce/received_events', 0); +INSERT INTO `developer` VALUES (1557, 'jackliddle', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2008-02-28T12:08:16Z', '2024-10-25T15:15:47Z', 'https://avatars.githubusercontent.com/u/1557?v=4', 'https://api.github.com/users/jackliddle', 'https://github.com/jackliddle', 'https://api.github.com/users/jackliddle/followers', 'https://api.github.com/users/jackliddle/following', 'https://api.github.com/users/jackliddle/gists', 'https://api.github.com/users/jackliddle/starred', 'https://api.github.com/users/jackliddle/repos', 'https://api.github.com/users/jackliddle/events', 'https://api.github.com/users/jackliddle/received_events', 0); +INSERT INTO `developer` VALUES (1558, 'ask', 'B-', 29.207070450260936, 0, 0, 0, 0, 0, 0, 'Ask Solem', '@robinhoodmarkets ', 'http://twitter.com/asksol', 'Palo Alto, CA', 'ask@celeryproject.org', 'true', 'Data at Robinhood', NULL, 0, 0, 1988, 107, 0, 0, 0, '2008-02-28T12:11:11Z', '2020-09-30T20:31:46Z', 'https://avatars.githubusercontent.com/u/1558?v=4', 'https://api.github.com/users/ask', 'https://github.com/ask', 'https://api.github.com/users/ask/followers', 'https://api.github.com/users/ask/following', 'https://api.github.com/users/ask/gists', 'https://api.github.com/users/ask/starred', 'https://api.github.com/users/ask/repos', 'https://api.github.com/users/ask/events', 'https://api.github.com/users/ask/received_events', 0); +INSERT INTO `developer` VALUES (1559, 'refly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Refly Kaplin', NULL, 'http://www.refly.net/blog/', 'Taiwan', 'refly@refly.net', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T12:19:45Z', '2020-11-06T16:50:42Z', 'https://avatars.githubusercontent.com/u/1559?v=4', 'https://api.github.com/users/refly', 'https://github.com/refly', 'https://api.github.com/users/refly/followers', 'https://api.github.com/users/refly/following', 'https://api.github.com/users/refly/gists', 'https://api.github.com/users/refly/starred', 'https://api.github.com/users/refly/repos', 'https://api.github.com/users/refly/events', 'https://api.github.com/users/refly/received_events', 0); +INSERT INTO `developer` VALUES (1560, 'richard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Richard Moreland', NULL, '', '未知', 'richard@ncogni.to', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-28T12:26:10Z', '2024-07-29T15:07:15Z', 'https://avatars.githubusercontent.com/u/1560?v=4', 'https://api.github.com/users/richard', 'https://github.com/richard', 'https://api.github.com/users/richard/followers', 'https://api.github.com/users/richard/following', 'https://api.github.com/users/richard/gists', 'https://api.github.com/users/richard/starred', 'https://api.github.com/users/richard/repos', 'https://api.github.com/users/richard/events', 'https://api.github.com/users/richard/received_events', 0); +INSERT INTO `developer` VALUES (1561, 'jgworks', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Works', NULL, 'https://jonathan.works', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 5, 0, 0, 0, '2008-02-28T12:27:15Z', '2023-07-31T18:42:06Z', 'https://avatars.githubusercontent.com/u/1561?v=4', 'https://api.github.com/users/jgworks', 'https://github.com/jgworks', 'https://api.github.com/users/jgworks/followers', 'https://api.github.com/users/jgworks/following', 'https://api.github.com/users/jgworks/gists', 'https://api.github.com/users/jgworks/starred', 'https://api.github.com/users/jgworks/repos', 'https://api.github.com/users/jgworks/events', 'https://api.github.com/users/jgworks/received_events', 0); +INSERT INTO `developer` VALUES (1562, 'elurin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Güngör Erseymen', NULL, '', 'Turkey', 'gelurine@gmail.com', NULL, NULL, NULL, 0, 0, 16, 10, 0, 0, 0, '2008-02-28T12:30:58Z', '2023-02-10T15:22:31Z', 'https://avatars.githubusercontent.com/u/1562?v=4', 'https://api.github.com/users/elurin', 'https://github.com/elurin', 'https://api.github.com/users/elurin/followers', 'https://api.github.com/users/elurin/following', 'https://api.github.com/users/elurin/gists', 'https://api.github.com/users/elurin/starred', 'https://api.github.com/users/elurin/repos', 'https://api.github.com/users/elurin/events', 'https://api.github.com/users/elurin/received_events', 0); +INSERT INTO `developer` VALUES (1563, 'bru', 'C', 0, 0, 0, 0, 0, 0, 0, 'Riccardo Cambiassi', '@100Starlings ', 'http://www.100starlings.com', 'London, UK', 'riccardo.cambiassi@100starlings.com', NULL, 'Founder at @100Starlings ', NULL, 0, 0, 45, 39, 0, 0, 0, '2008-02-28T12:52:13Z', '2024-09-17T09:44:22Z', 'https://avatars.githubusercontent.com/u/1563?v=4', 'https://api.github.com/users/bru', 'https://github.com/bru', 'https://api.github.com/users/bru/followers', 'https://api.github.com/users/bru/following', 'https://api.github.com/users/bru/gists', 'https://api.github.com/users/bru/starred', 'https://api.github.com/users/bru/repos', 'https://api.github.com/users/bru/events', 'https://api.github.com/users/bru/received_events', 0); +INSERT INTO `developer` VALUES (1564, 'jstewart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Stewart', 'Boulevard', '', 'Grand Rapids, MI', 'jason.m.stewart@gmail.com', NULL, 'Dad, Geek, He/Him.', 'jstew1974', 0, 0, 25, 9, 0, 0, 0, '2008-02-28T12:53:40Z', '2024-08-24T16:35:38Z', 'https://avatars.githubusercontent.com/u/1564?v=4', 'https://api.github.com/users/jstewart', 'https://github.com/jstewart', 'https://api.github.com/users/jstewart/followers', 'https://api.github.com/users/jstewart/following', 'https://api.github.com/users/jstewart/gists', 'https://api.github.com/users/jstewart/starred', 'https://api.github.com/users/jstewart/repos', 'https://api.github.com/users/jstewart/events', 'https://api.github.com/users/jstewart/received_events', 0); +INSERT INTO `developer` VALUES (1565, 'KevM', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Miller', 'PBGB Creative', 'https://fm.rodeo/kevm', 'Wisconsin', NULL, 'true', 'I have deep experience shipping products using C# on the .Net platform. I know: Swift, Golang, and have a renewed ❤for the web using TypeScript and @sveltejs.', 'KevM', 0, 0, 37, 24, 0, 0, 0, '2008-02-28T13:08:00Z', '2024-10-18T12:28:26Z', 'https://avatars.githubusercontent.com/u/1565?v=4', 'https://api.github.com/users/KevM', 'https://github.com/KevM', 'https://api.github.com/users/KevM/followers', 'https://api.github.com/users/KevM/following', 'https://api.github.com/users/KevM/gists', 'https://api.github.com/users/KevM/starred', 'https://api.github.com/users/KevM/repos', 'https://api.github.com/users/KevM/events', 'https://api.github.com/users/KevM/received_events', 0); +INSERT INTO `developer` VALUES (1566, 'timothyjoh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timothy Johnson', 'Richardson Sales Performance', 'www.richardson.com', 'Chesapeake, VA', NULL, NULL, NULL, NULL, 0, 0, 24, 28, 0, 0, 0, '2008-02-28T13:08:16Z', '2024-08-22T19:21:59Z', 'https://avatars.githubusercontent.com/u/1566?v=4', 'https://api.github.com/users/timothyjoh', 'https://github.com/timothyjoh', 'https://api.github.com/users/timothyjoh/followers', 'https://api.github.com/users/timothyjoh/following', 'https://api.github.com/users/timothyjoh/gists', 'https://api.github.com/users/timothyjoh/starred', 'https://api.github.com/users/timothyjoh/repos', 'https://api.github.com/users/timothyjoh/events', 'https://api.github.com/users/timothyjoh/received_events', 0); +INSERT INTO `developer` VALUES (1567, 'kajecounterhack', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-28T13:12:09Z', '2022-03-30T23:53:40Z', 'https://avatars.githubusercontent.com/u/1567?v=4', 'https://api.github.com/users/kajecounterhack', 'https://github.com/kajecounterhack', 'https://api.github.com/users/kajecounterhack/followers', 'https://api.github.com/users/kajecounterhack/following', 'https://api.github.com/users/kajecounterhack/gists', 'https://api.github.com/users/kajecounterhack/starred', 'https://api.github.com/users/kajecounterhack/repos', 'https://api.github.com/users/kajecounterhack/events', 'https://api.github.com/users/kajecounterhack/received_events', 0); +INSERT INTO `developer` VALUES (1568, 'taf2', 'C', 0, 0, 0, 0, 0, 0, 0, 'Todd', 'CallTrackingMetrics', 'https://www.calltrackingmetrics.com/', 'Severna Park MD', NULL, NULL, NULL, NULL, 0, 0, 140, 22, 0, 0, 0, '2008-02-28T13:12:11Z', '2024-10-30T11:07:55Z', 'https://avatars.githubusercontent.com/u/1568?v=4', 'https://api.github.com/users/taf2', 'https://github.com/taf2', 'https://api.github.com/users/taf2/followers', 'https://api.github.com/users/taf2/following', 'https://api.github.com/users/taf2/gists', 'https://api.github.com/users/taf2/starred', 'https://api.github.com/users/taf2/repos', 'https://api.github.com/users/taf2/events', 'https://api.github.com/users/taf2/received_events', 0); +INSERT INTO `developer` VALUES (1569, 'ola', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ola Håkansson', 'Seal Software @seal-software ', '', 'Sweden', NULL, NULL, NULL, 'ohakn', 0, 0, 0, 0, 0, 0, 0, '2008-02-28T13:13:14Z', '2024-10-09T10:20:27Z', 'https://avatars.githubusercontent.com/u/1569?v=4', 'https://api.github.com/users/ola', 'https://github.com/ola', 'https://api.github.com/users/ola/followers', 'https://api.github.com/users/ola/following', 'https://api.github.com/users/ola/gists', 'https://api.github.com/users/ola/starred', 'https://api.github.com/users/ola/repos', 'https://api.github.com/users/ola/events', 'https://api.github.com/users/ola/received_events', 0); +INSERT INTO `developer` VALUES (1570, 'bharendt', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-28T13:13:55Z', '2024-09-19T14:00:48Z', 'https://avatars.githubusercontent.com/u/1570?v=4', 'https://api.github.com/users/bharendt', 'https://github.com/bharendt', 'https://api.github.com/users/bharendt/followers', 'https://api.github.com/users/bharendt/following', 'https://api.github.com/users/bharendt/gists', 'https://api.github.com/users/bharendt/starred', 'https://api.github.com/users/bharendt/repos', 'https://api.github.com/users/bharendt/events', 'https://api.github.com/users/bharendt/received_events', 0); +INSERT INTO `developer` VALUES (1571, 'stan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Tokyo, Japan', NULL, NULL, NULL, NULL, 0, 0, 65, 49, 0, 0, 0, '2008-02-28T13:20:59Z', '2024-10-29T23:30:27Z', 'https://avatars.githubusercontent.com/u/1571?v=4', 'https://api.github.com/users/stan', 'https://github.com/stan', 'https://api.github.com/users/stan/followers', 'https://api.github.com/users/stan/following', 'https://api.github.com/users/stan/gists', 'https://api.github.com/users/stan/starred', 'https://api.github.com/users/stan/repos', 'https://api.github.com/users/stan/events', 'https://api.github.com/users/stan/received_events', 0); +INSERT INTO `developer` VALUES (1572, 'edwardgeorge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Edward George', NULL, '', 'Manchester, UK', 'edwardgeorge@gmail.com', NULL, NULL, NULL, 0, 0, 69, 75, 0, 0, 0, '2008-02-28T13:22:26Z', '2024-10-23T07:12:26Z', 'https://avatars.githubusercontent.com/u/1572?v=4', 'https://api.github.com/users/edwardgeorge', 'https://github.com/edwardgeorge', 'https://api.github.com/users/edwardgeorge/followers', 'https://api.github.com/users/edwardgeorge/following', 'https://api.github.com/users/edwardgeorge/gists', 'https://api.github.com/users/edwardgeorge/starred', 'https://api.github.com/users/edwardgeorge/repos', 'https://api.github.com/users/edwardgeorge/events', 'https://api.github.com/users/edwardgeorge/received_events', 0); +INSERT INTO `developer` VALUES (1573, 'lgs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luca G. Soave', 'http://www.linkedin.com/in/lucasoave', 'https://hub.docker.com/u/lgsd/', 'Milan - Italy', 'luca.soave@gmail.com', 'true', NULL, NULL, 0, 0, 212, 664, 0, 0, 0, '2008-02-28T13:26:40Z', '2024-10-28T09:49:19Z', 'https://avatars.githubusercontent.com/u/1573?v=4', 'https://api.github.com/users/lgs', 'https://github.com/lgs', 'https://api.github.com/users/lgs/followers', 'https://api.github.com/users/lgs/following', 'https://api.github.com/users/lgs/gists', 'https://api.github.com/users/lgs/starred', 'https://api.github.com/users/lgs/repos', 'https://api.github.com/users/lgs/events', 'https://api.github.com/users/lgs/received_events', 0); +INSERT INTO `developer` VALUES (1574, 'joshuaclayton', 'C', 8.182980779305964, 0, 0, 0, 0, 0, 0, 'Josh Clayton', '@happy-co', 'https://joshuaclayton.me', 'Boston, MA', NULL, 'true', 'Sr Dir, Eng at @happy-co. I <3 Ruby, Rust, Haskell, and Elm.', 'joshuaclayton', 0, 0, 762, 0, 0, 0, 0, '2008-02-28T13:26:42Z', '2024-08-03T23:51:59Z', 'https://avatars.githubusercontent.com/u/1574?v=4', 'https://api.github.com/users/joshuaclayton', 'https://github.com/joshuaclayton', 'https://api.github.com/users/joshuaclayton/followers', 'https://api.github.com/users/joshuaclayton/following', 'https://api.github.com/users/joshuaclayton/gists', 'https://api.github.com/users/joshuaclayton/starred', 'https://api.github.com/users/joshuaclayton/repos', 'https://api.github.com/users/joshuaclayton/events', 'https://api.github.com/users/joshuaclayton/received_events', 0); +INSERT INTO `developer` VALUES (1575, 'holst', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Holst', '@GreenMobility', 'https://holst.io/', 'Copenhagen, Denmark', NULL, NULL, 'CTO @GreenMobility. In my sparetime I publish projects on holst.io.', NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T13:29:27Z', '2024-05-06T11:16:06Z', 'https://avatars.githubusercontent.com/u/1575?v=4', 'https://api.github.com/users/holst', 'https://github.com/holst', 'https://api.github.com/users/holst/followers', 'https://api.github.com/users/holst/following', 'https://api.github.com/users/holst/gists', 'https://api.github.com/users/holst/starred', 'https://api.github.com/users/holst/repos', 'https://api.github.com/users/holst/events', 'https://api.github.com/users/holst/received_events', 0); +INSERT INTO `developer` VALUES (1576, 'nkohari', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nate Kohari', '@stripe', 'http://nate.io/', 'Raleigh, NC, USA', 'nkohari@gmail.com', NULL, 'Bitshifter @stripe. Previously engineer @auth0, CTO @adzerk, CTO @agilezen (acquired 2010), author of @ninject.', 'nkohari', 0, 0, 196, 30, 0, 0, 0, '2008-02-28T13:31:37Z', '2024-07-22T17:35:07Z', 'https://avatars.githubusercontent.com/u/1576?v=4', 'https://api.github.com/users/nkohari', 'https://github.com/nkohari', 'https://api.github.com/users/nkohari/followers', 'https://api.github.com/users/nkohari/following', 'https://api.github.com/users/nkohari/gists', 'https://api.github.com/users/nkohari/starred', 'https://api.github.com/users/nkohari/repos', 'https://api.github.com/users/nkohari/events', 'https://api.github.com/users/nkohari/received_events', 0); +INSERT INTO `developer` VALUES (1577, 'alf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alf Lervåg', 'Mindshift AS', '', 'Oslo, Norway', NULL, NULL, NULL, NULL, 0, 0, 22, 0, 0, 0, 0, '2008-02-28T13:33:47Z', '2024-10-15T15:21:14Z', 'https://avatars.githubusercontent.com/u/1577?v=4', 'https://api.github.com/users/alf', 'https://github.com/alf', 'https://api.github.com/users/alf/followers', 'https://api.github.com/users/alf/following', 'https://api.github.com/users/alf/gists', 'https://api.github.com/users/alf/starred', 'https://api.github.com/users/alf/repos', 'https://api.github.com/users/alf/events', 'https://api.github.com/users/alf/received_events', 0); +INSERT INTO `developer` VALUES (1578, 'pacoalexander', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T13:34:32Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1578?v=4', 'https://api.github.com/users/pacoalexander', 'https://github.com/pacoalexander', 'https://api.github.com/users/pacoalexander/followers', 'https://api.github.com/users/pacoalexander/following', 'https://api.github.com/users/pacoalexander/gists', 'https://api.github.com/users/pacoalexander/starred', 'https://api.github.com/users/pacoalexander/repos', 'https://api.github.com/users/pacoalexander/events', 'https://api.github.com/users/pacoalexander/received_events', 0); +INSERT INTO `developer` VALUES (1579, 'ralsina', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roberto Alsina', NULL, 'http://ralsina.me', 'San Isidro', 'roberto.alsina@gmail.com', NULL, NULL, 'ralsina', 0, 0, 222, 2, 0, 0, 0, '2008-02-28T13:35:38Z', '2024-09-16T14:33:19Z', 'https://avatars.githubusercontent.com/u/1579?v=4', 'https://api.github.com/users/ralsina', 'https://github.com/ralsina', 'https://api.github.com/users/ralsina/followers', 'https://api.github.com/users/ralsina/following', 'https://api.github.com/users/ralsina/gists', 'https://api.github.com/users/ralsina/starred', 'https://api.github.com/users/ralsina/repos', 'https://api.github.com/users/ralsina/events', 'https://api.github.com/users/ralsina/received_events', 0); +INSERT INTO `developer` VALUES (1580, 'lamdor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Amdor', '@JuliaComputing ', '', 'West Des Moines, Iowa', 'luke.amdor@gmail.com', NULL, NULL, NULL, 0, 0, 81, 19, 0, 0, 0, '2008-02-28T13:36:59Z', '2024-10-25T13:28:17Z', 'https://avatars.githubusercontent.com/u/1580?v=4', 'https://api.github.com/users/lamdor', 'https://github.com/lamdor', 'https://api.github.com/users/lamdor/followers', 'https://api.github.com/users/lamdor/following', 'https://api.github.com/users/lamdor/gists', 'https://api.github.com/users/lamdor/starred', 'https://api.github.com/users/lamdor/repos', 'https://api.github.com/users/lamdor/events', 'https://api.github.com/users/lamdor/received_events', 0); +INSERT INTO `developer` VALUES (1581, 'keibro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keith Brophy', NULL, '', 'Australia', 'keith.brophy@gmail.com', NULL, NULL, 'keibro', 0, 0, 9, 2, 0, 0, 0, '2008-02-28T13:47:37Z', '2023-06-22T00:18:31Z', 'https://avatars.githubusercontent.com/u/1581?v=4', 'https://api.github.com/users/keibro', 'https://github.com/keibro', 'https://api.github.com/users/keibro/followers', 'https://api.github.com/users/keibro/following', 'https://api.github.com/users/keibro/gists', 'https://api.github.com/users/keibro/starred', 'https://api.github.com/users/keibro/repos', 'https://api.github.com/users/keibro/events', 'https://api.github.com/users/keibro/received_events', 0); +INSERT INTO `developer` VALUES (1582, 'dizz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Edmonds', NULL, 'andy.edmonds.be', 'Zürich, Schweiz', NULL, NULL, NULL, NULL, 0, 0, 24, 10, 0, 0, 0, '2008-02-28T13:47:38Z', '2024-10-29T18:13:57Z', 'https://avatars.githubusercontent.com/u/1582?v=4', 'https://api.github.com/users/dizz', 'https://github.com/dizz', 'https://api.github.com/users/dizz/followers', 'https://api.github.com/users/dizz/following', 'https://api.github.com/users/dizz/gists', 'https://api.github.com/users/dizz/starred', 'https://api.github.com/users/dizz/repos', 'https://api.github.com/users/dizz/events', 'https://api.github.com/users/dizz/received_events', 0); +INSERT INTO `developer` VALUES (1583, 'mikehale', 'C', 0, 0, 0, 0, 201, 3, 0, 'Michael Hale', 'Heroku', '', 'Holly Springs, NC', 'mike@hales.ws', NULL, NULL, NULL, 0, 0, 48, 16, 0, 0, 0, '2008-02-28T13:49:52Z', '2023-11-13T17:01:55Z', 'https://avatars.githubusercontent.com/u/1583?v=4', 'https://api.github.com/users/mikehale', 'https://github.com/mikehale', 'https://api.github.com/users/mikehale/followers', 'https://api.github.com/users/mikehale/following', 'https://api.github.com/users/mikehale/gists', 'https://api.github.com/users/mikehale/starred', 'https://api.github.com/users/mikehale/repos', 'https://api.github.com/users/mikehale/events', 'https://api.github.com/users/mikehale/received_events', 0); +INSERT INTO `developer` VALUES (1584, 'donmullen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Don Mullen', 'Treestone Consulting', '', 'Durham, NC', 'donmullen@gmail.com', NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-02-28T13:51:21Z', '2024-07-29T19:02:25Z', 'https://avatars.githubusercontent.com/u/1584?v=4', 'https://api.github.com/users/donmullen', 'https://github.com/donmullen', 'https://api.github.com/users/donmullen/followers', 'https://api.github.com/users/donmullen/following', 'https://api.github.com/users/donmullen/gists', 'https://api.github.com/users/donmullen/starred', 'https://api.github.com/users/donmullen/repos', 'https://api.github.com/users/donmullen/events', 'https://api.github.com/users/donmullen/received_events', 0); +INSERT INTO `developer` VALUES (1585, 'xla', 'C', 0, 0, 0, 0, 0, 0, 0, 'xla', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 117, 7, 0, 0, 0, '2008-02-28T13:51:59Z', '2024-11-01T16:06:11Z', 'https://avatars.githubusercontent.com/u/1585?v=4', 'https://api.github.com/users/xla', 'https://github.com/xla', 'https://api.github.com/users/xla/followers', 'https://api.github.com/users/xla/following', 'https://api.github.com/users/xla/gists', 'https://api.github.com/users/xla/starred', 'https://api.github.com/users/xla/repos', 'https://api.github.com/users/xla/events', 'https://api.github.com/users/xla/received_events', 0); +INSERT INTO `developer` VALUES (1586, 'tmpjr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Ploskina Jr.', '@tmpjrdotme', '', 'San Diego, CA, USA', NULL, 'true', 'Software & DevOps Engineer in the drug discovery space.', NULL, 0, 0, 18, 5, 0, 0, 0, '2008-02-28T13:55:12Z', '2024-07-29T18:53:52Z', 'https://avatars.githubusercontent.com/u/1586?v=4', 'https://api.github.com/users/tmpjr', 'https://github.com/tmpjr', 'https://api.github.com/users/tmpjr/followers', 'https://api.github.com/users/tmpjr/following', 'https://api.github.com/users/tmpjr/gists', 'https://api.github.com/users/tmpjr/starred', 'https://api.github.com/users/tmpjr/repos', 'https://api.github.com/users/tmpjr/events', 'https://api.github.com/users/tmpjr/received_events', 0); +INSERT INTO `developer` VALUES (1587, 'fserb', 'C', 3.0555722869605035, 0, 0, 0, 0, 0, 0, 'Fernando Serboncini', 'Google', 'http://fserb.com', 'Montreal, Canada', 'fserb@fserb.com.br', NULL, NULL, 'fserb', 0, 0, 463, 77, 0, 0, 0, '2008-02-28T14:03:18Z', '2024-10-01T19:44:14Z', 'https://avatars.githubusercontent.com/u/1587?v=4', 'https://api.github.com/users/fserb', 'https://github.com/fserb', 'https://api.github.com/users/fserb/followers', 'https://api.github.com/users/fserb/following', 'https://api.github.com/users/fserb/gists', 'https://api.github.com/users/fserb/starred', 'https://api.github.com/users/fserb/repos', 'https://api.github.com/users/fserb/events', 'https://api.github.com/users/fserb/received_events', 0); +INSERT INTO `developer` VALUES (1588, 'lvaruzza', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leonardo Varuzza', 'Lambda.net', 'http://www.google.com/profiles/varuzza', '未知', 'varuzza@gmail.com', NULL, NULL, NULL, 0, 0, 13, 4, 0, 0, 0, '2008-02-28T14:06:38Z', '2024-09-25T03:30:48Z', 'https://avatars.githubusercontent.com/u/1588?v=4', 'https://api.github.com/users/lvaruzza', 'https://github.com/lvaruzza', 'https://api.github.com/users/lvaruzza/followers', 'https://api.github.com/users/lvaruzza/following', 'https://api.github.com/users/lvaruzza/gists', 'https://api.github.com/users/lvaruzza/starred', 'https://api.github.com/users/lvaruzza/repos', 'https://api.github.com/users/lvaruzza/events', 'https://api.github.com/users/lvaruzza/received_events', 0); +INSERT INTO `developer` VALUES (1589, 'jkutner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Kutner', 'Heroku', 'http://healthyprog.com', '未知', 'jpkutner@gmail.com', 'true', NULL, NULL, 0, 0, 272, 9, 0, 0, 0, '2008-02-28T14:06:53Z', '2024-10-02T18:51:06Z', 'https://avatars.githubusercontent.com/u/1589?v=4', 'https://api.github.com/users/jkutner', 'https://github.com/jkutner', 'https://api.github.com/users/jkutner/followers', 'https://api.github.com/users/jkutner/following', 'https://api.github.com/users/jkutner/gists', 'https://api.github.com/users/jkutner/starred', 'https://api.github.com/users/jkutner/repos', 'https://api.github.com/users/jkutner/events', 'https://api.github.com/users/jkutner/received_events', 0); +INSERT INTO `developer` VALUES (1590, 'mjvm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mario Morgado', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 6, 0, 0, 0, '2008-02-28T14:19:01Z', '2024-06-09T18:41:21Z', 'https://avatars.githubusercontent.com/u/1590?v=4', 'https://api.github.com/users/mjvm', 'https://github.com/mjvm', 'https://api.github.com/users/mjvm/followers', 'https://api.github.com/users/mjvm/following', 'https://api.github.com/users/mjvm/gists', 'https://api.github.com/users/mjvm/starred', 'https://api.github.com/users/mjvm/repos', 'https://api.github.com/users/mjvm/events', 'https://api.github.com/users/mjvm/received_events', 0); +INSERT INTO `developer` VALUES (1591, 'veader', 'C', 0, 0, 0, 0, 133, 3, 0, 'Shawn Veader', NULL, 'http://veader.org', 'Atlanta, GA', 'shawn@veader.org', NULL, NULL, 'veader', 0, 0, 34, 8, 0, 0, 0, '2008-02-28T14:25:01Z', '2024-08-21T02:35:14Z', 'https://avatars.githubusercontent.com/u/1591?v=4', 'https://api.github.com/users/veader', 'https://github.com/veader', 'https://api.github.com/users/veader/followers', 'https://api.github.com/users/veader/following', 'https://api.github.com/users/veader/gists', 'https://api.github.com/users/veader/starred', 'https://api.github.com/users/veader/repos', 'https://api.github.com/users/veader/events', 'https://api.github.com/users/veader/received_events', 0); +INSERT INTO `developer` VALUES (1592, 'raja', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raja Bhatia', NULL, 'https://rajabhatia.com', 'Toronto', NULL, NULL, NULL, NULL, 0, 0, 26, 18, 0, 0, 0, '2008-02-28T14:25:50Z', '2024-09-30T08:21:33Z', 'https://avatars.githubusercontent.com/u/1592?v=4', 'https://api.github.com/users/raja', 'https://github.com/raja', 'https://api.github.com/users/raja/followers', 'https://api.github.com/users/raja/following', 'https://api.github.com/users/raja/gists', 'https://api.github.com/users/raja/starred', 'https://api.github.com/users/raja/repos', 'https://api.github.com/users/raja/events', 'https://api.github.com/users/raja/received_events', 0); +INSERT INTO `developer` VALUES (1593, 'dhyasama', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Reynolds', NULL, '', 'New York City', 'dhyasama@gmail.com', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-28T14:29:25Z', '2024-09-18T16:39:18Z', 'https://avatars.githubusercontent.com/u/1593?v=4', 'https://api.github.com/users/dhyasama', 'https://github.com/dhyasama', 'https://api.github.com/users/dhyasama/followers', 'https://api.github.com/users/dhyasama/following', 'https://api.github.com/users/dhyasama/gists', 'https://api.github.com/users/dhyasama/starred', 'https://api.github.com/users/dhyasama/repos', 'https://api.github.com/users/dhyasama/events', 'https://api.github.com/users/dhyasama/received_events', 0); +INSERT INTO `developer` VALUES (1594, 'MegaMark16', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Ransom', NULL, 'http://www.ransomsoft.com', 'Kansas City, MO', 'markransomjr@gmail.com', 'true', NULL, NULL, 0, 0, 38, 8, 0, 0, 0, '2008-02-28T14:33:57Z', '2024-10-16T18:38:59Z', 'https://avatars.githubusercontent.com/u/1594?v=4', 'https://api.github.com/users/MegaMark16', 'https://github.com/MegaMark16', 'https://api.github.com/users/MegaMark16/followers', 'https://api.github.com/users/MegaMark16/following', 'https://api.github.com/users/MegaMark16/gists', 'https://api.github.com/users/MegaMark16/starred', 'https://api.github.com/users/MegaMark16/repos', 'https://api.github.com/users/MegaMark16/events', 'https://api.github.com/users/MegaMark16/received_events', 0); +INSERT INTO `developer` VALUES (1595, 'borud', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bjørn Borud', 'Lab5e AS', 'https://www.linkedin.com/in/borud/', '未知', 'borud@lab5e.com', NULL, 'Lab5e co-founder, working on IoT software.\r\n\r\nFormerly FAST, Yahoo, Google, Telenor.\r\n\r\nMaker, Photographer', 'borud', 0, 0, 65, 67, 0, 0, 0, '2008-02-28T14:38:51Z', '2024-10-08T20:27:16Z', 'https://avatars.githubusercontent.com/u/1595?v=4', 'https://api.github.com/users/borud', 'https://github.com/borud', 'https://api.github.com/users/borud/followers', 'https://api.github.com/users/borud/following', 'https://api.github.com/users/borud/gists', 'https://api.github.com/users/borud/starred', 'https://api.github.com/users/borud/repos', 'https://api.github.com/users/borud/events', 'https://api.github.com/users/borud/received_events', 0); +INSERT INTO `developer` VALUES (1597, 'jonbro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Brodsky', '@Unity-Technologies ', 'http://www.jonathanbrodsky.com', 'Seattle, USA', NULL, NULL, NULL, NULL, 0, 0, 101, 13, 0, 0, 0, '2008-02-28T14:44:21Z', '2024-10-24T19:13:08Z', 'https://avatars.githubusercontent.com/u/1597?v=4', 'https://api.github.com/users/jonbro', 'https://github.com/jonbro', 'https://api.github.com/users/jonbro/followers', 'https://api.github.com/users/jonbro/following', 'https://api.github.com/users/jonbro/gists', 'https://api.github.com/users/jonbro/starred', 'https://api.github.com/users/jonbro/repos', 'https://api.github.com/users/jonbro/events', 'https://api.github.com/users/jonbro/received_events', 0); +INSERT INTO `developer` VALUES (1598, 'ecoleman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Coleman', 'Publicis Collective', 'http://twitter.com/ericcoleman', 'Buffalo, NY', 'eric@colemando.com', NULL, NULL, NULL, 0, 0, 33, 32, 0, 0, 0, '2008-02-28T14:45:31Z', '2024-10-12T16:58:34Z', 'https://avatars.githubusercontent.com/u/1598?v=4', 'https://api.github.com/users/ecoleman', 'https://github.com/ecoleman', 'https://api.github.com/users/ecoleman/followers', 'https://api.github.com/users/ecoleman/following', 'https://api.github.com/users/ecoleman/gists', 'https://api.github.com/users/ecoleman/starred', 'https://api.github.com/users/ecoleman/repos', 'https://api.github.com/users/ecoleman/events', 'https://api.github.com/users/ecoleman/received_events', 0); +INSERT INTO `developer` VALUES (1599, 'Mange', 'C', 0, 0, 0, 0, 0, 0, 0, 'Magnus Bergmark', 'Devbox @devbox-ab', 'https://mange.dev', 'Stockholm, Sweden', 'me@mange.dev', 'true', NULL, NULL, 0, 0, 128, 20, 0, 0, 0, '2008-02-28T14:47:10Z', '2024-10-28T19:24:52Z', 'https://avatars.githubusercontent.com/u/1599?v=4', 'https://api.github.com/users/Mange', 'https://github.com/Mange', 'https://api.github.com/users/Mange/followers', 'https://api.github.com/users/Mange/following', 'https://api.github.com/users/Mange/gists', 'https://api.github.com/users/Mange/starred', 'https://api.github.com/users/Mange/repos', 'https://api.github.com/users/Mange/events', 'https://api.github.com/users/Mange/received_events', 0); +INSERT INTO `developer` VALUES (1600, 'na', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nate Anderson', NULL, '', 'PNW', 'nande12@gmail.com', NULL, NULL, NULL, 0, 0, 40, 15, 0, 0, 0, '2008-02-28T14:51:41Z', '2024-09-30T15:52:19Z', 'https://avatars.githubusercontent.com/u/1600?v=4', 'https://api.github.com/users/na', 'https://github.com/na', 'https://api.github.com/users/na/followers', 'https://api.github.com/users/na/following', 'https://api.github.com/users/na/gists', 'https://api.github.com/users/na/starred', 'https://api.github.com/users/na/repos', 'https://api.github.com/users/na/events', 'https://api.github.com/users/na/received_events', 0); +INSERT INTO `developer` VALUES (1601, 'cbuben', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Buben', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-02-28T14:54:37Z', '2024-10-12T00:42:03Z', 'https://avatars.githubusercontent.com/u/1601?v=4', 'https://api.github.com/users/cbuben', 'https://github.com/cbuben', 'https://api.github.com/users/cbuben/followers', 'https://api.github.com/users/cbuben/following', 'https://api.github.com/users/cbuben/gists', 'https://api.github.com/users/cbuben/starred', 'https://api.github.com/users/cbuben/repos', 'https://api.github.com/users/cbuben/events', 'https://api.github.com/users/cbuben/received_events', 0); +INSERT INTO `developer` VALUES (1602, 'nmariz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nuno Mariz', NULL, 'http://mariz.org', 'Porto, Portugal', NULL, NULL, 'Just a below average human trying to do above average things. Founder @pythonpt and Triathlete.', 'nmariz', 0, 0, 63, 58, 0, 0, 0, '2008-02-28T14:59:07Z', '2024-01-28T00:42:47Z', 'https://avatars.githubusercontent.com/u/1602?v=4', 'https://api.github.com/users/nmariz', 'https://github.com/nmariz', 'https://api.github.com/users/nmariz/followers', 'https://api.github.com/users/nmariz/following', 'https://api.github.com/users/nmariz/gists', 'https://api.github.com/users/nmariz/starred', 'https://api.github.com/users/nmariz/repos', 'https://api.github.com/users/nmariz/events', 'https://api.github.com/users/nmariz/received_events', 0); +INSERT INTO `developer` VALUES (1603, 'ldenman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lake Denman', NULL, 'https://ldenman.github.io', '未知', NULL, NULL, NULL, NULL, 0, 0, 43, 55, 0, 0, 0, '2008-02-28T15:08:26Z', '2023-07-30T07:30:32Z', 'https://avatars.githubusercontent.com/u/1603?v=4', 'https://api.github.com/users/ldenman', 'https://github.com/ldenman', 'https://api.github.com/users/ldenman/followers', 'https://api.github.com/users/ldenman/following', 'https://api.github.com/users/ldenman/gists', 'https://api.github.com/users/ldenman/starred', 'https://api.github.com/users/ldenman/repos', 'https://api.github.com/users/ldenman/events', 'https://api.github.com/users/ldenman/received_events', 0); +INSERT INTO `developer` VALUES (1604, 'patrick', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-02-28T15:15:00Z', '2022-06-22T19:22:33Z', 'https://avatars.githubusercontent.com/u/1604?v=4', 'https://api.github.com/users/patrick', 'https://github.com/patrick', 'https://api.github.com/users/patrick/followers', 'https://api.github.com/users/patrick/following', 'https://api.github.com/users/patrick/gists', 'https://api.github.com/users/patrick/starred', 'https://api.github.com/users/patrick/repos', 'https://api.github.com/users/patrick/events', 'https://api.github.com/users/patrick/received_events', 0); +INSERT INTO `developer` VALUES (1605, 'levifig', 'C', 0, 0, 0, 0, 0, 0, 0, 'Levi Figueira', NULL, 'https://levifig.com', 'Porto, Portugal', NULL, 'true', NULL, 'levifig', 0, 0, 46, 64, 0, 0, 0, '2008-02-28T15:15:23Z', '2024-11-01T15:57:46Z', 'https://avatars.githubusercontent.com/u/1605?v=4', 'https://api.github.com/users/levifig', 'https://github.com/levifig', 'https://api.github.com/users/levifig/followers', 'https://api.github.com/users/levifig/following', 'https://api.github.com/users/levifig/gists', 'https://api.github.com/users/levifig/starred', 'https://api.github.com/users/levifig/repos', 'https://api.github.com/users/levifig/events', 'https://api.github.com/users/levifig/received_events', 0); +INSERT INTO `developer` VALUES (1606, 'Afton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Afton', NULL, '', 'Seattle', 'afton@howtoprocrastinate.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T15:22:47Z', '2024-09-01T00:01:04Z', 'https://avatars.githubusercontent.com/u/1606?v=4', 'https://api.github.com/users/Afton', 'https://github.com/Afton', 'https://api.github.com/users/Afton/followers', 'https://api.github.com/users/Afton/following', 'https://api.github.com/users/Afton/gists', 'https://api.github.com/users/Afton/starred', 'https://api.github.com/users/Afton/repos', 'https://api.github.com/users/Afton/events', 'https://api.github.com/users/Afton/received_events', 0); +INSERT INTO `developer` VALUES (1607, 'jjoaquim', 'C', 0, 0, 0, 0, 0, 0, 0, 'José Carlos Joaquim', 'Bryj Technologies, Inc.', 'https://logon.com.pt', 'Paris', NULL, NULL, 'CTO @ Bryj.ai', 'jjoaquim', 0, 0, 35, 23, 0, 0, 0, '2008-02-28T15:26:33Z', '2024-11-04T09:12:34Z', 'https://avatars.githubusercontent.com/u/1607?v=4', 'https://api.github.com/users/jjoaquim', 'https://github.com/jjoaquim', 'https://api.github.com/users/jjoaquim/followers', 'https://api.github.com/users/jjoaquim/following', 'https://api.github.com/users/jjoaquim/gists', 'https://api.github.com/users/jjoaquim/starred', 'https://api.github.com/users/jjoaquim/repos', 'https://api.github.com/users/jjoaquim/events', 'https://api.github.com/users/jjoaquim/received_events', 0); +INSERT INTO `developer` VALUES (1608, 'gkolok', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gabor Kolok', NULL, '', 'Budapest, Hungary', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T15:38:39Z', '2024-09-10T13:00:18Z', 'https://avatars.githubusercontent.com/u/1608?v=4', 'https://api.github.com/users/gkolok', 'https://github.com/gkolok', 'https://api.github.com/users/gkolok/followers', 'https://api.github.com/users/gkolok/following', 'https://api.github.com/users/gkolok/gists', 'https://api.github.com/users/gkolok/starred', 'https://api.github.com/users/gkolok/repos', 'https://api.github.com/users/gkolok/events', 'https://api.github.com/users/gkolok/received_events', 0); +INSERT INTO `developer` VALUES (1609, 'mariolopes', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T15:45:15Z', '2023-11-14T17:36:51Z', 'https://avatars.githubusercontent.com/u/1609?v=4', 'https://api.github.com/users/mariolopes', 'https://github.com/mariolopes', 'https://api.github.com/users/mariolopes/followers', 'https://api.github.com/users/mariolopes/following', 'https://api.github.com/users/mariolopes/gists', 'https://api.github.com/users/mariolopes/starred', 'https://api.github.com/users/mariolopes/repos', 'https://api.github.com/users/mariolopes/events', 'https://api.github.com/users/mariolopes/received_events', 0); +INSERT INTO `developer` VALUES (1610, 'jezdez', 'B', 40.559392931641185, 0, 0, 0, 0, 0, 0, 'Jannis Leidel', '@anaconda', '', ' Germany', NULL, NULL, 'Principal SWE at @anaconda working on @conda. @conda-forge core member.\r\n@psf director and fellow.\r\n@jazzband and @pypa founder. @mozilla and @django alum', 'jezdez', 0, 0, 2650, 148, 0, 0, 0, '2008-02-28T16:00:34Z', '2024-10-30T12:20:19Z', 'https://avatars.githubusercontent.com/u/1610?v=4', 'https://api.github.com/users/jezdez', 'https://github.com/jezdez', 'https://api.github.com/users/jezdez/followers', 'https://api.github.com/users/jezdez/following', 'https://api.github.com/users/jezdez/gists', 'https://api.github.com/users/jezdez/starred', 'https://api.github.com/users/jezdez/repos', 'https://api.github.com/users/jezdez/events', 'https://api.github.com/users/jezdez/received_events', 0); +INSERT INTO `developer` VALUES (1611, 'robinluckey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robin Luckey', NULL, '', 'Seattle, WA', 'robinluckey@gmail.com', 'true', NULL, NULL, 0, 0, 14, 2, 0, 0, 0, '2008-02-28T16:27:49Z', '2024-09-26T17:18:38Z', 'https://avatars.githubusercontent.com/u/1611?v=4', 'https://api.github.com/users/robinluckey', 'https://github.com/robinluckey', 'https://api.github.com/users/robinluckey/followers', 'https://api.github.com/users/robinluckey/following', 'https://api.github.com/users/robinluckey/gists', 'https://api.github.com/users/robinluckey/starred', 'https://api.github.com/users/robinluckey/repos', 'https://api.github.com/users/robinluckey/events', 'https://api.github.com/users/robinluckey/received_events', 0); +INSERT INTO `developer` VALUES (1612, 'ahmed-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T16:32:22Z', '2016-02-26T22:34:42Z', 'https://avatars.githubusercontent.com/u/1612?v=4', 'https://api.github.com/users/ahmed-xx', 'https://github.com/ahmed-xx', 'https://api.github.com/users/ahmed-xx/followers', 'https://api.github.com/users/ahmed-xx/following', 'https://api.github.com/users/ahmed-xx/gists', 'https://api.github.com/users/ahmed-xx/starred', 'https://api.github.com/users/ahmed-xx/repos', 'https://api.github.com/users/ahmed-xx/events', 'https://api.github.com/users/ahmed-xx/received_events', 0); +INSERT INTO `developer` VALUES (1613, 'efalcao', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Falcao', NULL, 'http://twitter.com/efalcao', 'Lisbon, Portugal', 'efalcao@gmail.com', NULL, 'Entrepreneur. Former CTO @spredfast. Taking time off.', 'efalcao', 0, 0, 17, 1, 0, 0, 0, '2008-02-28T16:34:06Z', '2024-11-03T21:15:30Z', 'https://avatars.githubusercontent.com/u/1613?v=4', 'https://api.github.com/users/efalcao', 'https://github.com/efalcao', 'https://api.github.com/users/efalcao/followers', 'https://api.github.com/users/efalcao/following', 'https://api.github.com/users/efalcao/gists', 'https://api.github.com/users/efalcao/starred', 'https://api.github.com/users/efalcao/repos', 'https://api.github.com/users/efalcao/events', 'https://api.github.com/users/efalcao/received_events', 0); +INSERT INTO `developer` VALUES (1614, 'brad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brad Pitcher', '@FormulaMonks', 'https://brad.github.io', 'Nomadic (USA)', NULL, NULL, 'Juggler with a penchant for software development', NULL, 0, 0, 87, 58, 0, 0, 0, '2008-02-28T16:36:39Z', '2024-10-28T04:01:17Z', 'https://avatars.githubusercontent.com/u/1614?v=4', 'https://api.github.com/users/brad', 'https://github.com/brad', 'https://api.github.com/users/brad/followers', 'https://api.github.com/users/brad/following', 'https://api.github.com/users/brad/gists', 'https://api.github.com/users/brad/starred', 'https://api.github.com/users/brad/repos', 'https://api.github.com/users/brad/events', 'https://api.github.com/users/brad/received_events', 0); +INSERT INTO `developer` VALUES (1615, 'jeresig', 'S', 100, 0, 0, 0, 0, 0, 0, 'John Resig', '@Khan ', 'https://johnresig.com/', 'Hudson Valley, NY', 'jeresig@gmail.com', NULL, 'Chief Software Architect at @Khan Academy', 'jeresig', 0, 0, 18752, 30, 0, 0, 0, '2008-02-28T16:48:23Z', '2024-10-05T11:20:54Z', 'https://avatars.githubusercontent.com/u/1615?v=4', 'https://api.github.com/users/jeresig', 'https://github.com/jeresig', 'https://api.github.com/users/jeresig/followers', 'https://api.github.com/users/jeresig/following', 'https://api.github.com/users/jeresig/gists', 'https://api.github.com/users/jeresig/starred', 'https://api.github.com/users/jeresig/repos', 'https://api.github.com/users/jeresig/events', 'https://api.github.com/users/jeresig/received_events', 0); +INSERT INTO `developer` VALUES (1616, 'bdc34', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Caruso', 'arXiv.org Cornell University', '', 'Ithaca NY.', 'bdc34@cornell.edu', NULL, 'Developer at arXiv.org', NULL, 0, 0, 18, 0, 0, 0, 0, '2008-02-28T16:51:52Z', '2024-06-18T15:16:20Z', 'https://avatars.githubusercontent.com/u/1616?v=4', 'https://api.github.com/users/bdc34', 'https://github.com/bdc34', 'https://api.github.com/users/bdc34/followers', 'https://api.github.com/users/bdc34/following', 'https://api.github.com/users/bdc34/gists', 'https://api.github.com/users/bdc34/starred', 'https://api.github.com/users/bdc34/repos', 'https://api.github.com/users/bdc34/events', 'https://api.github.com/users/bdc34/received_events', 0); +INSERT INTO `developer` VALUES (1617, 'Gustavo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gustavo', NULL, '', '未知', 'gustavorahal@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T16:53:58Z', '2023-11-30T19:34:25Z', 'https://avatars.githubusercontent.com/u/1617?v=4', 'https://api.github.com/users/Gustavo', 'https://github.com/Gustavo', 'https://api.github.com/users/Gustavo/followers', 'https://api.github.com/users/Gustavo/following', 'https://api.github.com/users/Gustavo/gists', 'https://api.github.com/users/Gustavo/starred', 'https://api.github.com/users/Gustavo/repos', 'https://api.github.com/users/Gustavo/events', 'https://api.github.com/users/Gustavo/received_events', 0); +INSERT INTO `developer` VALUES (1618, 'zajatz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T16:59:00Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1618?v=4', 'https://api.github.com/users/zajatz', 'https://github.com/zajatz', 'https://api.github.com/users/zajatz/followers', 'https://api.github.com/users/zajatz/following', 'https://api.github.com/users/zajatz/gists', 'https://api.github.com/users/zajatz/starred', 'https://api.github.com/users/zajatz/repos', 'https://api.github.com/users/zajatz/events', 'https://api.github.com/users/zajatz/received_events', 0); +INSERT INTO `developer` VALUES (1619, 'seth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seth Falcon', 'CalmWave Inc', 'https://sethfalcon.substack.com', 'Minneapolis, MN', 'seth@userprimary.net', 'true', 'VP of Engineering at CalmWave.\r\nFormer VP Engineering at Prisma, BlaBlaCar, and Chef. Engineering leadership advisor and coach.\r\n', 'sfalcon', 0, 0, 192, 15, 0, 0, 0, '2008-02-28T17:05:20Z', '2024-09-24T13:40:56Z', 'https://avatars.githubusercontent.com/u/1619?v=4', 'https://api.github.com/users/seth', 'https://github.com/seth', 'https://api.github.com/users/seth/followers', 'https://api.github.com/users/seth/following', 'https://api.github.com/users/seth/gists', 'https://api.github.com/users/seth/starred', 'https://api.github.com/users/seth/repos', 'https://api.github.com/users/seth/events', 'https://api.github.com/users/seth/received_events', 0); +INSERT INTO `developer` VALUES (1620, 'dc25', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Compton', NULL, '', '未知', 'davecompton7@gmail.com', NULL, NULL, NULL, 0, 0, 18, 0, 0, 0, 0, '2008-02-28T17:08:10Z', '2024-10-21T23:01:22Z', 'https://avatars.githubusercontent.com/u/1620?v=4', 'https://api.github.com/users/dc25', 'https://github.com/dc25', 'https://api.github.com/users/dc25/followers', 'https://api.github.com/users/dc25/following', 'https://api.github.com/users/dc25/gists', 'https://api.github.com/users/dc25/starred', 'https://api.github.com/users/dc25/repos', 'https://api.github.com/users/dc25/events', 'https://api.github.com/users/dc25/received_events', 0); +INSERT INTO `developer` VALUES (1621, 'edavis10', 'C', 2.884087053102795, 0, 0, 0, 0, 0, 0, 'Eric Davis', 'Little Stream Software', 'http://www.littlestreamsoftware.com', 'Portland, OR USA', 'edavis@littlestreamsoftware.com', NULL, NULL, NULL, 0, 0, 453, 1, 0, 0, 0, '2008-02-28T17:14:06Z', '2024-10-14T17:14:15Z', 'https://avatars.githubusercontent.com/u/1621?v=4', 'https://api.github.com/users/edavis10', 'https://github.com/edavis10', 'https://api.github.com/users/edavis10/followers', 'https://api.github.com/users/edavis10/following', 'https://api.github.com/users/edavis10/gists', 'https://api.github.com/users/edavis10/starred', 'https://api.github.com/users/edavis10/repos', 'https://api.github.com/users/edavis10/events', 'https://api.github.com/users/edavis10/received_events', 0); +INSERT INTO `developer` VALUES (1622, 'entombedvirus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rohith Ravi', NULL, '', 'San Francisco, CA', 'entombedvirus@gmail.com', NULL, NULL, NULL, 0, 0, 32, 18, 0, 0, 0, '2008-02-28T17:15:36Z', '2024-10-08T18:48:17Z', 'https://avatars.githubusercontent.com/u/1622?v=4', 'https://api.github.com/users/entombedvirus', 'https://github.com/entombedvirus', 'https://api.github.com/users/entombedvirus/followers', 'https://api.github.com/users/entombedvirus/following', 'https://api.github.com/users/entombedvirus/gists', 'https://api.github.com/users/entombedvirus/starred', 'https://api.github.com/users/entombedvirus/repos', 'https://api.github.com/users/entombedvirus/events', 'https://api.github.com/users/entombedvirus/received_events', 0); +INSERT INTO `developer` VALUES (1623, 'pagenoare', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kacper Krupa', NULL, '', 'Toruń, Poland', 'pagenoare@gmail.com', NULL, NULL, NULL, 0, 0, 50, 64, 0, 0, 0, '2008-02-28T17:24:46Z', '2024-10-18T21:09:37Z', 'https://avatars.githubusercontent.com/u/1623?v=4', 'https://api.github.com/users/pagenoare', 'https://github.com/pagenoare', 'https://api.github.com/users/pagenoare/followers', 'https://api.github.com/users/pagenoare/following', 'https://api.github.com/users/pagenoare/gists', 'https://api.github.com/users/pagenoare/starred', 'https://api.github.com/users/pagenoare/repos', 'https://api.github.com/users/pagenoare/events', 'https://api.github.com/users/pagenoare/received_events', 0); +INSERT INTO `developer` VALUES (1624, 'brian-lc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Chamberlain', NULL, '', 'North Carolina, US', NULL, 'true', 'Software engineer in finance and Web3. I also dabble in electronics, 3D printing, and music.', NULL, 0, 0, 141, 32, 0, 0, 0, '2008-02-28T17:27:52Z', '2024-10-28T14:55:10Z', 'https://avatars.githubusercontent.com/u/1624?v=4', 'https://api.github.com/users/brian-lc', 'https://github.com/brian-lc', 'https://api.github.com/users/brian-lc/followers', 'https://api.github.com/users/brian-lc/following', 'https://api.github.com/users/brian-lc/gists', 'https://api.github.com/users/brian-lc/starred', 'https://api.github.com/users/brian-lc/repos', 'https://api.github.com/users/brian-lc/events', 'https://api.github.com/users/brian-lc/received_events', 0); +INSERT INTO `developer` VALUES (1625, 'extraface', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-02-28T17:28:18Z', '2024-04-02T12:45:15Z', 'https://avatars.githubusercontent.com/u/1625?v=4', 'https://api.github.com/users/extraface', 'https://github.com/extraface', 'https://api.github.com/users/extraface/followers', 'https://api.github.com/users/extraface/following', 'https://api.github.com/users/extraface/gists', 'https://api.github.com/users/extraface/starred', 'https://api.github.com/users/extraface/repos', 'https://api.github.com/users/extraface/events', 'https://api.github.com/users/extraface/received_events', 0); +INSERT INTO `developer` VALUES (1626, 'snucko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shawn', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 12, 0, 0, 0, '2008-02-28T17:30:49Z', '2024-07-15T20:13:22Z', 'https://avatars.githubusercontent.com/u/1626?v=4', 'https://api.github.com/users/snucko', 'https://github.com/snucko', 'https://api.github.com/users/snucko/followers', 'https://api.github.com/users/snucko/following', 'https://api.github.com/users/snucko/gists', 'https://api.github.com/users/snucko/starred', 'https://api.github.com/users/snucko/repos', 'https://api.github.com/users/snucko/events', 'https://api.github.com/users/snucko/received_events', 0); +INSERT INTO `developer` VALUES (1627, 'jamis', 'C+', 13.036012897479093, 0, 0, 0, 0, 0, 0, 'Jamis Buck', NULL, 'http://weblog.jamisbuck.org', 'Smithfield, Utah, USA', 'jamis@jamisbuck.org', 'true', NULL, NULL, 0, 0, 1045, 1, 0, 0, 0, '2008-02-28T17:37:32Z', '2024-10-24T04:10:28Z', 'https://avatars.githubusercontent.com/u/1627?v=4', 'https://api.github.com/users/jamis', 'https://github.com/jamis', 'https://api.github.com/users/jamis/followers', 'https://api.github.com/users/jamis/following', 'https://api.github.com/users/jamis/gists', 'https://api.github.com/users/jamis/starred', 'https://api.github.com/users/jamis/repos', 'https://api.github.com/users/jamis/events', 'https://api.github.com/users/jamis/received_events', 0); +INSERT INTO `developer` VALUES (1628, 'thomlinton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thom Linton', 'Portland State University', '', 'Portland, OR', 'tlinton@pdx.edu', 'true', NULL, NULL, 0, 0, 14, 1, 0, 0, 0, '2008-02-28T18:07:58Z', '2024-07-03T10:55:00Z', 'https://avatars.githubusercontent.com/u/1628?v=4', 'https://api.github.com/users/thomlinton', 'https://github.com/thomlinton', 'https://api.github.com/users/thomlinton/followers', 'https://api.github.com/users/thomlinton/following', 'https://api.github.com/users/thomlinton/gists', 'https://api.github.com/users/thomlinton/starred', 'https://api.github.com/users/thomlinton/repos', 'https://api.github.com/users/thomlinton/events', 'https://api.github.com/users/thomlinton/received_events', 0); +INSERT INTO `developer` VALUES (1629, 'andrewg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Gniadek', NULL, 'http://gniadek.ca', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-28T18:10:56Z', '2023-06-19T20:44:25Z', 'https://avatars.githubusercontent.com/u/1629?v=4', 'https://api.github.com/users/andrewg', 'https://github.com/andrewg', 'https://api.github.com/users/andrewg/followers', 'https://api.github.com/users/andrewg/following', 'https://api.github.com/users/andrewg/gists', 'https://api.github.com/users/andrewg/starred', 'https://api.github.com/users/andrewg/repos', 'https://api.github.com/users/andrewg/events', 'https://api.github.com/users/andrewg/received_events', 0); +INSERT INTO `developer` VALUES (1630, 'solesby', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Solesby', NULL, 'http://solesby.com', 'Nashville TN USA', NULL, NULL, 'CTO', NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-28T18:12:19Z', '2024-07-12T02:07:40Z', 'https://avatars.githubusercontent.com/u/1630?v=4', 'https://api.github.com/users/solesby', 'https://github.com/solesby', 'https://api.github.com/users/solesby/followers', 'https://api.github.com/users/solesby/following', 'https://api.github.com/users/solesby/gists', 'https://api.github.com/users/solesby/starred', 'https://api.github.com/users/solesby/repos', 'https://api.github.com/users/solesby/events', 'https://api.github.com/users/solesby/received_events', 0); +INSERT INTO `developer` VALUES (1631, 'tambet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tambet Masik', NULL, '', 'Tallinn, Estonia', 'tambet.masik@gmail.com', 'true', 'JavaScript | Ruby | Go', NULL, 0, 0, 20, 7, 0, 0, 0, '2008-02-28T18:22:52Z', '2024-10-15T14:16:05Z', 'https://avatars.githubusercontent.com/u/1631?v=4', 'https://api.github.com/users/tambet', 'https://github.com/tambet', 'https://api.github.com/users/tambet/followers', 'https://api.github.com/users/tambet/following', 'https://api.github.com/users/tambet/gists', 'https://api.github.com/users/tambet/starred', 'https://api.github.com/users/tambet/repos', 'https://api.github.com/users/tambet/events', 'https://api.github.com/users/tambet/received_events', 0); +INSERT INTO `developer` VALUES (1632, 'aake', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Nyberg', 'Collaborative Drug Discovery', '', 'San Mateo, CA', NULL, NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2008-02-28T18:31:47Z', '2023-03-01T23:31:34Z', 'https://avatars.githubusercontent.com/u/1632?v=4', 'https://api.github.com/users/aake', 'https://github.com/aake', 'https://api.github.com/users/aake/followers', 'https://api.github.com/users/aake/following', 'https://api.github.com/users/aake/gists', 'https://api.github.com/users/aake/starred', 'https://api.github.com/users/aake/repos', 'https://api.github.com/users/aake/events', 'https://api.github.com/users/aake/received_events', 0); +INSERT INTO `developer` VALUES (1633, 'bjc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Cully', 'Kublai Khansulting', 'https://git.spork.org/', 'NYC', NULL, 'true', 'i am in the process of moving all my stuff off of github due to moral concerns.\r\n\r\ni am self-hosting at git.spork.org', NULL, 0, 0, 33, 2, 0, 0, 0, '2008-02-28T18:46:47Z', '2022-07-02T18:39:41Z', 'https://avatars.githubusercontent.com/u/1633?v=4', 'https://api.github.com/users/bjc', 'https://github.com/bjc', 'https://api.github.com/users/bjc/followers', 'https://api.github.com/users/bjc/following', 'https://api.github.com/users/bjc/gists', 'https://api.github.com/users/bjc/starred', 'https://api.github.com/users/bjc/repos', 'https://api.github.com/users/bjc/events', 'https://api.github.com/users/bjc/received_events', 0); +INSERT INTO `developer` VALUES (1634, 'ennova2005', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T18:54:44Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1634?v=4', 'https://api.github.com/users/ennova2005', 'https://github.com/ennova2005', 'https://api.github.com/users/ennova2005/followers', 'https://api.github.com/users/ennova2005/following', 'https://api.github.com/users/ennova2005/gists', 'https://api.github.com/users/ennova2005/starred', 'https://api.github.com/users/ennova2005/repos', 'https://api.github.com/users/ennova2005/events', 'https://api.github.com/users/ennova2005/received_events', 0); +INSERT INTO `developer` VALUES (1635, 'binarymatt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt George', NULL, 'https://hachyderm.io/@matt_g', 'Boulder, CO', NULL, 'true', NULL, NULL, 0, 0, 87, 26, 0, 0, 0, '2008-02-28T18:57:41Z', '2024-08-19T02:32:15Z', 'https://avatars.githubusercontent.com/u/1635?v=4', 'https://api.github.com/users/binarymatt', 'https://github.com/binarymatt', 'https://api.github.com/users/binarymatt/followers', 'https://api.github.com/users/binarymatt/following', 'https://api.github.com/users/binarymatt/gists', 'https://api.github.com/users/binarymatt/starred', 'https://api.github.com/users/binarymatt/repos', 'https://api.github.com/users/binarymatt/events', 'https://api.github.com/users/binarymatt/received_events', 0); +INSERT INTO `developer` VALUES (1636, 'naryga', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Garza', 'Optum', '', 'Denver, Co', NULL, NULL, NULL, NULL, 0, 0, 3, 3, 0, 0, 0, '2008-02-28T18:59:00Z', '2024-08-19T15:17:22Z', 'https://avatars.githubusercontent.com/u/1636?v=4', 'https://api.github.com/users/naryga', 'https://github.com/naryga', 'https://api.github.com/users/naryga/followers', 'https://api.github.com/users/naryga/following', 'https://api.github.com/users/naryga/gists', 'https://api.github.com/users/naryga/starred', 'https://api.github.com/users/naryga/repos', 'https://api.github.com/users/naryga/events', 'https://api.github.com/users/naryga/received_events', 0); +INSERT INTO `developer` VALUES (1637, 'josephgrossberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Grossberg', NULL, 'http://www.joegrossberg.com', 'San Francisco, CA', NULL, 'true', NULL, NULL, 0, 0, 20, 22, 0, 0, 0, '2008-02-28T19:00:32Z', '2024-06-16T13:46:48Z', 'https://avatars.githubusercontent.com/u/1637?v=4', 'https://api.github.com/users/josephgrossberg', 'https://github.com/josephgrossberg', 'https://api.github.com/users/josephgrossberg/followers', 'https://api.github.com/users/josephgrossberg/following', 'https://api.github.com/users/josephgrossberg/gists', 'https://api.github.com/users/josephgrossberg/starred', 'https://api.github.com/users/josephgrossberg/repos', 'https://api.github.com/users/josephgrossberg/events', 'https://api.github.com/users/josephgrossberg/received_events', 0); +INSERT INTO `developer` VALUES (1639, 'capitalist', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Martinez', NULL, 'http://jrmiii.com', 'Jacksonville, FL', 'jrm02t@gmail.com', 'true', NULL, 'capitalist', 0, 0, 60, 355, 0, 0, 0, '2008-02-28T19:26:03Z', '2024-02-20T17:00:19Z', 'https://avatars.githubusercontent.com/u/1639?v=4', 'https://api.github.com/users/capitalist', 'https://github.com/capitalist', 'https://api.github.com/users/capitalist/followers', 'https://api.github.com/users/capitalist/following', 'https://api.github.com/users/capitalist/gists', 'https://api.github.com/users/capitalist/starred', 'https://api.github.com/users/capitalist/repos', 'https://api.github.com/users/capitalist/events', 'https://api.github.com/users/capitalist/received_events', 0); +INSERT INTO `developer` VALUES (1640, 'lfelipe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luís Felipe Strano Moraes', 'Intel', '', 'Portland, Oregon, USA', 'luis.strano@intel.com', NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-28T19:27:07Z', '2024-10-08T18:47:04Z', 'https://avatars.githubusercontent.com/u/1640?v=4', 'https://api.github.com/users/lfelipe', 'https://github.com/lfelipe', 'https://api.github.com/users/lfelipe/followers', 'https://api.github.com/users/lfelipe/following', 'https://api.github.com/users/lfelipe/gists', 'https://api.github.com/users/lfelipe/starred', 'https://api.github.com/users/lfelipe/repos', 'https://api.github.com/users/lfelipe/events', 'https://api.github.com/users/lfelipe/received_events', 0); +INSERT INTO `developer` VALUES (1641, 'gojomo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gordon Mohr', 'http://xavvy.com', 'https://twitter.com/gojomo', 'San Francisco', NULL, NULL, 'Python NLP/ML, Crypto, Internet Archive, Content-Addressing, Messaging, P2P', 'gojomo', 0, 0, 130, 1, 0, 0, 0, '2008-02-28T19:32:14Z', '2024-09-25T05:41:10Z', 'https://avatars.githubusercontent.com/u/1641?v=4', 'https://api.github.com/users/gojomo', 'https://github.com/gojomo', 'https://api.github.com/users/gojomo/followers', 'https://api.github.com/users/gojomo/following', 'https://api.github.com/users/gojomo/gists', 'https://api.github.com/users/gojomo/starred', 'https://api.github.com/users/gojomo/repos', 'https://api.github.com/users/gojomo/events', 'https://api.github.com/users/gojomo/received_events', 0); +INSERT INTO `developer` VALUES (1642, 'rubysolo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Solomon White', NULL, '', 'Denver, CO', 'rubysolo@gmail.com', NULL, NULL, NULL, 0, 0, 106, 46, 0, 0, 0, '2008-02-28T19:43:22Z', '2024-10-28T11:18:32Z', 'https://avatars.githubusercontent.com/u/1642?v=4', 'https://api.github.com/users/rubysolo', 'https://github.com/rubysolo', 'https://api.github.com/users/rubysolo/followers', 'https://api.github.com/users/rubysolo/following', 'https://api.github.com/users/rubysolo/gists', 'https://api.github.com/users/rubysolo/starred', 'https://api.github.com/users/rubysolo/repos', 'https://api.github.com/users/rubysolo/events', 'https://api.github.com/users/rubysolo/received_events', 0); +INSERT INTO `developer` VALUES (1643, 'kjohnston', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kenny Johnston', NULL, '', 'Laguna Niguel, CA', NULL, NULL, NULL, NULL, 0, 0, 25, 26, 0, 0, 0, '2008-02-28T19:50:36Z', '2024-09-17T01:25:40Z', 'https://avatars.githubusercontent.com/u/1643?v=4', 'https://api.github.com/users/kjohnston', 'https://github.com/kjohnston', 'https://api.github.com/users/kjohnston/followers', 'https://api.github.com/users/kjohnston/following', 'https://api.github.com/users/kjohnston/gists', 'https://api.github.com/users/kjohnston/starred', 'https://api.github.com/users/kjohnston/repos', 'https://api.github.com/users/kjohnston/events', 'https://api.github.com/users/kjohnston/received_events', 0); +INSERT INTO `developer` VALUES (1644, 'stanisav', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stanislav', NULL, 'lifedraft.de', 'Nierstein', 'stanislav@lifedraft.de', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-28T19:59:38Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1644?v=4', 'https://api.github.com/users/stanisav', 'https://github.com/stanisav', 'https://api.github.com/users/stanisav/followers', 'https://api.github.com/users/stanisav/following', 'https://api.github.com/users/stanisav/gists', 'https://api.github.com/users/stanisav/starred', 'https://api.github.com/users/stanisav/repos', 'https://api.github.com/users/stanisav/events', 'https://api.github.com/users/stanisav/received_events', 0); +INSERT INTO `developer` VALUES (1645, 'BCable', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brad Cable', NULL, 'https://bcable.net', 'Illinois', 'brad@bcable.net', NULL, 'Joined on Feb 28, 2008 ;; \r\n\r\nLeft on June 02, 2018 ;;\r\n\r\nhttps://gitlab.com/BCable', NULL, 0, 0, 20, 3, 0, 0, 0, '2008-02-28T20:22:51Z', '2024-08-27T19:16:59Z', 'https://avatars.githubusercontent.com/u/1645?v=4', 'https://api.github.com/users/BCable', 'https://github.com/BCable', 'https://api.github.com/users/BCable/followers', 'https://api.github.com/users/BCable/following', 'https://api.github.com/users/BCable/gists', 'https://api.github.com/users/BCable/starred', 'https://api.github.com/users/BCable/repos', 'https://api.github.com/users/BCable/events', 'https://api.github.com/users/BCable/received_events', 0); +INSERT INTO `developer` VALUES (1646, 'cspathis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gus Spathis', 'xogito.com', 'http://www.xogito.com', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 12, 8, 0, 0, 0, '2008-02-28T20:24:01Z', '2024-05-17T17:12:36Z', 'https://avatars.githubusercontent.com/u/1646?v=4', 'https://api.github.com/users/cspathis', 'https://github.com/cspathis', 'https://api.github.com/users/cspathis/followers', 'https://api.github.com/users/cspathis/following', 'https://api.github.com/users/cspathis/gists', 'https://api.github.com/users/cspathis/starred', 'https://api.github.com/users/cspathis/repos', 'https://api.github.com/users/cspathis/events', 'https://api.github.com/users/cspathis/received_events', 0); +INSERT INTO `developer` VALUES (1647, 'schutte', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Schutte', NULL, '', 'Austria', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-28T20:48:52Z', '2021-05-20T06:40:19Z', 'https://avatars.githubusercontent.com/u/1647?v=4', 'https://api.github.com/users/schutte', 'https://github.com/schutte', 'https://api.github.com/users/schutte/followers', 'https://api.github.com/users/schutte/following', 'https://api.github.com/users/schutte/gists', 'https://api.github.com/users/schutte/starred', 'https://api.github.com/users/schutte/repos', 'https://api.github.com/users/schutte/events', 'https://api.github.com/users/schutte/received_events', 0); +INSERT INTO `developer` VALUES (1648, 'JohnConner', 'C', 0, 0, 0, 0, 0, 0, 0, 'JamesP', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-28T20:51:20Z', '2022-11-30T16:17:01Z', 'https://avatars.githubusercontent.com/u/1648?v=4', 'https://api.github.com/users/JohnConner', 'https://github.com/JohnConner', 'https://api.github.com/users/JohnConner/followers', 'https://api.github.com/users/JohnConner/following', 'https://api.github.com/users/JohnConner/gists', 'https://api.github.com/users/JohnConner/starred', 'https://api.github.com/users/JohnConner/repos', 'https://api.github.com/users/JohnConner/events', 'https://api.github.com/users/JohnConner/received_events', 0); +INSERT INTO `developer` VALUES (1649, 'xavi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Xavi Caballé', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 46, 65, 0, 0, 0, '2008-02-28T20:52:45Z', '2024-10-22T10:10:24Z', 'https://avatars.githubusercontent.com/u/1649?v=4', 'https://api.github.com/users/xavi', 'https://github.com/xavi', 'https://api.github.com/users/xavi/followers', 'https://api.github.com/users/xavi/following', 'https://api.github.com/users/xavi/gists', 'https://api.github.com/users/xavi/starred', 'https://api.github.com/users/xavi/repos', 'https://api.github.com/users/xavi/events', 'https://api.github.com/users/xavi/received_events', 0); +INSERT INTO `developer` VALUES (1650, 'jgagne33', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 22, 0, 0, 0, '2008-02-28T20:59:18Z', '2024-10-23T19:31:55Z', 'https://avatars.githubusercontent.com/u/1650?v=4', 'https://api.github.com/users/jgagne33', 'https://github.com/jgagne33', 'https://api.github.com/users/jgagne33/followers', 'https://api.github.com/users/jgagne33/following', 'https://api.github.com/users/jgagne33/gists', 'https://api.github.com/users/jgagne33/starred', 'https://api.github.com/users/jgagne33/repos', 'https://api.github.com/users/jgagne33/events', 'https://api.github.com/users/jgagne33/received_events', 0); +INSERT INTO `developer` VALUES (1651, 'Abica', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicholas Wright', 'appsbynick', 'www.appsbynick.com', 'Colorado', NULL, NULL, NULL, NULL, 0, 0, 27, 20, 0, 0, 0, '2008-02-28T21:10:27Z', '2024-11-01T15:03:38Z', 'https://avatars.githubusercontent.com/u/1651?v=4', 'https://api.github.com/users/Abica', 'https://github.com/Abica', 'https://api.github.com/users/Abica/followers', 'https://api.github.com/users/Abica/following', 'https://api.github.com/users/Abica/gists', 'https://api.github.com/users/Abica/starred', 'https://api.github.com/users/Abica/repos', 'https://api.github.com/users/Abica/events', 'https://api.github.com/users/Abica/received_events', 0); +INSERT INTO `developer` VALUES (1652, 'tantalor', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Tantalo', 'http://johntantalo.com', 'http://johntantalo.com/blog', 'Pittsburgh, PA', 'john.tantalo@gmail.com', NULL, NULL, NULL, 0, 0, 50, 15, 0, 0, 0, '2008-02-28T21:12:27Z', '2023-07-25T23:24:35Z', 'https://avatars.githubusercontent.com/u/1652?v=4', 'https://api.github.com/users/tantalor', 'https://github.com/tantalor', 'https://api.github.com/users/tantalor/followers', 'https://api.github.com/users/tantalor/following', 'https://api.github.com/users/tantalor/gists', 'https://api.github.com/users/tantalor/starred', 'https://api.github.com/users/tantalor/repos', 'https://api.github.com/users/tantalor/events', 'https://api.github.com/users/tantalor/received_events', 0); +INSERT INTO `developer` VALUES (1653, 'shift', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vincent Palmer', NULL, '', 'Berlin, Germany', 'shift@someone.section.me', 'true', NULL, NULL, 0, 0, 65, 286, 0, 0, 0, '2008-02-28T21:14:55Z', '2024-10-29T15:06:45Z', 'https://avatars.githubusercontent.com/u/1653?v=4', 'https://api.github.com/users/shift', 'https://github.com/shift', 'https://api.github.com/users/shift/followers', 'https://api.github.com/users/shift/following', 'https://api.github.com/users/shift/gists', 'https://api.github.com/users/shift/starred', 'https://api.github.com/users/shift/repos', 'https://api.github.com/users/shift/events', 'https://api.github.com/users/shift/received_events', 0); +INSERT INTO `developer` VALUES (1654, 'jwilger', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Wilger', '@thisisartium ', 'http://johnwilger.com', 'Forest Grove, OR, United States', 'john@johnwilger.com', NULL, NULL, NULL, 0, 0, 29, 12, 0, 0, 0, '2008-02-28T21:36:12Z', '2024-10-26T05:42:43Z', 'https://avatars.githubusercontent.com/u/1654?v=4', 'https://api.github.com/users/jwilger', 'https://github.com/jwilger', 'https://api.github.com/users/jwilger/followers', 'https://api.github.com/users/jwilger/following', 'https://api.github.com/users/jwilger/gists', 'https://api.github.com/users/jwilger/starred', 'https://api.github.com/users/jwilger/repos', 'https://api.github.com/users/jwilger/events', 'https://api.github.com/users/jwilger/received_events', 0); +INSERT INTO `developer` VALUES (1655, 'kamidev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kami Development', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 11, 0, 0, 0, '2008-02-28T21:50:23Z', '2024-10-28T19:17:02Z', 'https://avatars.githubusercontent.com/u/1655?v=4', 'https://api.github.com/users/kamidev', 'https://github.com/kamidev', 'https://api.github.com/users/kamidev/followers', 'https://api.github.com/users/kamidev/following', 'https://api.github.com/users/kamidev/gists', 'https://api.github.com/users/kamidev/starred', 'https://api.github.com/users/kamidev/repos', 'https://api.github.com/users/kamidev/events', 'https://api.github.com/users/kamidev/received_events', 0); +INSERT INTO `developer` VALUES (1657, 'andrewy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andre', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-28T22:01:43Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1657?v=4', 'https://api.github.com/users/andrewy', 'https://github.com/andrewy', 'https://api.github.com/users/andrewy/followers', 'https://api.github.com/users/andrewy/following', 'https://api.github.com/users/andrewy/gists', 'https://api.github.com/users/andrewy/starred', 'https://api.github.com/users/andrewy/repos', 'https://api.github.com/users/andrewy/events', 'https://api.github.com/users/andrewy/received_events', 0); +INSERT INTO `developer` VALUES (1658, 'gerard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gerard Lledó', NULL, '', 'Helsinki', 'gerard.lledo@gmail.com', 'true', NULL, NULL, 0, 0, 35, 0, 0, 0, 0, '2008-02-28T22:03:22Z', '2024-03-02T11:41:47Z', 'https://avatars.githubusercontent.com/u/1658?v=4', 'https://api.github.com/users/gerard', 'https://github.com/gerard', 'https://api.github.com/users/gerard/followers', 'https://api.github.com/users/gerard/following', 'https://api.github.com/users/gerard/gists', 'https://api.github.com/users/gerard/starred', 'https://api.github.com/users/gerard/repos', 'https://api.github.com/users/gerard/events', 'https://api.github.com/users/gerard/received_events', 0); +INSERT INTO `developer` VALUES (1659, 'rictic', 'C', 0.26036297507986805, 0, 0, 0, 0, 0, 0, 'Peter Burns', 'Google', '', '94612 (Oakland)', 'rictic@gmail.com', 'true', NULL, 'rictic', 0, 0, 300, 18, 0, 0, 0, '2008-02-28T22:05:08Z', '2024-11-04T21:46:41Z', 'https://avatars.githubusercontent.com/u/1659?v=4', 'https://api.github.com/users/rictic', 'https://github.com/rictic', 'https://api.github.com/users/rictic/followers', 'https://api.github.com/users/rictic/following', 'https://api.github.com/users/rictic/gists', 'https://api.github.com/users/rictic/starred', 'https://api.github.com/users/rictic/repos', 'https://api.github.com/users/rictic/events', 'https://api.github.com/users/rictic/received_events', 0); +INSERT INTO `developer` VALUES (1660, 'samuelt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samuel Thollander', NULL, 'samuel.thollander.net', 'Sweden', NULL, 'true', NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-28T22:16:59Z', '2022-04-07T20:36:55Z', 'https://avatars.githubusercontent.com/u/1660?v=4', 'https://api.github.com/users/samuelt', 'https://github.com/samuelt', 'https://api.github.com/users/samuelt/followers', 'https://api.github.com/users/samuelt/following', 'https://api.github.com/users/samuelt/gists', 'https://api.github.com/users/samuelt/starred', 'https://api.github.com/users/samuelt/repos', 'https://api.github.com/users/samuelt/events', 'https://api.github.com/users/samuelt/received_events', 0); +INSERT INTO `developer` VALUES (1661, 'coat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kent Smith', NULL, '', 'Seattle, WA', 'kentsmith@gmail.com', NULL, NULL, NULL, 0, 0, 14, 7, 0, 0, 0, '2008-02-28T22:22:52Z', '2024-02-13T18:57:24Z', 'https://avatars.githubusercontent.com/u/1661?v=4', 'https://api.github.com/users/coat', 'https://github.com/coat', 'https://api.github.com/users/coat/followers', 'https://api.github.com/users/coat/following', 'https://api.github.com/users/coat/gists', 'https://api.github.com/users/coat/starred', 'https://api.github.com/users/coat/repos', 'https://api.github.com/users/coat/events', 'https://api.github.com/users/coat/received_events', 0); +INSERT INTO `developer` VALUES (1662, 'swsnider', 'C', 0, 0, 0, 0, 0, 0, 0, 'Silas Snider', 'Apple', '', 'San Jose, CA', 'swsnider@gmail.com', NULL, NULL, 'silas_nerd', 0, 0, 30, 8, 0, 0, 0, '2008-02-28T22:24:51Z', '2024-10-16T19:35:56Z', 'https://avatars.githubusercontent.com/u/1662?v=4', 'https://api.github.com/users/swsnider', 'https://github.com/swsnider', 'https://api.github.com/users/swsnider/followers', 'https://api.github.com/users/swsnider/following', 'https://api.github.com/users/swsnider/gists', 'https://api.github.com/users/swsnider/starred', 'https://api.github.com/users/swsnider/repos', 'https://api.github.com/users/swsnider/events', 'https://api.github.com/users/swsnider/received_events', 0); +INSERT INTO `developer` VALUES (1663, 'hamann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Holger Amann', 'nextjournal GmbH', '', '未知', 'holger@nextjournal.com', NULL, NULL, NULL, 0, 0, 15, 2, 0, 0, 0, '2008-02-28T22:28:41Z', '2024-10-27T10:40:11Z', 'https://avatars.githubusercontent.com/u/1663?v=4', 'https://api.github.com/users/hamann', 'https://github.com/hamann', 'https://api.github.com/users/hamann/followers', 'https://api.github.com/users/hamann/following', 'https://api.github.com/users/hamann/gists', 'https://api.github.com/users/hamann/starred', 'https://api.github.com/users/hamann/repos', 'https://api.github.com/users/hamann/events', 'https://api.github.com/users/hamann/received_events', 0); +INSERT INTO `developer` VALUES (1664, 'svenstaro', 'C', 11.37260612905933, 0, 0, 0, 0, 0, 0, 'Sven-Hendrik Haase', NULL, 'https://svenstaro.org', 'Germany, Hamburg', NULL, 'true', 'Freelance consultant, DevOps and automation connoisseur, Arch Linux developer, hobbyist game and graphics programmer.\r\n\r\nAvailable for remote contracting.', NULL, 0, 0, 948, 89, 0, 0, 0, '2008-02-28T22:42:59Z', '2024-09-28T02:01:36Z', 'https://avatars.githubusercontent.com/u/1664?v=4', 'https://api.github.com/users/svenstaro', 'https://github.com/svenstaro', 'https://api.github.com/users/svenstaro/followers', 'https://api.github.com/users/svenstaro/following', 'https://api.github.com/users/svenstaro/gists', 'https://api.github.com/users/svenstaro/starred', 'https://api.github.com/users/svenstaro/repos', 'https://api.github.com/users/svenstaro/events', 'https://api.github.com/users/svenstaro/received_events', 0); +INSERT INTO `developer` VALUES (1665, 'ebassi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emmanuele Bassi', NULL, 'https://www.bassi.io', 'London, UK', 'ebassi@gmail.com', NULL, 'Geek, husband, lover, software developer, londoner. Not necessarily in that order.', NULL, 0, 0, 235, 2, 0, 0, 0, '2008-02-28T22:49:18Z', '2024-10-03T09:32:55Z', 'https://avatars.githubusercontent.com/u/1665?v=4', 'https://api.github.com/users/ebassi', 'https://github.com/ebassi', 'https://api.github.com/users/ebassi/followers', 'https://api.github.com/users/ebassi/following', 'https://api.github.com/users/ebassi/gists', 'https://api.github.com/users/ebassi/starred', 'https://api.github.com/users/ebassi/repos', 'https://api.github.com/users/ebassi/events', 'https://api.github.com/users/ebassi/received_events', 0); +INSERT INTO `developer` VALUES (1666, 'luiscosio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luis Cosio', NULL, 'https://www.luiscos.io', 'México', 'luisalfonsocosioizcapa@gmail.com', NULL, 'Builder by day, investor by night. I am interested in #AI, #cloudcomputing, #cybersecurity, and #space, and I am worried about AI alignment and paperclips.', NULL, 0, 0, 57, 31, 0, 0, 0, '2008-02-28T22:57:23Z', '2024-09-18T16:11:42Z', 'https://avatars.githubusercontent.com/u/1666?v=4', 'https://api.github.com/users/luiscosio', 'https://github.com/luiscosio', 'https://api.github.com/users/luiscosio/followers', 'https://api.github.com/users/luiscosio/following', 'https://api.github.com/users/luiscosio/gists', 'https://api.github.com/users/luiscosio/starred', 'https://api.github.com/users/luiscosio/repos', 'https://api.github.com/users/luiscosio/events', 'https://api.github.com/users/luiscosio/received_events', 0); +INSERT INTO `developer` VALUES (1667, 'seano288', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-28T23:16:29Z', '2024-09-06T17:08:05Z', 'https://avatars.githubusercontent.com/u/1667?v=4', 'https://api.github.com/users/seano288', 'https://github.com/seano288', 'https://api.github.com/users/seano288/followers', 'https://api.github.com/users/seano288/following', 'https://api.github.com/users/seano288/gists', 'https://api.github.com/users/seano288/starred', 'https://api.github.com/users/seano288/repos', 'https://api.github.com/users/seano288/events', 'https://api.github.com/users/seano288/received_events', 0); +INSERT INTO `developer` VALUES (1668, 'john', 'C', 0, 0, 0, 0, 0, 0, 0, 'John McGrath', 'RMI', '', '未知', NULL, 'true', 'Product at @RMI. Ex-AWS Sustainability, co-founder @Entelo, dev @NYTimes and @WHOIGit. Interested in climate, renewable energy, journalism, and democracy.', 'Wordie', 0, 0, 170, 66, 0, 0, 0, '2008-02-28T23:17:13Z', '2024-08-16T17:51:23Z', 'https://avatars.githubusercontent.com/u/1668?v=4', 'https://api.github.com/users/john', 'https://github.com/john', 'https://api.github.com/users/john/followers', 'https://api.github.com/users/john/following', 'https://api.github.com/users/john/gists', 'https://api.github.com/users/john/starred', 'https://api.github.com/users/john/repos', 'https://api.github.com/users/john/events', 'https://api.github.com/users/john/received_events', 0); +INSERT INTO `developer` VALUES (1669, 'mallum', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-02-28T23:19:51Z', '2023-03-24T16:47:03Z', 'https://avatars.githubusercontent.com/u/1669?v=4', 'https://api.github.com/users/mallum', 'https://github.com/mallum', 'https://api.github.com/users/mallum/followers', 'https://api.github.com/users/mallum/following', 'https://api.github.com/users/mallum/gists', 'https://api.github.com/users/mallum/starred', 'https://api.github.com/users/mallum/repos', 'https://api.github.com/users/mallum/events', 'https://api.github.com/users/mallum/received_events', 0); +INSERT INTO `developer` VALUES (1670, 'corsix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Cawley', NULL, 'http://www.corsix.org/', 'London, England', 'github-no-recruiters-please@corsix.org', NULL, NULL, NULL, 0, 0, 243, 0, 0, 0, 0, '2008-02-29T00:10:00Z', '2024-10-13T18:27:30Z', 'https://avatars.githubusercontent.com/u/1670?v=4', 'https://api.github.com/users/corsix', 'https://github.com/corsix', 'https://api.github.com/users/corsix/followers', 'https://api.github.com/users/corsix/following', 'https://api.github.com/users/corsix/gists', 'https://api.github.com/users/corsix/starred', 'https://api.github.com/users/corsix/repos', 'https://api.github.com/users/corsix/events', 'https://api.github.com/users/corsix/received_events', 0); +INSERT INTO `developer` VALUES (1671, 'scrooloose', 'C+', 19.53530326068622, 0, 0, 0, 0, 0, 0, 'Martin Grenfell', NULL, '', 'UK', 'martin.grenfell@gmail.com', NULL, NULL, NULL, 0, 0, 1424, 20, 0, 0, 0, '2008-02-29T00:12:11Z', '2024-10-26T10:28:35Z', 'https://avatars.githubusercontent.com/u/1671?v=4', 'https://api.github.com/users/scrooloose', 'https://github.com/scrooloose', 'https://api.github.com/users/scrooloose/followers', 'https://api.github.com/users/scrooloose/following', 'https://api.github.com/users/scrooloose/gists', 'https://api.github.com/users/scrooloose/starred', 'https://api.github.com/users/scrooloose/repos', 'https://api.github.com/users/scrooloose/events', 'https://api.github.com/users/scrooloose/received_events', 0); +INSERT INTO `developer` VALUES (1672, 'blader', 'C', 0, 0, 0, 0, 0, 0, 0, 'Siqi Chen', NULL, 'http://twitter.com/blader', 'San Francisco', 'blader@gmail.com', NULL, NULL, NULL, 0, 0, 43, 30, 0, 0, 0, '2008-02-29T00:36:56Z', '2024-08-22T04:14:23Z', 'https://avatars.githubusercontent.com/u/1672?v=4', 'https://api.github.com/users/blader', 'https://github.com/blader', 'https://api.github.com/users/blader/followers', 'https://api.github.com/users/blader/following', 'https://api.github.com/users/blader/gists', 'https://api.github.com/users/blader/starred', 'https://api.github.com/users/blader/repos', 'https://api.github.com/users/blader/events', 'https://api.github.com/users/blader/received_events', 0); +INSERT INTO `developer` VALUES (1673, 'alexcharlie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Le', 'Serious Business', 'http://alexle.org', 'San Francisco', 'alexmle@gmail.com', NULL, NULL, NULL, 0, 0, 41, 3, 0, 0, 0, '2008-02-29T00:39:39Z', '2019-12-11T19:46:06Z', 'https://avatars.githubusercontent.com/u/1673?v=4', 'https://api.github.com/users/alexcharlie', 'https://github.com/alexcharlie', 'https://api.github.com/users/alexcharlie/followers', 'https://api.github.com/users/alexcharlie/following', 'https://api.github.com/users/alexcharlie/gists', 'https://api.github.com/users/alexcharlie/starred', 'https://api.github.com/users/alexcharlie/repos', 'https://api.github.com/users/alexcharlie/events', 'https://api.github.com/users/alexcharlie/received_events', 0); +INSERT INTO `developer` VALUES (1674, 'jason', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason', NULL, '', 'CA', NULL, 'true', NULL, NULL, 0, 0, 26, 6, 0, 0, 0, '2008-02-29T00:39:48Z', '2024-02-10T17:38:33Z', 'https://avatars.githubusercontent.com/u/1674?v=4', 'https://api.github.com/users/jason', 'https://github.com/jason', 'https://api.github.com/users/jason/followers', 'https://api.github.com/users/jason/following', 'https://api.github.com/users/jason/gists', 'https://api.github.com/users/jason/starred', 'https://api.github.com/users/jason/repos', 'https://api.github.com/users/jason/events', 'https://api.github.com/users/jason/received_events', 0); +INSERT INTO `developer` VALUES (1675, 'davidsidlinger', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Sidlinger', '@artistgrowth ', 'http://david.fancyacres.org/', 'Nashville, TN', NULL, NULL, 'Principal Software Engineer and VP of Engineering, @artistgrowth ', NULL, 0, 0, 16, 3, 0, 0, 0, '2008-02-29T00:46:28Z', '2024-09-08T17:33:14Z', 'https://avatars.githubusercontent.com/u/1675?v=4', 'https://api.github.com/users/davidsidlinger', 'https://github.com/davidsidlinger', 'https://api.github.com/users/davidsidlinger/followers', 'https://api.github.com/users/davidsidlinger/following', 'https://api.github.com/users/davidsidlinger/gists', 'https://api.github.com/users/davidsidlinger/starred', 'https://api.github.com/users/davidsidlinger/repos', 'https://api.github.com/users/davidsidlinger/events', 'https://api.github.com/users/davidsidlinger/received_events', 0); +INSERT INTO `developer` VALUES (1676, 'fightinjoe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Wheeler', NULL, '', 'New York, NY', 'aaron@fightinjoe.com', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-02-29T00:50:20Z', '2024-10-22T18:09:33Z', 'https://avatars.githubusercontent.com/u/1676?v=4', 'https://api.github.com/users/fightinjoe', 'https://github.com/fightinjoe', 'https://api.github.com/users/fightinjoe/followers', 'https://api.github.com/users/fightinjoe/following', 'https://api.github.com/users/fightinjoe/gists', 'https://api.github.com/users/fightinjoe/starred', 'https://api.github.com/users/fightinjoe/repos', 'https://api.github.com/users/fightinjoe/events', 'https://api.github.com/users/fightinjoe/received_events', 0); +INSERT INTO `developer` VALUES (1677, 'brendano', 'C', 0.003135124293306881, 0, 0, 0, 0, 0, 0, 'Brendan O\'Connor', 'University of Massachusetts Amherst', 'http://brenocon.com', 'Amherst, MA', 'brenocon@cs.umass.edu', NULL, NULL, 'brendan642', 0, 0, 285, 4, 0, 0, 0, '2008-02-29T00:51:21Z', '2024-10-13T14:53:29Z', 'https://avatars.githubusercontent.com/u/1677?v=4', 'https://api.github.com/users/brendano', 'https://github.com/brendano', 'https://api.github.com/users/brendano/followers', 'https://api.github.com/users/brendano/following', 'https://api.github.com/users/brendano/gists', 'https://api.github.com/users/brendano/starred', 'https://api.github.com/users/brendano/repos', 'https://api.github.com/users/brendano/events', 'https://api.github.com/users/brendano/received_events', 0); +INSERT INTO `developer` VALUES (1678, 'alltom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Lieber', NULL, 'http://alltom.com/', '未知', 'tom@alltom.com', NULL, NULL, 'alltom', 0, 0, 135, 12, 0, 0, 0, '2008-02-29T00:57:10Z', '2024-08-15T04:59:03Z', 'https://avatars.githubusercontent.com/u/1678?v=4', 'https://api.github.com/users/alltom', 'https://github.com/alltom', 'https://api.github.com/users/alltom/followers', 'https://api.github.com/users/alltom/following', 'https://api.github.com/users/alltom/gists', 'https://api.github.com/users/alltom/starred', 'https://api.github.com/users/alltom/repos', 'https://api.github.com/users/alltom/events', 'https://api.github.com/users/alltom/received_events', 0); +INSERT INTO `developer` VALUES (1680, 'orderedlist', 'B', 48.03614912783725, 0, 0, 0, 0, 0, 0, 'Steve Smith', 'Box Out Sports, 123 Studio', 'http://orderedlist.com', 'South Bend, IN, USA', 'steve@orderedlist.com', 'true', 'Product designer and engineer. Cofounder of boxoutsports.com. I speak about design and technology, and occasionally write at orderedlist.com.', NULL, 0, 0, 3086, 8, 0, 0, 0, '2008-02-29T01:15:34Z', '2024-10-06T11:21:39Z', 'https://avatars.githubusercontent.com/u/1680?v=4', 'https://api.github.com/users/orderedlist', 'https://github.com/orderedlist', 'https://api.github.com/users/orderedlist/followers', 'https://api.github.com/users/orderedlist/following', 'https://api.github.com/users/orderedlist/gists', 'https://api.github.com/users/orderedlist/starred', 'https://api.github.com/users/orderedlist/repos', 'https://api.github.com/users/orderedlist/events', 'https://api.github.com/users/orderedlist/received_events', 0); +INSERT INTO `developer` VALUES (1681, 'PhilGeek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Eli Kalderon', 'University College London', '', 'London', 'm.kalderon@ucl.ac.uk', NULL, 'I am a Professor of Philosophy at UCL. I primarily work on philosophy of perception and its history.', NULL, 0, 0, 29, 6, 0, 0, 0, '2008-02-29T01:23:42Z', '2024-10-15T09:56:22Z', 'https://avatars.githubusercontent.com/u/1681?v=4', 'https://api.github.com/users/PhilGeek', 'https://github.com/PhilGeek', 'https://api.github.com/users/PhilGeek/followers', 'https://api.github.com/users/PhilGeek/following', 'https://api.github.com/users/PhilGeek/gists', 'https://api.github.com/users/PhilGeek/starred', 'https://api.github.com/users/PhilGeek/repos', 'https://api.github.com/users/PhilGeek/events', 'https://api.github.com/users/PhilGeek/received_events', 0); +INSERT INTO `developer` VALUES (1682, 'juancq', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Quiroz Aguilera', 'CBDRH @ UNSW', 'https://juancq.github.io', 'Sydney', NULL, NULL, 'I am a researcher at the Centre for Big Data Research in Health at @unsw-edu-au. My research interests are in machine learning for medical applications.', NULL, 0, 0, 20, 5, 0, 0, 0, '2008-02-29T01:36:54Z', '2024-10-28T11:18:33Z', 'https://avatars.githubusercontent.com/u/1682?v=4', 'https://api.github.com/users/juancq', 'https://github.com/juancq', 'https://api.github.com/users/juancq/followers', 'https://api.github.com/users/juancq/following', 'https://api.github.com/users/juancq/gists', 'https://api.github.com/users/juancq/starred', 'https://api.github.com/users/juancq/repos', 'https://api.github.com/users/juancq/events', 'https://api.github.com/users/juancq/received_events', 0); +INSERT INTO `developer` VALUES (1683, 'ap', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aristotle Pagaltzis', NULL, 'http://plasmasturm.org/', '未知', 'pagaltzis@gmx.de', NULL, 'I write code when I can’t help it.', NULL, 0, 0, 211, 7, 0, 0, 0, '2008-02-29T01:53:19Z', '2024-05-31T18:28:12Z', 'https://avatars.githubusercontent.com/u/1683?v=4', 'https://api.github.com/users/ap', 'https://github.com/ap', 'https://api.github.com/users/ap/followers', 'https://api.github.com/users/ap/following', 'https://api.github.com/users/ap/gists', 'https://api.github.com/users/ap/starred', 'https://api.github.com/users/ap/repos', 'https://api.github.com/users/ap/events', 'https://api.github.com/users/ap/received_events', 0); +INSERT INTO `developer` VALUES (1684, 'mcclung', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott McClung', NULL, '', 'Virginia, USA', NULL, NULL, 'Software Engineer and Systems Administrator', NULL, 0, 0, 7, 6, 0, 0, 0, '2008-02-29T02:18:30Z', '2024-10-15T19:35:03Z', 'https://avatars.githubusercontent.com/u/1684?v=4', 'https://api.github.com/users/mcclung', 'https://github.com/mcclung', 'https://api.github.com/users/mcclung/followers', 'https://api.github.com/users/mcclung/following', 'https://api.github.com/users/mcclung/gists', 'https://api.github.com/users/mcclung/starred', 'https://api.github.com/users/mcclung/repos', 'https://api.github.com/users/mcclung/events', 'https://api.github.com/users/mcclung/received_events', 0); +INSERT INTO `developer` VALUES (1685, 'tgoertz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T02:44:09Z', '2019-12-21T13:37:49Z', 'https://avatars.githubusercontent.com/u/1685?v=4', 'https://api.github.com/users/tgoertz', 'https://github.com/tgoertz', 'https://api.github.com/users/tgoertz/followers', 'https://api.github.com/users/tgoertz/following', 'https://api.github.com/users/tgoertz/gists', 'https://api.github.com/users/tgoertz/starred', 'https://api.github.com/users/tgoertz/repos', 'https://api.github.com/users/tgoertz/events', 'https://api.github.com/users/tgoertz/received_events', 0); +INSERT INTO `developer` VALUES (1686, 'xevo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'yReality', '', 'Cincinnati', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-29T03:08:46Z', '2024-09-10T23:59:34Z', 'https://avatars.githubusercontent.com/u/1686?v=4', 'https://api.github.com/users/xevo', 'https://github.com/xevo', 'https://api.github.com/users/xevo/followers', 'https://api.github.com/users/xevo/following', 'https://api.github.com/users/xevo/gists', 'https://api.github.com/users/xevo/starred', 'https://api.github.com/users/xevo/repos', 'https://api.github.com/users/xevo/events', 'https://api.github.com/users/xevo/received_events', 0); +INSERT INTO `developer` VALUES (1687, 'acangiano', 'C', 2.4896710152300687, 0, 0, 0, 0, 0, 0, 'Antonio Cangiano', 'IBM', 'https://antoniocangiano.com', 'Canada', 'acangiano@gmail.com', NULL, 'Engineering Manager and AI Specialist at IBM, Webpreneur & Technical Author. Co-founder and Marketing Lead for CognitiveClass.ai.', NULL, 0, 0, 430, 69, 0, 0, 0, '2008-02-29T03:28:47Z', '2024-09-25T14:32:45Z', 'https://avatars.githubusercontent.com/u/1687?v=4', 'https://api.github.com/users/acangiano', 'https://github.com/acangiano', 'https://api.github.com/users/acangiano/followers', 'https://api.github.com/users/acangiano/following', 'https://api.github.com/users/acangiano/gists', 'https://api.github.com/users/acangiano/starred', 'https://api.github.com/users/acangiano/repos', 'https://api.github.com/users/acangiano/events', 'https://api.github.com/users/acangiano/received_events', 0); +INSERT INTO `developer` VALUES (1688, 'stolt45', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Stolt', 'Platform Experts', 'https://platformexperts.dev', 'Boulder, CO', 'stolt45@gmail.com', NULL, NULL, 'its_stolt', 0, 0, 30, 3, 0, 0, 0, '2008-02-29T03:57:29Z', '2024-08-02T19:55:46Z', 'https://avatars.githubusercontent.com/u/1688?v=4', 'https://api.github.com/users/stolt45', 'https://github.com/stolt45', 'https://api.github.com/users/stolt45/followers', 'https://api.github.com/users/stolt45/following', 'https://api.github.com/users/stolt45/gists', 'https://api.github.com/users/stolt45/starred', 'https://api.github.com/users/stolt45/repos', 'https://api.github.com/users/stolt45/events', 'https://api.github.com/users/stolt45/received_events', 0); +INSERT INTO `developer` VALUES (1689, 'kevindamm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Damm', 'Symbol Not Found', '', 'NYC, New York', NULL, NULL, 'maker, tinkerer, designer of languages, force multiplier on computational scalability, puzzle enthusiast, music lover', NULL, 0, 0, 11, 10, 0, 0, 0, '2008-02-29T04:01:36Z', '2024-10-24T19:58:21Z', 'https://avatars.githubusercontent.com/u/1689?v=4', 'https://api.github.com/users/kevindamm', 'https://github.com/kevindamm', 'https://api.github.com/users/kevindamm/followers', 'https://api.github.com/users/kevindamm/following', 'https://api.github.com/users/kevindamm/gists', 'https://api.github.com/users/kevindamm/starred', 'https://api.github.com/users/kevindamm/repos', 'https://api.github.com/users/kevindamm/events', 'https://api.github.com/users/kevindamm/received_events', 0); +INSERT INTO `developer` VALUES (1690, 'horndude77', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jay Anderson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 3, 0, 0, 0, '2008-02-29T04:13:35Z', '2023-12-09T00:24:50Z', 'https://avatars.githubusercontent.com/u/1690?v=4', 'https://api.github.com/users/horndude77', 'https://github.com/horndude77', 'https://api.github.com/users/horndude77/followers', 'https://api.github.com/users/horndude77/following', 'https://api.github.com/users/horndude77/gists', 'https://api.github.com/users/horndude77/starred', 'https://api.github.com/users/horndude77/repos', 'https://api.github.com/users/horndude77/events', 'https://api.github.com/users/horndude77/received_events', 0); +INSERT INTO `developer` VALUES (1691, 'bryansray', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bryan Ray', NULL, 'https://bryanray.net', 'Houston, TX', 'bryan@bryanray.net', 'true', 'I\'m not a great developer. I\'m just a decent developer with great habits.', 'bryanray', 0, 0, 30, 5, 0, 0, 0, '2008-02-29T04:59:09Z', '2024-10-27T03:54:04Z', 'https://avatars.githubusercontent.com/u/1691?v=4', 'https://api.github.com/users/bryansray', 'https://github.com/bryansray', 'https://api.github.com/users/bryansray/followers', 'https://api.github.com/users/bryansray/following', 'https://api.github.com/users/bryansray/gists', 'https://api.github.com/users/bryansray/starred', 'https://api.github.com/users/bryansray/repos', 'https://api.github.com/users/bryansray/events', 'https://api.github.com/users/bryansray/received_events', 0); +INSERT INTO `developer` VALUES (1692, 'cw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Wilcox', NULL, 'https://observablehq.com/@cw', 'Evansville, WI', 'cw@christianwilcox.com', NULL, 'c++, mobile/cloud apps, devops, running', 'caw', 0, 0, 85, 357, 0, 0, 0, '2008-02-29T05:02:16Z', '2024-11-03T18:46:29Z', 'https://avatars.githubusercontent.com/u/1692?v=4', 'https://api.github.com/users/cw', 'https://github.com/cw', 'https://api.github.com/users/cw/followers', 'https://api.github.com/users/cw/following', 'https://api.github.com/users/cw/gists', 'https://api.github.com/users/cw/starred', 'https://api.github.com/users/cw/repos', 'https://api.github.com/users/cw/events', 'https://api.github.com/users/cw/received_events', 0); +INSERT INTO `developer` VALUES (1693, 'ryderblue', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryder Rishel', NULL, '', '未知', 'ryderblue@gmail.com', NULL, NULL, NULL, 0, 0, 17, 24, 0, 0, 0, '2008-02-29T05:20:17Z', '2024-08-30T16:19:51Z', 'https://avatars.githubusercontent.com/u/1693?v=4', 'https://api.github.com/users/ryderblue', 'https://github.com/ryderblue', 'https://api.github.com/users/ryderblue/followers', 'https://api.github.com/users/ryderblue/following', 'https://api.github.com/users/ryderblue/gists', 'https://api.github.com/users/ryderblue/starred', 'https://api.github.com/users/ryderblue/repos', 'https://api.github.com/users/ryderblue/events', 'https://api.github.com/users/ryderblue/received_events', 0); +INSERT INTO `developer` VALUES (1694, 'jkatz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan S. Katz', '@aws', 'https://www.jkatz05.com', 'New York', NULL, NULL, NULL, 'jkatz05', 0, 0, 172, 9, 0, 0, 0, '2008-02-29T05:33:44Z', '2024-10-27T19:04:01Z', 'https://avatars.githubusercontent.com/u/1694?v=4', 'https://api.github.com/users/jkatz', 'https://github.com/jkatz', 'https://api.github.com/users/jkatz/followers', 'https://api.github.com/users/jkatz/following', 'https://api.github.com/users/jkatz/gists', 'https://api.github.com/users/jkatz/starred', 'https://api.github.com/users/jkatz/repos', 'https://api.github.com/users/jkatz/events', 'https://api.github.com/users/jkatz/received_events', 0); +INSERT INTO `developer` VALUES (1695, 'Anks', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ankit Solanki', '@ClearTax ', 'http://ankitsolanki.com', 'Bangalore, India', NULL, NULL, NULL, NULL, 0, 0, 25, 3, 0, 0, 0, '2008-02-29T05:41:06Z', '2024-10-10T03:43:37Z', 'https://avatars.githubusercontent.com/u/1695?v=4', 'https://api.github.com/users/Anks', 'https://github.com/Anks', 'https://api.github.com/users/Anks/followers', 'https://api.github.com/users/Anks/following', 'https://api.github.com/users/Anks/gists', 'https://api.github.com/users/Anks/starred', 'https://api.github.com/users/Anks/repos', 'https://api.github.com/users/Anks/events', 'https://api.github.com/users/Anks/received_events', 0); +INSERT INTO `developer` VALUES (1696, 'han', 'C', 0, 0, 0, 0, 0, 0, 0, 'Han Kessels', 'Hanamaru', '', 'Tokyo', 'han.kessels@gmail.com', NULL, NULL, NULL, 0, 0, 17, 1, 0, 0, 0, '2008-02-29T05:58:59Z', '2021-02-25T04:29:44Z', 'https://avatars.githubusercontent.com/u/1696?v=4', 'https://api.github.com/users/han', 'https://github.com/han', 'https://api.github.com/users/han/followers', 'https://api.github.com/users/han/following', 'https://api.github.com/users/han/gists', 'https://api.github.com/users/han/starred', 'https://api.github.com/users/han/repos', 'https://api.github.com/users/han/events', 'https://api.github.com/users/han/received_events', 0); +INSERT INTO `developer` VALUES (1697, 'thauber', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tony Hauber', NULL, 'thauber.com', '未知', 'thauber@gmail.com', NULL, NULL, NULL, 0, 0, 132, 4, 0, 0, 0, '2008-02-29T06:01:16Z', '2024-05-30T15:02:25Z', 'https://avatars.githubusercontent.com/u/1697?v=4', 'https://api.github.com/users/thauber', 'https://github.com/thauber', 'https://api.github.com/users/thauber/followers', 'https://api.github.com/users/thauber/following', 'https://api.github.com/users/thauber/gists', 'https://api.github.com/users/thauber/starred', 'https://api.github.com/users/thauber/repos', 'https://api.github.com/users/thauber/events', 'https://api.github.com/users/thauber/received_events', 0); +INSERT INTO `developer` VALUES (1698, 'natch-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T06:03:53Z', '2018-10-15T16:38:37Z', 'https://avatars.githubusercontent.com/u/1698?v=4', 'https://api.github.com/users/natch-zz', 'https://github.com/natch-zz', 'https://api.github.com/users/natch-zz/followers', 'https://api.github.com/users/natch-zz/following', 'https://api.github.com/users/natch-zz/gists', 'https://api.github.com/users/natch-zz/starred', 'https://api.github.com/users/natch-zz/repos', 'https://api.github.com/users/natch-zz/events', 'https://api.github.com/users/natch-zz/received_events', 0); +INSERT INTO `developer` VALUES (1699, '4rc0s', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arc', NULL, '', '60201', NULL, NULL, NULL, NULL, 0, 0, 21, 13, 0, 0, 0, '2008-02-29T06:11:10Z', '2024-08-15T14:15:32Z', 'https://avatars.githubusercontent.com/u/1699?v=4', 'https://api.github.com/users/4rc0s', 'https://github.com/4rc0s', 'https://api.github.com/users/4rc0s/followers', 'https://api.github.com/users/4rc0s/following', 'https://api.github.com/users/4rc0s/gists', 'https://api.github.com/users/4rc0s/starred', 'https://api.github.com/users/4rc0s/repos', 'https://api.github.com/users/4rc0s/events', 'https://api.github.com/users/4rc0s/received_events', 0); +INSERT INTO `developer` VALUES (1700, 'ike-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T06:30:29Z', '2019-12-16T05:37:41Z', 'https://avatars.githubusercontent.com/u/1700?v=4', 'https://api.github.com/users/ike-xx', 'https://github.com/ike-xx', 'https://api.github.com/users/ike-xx/followers', 'https://api.github.com/users/ike-xx/following', 'https://api.github.com/users/ike-xx/gists', 'https://api.github.com/users/ike-xx/starred', 'https://api.github.com/users/ike-xx/repos', 'https://api.github.com/users/ike-xx/events', 'https://api.github.com/users/ike-xx/received_events', 0); +INSERT INTO `developer` VALUES (1701, 'das-q', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T06:47:15Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1701?v=4', 'https://api.github.com/users/das-q', 'https://github.com/das-q', 'https://api.github.com/users/das-q/followers', 'https://api.github.com/users/das-q/following', 'https://api.github.com/users/das-q/gists', 'https://api.github.com/users/das-q/starred', 'https://api.github.com/users/das-q/repos', 'https://api.github.com/users/das-q/events', 'https://api.github.com/users/das-q/received_events', 0); +INSERT INTO `developer` VALUES (1702, 'muncman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Munc', 'Method Up', 'http://www.munc.com/', 'Columbus, OH', NULL, 'true', 'Metal. Code. Family. ', NULL, 0, 0, 34, 38, 0, 0, 0, '2008-02-29T06:47:58Z', '2024-08-08T03:56:45Z', 'https://avatars.githubusercontent.com/u/1702?v=4', 'https://api.github.com/users/muncman', 'https://github.com/muncman', 'https://api.github.com/users/muncman/followers', 'https://api.github.com/users/muncman/following', 'https://api.github.com/users/muncman/gists', 'https://api.github.com/users/muncman/starred', 'https://api.github.com/users/muncman/repos', 'https://api.github.com/users/muncman/events', 'https://api.github.com/users/muncman/received_events', 0); +INSERT INTO `developer` VALUES (1703, 'cjheath', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clifford Heath', NULL, 'http://dataconstellation.com/', 'Sydney Australia', 'clifford.heath@gmail.com', NULL, 'Enterprise software product architect, data modeller and inventor.', NULL, 0, 0, 155, 19, 0, 0, 0, '2008-02-29T06:55:16Z', '2024-09-10T01:08:01Z', 'https://avatars.githubusercontent.com/u/1703?v=4', 'https://api.github.com/users/cjheath', 'https://github.com/cjheath', 'https://api.github.com/users/cjheath/followers', 'https://api.github.com/users/cjheath/following', 'https://api.github.com/users/cjheath/gists', 'https://api.github.com/users/cjheath/starred', 'https://api.github.com/users/cjheath/repos', 'https://api.github.com/users/cjheath/events', 'https://api.github.com/users/cjheath/received_events', 0); +INSERT INTO `developer` VALUES (1704, 'aaa', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-02-29T07:11:49Z', '2021-07-01T00:53:43Z', 'https://avatars.githubusercontent.com/u/1704?v=4', 'https://api.github.com/users/aaa', 'https://github.com/aaa', 'https://api.github.com/users/aaa/followers', 'https://api.github.com/users/aaa/following', 'https://api.github.com/users/aaa/gists', 'https://api.github.com/users/aaa/starred', 'https://api.github.com/users/aaa/repos', 'https://api.github.com/users/aaa/events', 'https://api.github.com/users/aaa/received_events', 0); +INSERT INTO `developer` VALUES (1705, 'zeno', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zeno Crivelli', NULL, 'zeno.name', 'France & Switzerland', NULL, NULL, NULL, NULL, 0, 0, 37, 2, 0, 0, 0, '2008-02-29T07:17:45Z', '2024-09-27T05:11:12Z', 'https://avatars.githubusercontent.com/u/1705?v=4', 'https://api.github.com/users/zeno', 'https://github.com/zeno', 'https://api.github.com/users/zeno/followers', 'https://api.github.com/users/zeno/following', 'https://api.github.com/users/zeno/gists', 'https://api.github.com/users/zeno/starred', 'https://api.github.com/users/zeno/repos', 'https://api.github.com/users/zeno/events', 'https://api.github.com/users/zeno/received_events', 0); +INSERT INTO `developer` VALUES (1706, 'meqif', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ricardo Martins', NULL, 'https://ricardomartins.cc', 'Portugal', NULL, NULL, NULL, 'meqif', 0, 0, 68, 5, 0, 0, 0, '2008-02-29T07:24:16Z', '2024-10-24T11:19:57Z', 'https://avatars.githubusercontent.com/u/1706?v=4', 'https://api.github.com/users/meqif', 'https://github.com/meqif', 'https://api.github.com/users/meqif/followers', 'https://api.github.com/users/meqif/following', 'https://api.github.com/users/meqif/gists', 'https://api.github.com/users/meqif/starred', 'https://api.github.com/users/meqif/repos', 'https://api.github.com/users/meqif/events', 'https://api.github.com/users/meqif/received_events', 0); +INSERT INTO `developer` VALUES (1707, 'xpl', 'C', 0.791967200038762, 0, 0, 0, 0, 0, 0, 'Vitalik Gordon', 'now @avride / ex-@yandex / ex-@ccxt', 'https://www.linkedin.com/in/xpl', 'Austin, Texas, United States', NULL, NULL, '🇺🇸  🇮🇱  🇺🇦', NULL, 0, 0, 331, 24, 0, 0, 0, '2008-02-29T08:35:36Z', '2024-10-08T21:06:02Z', 'https://avatars.githubusercontent.com/u/1707?v=4', 'https://api.github.com/users/xpl', 'https://github.com/xpl', 'https://api.github.com/users/xpl/followers', 'https://api.github.com/users/xpl/following', 'https://api.github.com/users/xpl/gists', 'https://api.github.com/users/xpl/starred', 'https://api.github.com/users/xpl/repos', 'https://api.github.com/users/xpl/events', 'https://api.github.com/users/xpl/received_events', 0); +INSERT INTO `developer` VALUES (1709, 'celldee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Duncan', NULL, '', 'United Kingdom', 'celldee@gmail.com', NULL, NULL, NULL, 0, 0, 23, 14, 0, 0, 0, '2008-02-29T09:26:18Z', '2021-09-03T16:07:45Z', 'https://avatars.githubusercontent.com/u/1709?v=4', 'https://api.github.com/users/celldee', 'https://github.com/celldee', 'https://api.github.com/users/celldee/followers', 'https://api.github.com/users/celldee/following', 'https://api.github.com/users/celldee/gists', 'https://api.github.com/users/celldee/starred', 'https://api.github.com/users/celldee/repos', 'https://api.github.com/users/celldee/events', 'https://api.github.com/users/celldee/received_events', 0); +INSERT INTO `developer` VALUES (1710, 'aubergene', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julian Burgess', NULL, 'https://aubergene.com', 'London', NULL, NULL, 'Interactive graphics and web developer', NULL, 0, 0, 87, 92, 0, 0, 0, '2008-02-29T10:15:48Z', '2024-10-19T16:42:26Z', 'https://avatars.githubusercontent.com/u/1710?v=4', 'https://api.github.com/users/aubergene', 'https://github.com/aubergene', 'https://api.github.com/users/aubergene/followers', 'https://api.github.com/users/aubergene/following', 'https://api.github.com/users/aubergene/gists', 'https://api.github.com/users/aubergene/starred', 'https://api.github.com/users/aubergene/repos', 'https://api.github.com/users/aubergene/events', 'https://api.github.com/users/aubergene/received_events', 0); +INSERT INTO `developer` VALUES (1711, 'carletes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carlos Valiente', NULL, 'http://velvet-underscore.blogspot.com/', '未知', 'carlos@pepelabs.net', NULL, NULL, NULL, 0, 0, 32, 6, 0, 0, 0, '2008-02-29T10:42:27Z', '2024-09-08T14:15:58Z', 'https://avatars.githubusercontent.com/u/1711?v=4', 'https://api.github.com/users/carletes', 'https://github.com/carletes', 'https://api.github.com/users/carletes/followers', 'https://api.github.com/users/carletes/following', 'https://api.github.com/users/carletes/gists', 'https://api.github.com/users/carletes/starred', 'https://api.github.com/users/carletes/repos', 'https://api.github.com/users/carletes/events', 'https://api.github.com/users/carletes/received_events', 0); +INSERT INTO `developer` VALUES (1712, 'toke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Kerpe', NULL, 'https://toke.de/', 'Karlsruhe, Germany', 'toke@toke.de', NULL, 'I stare at code', NULL, 0, 0, 66, 154, 0, 0, 0, '2008-02-29T11:14:31Z', '2024-10-21T23:01:06Z', 'https://avatars.githubusercontent.com/u/1712?v=4', 'https://api.github.com/users/toke', 'https://github.com/toke', 'https://api.github.com/users/toke/followers', 'https://api.github.com/users/toke/following', 'https://api.github.com/users/toke/gists', 'https://api.github.com/users/toke/starred', 'https://api.github.com/users/toke/repos', 'https://api.github.com/users/toke/events', 'https://api.github.com/users/toke/received_events', 0); +INSERT INTO `developer` VALUES (1713, 'rafaelroquetto', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rafael Roquetto', NULL, '', 'Australia', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-02-29T11:26:43Z', '2024-11-05T00:51:07Z', 'https://avatars.githubusercontent.com/u/1713?v=4', 'https://api.github.com/users/rafaelroquetto', 'https://github.com/rafaelroquetto', 'https://api.github.com/users/rafaelroquetto/followers', 'https://api.github.com/users/rafaelroquetto/following', 'https://api.github.com/users/rafaelroquetto/gists', 'https://api.github.com/users/rafaelroquetto/starred', 'https://api.github.com/users/rafaelroquetto/repos', 'https://api.github.com/users/rafaelroquetto/events', 'https://api.github.com/users/rafaelroquetto/received_events', 0); +INSERT INTO `developer` VALUES (1714, 'xaviershay', 'C', 5.62785079482612, 0, 0, 0, 0, 0, 0, 'Xavier Shay', NULL, 'https://xaviershay.com', 'Melbourne, Australia', 'contact@xaviershay.com', NULL, NULL, NULL, 0, 0, 613, 17, 0, 0, 0, '2008-02-29T11:48:51Z', '2024-10-24T09:31:38Z', 'https://avatars.githubusercontent.com/u/1714?v=4', 'https://api.github.com/users/xaviershay', 'https://github.com/xaviershay', 'https://api.github.com/users/xaviershay/followers', 'https://api.github.com/users/xaviershay/following', 'https://api.github.com/users/xaviershay/gists', 'https://api.github.com/users/xaviershay/starred', 'https://api.github.com/users/xaviershay/repos', 'https://api.github.com/users/xaviershay/events', 'https://api.github.com/users/xaviershay/received_events', 0); +INSERT INTO `developer` VALUES (1715, 'hannes-zz', 'C', 0, 0, 0, 0, 0, 0, 0, 'stressinduktion', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 25, 2, 0, 0, 0, '2008-02-29T12:47:49Z', '2022-02-22T22:52:26Z', 'https://avatars.githubusercontent.com/u/1715?v=4', 'https://api.github.com/users/hannes-zz', 'https://github.com/hannes-zz', 'https://api.github.com/users/hannes-zz/followers', 'https://api.github.com/users/hannes-zz/following', 'https://api.github.com/users/hannes-zz/gists', 'https://api.github.com/users/hannes-zz/starred', 'https://api.github.com/users/hannes-zz/repos', 'https://api.github.com/users/hannes-zz/events', 'https://api.github.com/users/hannes-zz/received_events', 0); +INSERT INTO `developer` VALUES (1716, 'qua', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Kokoska', NULL, '', 'Prague, Czech Republic', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T13:00:17Z', '2022-11-23T14:51:18Z', 'https://avatars.githubusercontent.com/u/1716?v=4', 'https://api.github.com/users/qua', 'https://github.com/qua', 'https://api.github.com/users/qua/followers', 'https://api.github.com/users/qua/following', 'https://api.github.com/users/qua/gists', 'https://api.github.com/users/qua/starred', 'https://api.github.com/users/qua/repos', 'https://api.github.com/users/qua/events', 'https://api.github.com/users/qua/received_events', 0); +INSERT INTO `developer` VALUES (1717, 'alfborge', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-29T13:48:25Z', '2016-02-26T22:34:43Z', 'https://avatars.githubusercontent.com/u/1717?v=4', 'https://api.github.com/users/alfborge', 'https://github.com/alfborge', 'https://api.github.com/users/alfborge/followers', 'https://api.github.com/users/alfborge/following', 'https://api.github.com/users/alfborge/gists', 'https://api.github.com/users/alfborge/starred', 'https://api.github.com/users/alfborge/repos', 'https://api.github.com/users/alfborge/events', 'https://api.github.com/users/alfborge/received_events', 0); +INSERT INTO `developer` VALUES (1718, 'joshua', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Suggs', '@SynergiPartners & @EmployReward', 'https://suggs.io', 'South Carolina', 'joshsuggs@gmail.com', 'true', 'Director of IT @SynergiPartners & @EmployReward\r\nSRE, Infrastructure, and Security | Church Management & Production\r\n\r\n⛳🌮🍣🎮', NULL, 0, 0, 74, 91, 0, 0, 0, '2008-02-29T13:52:26Z', '2024-10-24T13:00:10Z', 'https://avatars.githubusercontent.com/u/1718?v=4', 'https://api.github.com/users/joshua', 'https://github.com/joshua', 'https://api.github.com/users/joshua/followers', 'https://api.github.com/users/joshua/following', 'https://api.github.com/users/joshua/gists', 'https://api.github.com/users/joshua/starred', 'https://api.github.com/users/joshua/repos', 'https://api.github.com/users/joshua/events', 'https://api.github.com/users/joshua/received_events', 0); +INSERT INTO `developer` VALUES (1719, 'segelvik', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T13:52:48Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1719?v=4', 'https://api.github.com/users/segelvik', 'https://github.com/segelvik', 'https://api.github.com/users/segelvik/followers', 'https://api.github.com/users/segelvik/following', 'https://api.github.com/users/segelvik/gists', 'https://api.github.com/users/segelvik/starred', 'https://api.github.com/users/segelvik/repos', 'https://api.github.com/users/segelvik/events', 'https://api.github.com/users/segelvik/received_events', 0); +INSERT INTO `developer` VALUES (1720, 'mikevalstar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Valstar', 'Konrad Group', 'http://valstar.dev', 'Toronto', 'mike@valstar.dev', NULL, NULL, NULL, 0, 0, 38, 9, 0, 0, 0, '2008-02-29T15:03:46Z', '2024-08-31T19:46:05Z', 'https://avatars.githubusercontent.com/u/1720?v=4', 'https://api.github.com/users/mikevalstar', 'https://github.com/mikevalstar', 'https://api.github.com/users/mikevalstar/followers', 'https://api.github.com/users/mikevalstar/following', 'https://api.github.com/users/mikevalstar/gists', 'https://api.github.com/users/mikevalstar/starred', 'https://api.github.com/users/mikevalstar/repos', 'https://api.github.com/users/mikevalstar/events', 'https://api.github.com/users/mikevalstar/received_events', 0); +INSERT INTO `developer` VALUES (1721, 'jeremydurham', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Durham', 'Crashlytics', 'http://www.jeremydurham.com', 'Cambridge, MA', 'jeremydurham@gmail.com', NULL, NULL, NULL, 0, 0, 42, 18, 0, 0, 0, '2008-02-29T15:09:28Z', '2024-10-17T18:41:54Z', 'https://avatars.githubusercontent.com/u/1721?v=4', 'https://api.github.com/users/jeremydurham', 'https://github.com/jeremydurham', 'https://api.github.com/users/jeremydurham/followers', 'https://api.github.com/users/jeremydurham/following', 'https://api.github.com/users/jeremydurham/gists', 'https://api.github.com/users/jeremydurham/starred', 'https://api.github.com/users/jeremydurham/repos', 'https://api.github.com/users/jeremydurham/events', 'https://api.github.com/users/jeremydurham/received_events', 0); +INSERT INTO `developer` VALUES (1722, 'eugene', 'C', 0, 0, 0, 0, 0, 0, 0, 'Євген', 'Technical University of Denmark', 'https://3bytesahead.com/', 'Copenhagen, Denmark', 'eugene@3bytesahead.com', 'true', '🇺🇦 Привіт! I\'m a postdoc at DTU Compute. Founder of 3bytesahead - a Copenhagen based full stack data science consultancy.', NULL, 0, 0, 67, 102, 0, 0, 0, '2008-02-29T15:21:01Z', '2024-11-01T12:22:41Z', 'https://avatars.githubusercontent.com/u/1722?v=4', 'https://api.github.com/users/eugene', 'https://github.com/eugene', 'https://api.github.com/users/eugene/followers', 'https://api.github.com/users/eugene/following', 'https://api.github.com/users/eugene/gists', 'https://api.github.com/users/eugene/starred', 'https://api.github.com/users/eugene/repos', 'https://api.github.com/users/eugene/events', 'https://api.github.com/users/eugene/received_events', 0); +INSERT INTO `developer` VALUES (1725, 'rmcafee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rahsun McAfee', NULL, '', 'Atlanta, GA', 'rahsun@rahsunmcafee.com', NULL, NULL, NULL, 0, 0, 26, 11, 0, 0, 0, '2008-02-29T16:19:59Z', '2024-09-26T01:35:41Z', 'https://avatars.githubusercontent.com/u/1725?v=4', 'https://api.github.com/users/rmcafee', 'https://github.com/rmcafee', 'https://api.github.com/users/rmcafee/followers', 'https://api.github.com/users/rmcafee/following', 'https://api.github.com/users/rmcafee/gists', 'https://api.github.com/users/rmcafee/starred', 'https://api.github.com/users/rmcafee/repos', 'https://api.github.com/users/rmcafee/events', 'https://api.github.com/users/rmcafee/received_events', 0); +INSERT INTO `developer` VALUES (1726, 'nerdEd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ed Schmalzle', '@EcomapTech ', 'nerded.net', 'Baltimore, MD', NULL, NULL, NULL, NULL, 0, 0, 65, 23, 0, 0, 0, '2008-02-29T16:59:53Z', '2024-09-30T14:31:25Z', 'https://avatars.githubusercontent.com/u/1726?v=4', 'https://api.github.com/users/nerdEd', 'https://github.com/nerdEd', 'https://api.github.com/users/nerdEd/followers', 'https://api.github.com/users/nerdEd/following', 'https://api.github.com/users/nerdEd/gists', 'https://api.github.com/users/nerdEd/starred', 'https://api.github.com/users/nerdEd/repos', 'https://api.github.com/users/nerdEd/events', 'https://api.github.com/users/nerdEd/received_events', 0); +INSERT INTO `developer` VALUES (1727, 'erinc', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-29T16:59:54Z', '2024-09-06T22:43:45Z', 'https://avatars.githubusercontent.com/u/1727?v=4', 'https://api.github.com/users/erinc', 'https://github.com/erinc', 'https://api.github.com/users/erinc/followers', 'https://api.github.com/users/erinc/following', 'https://api.github.com/users/erinc/gists', 'https://api.github.com/users/erinc/starred', 'https://api.github.com/users/erinc/repos', 'https://api.github.com/users/erinc/events', 'https://api.github.com/users/erinc/received_events', 0); +INSERT INTO `developer` VALUES (1728, 'ngl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicolas Griffin-Lloyd', NULL, 'ngl.tumblr.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T17:00:18Z', '2019-10-23T07:16:31Z', 'https://avatars.githubusercontent.com/u/1728?v=4', 'https://api.github.com/users/ngl', 'https://github.com/ngl', 'https://api.github.com/users/ngl/followers', 'https://api.github.com/users/ngl/following', 'https://api.github.com/users/ngl/gists', 'https://api.github.com/users/ngl/starred', 'https://api.github.com/users/ngl/repos', 'https://api.github.com/users/ngl/events', 'https://api.github.com/users/ngl/received_events', 0); +INSERT INTO `developer` VALUES (1729, 'szilveszter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Szilveszter Farkas', 'Rackspace (@rackerlabs)', '', 'Zürich, Switzerland', 'szilveszter.farkas@gmail.com', NULL, NULL, 'szilveszter', 0, 0, 40, 8, 0, 0, 0, '2008-02-29T17:00:45Z', '2024-08-05T09:06:31Z', 'https://avatars.githubusercontent.com/u/1729?v=4', 'https://api.github.com/users/szilveszter', 'https://github.com/szilveszter', 'https://api.github.com/users/szilveszter/followers', 'https://api.github.com/users/szilveszter/following', 'https://api.github.com/users/szilveszter/gists', 'https://api.github.com/users/szilveszter/starred', 'https://api.github.com/users/szilveszter/repos', 'https://api.github.com/users/szilveszter/events', 'https://api.github.com/users/szilveszter/received_events', 0); +INSERT INTO `developer` VALUES (1731, 'skwp', 'C', 1.323571424997656, 0, 0, 0, 0, 0, 0, 'Yan Pritzker', 'SwanBitcoin.com', 'https://swanbitcoin.com', 'Chicago', 'yan@pritzker.ws', NULL, 'Co-founder swan.com @swan-bitcoin, author inventingbitcoin.com, Former CTO @reverbdotcom. Contact at https://twitter.com/skwp', 'skwp', 0, 0, 362, 53, 0, 0, 0, '2008-02-29T17:02:06Z', '2024-07-18T18:49:13Z', 'https://avatars.githubusercontent.com/u/1731?v=4', 'https://api.github.com/users/skwp', 'https://github.com/skwp', 'https://api.github.com/users/skwp/followers', 'https://api.github.com/users/skwp/following', 'https://api.github.com/users/skwp/gists', 'https://api.github.com/users/skwp/starred', 'https://api.github.com/users/skwp/repos', 'https://api.github.com/users/skwp/events', 'https://api.github.com/users/skwp/received_events', 0); +INSERT INTO `developer` VALUES (1732, 'jiahao', 'C', 6.09086092624193, 0, 0, 0, 0, 0, 0, 'Jiahao Chen', '@rai-llc', 'https://jiahao.me', 'New York', NULL, 'true', 'Owner, @rai-llc ', 'acidflask', 0, 0, 640, 66, 0, 0, 0, '2008-02-29T17:02:52Z', '2024-10-08T11:19:22Z', 'https://avatars.githubusercontent.com/u/1732?v=4', 'https://api.github.com/users/jiahao', 'https://github.com/jiahao', 'https://api.github.com/users/jiahao/followers', 'https://api.github.com/users/jiahao/following', 'https://api.github.com/users/jiahao/gists', 'https://api.github.com/users/jiahao/starred', 'https://api.github.com/users/jiahao/repos', 'https://api.github.com/users/jiahao/events', 'https://api.github.com/users/jiahao/received_events', 0); +INSERT INTO `developer` VALUES (1733, 'benwyrosdick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Wyrosdick', NULL, '', 'Birmingham, AL', NULL, NULL, NULL, NULL, 0, 0, 29, 12, 0, 0, 0, '2008-02-29T17:05:14Z', '2024-10-16T22:32:00Z', 'https://avatars.githubusercontent.com/u/1733?v=4', 'https://api.github.com/users/benwyrosdick', 'https://github.com/benwyrosdick', 'https://api.github.com/users/benwyrosdick/followers', 'https://api.github.com/users/benwyrosdick/following', 'https://api.github.com/users/benwyrosdick/gists', 'https://api.github.com/users/benwyrosdick/starred', 'https://api.github.com/users/benwyrosdick/repos', 'https://api.github.com/users/benwyrosdick/events', 'https://api.github.com/users/benwyrosdick/received_events', 0); +INSERT INTO `developer` VALUES (1735, 'foysavas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Foy Savas', NULL, 'http://www.foysavas.com', '未知', 'foy@sav.as', NULL, NULL, NULL, 0, 0, 43, 31, 0, 0, 0, '2008-02-29T17:06:19Z', '2024-09-17T19:38:53Z', 'https://avatars.githubusercontent.com/u/1735?v=4', 'https://api.github.com/users/foysavas', 'https://github.com/foysavas', 'https://api.github.com/users/foysavas/followers', 'https://api.github.com/users/foysavas/following', 'https://api.github.com/users/foysavas/gists', 'https://api.github.com/users/foysavas/starred', 'https://api.github.com/users/foysavas/repos', 'https://api.github.com/users/foysavas/events', 'https://api.github.com/users/foysavas/received_events', 0); +INSERT INTO `developer` VALUES (1736, 'rgallion', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roger Gallion', NULL, '', '未知', 'rngallion@gmail.com', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T17:06:29Z', '2020-05-03T10:34:28Z', 'https://avatars.githubusercontent.com/u/1736?v=4', 'https://api.github.com/users/rgallion', 'https://github.com/rgallion', 'https://api.github.com/users/rgallion/followers', 'https://api.github.com/users/rgallion/following', 'https://api.github.com/users/rgallion/gists', 'https://api.github.com/users/rgallion/starred', 'https://api.github.com/users/rgallion/repos', 'https://api.github.com/users/rgallion/events', 'https://api.github.com/users/rgallion/received_events', 0); +INSERT INTO `developer` VALUES (1737, 'murphee', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T17:06:37Z', '2016-02-26T22:34:43Z', 'https://avatars.githubusercontent.com/u/1737?v=4', 'https://api.github.com/users/murphee', 'https://github.com/murphee', 'https://api.github.com/users/murphee/followers', 'https://api.github.com/users/murphee/following', 'https://api.github.com/users/murphee/gists', 'https://api.github.com/users/murphee/starred', 'https://api.github.com/users/murphee/repos', 'https://api.github.com/users/murphee/events', 'https://api.github.com/users/murphee/received_events', 0); +INSERT INTO `developer` VALUES (1738, 'mlarocque', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Larocque', 'Prolumina Communications Inc.', 'http://prolumina.com/mlarocque', 'Calgary, Alberta', 'mlarocque@prolumina.com', 'true', NULL, NULL, 0, 0, 16, 3, 0, 0, 0, '2008-02-29T17:06:44Z', '2024-05-10T21:16:01Z', 'https://avatars.githubusercontent.com/u/1738?v=4', 'https://api.github.com/users/mlarocque', 'https://github.com/mlarocque', 'https://api.github.com/users/mlarocque/followers', 'https://api.github.com/users/mlarocque/following', 'https://api.github.com/users/mlarocque/gists', 'https://api.github.com/users/mlarocque/starred', 'https://api.github.com/users/mlarocque/repos', 'https://api.github.com/users/mlarocque/events', 'https://api.github.com/users/mlarocque/received_events', 0); +INSERT INTO `developer` VALUES (1739, 'brentp', 'C+', 17.95763910919531, 0, 0, 0, 0, 0, 0, 'Brent Pedersen', NULL, '', 'Utrecht, The Netherlands', 'bpederse@gmail.com', 'true', 'Doing genomics from the Netherlands', 'brent_p', 0, 0, 1332, 253, 0, 0, 0, '2008-02-29T17:07:25Z', '2024-11-01T03:37:15Z', 'https://avatars.githubusercontent.com/u/1739?v=4', 'https://api.github.com/users/brentp', 'https://github.com/brentp', 'https://api.github.com/users/brentp/followers', 'https://api.github.com/users/brentp/following', 'https://api.github.com/users/brentp/gists', 'https://api.github.com/users/brentp/starred', 'https://api.github.com/users/brentp/repos', 'https://api.github.com/users/brentp/events', 'https://api.github.com/users/brentp/received_events', 0); +INSERT INTO `developer` VALUES (1740, 'lebritish', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2008-02-29T17:07:38Z', '2016-02-26T22:34:43Z', 'https://avatars.githubusercontent.com/u/1740?v=4', 'https://api.github.com/users/lebritish', 'https://github.com/lebritish', 'https://api.github.com/users/lebritish/followers', 'https://api.github.com/users/lebritish/following', 'https://api.github.com/users/lebritish/gists', 'https://api.github.com/users/lebritish/starred', 'https://api.github.com/users/lebritish/repos', 'https://api.github.com/users/lebritish/events', 'https://api.github.com/users/lebritish/received_events', 0); +INSERT INTO `developer` VALUES (1741, 'pando-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2008-02-29T17:07:50Z', '2016-02-26T22:34:43Z', 'https://avatars.githubusercontent.com/u/1741?v=4', 'https://api.github.com/users/pando-xx', 'https://github.com/pando-xx', 'https://api.github.com/users/pando-xx/followers', 'https://api.github.com/users/pando-xx/following', 'https://api.github.com/users/pando-xx/gists', 'https://api.github.com/users/pando-xx/starred', 'https://api.github.com/users/pando-xx/repos', 'https://api.github.com/users/pando-xx/events', 'https://api.github.com/users/pando-xx/received_events', 0); +INSERT INTO `developer` VALUES (1742, 'kana', 'C', 11.972804447561307, 0, 0, 0, 0, 0, 0, 'Kana Natsuno', NULL, 'https://whileimautomaton.net/', 'Tokyo, Japan', NULL, 'true', 'To Vim, or not to Vim.', NULL, 0, 0, 983, 563, 0, 0, 0, '2008-02-29T17:09:01Z', '2024-04-13T01:24:20Z', 'https://avatars.githubusercontent.com/u/1742?v=4', 'https://api.github.com/users/kana', 'https://github.com/kana', 'https://api.github.com/users/kana/followers', 'https://api.github.com/users/kana/following', 'https://api.github.com/users/kana/gists', 'https://api.github.com/users/kana/starred', 'https://api.github.com/users/kana/repos', 'https://api.github.com/users/kana/events', 'https://api.github.com/users/kana/received_events', 0); +INSERT INTO `developer` VALUES (1743, 'ozamosi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robin Sonefors', NULL, '', 'London, UK', 'robin@sonefors.net', NULL, NULL, NULL, 0, 0, 17, 1, 0, 0, 0, '2008-02-29T17:09:07Z', '2024-09-14T11:15:25Z', 'https://avatars.githubusercontent.com/u/1743?v=4', 'https://api.github.com/users/ozamosi', 'https://github.com/ozamosi', 'https://api.github.com/users/ozamosi/followers', 'https://api.github.com/users/ozamosi/following', 'https://api.github.com/users/ozamosi/gists', 'https://api.github.com/users/ozamosi/starred', 'https://api.github.com/users/ozamosi/repos', 'https://api.github.com/users/ozamosi/events', 'https://api.github.com/users/ozamosi/received_events', 0); +INSERT INTO `developer` VALUES (1744, 'RyanSpeaking', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Yu', NULL, '', '未知', 'menghsiu@gmail.com', NULL, NULL, NULL, 0, 0, 3, 2, 0, 0, 0, '2008-02-29T17:09:18Z', '2024-11-01T17:20:17Z', 'https://avatars.githubusercontent.com/u/1744?v=4', 'https://api.github.com/users/RyanSpeaking', 'https://github.com/RyanSpeaking', 'https://api.github.com/users/RyanSpeaking/followers', 'https://api.github.com/users/RyanSpeaking/following', 'https://api.github.com/users/RyanSpeaking/gists', 'https://api.github.com/users/RyanSpeaking/starred', 'https://api.github.com/users/RyanSpeaking/repos', 'https://api.github.com/users/RyanSpeaking/events', 'https://api.github.com/users/RyanSpeaking/received_events', 0); +INSERT INTO `developer` VALUES (1745, 'nordsieck', 'C', 0, 0, 0, 0, 0, 0, 0, 'Theodore Nordsieck', NULL, 'http://theodore.nordsieck.net', 'Seattle, wa', NULL, 'true', NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-02-29T17:09:23Z', '2024-10-12T11:19:35Z', 'https://avatars.githubusercontent.com/u/1745?v=4', 'https://api.github.com/users/nordsieck', 'https://github.com/nordsieck', 'https://api.github.com/users/nordsieck/followers', 'https://api.github.com/users/nordsieck/following', 'https://api.github.com/users/nordsieck/gists', 'https://api.github.com/users/nordsieck/starred', 'https://api.github.com/users/nordsieck/repos', 'https://api.github.com/users/nordsieck/events', 'https://api.github.com/users/nordsieck/received_events', 0); +INSERT INTO `developer` VALUES (1746, 'scttymn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scotty Moon', NULL, 'http://scottymoon.com', 'Independence, MO', NULL, NULL, NULL, NULL, 0, 0, 37, 20, 0, 0, 0, '2008-02-29T17:09:34Z', '2024-08-06T00:49:35Z', 'https://avatars.githubusercontent.com/u/1746?v=4', 'https://api.github.com/users/scttymn', 'https://github.com/scttymn', 'https://api.github.com/users/scttymn/followers', 'https://api.github.com/users/scttymn/following', 'https://api.github.com/users/scttymn/gists', 'https://api.github.com/users/scttymn/starred', 'https://api.github.com/users/scttymn/repos', 'https://api.github.com/users/scttymn/events', 'https://api.github.com/users/scttymn/received_events', 0); +INSERT INTO `developer` VALUES (1747, 'hjanetzek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hannes Janetzek', NULL, '', '未知', 'hannes.janetzek@gmail.com', NULL, NULL, NULL, 0, 0, 101, 37, 0, 0, 0, '2008-02-29T17:09:48Z', '2023-12-29T15:32:24Z', 'https://avatars.githubusercontent.com/u/1747?v=4', 'https://api.github.com/users/hjanetzek', 'https://github.com/hjanetzek', 'https://api.github.com/users/hjanetzek/followers', 'https://api.github.com/users/hjanetzek/following', 'https://api.github.com/users/hjanetzek/gists', 'https://api.github.com/users/hjanetzek/starred', 'https://api.github.com/users/hjanetzek/repos', 'https://api.github.com/users/hjanetzek/events', 'https://api.github.com/users/hjanetzek/received_events', 0); +INSERT INTO `developer` VALUES (1748, 'reybango', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rey Bango', NULL, 'blog.reybango.com', 'Florida', NULL, NULL, NULL, NULL, 0, 0, 85, 47, 0, 0, 0, '2008-02-29T17:12:00Z', '2024-07-18T20:55:54Z', 'https://avatars.githubusercontent.com/u/1748?v=4', 'https://api.github.com/users/reybango', 'https://github.com/reybango', 'https://api.github.com/users/reybango/followers', 'https://api.github.com/users/reybango/following', 'https://api.github.com/users/reybango/gists', 'https://api.github.com/users/reybango/starred', 'https://api.github.com/users/reybango/repos', 'https://api.github.com/users/reybango/events', 'https://api.github.com/users/reybango/received_events', 0); +INSERT INTO `developer` VALUES (1749, 'mdk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Dominic K.', '@mdk-graphics', 'https://mdk.graphics', 'Warsaw', 'mdk@me.com', NULL, 'Graphics Engineer', 'mdk_graphics', 0, 0, 34, 3, 0, 0, 0, '2008-02-29T17:12:32Z', '2024-08-26T10:46:03Z', 'https://avatars.githubusercontent.com/u/1749?v=4', 'https://api.github.com/users/mdk', 'https://github.com/mdk', 'https://api.github.com/users/mdk/followers', 'https://api.github.com/users/mdk/following', 'https://api.github.com/users/mdk/gists', 'https://api.github.com/users/mdk/starred', 'https://api.github.com/users/mdk/repos', 'https://api.github.com/users/mdk/events', 'https://api.github.com/users/mdk/received_events', 0); +INSERT INTO `developer` VALUES (1750, 'thijs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thijs', NULL, '', 'Amsterdam, NL', NULL, NULL, NULL, NULL, 0, 0, 5, 4, 0, 0, 0, '2008-02-29T17:13:14Z', '2024-09-11T11:43:57Z', 'https://avatars.githubusercontent.com/u/1750?v=4', 'https://api.github.com/users/thijs', 'https://github.com/thijs', 'https://api.github.com/users/thijs/followers', 'https://api.github.com/users/thijs/following', 'https://api.github.com/users/thijs/gists', 'https://api.github.com/users/thijs/starred', 'https://api.github.com/users/thijs/repos', 'https://api.github.com/users/thijs/events', 'https://api.github.com/users/thijs/received_events', 0); +INSERT INTO `developer` VALUES (1751, 'calumr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Calum Robinson', NULL, '', 'Edinburgh, UK', NULL, NULL, NULL, NULL, 0, 0, 10, 2, 0, 0, 0, '2008-02-29T17:14:16Z', '2024-07-29T15:26:20Z', 'https://avatars.githubusercontent.com/u/1751?v=4', 'https://api.github.com/users/calumr', 'https://github.com/calumr', 'https://api.github.com/users/calumr/followers', 'https://api.github.com/users/calumr/following', 'https://api.github.com/users/calumr/gists', 'https://api.github.com/users/calumr/starred', 'https://api.github.com/users/calumr/repos', 'https://api.github.com/users/calumr/events', 'https://api.github.com/users/calumr/received_events', 0); +INSERT INTO `developer` VALUES (1752, 'bretthoerner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brett Hoerner', 'PostHog', 'http://bretthoerner.com', 'Boulder, CO', 'brett@bretthoerner.com', NULL, '\r\n Digital janitor.\r\n', 'bretthoerner', 0, 0, 122, 2, 0, 0, 0, '2008-02-29T17:15:01Z', '2024-11-02T13:22:12Z', 'https://avatars.githubusercontent.com/u/1752?v=4', 'https://api.github.com/users/bretthoerner', 'https://github.com/bretthoerner', 'https://api.github.com/users/bretthoerner/followers', 'https://api.github.com/users/bretthoerner/following', 'https://api.github.com/users/bretthoerner/gists', 'https://api.github.com/users/bretthoerner/starred', 'https://api.github.com/users/bretthoerner/repos', 'https://api.github.com/users/bretthoerner/events', 'https://api.github.com/users/bretthoerner/received_events', 0); +INSERT INTO `developer` VALUES (1753, 'zsx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shixin Zeng', NULL, '', 'US', NULL, NULL, NULL, NULL, 0, 0, 40, 1, 0, 0, 0, '2008-02-29T17:15:06Z', '2022-11-24T16:25:40Z', 'https://avatars.githubusercontent.com/u/1753?v=4', 'https://api.github.com/users/zsx', 'https://github.com/zsx', 'https://api.github.com/users/zsx/followers', 'https://api.github.com/users/zsx/following', 'https://api.github.com/users/zsx/gists', 'https://api.github.com/users/zsx/starred', 'https://api.github.com/users/zsx/repos', 'https://api.github.com/users/zsx/events', 'https://api.github.com/users/zsx/received_events', 0); +INSERT INTO `developer` VALUES (1754, 'Olli', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'Freelancer', '', 'Germany - near Dresden', NULL, NULL, 'Know nothing but has an opinion 😉 🔥🙈', NULL, 0, 0, 14, 29, 0, 0, 0, '2008-02-29T17:16:35Z', '2024-09-30T06:52:02Z', 'https://avatars.githubusercontent.com/u/1754?v=4', 'https://api.github.com/users/Olli', 'https://github.com/Olli', 'https://api.github.com/users/Olli/followers', 'https://api.github.com/users/Olli/following', 'https://api.github.com/users/Olli/gists', 'https://api.github.com/users/Olli/starred', 'https://api.github.com/users/Olli/repos', 'https://api.github.com/users/Olli/events', 'https://api.github.com/users/Olli/received_events', 0); +INSERT INTO `developer` VALUES (1755, 'omarvelous', 'C', 0, 0, 0, 0, 0, 0, 0, 'Omar Johnson', NULL, 'omarvelous.com', 'NYC', NULL, NULL, NULL, NULL, 0, 0, 21, 21, 0, 0, 0, '2008-02-29T17:18:38Z', '2024-10-22T02:22:59Z', 'https://avatars.githubusercontent.com/u/1755?v=4', 'https://api.github.com/users/omarvelous', 'https://github.com/omarvelous', 'https://api.github.com/users/omarvelous/followers', 'https://api.github.com/users/omarvelous/following', 'https://api.github.com/users/omarvelous/gists', 'https://api.github.com/users/omarvelous/starred', 'https://api.github.com/users/omarvelous/repos', 'https://api.github.com/users/omarvelous/events', 'https://api.github.com/users/omarvelous/received_events', 0); +INSERT INTO `developer` VALUES (1756, 'StFS', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefán Freyr Stefánsson', 'Controlant hf.', 'https://stfs.github.io/', 'Iceland', 'stefan.freyr@gmail.com', NULL, NULL, 'StFS', 0, 0, 20, 27, 0, 0, 0, '2008-02-29T17:18:44Z', '2024-10-15T14:46:45Z', 'https://avatars.githubusercontent.com/u/1756?v=4', 'https://api.github.com/users/StFS', 'https://github.com/StFS', 'https://api.github.com/users/StFS/followers', 'https://api.github.com/users/StFS/following', 'https://api.github.com/users/StFS/gists', 'https://api.github.com/users/StFS/starred', 'https://api.github.com/users/StFS/repos', 'https://api.github.com/users/StFS/events', 'https://api.github.com/users/StFS/received_events', 0); +INSERT INTO `developer` VALUES (1757, 'mamapitufo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alberto Brealey-Guzman', 'felt fragments Ltd', 'https://blog.feltfragments.com', 'London, United Kingdom', NULL, NULL, 'mostly idle 🐝', NULL, 0, 0, 34, 30, 0, 0, 0, '2008-02-29T17:19:03Z', '2024-08-15T13:58:57Z', 'https://avatars.githubusercontent.com/u/1757?v=4', 'https://api.github.com/users/mamapitufo', 'https://github.com/mamapitufo', 'https://api.github.com/users/mamapitufo/followers', 'https://api.github.com/users/mamapitufo/following', 'https://api.github.com/users/mamapitufo/gists', 'https://api.github.com/users/mamapitufo/starred', 'https://api.github.com/users/mamapitufo/repos', 'https://api.github.com/users/mamapitufo/events', 'https://api.github.com/users/mamapitufo/received_events', 0); +INSERT INTO `developer` VALUES (1758, 'pdsull', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Sullivan', NULL, '', 'Bigfork, MT', 'pauldsullivanjr@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T17:21:38Z', '2024-09-09T18:10:36Z', 'https://avatars.githubusercontent.com/u/1758?v=4', 'https://api.github.com/users/pdsull', 'https://github.com/pdsull', 'https://api.github.com/users/pdsull/followers', 'https://api.github.com/users/pdsull/following', 'https://api.github.com/users/pdsull/gists', 'https://api.github.com/users/pdsull/starred', 'https://api.github.com/users/pdsull/repos', 'https://api.github.com/users/pdsull/events', 'https://api.github.com/users/pdsull/received_events', 0); +INSERT INTO `developer` VALUES (1759, 'lejoe', 'C', 0, 0, 0, 0, 53, 14, 0, 'Joël Bez', NULL, 'https://www.lejoe.com', 'Zurich, Switzerland', NULL, 'true', 'I lead and coach multidisciplinary teams to build digital products with more impact.', NULL, 0, 0, 70, 59, 0, 0, 0, '2008-02-29T17:21:41Z', '2024-10-24T21:31:52Z', 'https://avatars.githubusercontent.com/u/1759?v=4', 'https://api.github.com/users/lejoe', 'https://github.com/lejoe', 'https://api.github.com/users/lejoe/followers', 'https://api.github.com/users/lejoe/following', 'https://api.github.com/users/lejoe/gists', 'https://api.github.com/users/lejoe/starred', 'https://api.github.com/users/lejoe/repos', 'https://api.github.com/users/lejoe/events', 'https://api.github.com/users/lejoe/received_events', 0); +INSERT INTO `developer` VALUES (1760, 'Apphilosophy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T17:22:17Z', '2017-11-10T03:00:44Z', 'https://avatars.githubusercontent.com/u/1760?v=4', 'https://api.github.com/users/Apphilosophy', 'https://github.com/Apphilosophy', 'https://api.github.com/users/Apphilosophy/followers', 'https://api.github.com/users/Apphilosophy/following', 'https://api.github.com/users/Apphilosophy/gists', 'https://api.github.com/users/Apphilosophy/starred', 'https://api.github.com/users/Apphilosophy/repos', 'https://api.github.com/users/Apphilosophy/events', 'https://api.github.com/users/Apphilosophy/received_events', 0); +INSERT INTO `developer` VALUES (1761, 'enquora', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Richardson', 'Enquora Data Services', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 2, 0, 0, 0, '2008-02-29T17:22:33Z', '2024-11-04T18:33:30Z', 'https://avatars.githubusercontent.com/u/1761?v=4', 'https://api.github.com/users/enquora', 'https://github.com/enquora', 'https://api.github.com/users/enquora/followers', 'https://api.github.com/users/enquora/following', 'https://api.github.com/users/enquora/gists', 'https://api.github.com/users/enquora/starred', 'https://api.github.com/users/enquora/repos', 'https://api.github.com/users/enquora/events', 'https://api.github.com/users/enquora/received_events', 0); +INSERT INTO `developer` VALUES (1762, 'andrewn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Nicolaou', NULL, 'http://andrewnicolaou.co.uk', 'Berlin via London', 'github@andrewnicolaou.co.uk', 'true', NULL, NULL, 0, 0, 128, 27, 0, 0, 0, '2008-02-29T17:22:55Z', '2024-10-28T15:05:18Z', 'https://avatars.githubusercontent.com/u/1762?v=4', 'https://api.github.com/users/andrewn', 'https://github.com/andrewn', 'https://api.github.com/users/andrewn/followers', 'https://api.github.com/users/andrewn/following', 'https://api.github.com/users/andrewn/gists', 'https://api.github.com/users/andrewn/starred', 'https://api.github.com/users/andrewn/repos', 'https://api.github.com/users/andrewn/events', 'https://api.github.com/users/andrewn/received_events', 0); +INSERT INTO `developer` VALUES (1763, 'charlie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Hornberger', NULL, '', 'Berlin', 'charles.hornberger@gmail.com', NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-02-29T17:24:19Z', '2024-10-23T08:15:54Z', 'https://avatars.githubusercontent.com/u/1763?v=4', 'https://api.github.com/users/charlie', 'https://github.com/charlie', 'https://api.github.com/users/charlie/followers', 'https://api.github.com/users/charlie/following', 'https://api.github.com/users/charlie/gists', 'https://api.github.com/users/charlie/starred', 'https://api.github.com/users/charlie/repos', 'https://api.github.com/users/charlie/events', 'https://api.github.com/users/charlie/received_events', 0); +INSERT INTO `developer` VALUES (1764, 'voidfiles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Kessinger', '@Stripe', 'rumproarious.com', 'SLC, UT', 'voidfiles@gmail.com', NULL, 'I write code, mainly web facing stuff, but I\'m interested in the whole stack. Currently write code for @stripe', 'voidfiles', 0, 0, 153, 140, 0, 0, 0, '2008-02-29T17:27:48Z', '2024-11-02T18:27:45Z', 'https://avatars.githubusercontent.com/u/1764?v=4', 'https://api.github.com/users/voidfiles', 'https://github.com/voidfiles', 'https://api.github.com/users/voidfiles/followers', 'https://api.github.com/users/voidfiles/following', 'https://api.github.com/users/voidfiles/gists', 'https://api.github.com/users/voidfiles/starred', 'https://api.github.com/users/voidfiles/repos', 'https://api.github.com/users/voidfiles/events', 'https://api.github.com/users/voidfiles/received_events', 0); +INSERT INTO `developer` VALUES (1765, 'zakk', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-02-29T17:32:26Z', '2020-10-13T21:25:12Z', 'https://avatars.githubusercontent.com/u/1765?v=4', 'https://api.github.com/users/zakk', 'https://github.com/zakk', 'https://api.github.com/users/zakk/followers', 'https://api.github.com/users/zakk/following', 'https://api.github.com/users/zakk/gists', 'https://api.github.com/users/zakk/starred', 'https://api.github.com/users/zakk/repos', 'https://api.github.com/users/zakk/events', 'https://api.github.com/users/zakk/received_events', 0); +INSERT INTO `developer` VALUES (1766, 'morpheuz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Artur Souza', 'Facebook', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-02-29T17:34:25Z', '2024-11-01T21:56:11Z', 'https://avatars.githubusercontent.com/u/1766?v=4', 'https://api.github.com/users/morpheuz', 'https://github.com/morpheuz', 'https://api.github.com/users/morpheuz/followers', 'https://api.github.com/users/morpheuz/following', 'https://api.github.com/users/morpheuz/gists', 'https://api.github.com/users/morpheuz/starred', 'https://api.github.com/users/morpheuz/repos', 'https://api.github.com/users/morpheuz/events', 'https://api.github.com/users/morpheuz/received_events', 0); +INSERT INTO `developer` VALUES (1767, 'jkochis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jestin Hendricks', NULL, 'https://www.instagram.com/basezero/', 'USA', 'jessekochis@gmail.com', 'true', NULL, 'jestinhendricks', 0, 0, 18, 16, 0, 0, 0, '2008-02-29T17:35:21Z', '2024-10-31T13:44:52Z', 'https://avatars.githubusercontent.com/u/1767?v=4', 'https://api.github.com/users/jkochis', 'https://github.com/jkochis', 'https://api.github.com/users/jkochis/followers', 'https://api.github.com/users/jkochis/following', 'https://api.github.com/users/jkochis/gists', 'https://api.github.com/users/jkochis/starred', 'https://api.github.com/users/jkochis/repos', 'https://api.github.com/users/jkochis/events', 'https://api.github.com/users/jkochis/received_events', 0); +INSERT INTO `developer` VALUES (1768, 'flipout', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T17:35:25Z', '2019-01-04T22:07:16Z', 'https://avatars.githubusercontent.com/u/1768?v=4', 'https://api.github.com/users/flipout', 'https://github.com/flipout', 'https://api.github.com/users/flipout/followers', 'https://api.github.com/users/flipout/following', 'https://api.github.com/users/flipout/gists', 'https://api.github.com/users/flipout/starred', 'https://api.github.com/users/flipout/repos', 'https://api.github.com/users/flipout/events', 'https://api.github.com/users/flipout/received_events', 0); +INSERT INTO `developer` VALUES (1769, 'justin-rich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Rich', NULL, 'https://justinrich.com', 'Cincinnati, OH', 'justin@justinrich.com', NULL, 'Working for the weekday', NULL, 0, 0, 4, 3, 0, 0, 0, '2008-02-29T17:35:36Z', '2024-08-23T15:38:05Z', 'https://avatars.githubusercontent.com/u/1769?v=4', 'https://api.github.com/users/justin-rich', 'https://github.com/justin-rich', 'https://api.github.com/users/justin-rich/followers', 'https://api.github.com/users/justin-rich/following', 'https://api.github.com/users/justin-rich/gists', 'https://api.github.com/users/justin-rich/starred', 'https://api.github.com/users/justin-rich/repos', 'https://api.github.com/users/justin-rich/events', 'https://api.github.com/users/justin-rich/received_events', 0); +INSERT INTO `developer` VALUES (1770, 'benhodgson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Hodgson', 'Google', 'http://benhodgson.com/', 'London, UK', 'ben@benhodgson.com', 'true', NULL, NULL, 0, 0, 113, 27, 0, 0, 0, '2008-02-29T17:41:00Z', '2023-11-29T11:08:49Z', 'https://avatars.githubusercontent.com/u/1770?v=4', 'https://api.github.com/users/benhodgson', 'https://github.com/benhodgson', 'https://api.github.com/users/benhodgson/followers', 'https://api.github.com/users/benhodgson/following', 'https://api.github.com/users/benhodgson/gists', 'https://api.github.com/users/benhodgson/starred', 'https://api.github.com/users/benhodgson/repos', 'https://api.github.com/users/benhodgson/events', 'https://api.github.com/users/benhodgson/received_events', 0); +INSERT INTO `developer` VALUES (1771, 'niryariv', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nir Yariv', NULL, '', '未知', 'niryariv@gmail.com', NULL, NULL, 'niryariv', 0, 0, 29, 3, 0, 0, 0, '2008-02-29T17:42:47Z', '2024-09-12T12:56:33Z', 'https://avatars.githubusercontent.com/u/1771?v=4', 'https://api.github.com/users/niryariv', 'https://github.com/niryariv', 'https://api.github.com/users/niryariv/followers', 'https://api.github.com/users/niryariv/following', 'https://api.github.com/users/niryariv/gists', 'https://api.github.com/users/niryariv/starred', 'https://api.github.com/users/niryariv/repos', 'https://api.github.com/users/niryariv/events', 'https://api.github.com/users/niryariv/received_events', 0); +INSERT INTO `developer` VALUES (1772, 'seancribbs', 'C', 1.5807992757842178, 0, 0, 0, 0, 0, 0, 'Sean Cribbs', NULL, 'https://hachyderm.io/@seancribbs', 'Kansas City, MO', NULL, NULL, NULL, 'seancribbs', 0, 0, 377, 18, 0, 0, 0, '2008-02-29T17:43:18Z', '2024-08-17T21:47:55Z', 'https://avatars.githubusercontent.com/u/1772?v=4', 'https://api.github.com/users/seancribbs', 'https://github.com/seancribbs', 'https://api.github.com/users/seancribbs/followers', 'https://api.github.com/users/seancribbs/following', 'https://api.github.com/users/seancribbs/gists', 'https://api.github.com/users/seancribbs/starred', 'https://api.github.com/users/seancribbs/repos', 'https://api.github.com/users/seancribbs/events', 'https://api.github.com/users/seancribbs/received_events', 0); +INSERT INTO `developer` VALUES (1773, 'SpaceCadetEve', 'C', 0, 0, 0, 0, 0, 0, 0, 'Evelyn Leigh', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T17:45:05Z', '2024-05-16T16:10:14Z', 'https://avatars.githubusercontent.com/u/1773?v=4', 'https://api.github.com/users/SpaceCadetEve', 'https://github.com/SpaceCadetEve', 'https://api.github.com/users/SpaceCadetEve/followers', 'https://api.github.com/users/SpaceCadetEve/following', 'https://api.github.com/users/SpaceCadetEve/gists', 'https://api.github.com/users/SpaceCadetEve/starred', 'https://api.github.com/users/SpaceCadetEve/repos', 'https://api.github.com/users/SpaceCadetEve/events', 'https://api.github.com/users/SpaceCadetEve/received_events', 0); +INSERT INTO `developer` VALUES (1774, 'jast', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Krüger', '@userlike ', 'https://jk.gs/', 'Würselen, Germany', NULL, NULL, NULL, NULL, 0, 0, 27, 3, 0, 0, 0, '2008-02-29T17:48:28Z', '2024-08-18T14:41:24Z', 'https://avatars.githubusercontent.com/u/1774?v=4', 'https://api.github.com/users/jast', 'https://github.com/jast', 'https://api.github.com/users/jast/followers', 'https://api.github.com/users/jast/following', 'https://api.github.com/users/jast/gists', 'https://api.github.com/users/jast/starred', 'https://api.github.com/users/jast/repos', 'https://api.github.com/users/jast/events', 'https://api.github.com/users/jast/received_events', 0); +INSERT INTO `developer` VALUES (1775, 'sergecpelletier', 'C', 0, 0, 0, 0, 0, 0, 0, 'Serge Chevarie-Pelletier', NULL, '', 'Fredericton, New Brunswick, Canada', 'sergecpelletier@gmail.com', NULL, NULL, 'sergecpelletier', 0, 0, 7, 4, 0, 0, 0, '2008-02-29T17:50:57Z', '2024-11-03T12:30:47Z', 'https://avatars.githubusercontent.com/u/1775?v=4', 'https://api.github.com/users/sergecpelletier', 'https://github.com/sergecpelletier', 'https://api.github.com/users/sergecpelletier/followers', 'https://api.github.com/users/sergecpelletier/following', 'https://api.github.com/users/sergecpelletier/gists', 'https://api.github.com/users/sergecpelletier/starred', 'https://api.github.com/users/sergecpelletier/repos', 'https://api.github.com/users/sergecpelletier/events', 'https://api.github.com/users/sergecpelletier/received_events', 0); +INSERT INTO `developer` VALUES (1776, 'bronson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Bronson', NULL, '', 'Santa Cruz, CA', 'brons_github@rinspin.com', NULL, 'bit swizzler', NULL, 0, 0, 137, 9, 0, 0, 0, '2008-02-29T17:53:34Z', '2024-08-18T04:26:18Z', 'https://avatars.githubusercontent.com/u/1776?v=4', 'https://api.github.com/users/bronson', 'https://github.com/bronson', 'https://api.github.com/users/bronson/followers', 'https://api.github.com/users/bronson/following', 'https://api.github.com/users/bronson/gists', 'https://api.github.com/users/bronson/starred', 'https://api.github.com/users/bronson/repos', 'https://api.github.com/users/bronson/events', 'https://api.github.com/users/bronson/received_events', 0); +INSERT INTO `developer` VALUES (1777, 'cowsandmilk', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Hall', 'Amazon', 'cowsandmilk.net', 'Vienna, VA', 'drhall@bu.edu', NULL, NULL, NULL, 0, 0, 12, 3, 0, 0, 0, '2008-02-29T17:54:34Z', '2024-10-14T00:28:41Z', 'https://avatars.githubusercontent.com/u/1777?v=4', 'https://api.github.com/users/cowsandmilk', 'https://github.com/cowsandmilk', 'https://api.github.com/users/cowsandmilk/followers', 'https://api.github.com/users/cowsandmilk/following', 'https://api.github.com/users/cowsandmilk/gists', 'https://api.github.com/users/cowsandmilk/starred', 'https://api.github.com/users/cowsandmilk/repos', 'https://api.github.com/users/cowsandmilk/events', 'https://api.github.com/users/cowsandmilk/received_events', 0); +INSERT INTO `developer` VALUES (1778, 'sporkmonger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bob Aman', '@bulwark-security', 'http://sporkmonger.com/', 'Minneapolis, MN', NULL, NULL, NULL, 'sporkmonger', 0, 0, 166, 23, 0, 0, 0, '2008-02-29T17:55:30Z', '2024-11-04T22:50:03Z', 'https://avatars.githubusercontent.com/u/1778?v=4', 'https://api.github.com/users/sporkmonger', 'https://github.com/sporkmonger', 'https://api.github.com/users/sporkmonger/followers', 'https://api.github.com/users/sporkmonger/following', 'https://api.github.com/users/sporkmonger/gists', 'https://api.github.com/users/sporkmonger/starred', 'https://api.github.com/users/sporkmonger/repos', 'https://api.github.com/users/sporkmonger/events', 'https://api.github.com/users/sporkmonger/received_events', 0); +INSERT INTO `developer` VALUES (1779, 'dustin', 'C+', 16.13989563030361, 0, 0, 0, 0, 0, 0, 'Dustin Sallings', NULL, 'http://bleu.west.spy.net/~dustin/', 'Maui', 'dustin@spy.net', NULL, NULL, NULL, 0, 0, 1226, 19, 0, 0, 0, '2008-02-29T17:59:09Z', '2023-11-23T21:22:24Z', 'https://avatars.githubusercontent.com/u/1779?v=4', 'https://api.github.com/users/dustin', 'https://github.com/dustin', 'https://api.github.com/users/dustin/followers', 'https://api.github.com/users/dustin/following', 'https://api.github.com/users/dustin/gists', 'https://api.github.com/users/dustin/starred', 'https://api.github.com/users/dustin/repos', 'https://api.github.com/users/dustin/events', 'https://api.github.com/users/dustin/received_events', 0); +INSERT INTO `developer` VALUES (1780, 'infused', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keith Morrison', NULL, '', 'Portland, Oregon', 'keithm@infused.org', 'true', 'VP, Software Development at Vervent', NULL, 0, 0, 26, 8, 0, 0, 0, '2008-02-29T18:00:26Z', '2024-11-04T22:45:41Z', 'https://avatars.githubusercontent.com/u/1780?v=4', 'https://api.github.com/users/infused', 'https://github.com/infused', 'https://api.github.com/users/infused/followers', 'https://api.github.com/users/infused/following', 'https://api.github.com/users/infused/gists', 'https://api.github.com/users/infused/starred', 'https://api.github.com/users/infused/repos', 'https://api.github.com/users/infused/events', 'https://api.github.com/users/infused/received_events', 0); +INSERT INTO `developer` VALUES (1781, 'jameydavis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jamey Davis', 'mintwhip llc', 'http://jameydavis.com', 'Palmetto, FL', NULL, NULL, NULL, NULL, 0, 0, 26, 38, 0, 0, 0, '2008-02-29T18:04:39Z', '2024-10-15T02:26:28Z', 'https://avatars.githubusercontent.com/u/1781?v=4', 'https://api.github.com/users/jameydavis', 'https://github.com/jameydavis', 'https://api.github.com/users/jameydavis/followers', 'https://api.github.com/users/jameydavis/following', 'https://api.github.com/users/jameydavis/gists', 'https://api.github.com/users/jameydavis/starred', 'https://api.github.com/users/jameydavis/repos', 'https://api.github.com/users/jameydavis/events', 'https://api.github.com/users/jameydavis/received_events', 0); +INSERT INTO `developer` VALUES (1782, 'ogyr', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-02-29T18:08:23Z', '2024-01-21T22:27:01Z', 'https://avatars.githubusercontent.com/u/1782?v=4', 'https://api.github.com/users/ogyr', 'https://github.com/ogyr', 'https://api.github.com/users/ogyr/followers', 'https://api.github.com/users/ogyr/following', 'https://api.github.com/users/ogyr/gists', 'https://api.github.com/users/ogyr/starred', 'https://api.github.com/users/ogyr/repos', 'https://api.github.com/users/ogyr/events', 'https://api.github.com/users/ogyr/received_events', 0); +INSERT INTO `developer` VALUES (1783, 'swallick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Wallick', NULL, 'http://scott.wallick.org/', 'Woodside, New York', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-02-29T18:09:47Z', '2024-10-22T14:17:43Z', 'https://avatars.githubusercontent.com/u/1783?v=4', 'https://api.github.com/users/swallick', 'https://github.com/swallick', 'https://api.github.com/users/swallick/followers', 'https://api.github.com/users/swallick/following', 'https://api.github.com/users/swallick/gists', 'https://api.github.com/users/swallick/starred', 'https://api.github.com/users/swallick/repos', 'https://api.github.com/users/swallick/events', 'https://api.github.com/users/swallick/received_events', 0); +INSERT INTO `developer` VALUES (1784, 'paulgroves', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Groves', NULL, '', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2008-02-29T18:12:14Z', '2024-10-18T08:58:47Z', 'https://avatars.githubusercontent.com/u/1784?v=4', 'https://api.github.com/users/paulgroves', 'https://github.com/paulgroves', 'https://api.github.com/users/paulgroves/followers', 'https://api.github.com/users/paulgroves/following', 'https://api.github.com/users/paulgroves/gists', 'https://api.github.com/users/paulgroves/starred', 'https://api.github.com/users/paulgroves/repos', 'https://api.github.com/users/paulgroves/events', 'https://api.github.com/users/paulgroves/received_events', 0); +INSERT INTO `developer` VALUES (1785, 'shadoi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Blake Barnett', 'Apple', '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 26, 13, 0, 0, 0, '2008-02-29T18:14:04Z', '2017-06-05T17:49:51Z', 'https://avatars.githubusercontent.com/u/1785?v=4', 'https://api.github.com/users/shadoi', 'https://github.com/shadoi', 'https://api.github.com/users/shadoi/followers', 'https://api.github.com/users/shadoi/following', 'https://api.github.com/users/shadoi/gists', 'https://api.github.com/users/shadoi/starred', 'https://api.github.com/users/shadoi/repos', 'https://api.github.com/users/shadoi/events', 'https://api.github.com/users/shadoi/received_events', 0); +INSERT INTO `developer` VALUES (1786, 'akwala', 'C', 0, 0, 0, 0, 0, 0, 0, 'aslam karachiwala', 'whimwords.com', 'mythicflow.com', 'boston, ma, usa', NULL, NULL, NULL, NULL, 0, 0, 15, 23, 0, 0, 0, '2008-02-29T18:14:20Z', '2024-11-01T17:55:26Z', 'https://avatars.githubusercontent.com/u/1786?v=4', 'https://api.github.com/users/akwala', 'https://github.com/akwala', 'https://api.github.com/users/akwala/followers', 'https://api.github.com/users/akwala/following', 'https://api.github.com/users/akwala/gists', 'https://api.github.com/users/akwala/starred', 'https://api.github.com/users/akwala/repos', 'https://api.github.com/users/akwala/events', 'https://api.github.com/users/akwala/received_events', 0); +INSERT INTO `developer` VALUES (1787, 'holtmann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcel Holtmann', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 87, 0, 0, 0, 0, '2008-02-29T18:14:30Z', '2024-07-05T15:06:48Z', 'https://avatars.githubusercontent.com/u/1787?v=4', 'https://api.github.com/users/holtmann', 'https://github.com/holtmann', 'https://api.github.com/users/holtmann/followers', 'https://api.github.com/users/holtmann/following', 'https://api.github.com/users/holtmann/gists', 'https://api.github.com/users/holtmann/starred', 'https://api.github.com/users/holtmann/repos', 'https://api.github.com/users/holtmann/events', 'https://api.github.com/users/holtmann/received_events', 0); +INSERT INTO `developer` VALUES (1788, 'brendanlim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brendan G. Lim', 'Google', '', 'Mountain View, CA', NULL, NULL, NULL, 'brendanlim', 0, 0, 144, 94, 0, 0, 0, '2008-02-29T18:24:24Z', '2024-09-16T20:53:17Z', 'https://avatars.githubusercontent.com/u/1788?v=4', 'https://api.github.com/users/brendanlim', 'https://github.com/brendanlim', 'https://api.github.com/users/brendanlim/followers', 'https://api.github.com/users/brendanlim/following', 'https://api.github.com/users/brendanlim/gists', 'https://api.github.com/users/brendanlim/starred', 'https://api.github.com/users/brendanlim/repos', 'https://api.github.com/users/brendanlim/events', 'https://api.github.com/users/brendanlim/received_events', 0); +INSERT INTO `developer` VALUES (1789, 'nathansobo', 'B-', 28.452535421287017, 0, 0, 0, 0, 0, 0, 'Nathan Sobo', 'GitHub', '', 'Boulder, CO', NULL, NULL, NULL, NULL, 0, 0, 1944, 4, 0, 0, 0, '2008-02-29T18:26:45Z', '2024-11-04T15:40:47Z', 'https://avatars.githubusercontent.com/u/1789?v=4', 'https://api.github.com/users/nathansobo', 'https://github.com/nathansobo', 'https://api.github.com/users/nathansobo/followers', 'https://api.github.com/users/nathansobo/following', 'https://api.github.com/users/nathansobo/gists', 'https://api.github.com/users/nathansobo/starred', 'https://api.github.com/users/nathansobo/repos', 'https://api.github.com/users/nathansobo/events', 'https://api.github.com/users/nathansobo/received_events', 0); +INSERT INTO `developer` VALUES (1790, 'dbrown', 'C', 0, 0, 0, 0, 0, 0, 0, 'Don Brown', NULL, '', 'Atlanta, GA', 'browndon@gmail.com', NULL, NULL, NULL, 0, 0, 17, 1, 0, 0, 0, '2008-02-29T18:32:52Z', '2024-09-12T17:56:11Z', 'https://avatars.githubusercontent.com/u/1790?v=4', 'https://api.github.com/users/dbrown', 'https://github.com/dbrown', 'https://api.github.com/users/dbrown/followers', 'https://api.github.com/users/dbrown/following', 'https://api.github.com/users/dbrown/gists', 'https://api.github.com/users/dbrown/starred', 'https://api.github.com/users/dbrown/repos', 'https://api.github.com/users/dbrown/events', 'https://api.github.com/users/dbrown/received_events', 0); +INSERT INTO `developer` VALUES (1791, 'jon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Olson', 'Google', '', 'Seattle, WA', 'jonolson@google.com', NULL, NULL, 'jonolson', 0, 0, 47, 0, 0, 0, 0, '2008-02-29T18:38:37Z', '2024-10-19T22:37:24Z', 'https://avatars.githubusercontent.com/u/1791?v=4', 'https://api.github.com/users/jon', 'https://github.com/jon', 'https://api.github.com/users/jon/followers', 'https://api.github.com/users/jon/following', 'https://api.github.com/users/jon/gists', 'https://api.github.com/users/jon/starred', 'https://api.github.com/users/jon/repos', 'https://api.github.com/users/jon/events', 'https://api.github.com/users/jon/received_events', 0); +INSERT INTO `developer` VALUES (1792, 'guercheLE', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luciano Evaristo Guerche (Gorše)', NULL, '', 'Taboão da Serra, SP, Brazil', 'guercheLE@hotmail.com', NULL, NULL, 'guerchele', 0, 0, 7, 66, 0, 0, 0, '2008-02-29T18:55:21Z', '2024-09-22T18:02:35Z', 'https://avatars.githubusercontent.com/u/1792?v=4', 'https://api.github.com/users/guercheLE', 'https://github.com/guercheLE', 'https://api.github.com/users/guercheLE/followers', 'https://api.github.com/users/guercheLE/following', 'https://api.github.com/users/guercheLE/gists', 'https://api.github.com/users/guercheLE/starred', 'https://api.github.com/users/guercheLE/repos', 'https://api.github.com/users/guercheLE/events', 'https://api.github.com/users/guercheLE/received_events', 0); +INSERT INTO `developer` VALUES (1793, 'vranjank', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T19:04:52Z', '2020-09-21T23:29:47Z', 'https://avatars.githubusercontent.com/u/1793?v=4', 'https://api.github.com/users/vranjank', 'https://github.com/vranjank', 'https://api.github.com/users/vranjank/followers', 'https://api.github.com/users/vranjank/following', 'https://api.github.com/users/vranjank/gists', 'https://api.github.com/users/vranjank/starred', 'https://api.github.com/users/vranjank/repos', 'https://api.github.com/users/vranjank/events', 'https://api.github.com/users/vranjank/received_events', 0); +INSERT INTO `developer` VALUES (1794, 'neh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Howell', NULL, 'http://nathanhowell.net', 'BC, Canada', 'nath@nhowell.net', NULL, NULL, NULL, 0, 0, 22, 5, 0, 0, 0, '2008-02-29T19:07:26Z', '2024-09-07T03:10:41Z', 'https://avatars.githubusercontent.com/u/1794?v=4', 'https://api.github.com/users/neh', 'https://github.com/neh', 'https://api.github.com/users/neh/followers', 'https://api.github.com/users/neh/following', 'https://api.github.com/users/neh/gists', 'https://api.github.com/users/neh/starred', 'https://api.github.com/users/neh/repos', 'https://api.github.com/users/neh/events', 'https://api.github.com/users/neh/received_events', 0); +INSERT INTO `developer` VALUES (1795, 'jakobo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jakob Heuser', '@taskless', 'https://codedrift.com', 'Redwood City, CA', 'jakob@codedrift.com', NULL, NULL, NULL, 0, 0, 148, 53, 0, 0, 0, '2008-02-29T19:11:29Z', '2024-10-23T22:40:26Z', 'https://avatars.githubusercontent.com/u/1795?v=4', 'https://api.github.com/users/jakobo', 'https://github.com/jakobo', 'https://api.github.com/users/jakobo/followers', 'https://api.github.com/users/jakobo/following', 'https://api.github.com/users/jakobo/gists', 'https://api.github.com/users/jakobo/starred', 'https://api.github.com/users/jakobo/repos', 'https://api.github.com/users/jakobo/events', 'https://api.github.com/users/jakobo/received_events', 0); +INSERT INTO `developer` VALUES (1796, 'teej', 'C', 0, 0, 0, 0, 0, 0, 0, 'TJ Murphy', 'Titan Systems, Inc', 'https://applytitan.com', 'San Francisco, CA', 'teej.murphy@gmail.com', NULL, 'Working on Titan', 'teej_m', 0, 0, 90, 18, 0, 0, 0, '2008-02-29T19:19:58Z', '2024-10-29T21:56:44Z', 'https://avatars.githubusercontent.com/u/1796?v=4', 'https://api.github.com/users/teej', 'https://github.com/teej', 'https://api.github.com/users/teej/followers', 'https://api.github.com/users/teej/following', 'https://api.github.com/users/teej/gists', 'https://api.github.com/users/teej/starred', 'https://api.github.com/users/teej/repos', 'https://api.github.com/users/teej/events', 'https://api.github.com/users/teej/received_events', 0); +INSERT INTO `developer` VALUES (1797, 'codemac', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Mickey', NULL, 'http://codemac.net', 'SF', NULL, NULL, NULL, NULL, 0, 0, 23, 20, 0, 0, 0, '2008-02-29T19:26:15Z', '2024-10-27T20:50:39Z', 'https://avatars.githubusercontent.com/u/1797?v=4', 'https://api.github.com/users/codemac', 'https://github.com/codemac', 'https://api.github.com/users/codemac/followers', 'https://api.github.com/users/codemac/following', 'https://api.github.com/users/codemac/gists', 'https://api.github.com/users/codemac/starred', 'https://api.github.com/users/codemac/repos', 'https://api.github.com/users/codemac/events', 'https://api.github.com/users/codemac/received_events', 0); +INSERT INTO `developer` VALUES (1798, 'kimj', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-29T19:30:14Z', '2024-09-01T17:59:59Z', 'https://avatars.githubusercontent.com/u/1798?v=4', 'https://api.github.com/users/kimj', 'https://github.com/kimj', 'https://api.github.com/users/kimj/followers', 'https://api.github.com/users/kimj/following', 'https://api.github.com/users/kimj/gists', 'https://api.github.com/users/kimj/starred', 'https://api.github.com/users/kimj/repos', 'https://api.github.com/users/kimj/events', 'https://api.github.com/users/kimj/received_events', 0); +INSERT INTO `developer` VALUES (1799, 'mattgrayson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Grayson', '@MadeBySpeak ', 'http://madebyspeak.com/', 'Memphis, TN', NULL, NULL, NULL, NULL, 0, 0, 29, 5, 0, 0, 0, '2008-02-29T19:31:19Z', '2024-09-21T15:25:02Z', 'https://avatars.githubusercontent.com/u/1799?v=4', 'https://api.github.com/users/mattgrayson', 'https://github.com/mattgrayson', 'https://api.github.com/users/mattgrayson/followers', 'https://api.github.com/users/mattgrayson/following', 'https://api.github.com/users/mattgrayson/gists', 'https://api.github.com/users/mattgrayson/starred', 'https://api.github.com/users/mattgrayson/repos', 'https://api.github.com/users/mattgrayson/events', 'https://api.github.com/users/mattgrayson/received_events', 0); +INSERT INTO `developer` VALUES (1800, 'tequi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T19:35:12Z', '2019-12-21T13:26:58Z', 'https://avatars.githubusercontent.com/u/1800?v=4', 'https://api.github.com/users/tequi', 'https://github.com/tequi', 'https://api.github.com/users/tequi/followers', 'https://api.github.com/users/tequi/following', 'https://api.github.com/users/tequi/gists', 'https://api.github.com/users/tequi/starred', 'https://api.github.com/users/tequi/repos', 'https://api.github.com/users/tequi/events', 'https://api.github.com/users/tequi/received_events', 0); +INSERT INTO `developer` VALUES (1801, 'yolfer', 'C', 0, 0, 0, 0, 0, 0, 0, 'joe', NULL, '', 'Washington State, USA', NULL, NULL, NULL, NULL, 0, 0, 10, 15, 0, 0, 0, '2008-02-29T19:35:15Z', '2024-07-18T11:18:13Z', 'https://avatars.githubusercontent.com/u/1801?v=4', 'https://api.github.com/users/yolfer', 'https://github.com/yolfer', 'https://api.github.com/users/yolfer/followers', 'https://api.github.com/users/yolfer/following', 'https://api.github.com/users/yolfer/gists', 'https://api.github.com/users/yolfer/starred', 'https://api.github.com/users/yolfer/repos', 'https://api.github.com/users/yolfer/events', 'https://api.github.com/users/yolfer/received_events', 0); +INSERT INTO `developer` VALUES (1802, 'aivarannamaa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aivar Annamaa', 'Cybernetica', 'https://thonny.org', 'Tartu, Estonia', NULL, NULL, NULL, NULL, 0, 0, 194, 0, 0, 0, 0, '2008-02-29T19:36:24Z', '2024-09-11T08:39:20Z', 'https://avatars.githubusercontent.com/u/1802?v=4', 'https://api.github.com/users/aivarannamaa', 'https://github.com/aivarannamaa', 'https://api.github.com/users/aivarannamaa/followers', 'https://api.github.com/users/aivarannamaa/following', 'https://api.github.com/users/aivarannamaa/gists', 'https://api.github.com/users/aivarannamaa/starred', 'https://api.github.com/users/aivarannamaa/repos', 'https://api.github.com/users/aivarannamaa/events', 'https://api.github.com/users/aivarannamaa/received_events', 0); +INSERT INTO `developer` VALUES (1803, 'ruediger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rüdiger Sonderfeld', NULL, '', '未知', 'ruediger@c-plusplus.net', NULL, NULL, NULL, 0, 0, 61, 27, 0, 0, 0, '2008-02-29T19:36:52Z', '2024-06-09T16:00:12Z', 'https://avatars.githubusercontent.com/u/1803?v=4', 'https://api.github.com/users/ruediger', 'https://github.com/ruediger', 'https://api.github.com/users/ruediger/followers', 'https://api.github.com/users/ruediger/following', 'https://api.github.com/users/ruediger/gists', 'https://api.github.com/users/ruediger/starred', 'https://api.github.com/users/ruediger/repos', 'https://api.github.com/users/ruediger/events', 'https://api.github.com/users/ruediger/received_events', 0); +INSERT INTO `developer` VALUES (1804, 'potatosalad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Bennett', '@Facebook', 'https://potatosalad.io', 'Frisco, Texas', 'potatosaladx@gmail.com', 'true', NULL, 'potatosaladx', 0, 0, 125, 2, 0, 0, 0, '2008-02-29T19:40:01Z', '2024-10-31T07:33:42Z', 'https://avatars.githubusercontent.com/u/1804?v=4', 'https://api.github.com/users/potatosalad', 'https://github.com/potatosalad', 'https://api.github.com/users/potatosalad/followers', 'https://api.github.com/users/potatosalad/following', 'https://api.github.com/users/potatosalad/gists', 'https://api.github.com/users/potatosalad/starred', 'https://api.github.com/users/potatosalad/repos', 'https://api.github.com/users/potatosalad/events', 'https://api.github.com/users/potatosalad/received_events', 0); +INSERT INTO `developer` VALUES (1805, 'xentac', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 3, 0, 0, 0, '2008-02-29T19:40:31Z', '2024-09-29T03:47:58Z', 'https://avatars.githubusercontent.com/u/1805?v=4', 'https://api.github.com/users/xentac', 'https://github.com/xentac', 'https://api.github.com/users/xentac/followers', 'https://api.github.com/users/xentac/following', 'https://api.github.com/users/xentac/gists', 'https://api.github.com/users/xentac/starred', 'https://api.github.com/users/xentac/repos', 'https://api.github.com/users/xentac/events', 'https://api.github.com/users/xentac/received_events', 0); +INSERT INTO `developer` VALUES (1806, 'mightymiracleman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Luther', NULL, 'https://drunkard.com/', '未知', 'mightymiracleman@gmail.com', NULL, 'The filthiest, nastiest, dirtiest assistant bartender ever to assist in tending bar. Proven adventurer, shade-tree mechanic, welder, and pro-am drinker.', NULL, 0, 0, 7, 1, 0, 0, 0, '2008-02-29T19:42:56Z', '2024-10-06T16:12:19Z', 'https://avatars.githubusercontent.com/u/1806?v=4', 'https://api.github.com/users/mightymiracleman', 'https://github.com/mightymiracleman', 'https://api.github.com/users/mightymiracleman/followers', 'https://api.github.com/users/mightymiracleman/following', 'https://api.github.com/users/mightymiracleman/gists', 'https://api.github.com/users/mightymiracleman/starred', 'https://api.github.com/users/mightymiracleman/repos', 'https://api.github.com/users/mightymiracleman/events', 'https://api.github.com/users/mightymiracleman/received_events', 0); +INSERT INTO `developer` VALUES (1807, 'robins', 'C', 0, 0, 0, 0, 36, 18, 0, 'Robins', NULL, 'www.thatguyfromdelhi.com', 'Adelaide', 'tharakan@gmail.com', NULL, NULL, 'guyfromdelhi', 0, 0, 22, 40, 0, 0, 0, '2008-02-29T19:43:52Z', '2024-09-16T04:06:03Z', 'https://avatars.githubusercontent.com/u/1807?v=4', 'https://api.github.com/users/robins', 'https://github.com/robins', 'https://api.github.com/users/robins/followers', 'https://api.github.com/users/robins/following', 'https://api.github.com/users/robins/gists', 'https://api.github.com/users/robins/starred', 'https://api.github.com/users/robins/repos', 'https://api.github.com/users/robins/events', 'https://api.github.com/users/robins/received_events', 0); +INSERT INTO `developer` VALUES (1808, 'adrian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adrian Smith', 'Workday', 'http://www.17od.com', 'Dublin, Ireland', 'adrian@17od.com', NULL, NULL, NULL, 0, 0, 54, 10, 0, 0, 0, '2008-02-29T20:03:31Z', '2024-10-04T19:19:10Z', 'https://avatars.githubusercontent.com/u/1808?v=4', 'https://api.github.com/users/adrian', 'https://github.com/adrian', 'https://api.github.com/users/adrian/followers', 'https://api.github.com/users/adrian/following', 'https://api.github.com/users/adrian/gists', 'https://api.github.com/users/adrian/starred', 'https://api.github.com/users/adrian/repos', 'https://api.github.com/users/adrian/events', 'https://api.github.com/users/adrian/received_events', 0); +INSERT INTO `developer` VALUES (1809, 'krobertson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ken Robertson', 'my own', 'http://invalidlogic.com', 'Lodi, CA', NULL, NULL, 'I write stuff.', NULL, 0, 0, 97, 4, 0, 0, 0, '2008-02-29T20:03:41Z', '2024-06-25T16:57:36Z', 'https://avatars.githubusercontent.com/u/1809?v=4', 'https://api.github.com/users/krobertson', 'https://github.com/krobertson', 'https://api.github.com/users/krobertson/followers', 'https://api.github.com/users/krobertson/following', 'https://api.github.com/users/krobertson/gists', 'https://api.github.com/users/krobertson/starred', 'https://api.github.com/users/krobertson/repos', 'https://api.github.com/users/krobertson/events', 'https://api.github.com/users/krobertson/received_events', 0); +INSERT INTO `developer` VALUES (1810, 'duonoid', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Davis', NULL, 'http://david.wippoc.com', 'Reno, NV', NULL, NULL, NULL, NULL, 0, 0, 25, 8, 0, 0, 0, '2008-02-29T20:06:07Z', '2024-10-26T19:56:29Z', 'https://avatars.githubusercontent.com/u/1810?v=4', 'https://api.github.com/users/duonoid', 'https://github.com/duonoid', 'https://api.github.com/users/duonoid/followers', 'https://api.github.com/users/duonoid/following', 'https://api.github.com/users/duonoid/gists', 'https://api.github.com/users/duonoid/starred', 'https://api.github.com/users/duonoid/repos', 'https://api.github.com/users/duonoid/events', 'https://api.github.com/users/duonoid/received_events', 0); +INSERT INTO `developer` VALUES (1811, 'valnour', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bobby', NULL, 'http://codebutcher.com', 'Tennessee, United States', 'bobby@codebutcher.com', NULL, NULL, NULL, 0, 0, 6, 6, 0, 0, 0, '2008-02-29T20:29:27Z', '2019-12-21T22:31:55Z', 'https://avatars.githubusercontent.com/u/1811?v=4', 'https://api.github.com/users/valnour', 'https://github.com/valnour', 'https://api.github.com/users/valnour/followers', 'https://api.github.com/users/valnour/following', 'https://api.github.com/users/valnour/gists', 'https://api.github.com/users/valnour/starred', 'https://api.github.com/users/valnour/repos', 'https://api.github.com/users/valnour/events', 'https://api.github.com/users/valnour/received_events', 0); +INSERT INTO `developer` VALUES (1812, 'blake', 'C', 0, 0, 0, 0, 0, 0, 0, 'Blake Covarrubias', '@HashiCorp', 'https://blakecovarrubias.com', 'Sunnyvale, CA', NULL, 'true', 'Consul Product Manager and network engineering geek.', 'blakecova', 0, 0, 56, 1, 0, 0, 0, '2008-02-29T20:39:51Z', '2024-11-03T09:39:40Z', 'https://avatars.githubusercontent.com/u/1812?v=4', 'https://api.github.com/users/blake', 'https://github.com/blake', 'https://api.github.com/users/blake/followers', 'https://api.github.com/users/blake/following', 'https://api.github.com/users/blake/gists', 'https://api.github.com/users/blake/starred', 'https://api.github.com/users/blake/repos', 'https://api.github.com/users/blake/events', 'https://api.github.com/users/blake/received_events', 0); +INSERT INTO `developer` VALUES (1813, 'dragon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dragon', NULL, '', 'Russia', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-02-29T20:40:36Z', '2023-11-29T19:54:28Z', 'https://avatars.githubusercontent.com/u/1813?v=4', 'https://api.github.com/users/dragon', 'https://github.com/dragon', 'https://api.github.com/users/dragon/followers', 'https://api.github.com/users/dragon/following', 'https://api.github.com/users/dragon/gists', 'https://api.github.com/users/dragon/starred', 'https://api.github.com/users/dragon/repos', 'https://api.github.com/users/dragon/events', 'https://api.github.com/users/dragon/received_events', 0); +INSERT INTO `developer` VALUES (1814, 'nate86', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-02-29T20:41:10Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1814?v=4', 'https://api.github.com/users/nate86', 'https://github.com/nate86', 'https://api.github.com/users/nate86/followers', 'https://api.github.com/users/nate86/following', 'https://api.github.com/users/nate86/gists', 'https://api.github.com/users/nate86/starred', 'https://api.github.com/users/nate86/repos', 'https://api.github.com/users/nate86/events', 'https://api.github.com/users/nate86/received_events', 0); +INSERT INTO `developer` VALUES (1815, 'stephane', 'C', 0.1574718347652434, 0, 0, 0, 0, 0, 0, 'Stéphane Raimbault', 'Webstack', 'http://sralab.com', 'Saint André des Eaux', NULL, NULL, 'Freelance @webstack SARL\r\nAPIculteur \r\n', 'sraimbault', 0, 0, 294, 2, 0, 0, 0, '2008-02-29T20:43:41Z', '2024-10-21T15:53:33Z', 'https://avatars.githubusercontent.com/u/1815?v=4', 'https://api.github.com/users/stephane', 'https://github.com/stephane', 'https://api.github.com/users/stephane/followers', 'https://api.github.com/users/stephane/following', 'https://api.github.com/users/stephane/gists', 'https://api.github.com/users/stephane/starred', 'https://api.github.com/users/stephane/repos', 'https://api.github.com/users/stephane/events', 'https://api.github.com/users/stephane/received_events', 0); +INSERT INTO `developer` VALUES (1816, 'kziv', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karen Ziv', NULL, 'https://karenziv.com', 'Chattanooga, TN', 'me@karenziv.com', 'true', NULL, NULL, 0, 0, 12, 4, 0, 0, 0, '2008-02-29T20:47:11Z', '2024-10-22T16:48:41Z', 'https://avatars.githubusercontent.com/u/1816?v=4', 'https://api.github.com/users/kziv', 'https://github.com/kziv', 'https://api.github.com/users/kziv/followers', 'https://api.github.com/users/kziv/following', 'https://api.github.com/users/kziv/gists', 'https://api.github.com/users/kziv/starred', 'https://api.github.com/users/kziv/repos', 'https://api.github.com/users/kziv/events', 'https://api.github.com/users/kziv/received_events', 0); +INSERT INTO `developer` VALUES (1817, 'jish', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Lubaway', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 48, 35, 0, 0, 0, '2008-02-29T20:49:16Z', '2024-10-22T16:51:18Z', 'https://avatars.githubusercontent.com/u/1817?v=4', 'https://api.github.com/users/jish', 'https://github.com/jish', 'https://api.github.com/users/jish/followers', 'https://api.github.com/users/jish/following', 'https://api.github.com/users/jish/gists', 'https://api.github.com/users/jish/starred', 'https://api.github.com/users/jish/repos', 'https://api.github.com/users/jish/events', 'https://api.github.com/users/jish/received_events', 0); +INSERT INTO `developer` VALUES (1818, 'lrtitze', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leslie Rose Titze', NULL, '', 'Northwestern Ontario, Canada', NULL, 'true', 'She/her - iOS and ARM development', NULL, 0, 0, 27, 18, 0, 0, 0, '2008-02-29T20:49:31Z', '2023-04-30T17:05:25Z', 'https://avatars.githubusercontent.com/u/1818?v=4', 'https://api.github.com/users/lrtitze', 'https://github.com/lrtitze', 'https://api.github.com/users/lrtitze/followers', 'https://api.github.com/users/lrtitze/following', 'https://api.github.com/users/lrtitze/gists', 'https://api.github.com/users/lrtitze/starred', 'https://api.github.com/users/lrtitze/repos', 'https://api.github.com/users/lrtitze/events', 'https://api.github.com/users/lrtitze/received_events', 0); +INSERT INTO `developer` VALUES (1819, 'cj', 'C', 0, 0, 0, 0, 0, 0, 0, 'CJ Lazell', NULL, 'http://cj.io', '未知', NULL, NULL, NULL, NULL, 0, 0, 55, 13, 0, 0, 0, '2008-02-29T20:59:02Z', '2024-09-18T03:43:14Z', 'https://avatars.githubusercontent.com/u/1819?v=4', 'https://api.github.com/users/cj', 'https://github.com/cj', 'https://api.github.com/users/cj/followers', 'https://api.github.com/users/cj/following', 'https://api.github.com/users/cj/gists', 'https://api.github.com/users/cj/starred', 'https://api.github.com/users/cj/repos', 'https://api.github.com/users/cj/events', 'https://api.github.com/users/cj/received_events', 0); +INSERT INTO `developer` VALUES (1820, 'mtsuruta', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T21:00:47Z', '2023-08-16T21:00:50Z', 'https://avatars.githubusercontent.com/u/1820?v=4', 'https://api.github.com/users/mtsuruta', 'https://github.com/mtsuruta', 'https://api.github.com/users/mtsuruta/followers', 'https://api.github.com/users/mtsuruta/following', 'https://api.github.com/users/mtsuruta/gists', 'https://api.github.com/users/mtsuruta/starred', 'https://api.github.com/users/mtsuruta/repos', 'https://api.github.com/users/mtsuruta/events', 'https://api.github.com/users/mtsuruta/received_events', 0); +INSERT INTO `developer` VALUES (1821, 'hoggarth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Hoggarth', NULL, 'http://blog.scotthoggarth.com', '未知', 'hoggarth@gmail.com', NULL, NULL, NULL, 0, 0, 12, 16, 0, 0, 0, '2008-02-29T21:02:57Z', '2023-09-25T21:40:19Z', 'https://avatars.githubusercontent.com/u/1821?v=4', 'https://api.github.com/users/hoggarth', 'https://github.com/hoggarth', 'https://api.github.com/users/hoggarth/followers', 'https://api.github.com/users/hoggarth/following', 'https://api.github.com/users/hoggarth/gists', 'https://api.github.com/users/hoggarth/starred', 'https://api.github.com/users/hoggarth/repos', 'https://api.github.com/users/hoggarth/events', 'https://api.github.com/users/hoggarth/received_events', 0); +INSERT INTO `developer` VALUES (1822, 'sgraham', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Graham', 'Retired-ish', 'https://scot.tg', 'Vancouver, Canada', 'scott.github@h4ck3r.net', NULL, 'No recruiters, please.', 'h4kr', 0, 0, 114, 0, 0, 0, 0, '2008-02-29T21:03:10Z', '2024-10-18T21:07:56Z', 'https://avatars.githubusercontent.com/u/1822?v=4', 'https://api.github.com/users/sgraham', 'https://github.com/sgraham', 'https://api.github.com/users/sgraham/followers', 'https://api.github.com/users/sgraham/following', 'https://api.github.com/users/sgraham/gists', 'https://api.github.com/users/sgraham/starred', 'https://api.github.com/users/sgraham/repos', 'https://api.github.com/users/sgraham/events', 'https://api.github.com/users/sgraham/received_events', 0); +INSERT INTO `developer` VALUES (1823, 'benaskins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Askins', NULL, '', '未知', 'ben.askins@gmail.com', NULL, NULL, NULL, 0, 0, 66, 17, 0, 0, 0, '2008-02-29T21:05:47Z', '2024-08-12T05:08:08Z', 'https://avatars.githubusercontent.com/u/1823?v=4', 'https://api.github.com/users/benaskins', 'https://github.com/benaskins', 'https://api.github.com/users/benaskins/followers', 'https://api.github.com/users/benaskins/following', 'https://api.github.com/users/benaskins/gists', 'https://api.github.com/users/benaskins/starred', 'https://api.github.com/users/benaskins/repos', 'https://api.github.com/users/benaskins/events', 'https://api.github.com/users/benaskins/received_events', 0); +INSERT INTO `developer` VALUES (1824, 'wrl', 'C', 0.3975511621660344, 0, 0, 0, 0, 0, 0, 'william light', 'LHI Audio', 'http://lhiaudio.com/', 'Rotterdam, NL', NULL, NULL, '[audio dsp gui] dev in [c rust python]', 'wrl', 0, 0, 308, 63, 0, 0, 0, '2008-02-29T21:23:15Z', '2024-03-01T00:42:20Z', 'https://avatars.githubusercontent.com/u/1824?v=4', 'https://api.github.com/users/wrl', 'https://github.com/wrl', 'https://api.github.com/users/wrl/followers', 'https://api.github.com/users/wrl/following', 'https://api.github.com/users/wrl/gists', 'https://api.github.com/users/wrl/starred', 'https://api.github.com/users/wrl/repos', 'https://api.github.com/users/wrl/events', 'https://api.github.com/users/wrl/received_events', 0); +INSERT INTO `developer` VALUES (1825, 'tacvbo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Octavio Ruiz', 'Tacvbo.net', 'http://blog.tacvbo.net/', 'Mexico CIty', 'tacvbo@tacvbo.net', NULL, NULL, NULL, 0, 0, 27, 0, 0, 0, 0, '2008-02-29T21:26:31Z', '2024-01-13T01:40:21Z', 'https://avatars.githubusercontent.com/u/1825?v=4', 'https://api.github.com/users/tacvbo', 'https://github.com/tacvbo', 'https://api.github.com/users/tacvbo/followers', 'https://api.github.com/users/tacvbo/following', 'https://api.github.com/users/tacvbo/gists', 'https://api.github.com/users/tacvbo/starred', 'https://api.github.com/users/tacvbo/repos', 'https://api.github.com/users/tacvbo/events', 'https://api.github.com/users/tacvbo/received_events', 0); +INSERT INTO `developer` VALUES (1826, 'pointcom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathieu Fosse', NULL, 'http://www.mathieufosse.com', 'Paris, France', 'mathieu.fosse@gmail.com', NULL, NULL, NULL, 0, 0, 44, 65, 0, 0, 0, '2008-02-29T21:39:41Z', '2024-09-03T08:22:17Z', 'https://avatars.githubusercontent.com/u/1826?v=4', 'https://api.github.com/users/pointcom', 'https://github.com/pointcom', 'https://api.github.com/users/pointcom/followers', 'https://api.github.com/users/pointcom/following', 'https://api.github.com/users/pointcom/gists', 'https://api.github.com/users/pointcom/starred', 'https://api.github.com/users/pointcom/repos', 'https://api.github.com/users/pointcom/events', 'https://api.github.com/users/pointcom/received_events', 0); +INSERT INTO `developer` VALUES (1827, 'mw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Winners', 'ExtraHop Networks', '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-02-29T21:52:34Z', '2024-09-14T22:57:36Z', 'https://avatars.githubusercontent.com/u/1827?v=4', 'https://api.github.com/users/mw', 'https://github.com/mw', 'https://api.github.com/users/mw/followers', 'https://api.github.com/users/mw/following', 'https://api.github.com/users/mw/gists', 'https://api.github.com/users/mw/starred', 'https://api.github.com/users/mw/repos', 'https://api.github.com/users/mw/events', 'https://api.github.com/users/mw/received_events', 0); +INSERT INTO `developer` VALUES (1828, 'zettablade', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T21:58:22Z', '2020-05-15T12:53:21Z', 'https://avatars.githubusercontent.com/u/1828?v=4', 'https://api.github.com/users/zettablade', 'https://github.com/zettablade', 'https://api.github.com/users/zettablade/followers', 'https://api.github.com/users/zettablade/following', 'https://api.github.com/users/zettablade/gists', 'https://api.github.com/users/zettablade/starred', 'https://api.github.com/users/zettablade/repos', 'https://api.github.com/users/zettablade/events', 'https://api.github.com/users/zettablade/received_events', 0); +INSERT INTO `developer` VALUES (1829, 'jfontan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Javi Fontan', NULL, 'https://zooloo.org/', 'Madrid, Spain', 'jfontan@gmail.com', NULL, 'Go developer', 'thevaw', 0, 0, 71, 15, 0, 0, 0, '2008-02-29T22:01:24Z', '2024-11-04T16:26:05Z', 'https://avatars.githubusercontent.com/u/1829?v=4', 'https://api.github.com/users/jfontan', 'https://github.com/jfontan', 'https://api.github.com/users/jfontan/followers', 'https://api.github.com/users/jfontan/following', 'https://api.github.com/users/jfontan/gists', 'https://api.github.com/users/jfontan/starred', 'https://api.github.com/users/jfontan/repos', 'https://api.github.com/users/jfontan/events', 'https://api.github.com/users/jfontan/received_events', 0); +INSERT INTO `developer` VALUES (1830, 'xunevyfumosymalo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-02-29T22:21:26Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1830?v=4', 'https://api.github.com/users/xunevyfumosymalo', 'https://github.com/xunevyfumosymalo', 'https://api.github.com/users/xunevyfumosymalo/followers', 'https://api.github.com/users/xunevyfumosymalo/following', 'https://api.github.com/users/xunevyfumosymalo/gists', 'https://api.github.com/users/xunevyfumosymalo/starred', 'https://api.github.com/users/xunevyfumosymalo/repos', 'https://api.github.com/users/xunevyfumosymalo/events', 'https://api.github.com/users/xunevyfumosymalo/received_events', 0); +INSERT INTO `developer` VALUES (1831, 'charrington', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T22:28:10Z', '2015-02-25T22:26:19Z', 'https://avatars.githubusercontent.com/u/1831?v=4', 'https://api.github.com/users/charrington', 'https://github.com/charrington', 'https://api.github.com/users/charrington/followers', 'https://api.github.com/users/charrington/following', 'https://api.github.com/users/charrington/gists', 'https://api.github.com/users/charrington/starred', 'https://api.github.com/users/charrington/repos', 'https://api.github.com/users/charrington/events', 'https://api.github.com/users/charrington/received_events', 0); +INSERT INTO `developer` VALUES (1832, 'nyxwulf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Tolton', NULL, '', '未知', 'github.closure@recursor.net', NULL, NULL, NULL, 0, 0, 29, 6, 0, 0, 0, '2008-02-29T22:30:14Z', '2024-08-27T03:00:14Z', 'https://avatars.githubusercontent.com/u/1832?v=4', 'https://api.github.com/users/nyxwulf', 'https://github.com/nyxwulf', 'https://api.github.com/users/nyxwulf/followers', 'https://api.github.com/users/nyxwulf/following', 'https://api.github.com/users/nyxwulf/gists', 'https://api.github.com/users/nyxwulf/starred', 'https://api.github.com/users/nyxwulf/repos', 'https://api.github.com/users/nyxwulf/events', 'https://api.github.com/users/nyxwulf/received_events', 0); +INSERT INTO `developer` VALUES (1833, 'cicloid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gustavo Barron', NULL, 'http://42fu.com', 'Queretaro, Mexico / Santa Monica, California', NULL, 'true', 'Philomath Hacker', NULL, 0, 0, 59, 62, 0, 0, 0, '2008-02-29T22:31:18Z', '2024-09-28T21:07:23Z', 'https://avatars.githubusercontent.com/u/1833?v=4', 'https://api.github.com/users/cicloid', 'https://github.com/cicloid', 'https://api.github.com/users/cicloid/followers', 'https://api.github.com/users/cicloid/following', 'https://api.github.com/users/cicloid/gists', 'https://api.github.com/users/cicloid/starred', 'https://api.github.com/users/cicloid/repos', 'https://api.github.com/users/cicloid/events', 'https://api.github.com/users/cicloid/received_events', 0); +INSERT INTO `developer` VALUES (1834, 'hyperfusion', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Ho', NULL, '', 'California', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T22:32:59Z', '2016-02-26T22:34:44Z', 'https://avatars.githubusercontent.com/u/1834?v=4', 'https://api.github.com/users/hyperfusion', 'https://github.com/hyperfusion', 'https://api.github.com/users/hyperfusion/followers', 'https://api.github.com/users/hyperfusion/following', 'https://api.github.com/users/hyperfusion/gists', 'https://api.github.com/users/hyperfusion/starred', 'https://api.github.com/users/hyperfusion/repos', 'https://api.github.com/users/hyperfusion/events', 'https://api.github.com/users/hyperfusion/received_events', 0); +INSERT INTO `developer` VALUES (1835, 'florolf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Larysch', NULL, 'https://n621.de', '未知', NULL, NULL, NULL, NULL, 0, 0, 84, 0, 0, 0, 0, '2008-02-29T22:47:13Z', '2024-10-18T11:45:09Z', 'https://avatars.githubusercontent.com/u/1835?v=4', 'https://api.github.com/users/florolf', 'https://github.com/florolf', 'https://api.github.com/users/florolf/followers', 'https://api.github.com/users/florolf/following', 'https://api.github.com/users/florolf/gists', 'https://api.github.com/users/florolf/starred', 'https://api.github.com/users/florolf/repos', 'https://api.github.com/users/florolf/events', 'https://api.github.com/users/florolf/received_events', 0); +INSERT INTO `developer` VALUES (1836, 'PhillipTaylor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Phillip Taylor', NULL, 'http://blog.philliptaylor.net', '未知', NULL, NULL, 'My other account is PhillipTaylorPro', NULL, 0, 0, 32, 14, 0, 0, 0, '2008-02-29T22:53:13Z', '2024-09-25T13:17:45Z', 'https://avatars.githubusercontent.com/u/1836?v=4', 'https://api.github.com/users/PhillipTaylor', 'https://github.com/PhillipTaylor', 'https://api.github.com/users/PhillipTaylor/followers', 'https://api.github.com/users/PhillipTaylor/following', 'https://api.github.com/users/PhillipTaylor/gists', 'https://api.github.com/users/PhillipTaylor/starred', 'https://api.github.com/users/PhillipTaylor/repos', 'https://api.github.com/users/PhillipTaylor/events', 'https://api.github.com/users/PhillipTaylor/received_events', 0); +INSERT INTO `developer` VALUES (1837, 'bmabey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Mabey', NULL, 'http://benmabey.com', 'Salt Lake City, Utah', 'ben+github@benmabey.com', NULL, NULL, NULL, 0, 0, 269, 25, 0, 0, 0, '2008-02-29T23:04:43Z', '2024-10-07T21:15:00Z', 'https://avatars.githubusercontent.com/u/1837?v=4', 'https://api.github.com/users/bmabey', 'https://github.com/bmabey', 'https://api.github.com/users/bmabey/followers', 'https://api.github.com/users/bmabey/following', 'https://api.github.com/users/bmabey/gists', 'https://api.github.com/users/bmabey/starred', 'https://api.github.com/users/bmabey/repos', 'https://api.github.com/users/bmabey/events', 'https://api.github.com/users/bmabey/received_events', 0); +INSERT INTO `developer` VALUES (1838, 'barbieri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gustavo Sverzut Barbieri', 'ProFUSION embedded systems', 'http://blog.gustavobarbieri.com.br/', 'Sertãozinho, SP - Brazil', 'barbieri@gmail.com', NULL, NULL, 'gsbarbieri', 0, 0, 100, 9, 0, 0, 0, '2008-02-29T23:14:06Z', '2024-10-12T23:47:40Z', 'https://avatars.githubusercontent.com/u/1838?v=4', 'https://api.github.com/users/barbieri', 'https://github.com/barbieri', 'https://api.github.com/users/barbieri/followers', 'https://api.github.com/users/barbieri/following', 'https://api.github.com/users/barbieri/gists', 'https://api.github.com/users/barbieri/starred', 'https://api.github.com/users/barbieri/repos', 'https://api.github.com/users/barbieri/events', 'https://api.github.com/users/barbieri/received_events', 0); +INSERT INTO `developer` VALUES (1839, 'chriseppstein', 'C+', 20.564214663832463, 0, 0, 0, 0, 0, 0, 'Chris Eppstein', NULL, 'https://twitter.com/chriseppstein', 'San Jose, CA', 'chris@eppsteins.net', NULL, NULL, NULL, 0, 0, 1484, 24, 0, 0, 0, '2008-02-29T23:17:59Z', '2024-10-22T21:17:36Z', 'https://avatars.githubusercontent.com/u/1839?v=4', 'https://api.github.com/users/chriseppstein', 'https://github.com/chriseppstein', 'https://api.github.com/users/chriseppstein/followers', 'https://api.github.com/users/chriseppstein/following', 'https://api.github.com/users/chriseppstein/gists', 'https://api.github.com/users/chriseppstein/starred', 'https://api.github.com/users/chriseppstein/repos', 'https://api.github.com/users/chriseppstein/events', 'https://api.github.com/users/chriseppstein/received_events', 0); +INSERT INTO `developer` VALUES (1840, 'azar', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-02-29T23:39:16Z', '2024-10-05T01:08:51Z', 'https://avatars.githubusercontent.com/u/1840?v=4', 'https://api.github.com/users/azar', 'https://github.com/azar', 'https://api.github.com/users/azar/followers', 'https://api.github.com/users/azar/following', 'https://api.github.com/users/azar/gists', 'https://api.github.com/users/azar/starred', 'https://api.github.com/users/azar/repos', 'https://api.github.com/users/azar/events', 'https://api.github.com/users/azar/received_events', 0); +INSERT INTO `developer` VALUES (1841, 'nopundittenet', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-02-29T23:40:07Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1841?v=4', 'https://api.github.com/users/nopundittenet', 'https://github.com/nopundittenet', 'https://api.github.com/users/nopundittenet/followers', 'https://api.github.com/users/nopundittenet/following', 'https://api.github.com/users/nopundittenet/gists', 'https://api.github.com/users/nopundittenet/starred', 'https://api.github.com/users/nopundittenet/repos', 'https://api.github.com/users/nopundittenet/events', 'https://api.github.com/users/nopundittenet/received_events', 0); +INSERT INTO `developer` VALUES (1843, 'verbal', 'C', 0, 0, 0, 0, 0, 0, 0, 'verbal', NULL, '', '未知', NULL, NULL, NULL, 'verbal', 0, 0, 57, 17, 0, 0, 0, '2008-03-01T00:02:17Z', '2024-10-30T21:27:34Z', 'https://avatars.githubusercontent.com/u/1843?v=4', 'https://api.github.com/users/verbal', 'https://github.com/verbal', 'https://api.github.com/users/verbal/followers', 'https://api.github.com/users/verbal/following', 'https://api.github.com/users/verbal/gists', 'https://api.github.com/users/verbal/starred', 'https://api.github.com/users/verbal/repos', 'https://api.github.com/users/verbal/events', 'https://api.github.com/users/verbal/received_events', 0); +INSERT INTO `developer` VALUES (1844, 'ryanlowe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Lowe', 'Freelance Ruby on Rails: disruptiveAgility.com', 'http://www.ryanlowe.ca/blog', 'Ottawa, Canada', 'rails@ryanlowe.ca', NULL, NULL, NULL, 0, 0, 28, 18, 0, 0, 0, '2008-03-01T00:10:44Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1844?v=4', 'https://api.github.com/users/ryanlowe', 'https://github.com/ryanlowe', 'https://api.github.com/users/ryanlowe/followers', 'https://api.github.com/users/ryanlowe/following', 'https://api.github.com/users/ryanlowe/gists', 'https://api.github.com/users/ryanlowe/starred', 'https://api.github.com/users/ryanlowe/repos', 'https://api.github.com/users/ryanlowe/events', 'https://api.github.com/users/ryanlowe/received_events', 0); +INSERT INTO `developer` VALUES (1845, 'seflless', 'C', 0, 0, 0, 0, 0, 0, 0, 'Francois Laberge', NULL, '', 'Boston, MA', 'francoislaberge@gmail.com', 'true', 'I build creative tools.', 'seflless', 0, 0, 135, 21, 0, 0, 0, '2008-03-01T00:10:56Z', '2024-09-08T19:26:29Z', 'https://avatars.githubusercontent.com/u/1845?v=4', 'https://api.github.com/users/seflless', 'https://github.com/seflless', 'https://api.github.com/users/seflless/followers', 'https://api.github.com/users/seflless/following', 'https://api.github.com/users/seflless/gists', 'https://api.github.com/users/seflless/starred', 'https://api.github.com/users/seflless/repos', 'https://api.github.com/users/seflless/events', 'https://api.github.com/users/seflless/received_events', 0); +INSERT INTO `developer` VALUES (1846, 'ayman', 'C', 0, 0, 0, 0, 0, 0, 0, 'ayman', '@ToyotaResearchInstitute', 'http://shamur.ai/', 'San Francisco', NULL, NULL, 'research scientist/director: @ToyotaResearchInstitute, FXPAL, @cwi-dis, @yahoo labs, @flickr, & @sigchi. \r\n\r\ninstructions: place in direct sunlight, water daily', 'ayman', 0, 0, 61, 12, 0, 0, 0, '2008-03-01T00:19:36Z', '2024-10-07T17:25:22Z', 'https://avatars.githubusercontent.com/u/1846?v=4', 'https://api.github.com/users/ayman', 'https://github.com/ayman', 'https://api.github.com/users/ayman/followers', 'https://api.github.com/users/ayman/following', 'https://api.github.com/users/ayman/gists', 'https://api.github.com/users/ayman/starred', 'https://api.github.com/users/ayman/repos', 'https://api.github.com/users/ayman/events', 'https://api.github.com/users/ayman/received_events', 0); +INSERT INTO `developer` VALUES (1848, 'tomaszskutnik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tomasz', NULL, '', 'Poland', 'Tomasz.Skutnik@gmail.com', NULL, NULL, 'TomaszSkutnik', 0, 0, 5, 0, 0, 0, 0, '2008-03-01T00:47:36Z', '2023-12-03T14:25:59Z', 'https://avatars.githubusercontent.com/u/1848?v=4', 'https://api.github.com/users/tomaszskutnik', 'https://github.com/tomaszskutnik', 'https://api.github.com/users/tomaszskutnik/followers', 'https://api.github.com/users/tomaszskutnik/following', 'https://api.github.com/users/tomaszskutnik/gists', 'https://api.github.com/users/tomaszskutnik/starred', 'https://api.github.com/users/tomaszskutnik/repos', 'https://api.github.com/users/tomaszskutnik/events', 'https://api.github.com/users/tomaszskutnik/received_events', 0); +INSERT INTO `developer` VALUES (1849, 'wherecloud', 'C', 0, 0, 0, 0, 0, 0, 0, 'nventive inc', NULL, 'http://www.nventive.com', 'Montreal, Canada', 'it@nventive.com', NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2008-03-01T00:52:52Z', '2018-09-22T23:30:14Z', 'https://avatars.githubusercontent.com/u/1849?v=4', 'https://api.github.com/users/wherecloud', 'https://github.com/wherecloud', 'https://api.github.com/users/wherecloud/followers', 'https://api.github.com/users/wherecloud/following', 'https://api.github.com/users/wherecloud/gists', 'https://api.github.com/users/wherecloud/starred', 'https://api.github.com/users/wherecloud/repos', 'https://api.github.com/users/wherecloud/events', 'https://api.github.com/users/wherecloud/received_events', 0); +INSERT INTO `developer` VALUES (1850, 'mspang', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Spang', NULL, '', '未知', 'mcspang@gmail.com', NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-01T01:21:16Z', '2024-10-18T11:24:28Z', 'https://avatars.githubusercontent.com/u/1850?v=4', 'https://api.github.com/users/mspang', 'https://github.com/mspang', 'https://api.github.com/users/mspang/followers', 'https://api.github.com/users/mspang/following', 'https://api.github.com/users/mspang/gists', 'https://api.github.com/users/mspang/starred', 'https://api.github.com/users/mspang/repos', 'https://api.github.com/users/mspang/events', 'https://api.github.com/users/mspang/received_events', 0); +INSERT INTO `developer` VALUES (1851, 'stantont', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stanton Teters', NULL, '', '未知', 'stantont@gmail.com', NULL, NULL, NULL, 0, 0, 19, 23, 0, 0, 0, '2008-03-01T01:23:03Z', '2023-04-13T01:23:45Z', 'https://avatars.githubusercontent.com/u/1851?v=4', 'https://api.github.com/users/stantont', 'https://github.com/stantont', 'https://api.github.com/users/stantont/followers', 'https://api.github.com/users/stantont/following', 'https://api.github.com/users/stantont/gists', 'https://api.github.com/users/stantont/starred', 'https://api.github.com/users/stantont/repos', 'https://api.github.com/users/stantont/events', 'https://api.github.com/users/stantont/received_events', 0); +INSERT INTO `developer` VALUES (1852, 'PhilAndrew', 'C', 0, 0, 0, 0, 0, 0, 0, 'Phil Andrew', NULL, 'https://stackoverflow.com/users/78000/phil', 'Newcastle, Australia', 'philip368320@gmail.com', 'true', 'https://twitter.com/philip368320', 'philip368320', 0, 0, 46, 91, 0, 0, 0, '2008-03-01T02:06:48Z', '2024-03-11T06:14:28Z', 'https://avatars.githubusercontent.com/u/1852?v=4', 'https://api.github.com/users/PhilAndrew', 'https://github.com/PhilAndrew', 'https://api.github.com/users/PhilAndrew/followers', 'https://api.github.com/users/PhilAndrew/following', 'https://api.github.com/users/PhilAndrew/gists', 'https://api.github.com/users/PhilAndrew/starred', 'https://api.github.com/users/PhilAndrew/repos', 'https://api.github.com/users/PhilAndrew/events', 'https://api.github.com/users/PhilAndrew/received_events', 0); +INSERT INTO `developer` VALUES (1853, 'wagonmaster', 'C', 0, 0, 0, 0, 0, 1, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-03-01T02:07:01Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1853?v=4', 'https://api.github.com/users/wagonmaster', 'https://github.com/wagonmaster', 'https://api.github.com/users/wagonmaster/followers', 'https://api.github.com/users/wagonmaster/following', 'https://api.github.com/users/wagonmaster/gists', 'https://api.github.com/users/wagonmaster/starred', 'https://api.github.com/users/wagonmaster/repos', 'https://api.github.com/users/wagonmaster/events', 'https://api.github.com/users/wagonmaster/received_events', 0); +INSERT INTO `developer` VALUES (1855, 'apexsutherland', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Sutherland', 'Sutherland Consulting & Communications', 'http://apexsutherland.wordpress.com/', 'Exton, PA', 'apexsutherland@gmail.com', 'true', NULL, NULL, 0, 0, 43, 49, 0, 0, 0, '2008-03-01T02:58:34Z', '2023-05-17T18:08:15Z', 'https://avatars.githubusercontent.com/u/1855?v=4', 'https://api.github.com/users/apexsutherland', 'https://github.com/apexsutherland', 'https://api.github.com/users/apexsutherland/followers', 'https://api.github.com/users/apexsutherland/following', 'https://api.github.com/users/apexsutherland/gists', 'https://api.github.com/users/apexsutherland/starred', 'https://api.github.com/users/apexsutherland/repos', 'https://api.github.com/users/apexsutherland/events', 'https://api.github.com/users/apexsutherland/received_events', 0); +INSERT INTO `developer` VALUES (1856, 'crispix', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-01T02:59:43Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1856?v=4', 'https://api.github.com/users/crispix', 'https://github.com/crispix', 'https://api.github.com/users/crispix/followers', 'https://api.github.com/users/crispix/following', 'https://api.github.com/users/crispix/gists', 'https://api.github.com/users/crispix/starred', 'https://api.github.com/users/crispix/repos', 'https://api.github.com/users/crispix/events', 'https://api.github.com/users/crispix/received_events', 0); +INSERT INTO `developer` VALUES (1857, 'RobertStevenson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Stevenson', 'JPMorgan Chase', '', 'Columbus, Ohio', 'robert.stevenson@gmail.com', NULL, NULL, NULL, 0, 0, 19, 11, 0, 0, 0, '2008-03-01T03:12:26Z', '2024-10-10T02:00:21Z', 'https://avatars.githubusercontent.com/u/1857?v=4', 'https://api.github.com/users/RobertStevenson', 'https://github.com/RobertStevenson', 'https://api.github.com/users/RobertStevenson/followers', 'https://api.github.com/users/RobertStevenson/following', 'https://api.github.com/users/RobertStevenson/gists', 'https://api.github.com/users/RobertStevenson/starred', 'https://api.github.com/users/RobertStevenson/repos', 'https://api.github.com/users/RobertStevenson/events', 'https://api.github.com/users/RobertStevenson/received_events', 0); +INSERT INTO `developer` VALUES (1858, 'jamesakers', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Akers', NULL, 'http://jamesakers.name', 'Tallahassee, FL', 'j.f.akers@gmail.com', 'true', NULL, NULL, 0, 0, 9, 7, 0, 0, 0, '2008-03-01T03:26:54Z', '2024-09-17T04:43:48Z', 'https://avatars.githubusercontent.com/u/1858?v=4', 'https://api.github.com/users/jamesakers', 'https://github.com/jamesakers', 'https://api.github.com/users/jamesakers/followers', 'https://api.github.com/users/jamesakers/following', 'https://api.github.com/users/jamesakers/gists', 'https://api.github.com/users/jamesakers/starred', 'https://api.github.com/users/jamesakers/repos', 'https://api.github.com/users/jamesakers/events', 'https://api.github.com/users/jamesakers/received_events', 0); +INSERT INTO `developer` VALUES (1859, 'dyoder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Yoder', '@pandastrike ', 'https://pandastrike.com', 'Marina Del Rey, CA', 'danielyoder@gmail.com', NULL, NULL, NULL, 0, 0, 88, 1, 0, 0, 0, '2008-03-01T04:14:10Z', '2024-04-22T18:44:19Z', 'https://avatars.githubusercontent.com/u/1859?v=4', 'https://api.github.com/users/dyoder', 'https://github.com/dyoder', 'https://api.github.com/users/dyoder/followers', 'https://api.github.com/users/dyoder/following', 'https://api.github.com/users/dyoder/gists', 'https://api.github.com/users/dyoder/starred', 'https://api.github.com/users/dyoder/repos', 'https://api.github.com/users/dyoder/events', 'https://api.github.com/users/dyoder/received_events', 0); +INSERT INTO `developer` VALUES (1860, 'wishdev', 'C', 0, 0, 0, 0, 0, 0, 0, 'John W Higgins', NULL, '', 'Battle Ground, WA', NULL, NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-03-01T04:32:08Z', '2024-10-22T11:18:22Z', 'https://avatars.githubusercontent.com/u/1860?v=4', 'https://api.github.com/users/wishdev', 'https://github.com/wishdev', 'https://api.github.com/users/wishdev/followers', 'https://api.github.com/users/wishdev/following', 'https://api.github.com/users/wishdev/gists', 'https://api.github.com/users/wishdev/starred', 'https://api.github.com/users/wishdev/repos', 'https://api.github.com/users/wishdev/events', 'https://api.github.com/users/wishdev/received_events', 0); +INSERT INTO `developer` VALUES (1861, 'mnemonicsloth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jed', NULL, '', '未知', 'mnemonicsloth@gmail.com', NULL, NULL, NULL, 0, 0, 5, 6, 0, 0, 0, '2008-03-01T04:33:49Z', '2022-07-01T01:01:02Z', 'https://avatars.githubusercontent.com/u/1861?v=4', 'https://api.github.com/users/mnemonicsloth', 'https://github.com/mnemonicsloth', 'https://api.github.com/users/mnemonicsloth/followers', 'https://api.github.com/users/mnemonicsloth/following', 'https://api.github.com/users/mnemonicsloth/gists', 'https://api.github.com/users/mnemonicsloth/starred', 'https://api.github.com/users/mnemonicsloth/repos', 'https://api.github.com/users/mnemonicsloth/events', 'https://api.github.com/users/mnemonicsloth/received_events', 0); +INSERT INTO `developer` VALUES (1862, 'hqm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Henry Minsky', NULL, '', '未知', 'hqm@alum.mit.edu', NULL, 'Hackito ergo sum', NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-01T06:30:41Z', '2024-10-30T01:51:49Z', 'https://avatars.githubusercontent.com/u/1862?v=4', 'https://api.github.com/users/hqm', 'https://github.com/hqm', 'https://api.github.com/users/hqm/followers', 'https://api.github.com/users/hqm/following', 'https://api.github.com/users/hqm/gists', 'https://api.github.com/users/hqm/starred', 'https://api.github.com/users/hqm/repos', 'https://api.github.com/users/hqm/events', 'https://api.github.com/users/hqm/received_events', 0); +INSERT INTO `developer` VALUES (1863, 'xueruini', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ruini Xue', NULL, '', 'Chengdu', NULL, NULL, NULL, NULL, 0, 0, 175, 7, 0, 0, 0, '2008-03-01T07:06:29Z', '2024-10-28T11:18:33Z', 'https://avatars.githubusercontent.com/u/1863?v=4', 'https://api.github.com/users/xueruini', 'https://github.com/xueruini', 'https://api.github.com/users/xueruini/followers', 'https://api.github.com/users/xueruini/following', 'https://api.github.com/users/xueruini/gists', 'https://api.github.com/users/xueruini/starred', 'https://api.github.com/users/xueruini/repos', 'https://api.github.com/users/xueruini/events', 'https://api.github.com/users/xueruini/received_events', 0); +INSERT INTO `developer` VALUES (1864, 'rahult', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rahul Trikha', NULL, 'http://www.rahultrikha.com/', 'Melbourne, Australia', 'rahul.trikha@gmail.com', 'true', NULL, NULL, 0, 0, 25, 21, 0, 0, 0, '2008-03-01T08:04:59Z', '2024-10-06T01:49:17Z', 'https://avatars.githubusercontent.com/u/1864?v=4', 'https://api.github.com/users/rahult', 'https://github.com/rahult', 'https://api.github.com/users/rahult/followers', 'https://api.github.com/users/rahult/following', 'https://api.github.com/users/rahult/gists', 'https://api.github.com/users/rahult/starred', 'https://api.github.com/users/rahult/repos', 'https://api.github.com/users/rahult/events', 'https://api.github.com/users/rahult/received_events', 0); +INSERT INTO `developer` VALUES (1865, 'ctrochalakis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christos Trochalakis', 'Skroutz S.A.', '', 'Athens, Greece', NULL, NULL, NULL, 'ctrochalakis', 0, 0, 96, 30, 0, 0, 0, '2008-03-01T08:51:44Z', '2024-09-02T07:11:46Z', 'https://avatars.githubusercontent.com/u/1865?v=4', 'https://api.github.com/users/ctrochalakis', 'https://github.com/ctrochalakis', 'https://api.github.com/users/ctrochalakis/followers', 'https://api.github.com/users/ctrochalakis/following', 'https://api.github.com/users/ctrochalakis/gists', 'https://api.github.com/users/ctrochalakis/starred', 'https://api.github.com/users/ctrochalakis/repos', 'https://api.github.com/users/ctrochalakis/events', 'https://api.github.com/users/ctrochalakis/received_events', 0); +INSERT INTO `developer` VALUES (1866, 'treejamie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tree Jamie', 'https://lifeoftreedom.com', '', 'Northumberland', NULL, NULL, 'Spent 20 years at a desk, spending the next 20 up a tree or in a woodland with a chainsaw. Soon to be a fully qualified & insured tree surgeon - hire me. ', NULL, 0, 0, 38, 4, 0, 0, 0, '2008-03-01T09:09:23Z', '2024-02-27T16:58:39Z', 'https://avatars.githubusercontent.com/u/1866?v=4', 'https://api.github.com/users/treejamie', 'https://github.com/treejamie', 'https://api.github.com/users/treejamie/followers', 'https://api.github.com/users/treejamie/following', 'https://api.github.com/users/treejamie/gists', 'https://api.github.com/users/treejamie/starred', 'https://api.github.com/users/treejamie/repos', 'https://api.github.com/users/treejamie/events', 'https://api.github.com/users/treejamie/received_events', 0); +INSERT INTO `developer` VALUES (1867, 'phi-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-01T09:45:34Z', '2021-10-22T08:20:45Z', 'https://avatars.githubusercontent.com/u/1867?v=4', 'https://api.github.com/users/phi-zz', 'https://github.com/phi-zz', 'https://api.github.com/users/phi-zz/followers', 'https://api.github.com/users/phi-zz/following', 'https://api.github.com/users/phi-zz/gists', 'https://api.github.com/users/phi-zz/starred', 'https://api.github.com/users/phi-zz/repos', 'https://api.github.com/users/phi-zz/events', 'https://api.github.com/users/phi-zz/received_events', 0); +INSERT INTO `developer` VALUES (1868, 'stilkov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Tilkov', 'INNOQ', 'http://www.innoq.com/blog/st/', 'Germany', 'stefan.tilkov@innoq.com', NULL, NULL, 'stilkov', 0, 0, 169, 0, 0, 0, 0, '2008-03-01T12:43:38Z', '2023-07-29T12:23:46Z', 'https://avatars.githubusercontent.com/u/1868?v=4', 'https://api.github.com/users/stilkov', 'https://github.com/stilkov', 'https://api.github.com/users/stilkov/followers', 'https://api.github.com/users/stilkov/following', 'https://api.github.com/users/stilkov/gists', 'https://api.github.com/users/stilkov/starred', 'https://api.github.com/users/stilkov/repos', 'https://api.github.com/users/stilkov/events', 'https://api.github.com/users/stilkov/received_events', 0); +INSERT INTO `developer` VALUES (1869, 'chollier', 'C', 0, 0, 0, 0, 0, 0, 0, 'Loic CHOLLIER', '@trax-retail', 'http://loic.xxx', 'San Francisco', 'loic@chollier.com', NULL, '@react enthusiast, @graphql proponent.\r\n', NULL, 0, 0, 48, 22, 0, 0, 0, '2008-03-01T13:12:00Z', '2024-06-18T14:37:15Z', 'https://avatars.githubusercontent.com/u/1869?v=4', 'https://api.github.com/users/chollier', 'https://github.com/chollier', 'https://api.github.com/users/chollier/followers', 'https://api.github.com/users/chollier/following', 'https://api.github.com/users/chollier/gists', 'https://api.github.com/users/chollier/starred', 'https://api.github.com/users/chollier/repos', 'https://api.github.com/users/chollier/events', 'https://api.github.com/users/chollier/received_events', 0); +INSERT INTO `developer` VALUES (1870, 'seanohalpin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean O\'Halpin', 'BBC', 'seanohalpin.github.com', 'London, UK', 'sean.ohalpin@gmail.com', NULL, NULL, NULL, 0, 0, 66, 5, 0, 0, 0, '2008-03-01T13:15:22Z', '2024-07-04T07:57:03Z', 'https://avatars.githubusercontent.com/u/1870?v=4', 'https://api.github.com/users/seanohalpin', 'https://github.com/seanohalpin', 'https://api.github.com/users/seanohalpin/followers', 'https://api.github.com/users/seanohalpin/following', 'https://api.github.com/users/seanohalpin/gists', 'https://api.github.com/users/seanohalpin/starred', 'https://api.github.com/users/seanohalpin/repos', 'https://api.github.com/users/seanohalpin/events', 'https://api.github.com/users/seanohalpin/received_events', 0); +INSERT INTO `developer` VALUES (1872, 'briantimmer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Timmer', 'BISSELL Homecare, Inc. ', 'https://briantimmer.com', 'Grand Haven, MI', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-03-01T13:42:32Z', '2024-10-23T15:11:49Z', 'https://avatars.githubusercontent.com/u/1872?v=4', 'https://api.github.com/users/briantimmer', 'https://github.com/briantimmer', 'https://api.github.com/users/briantimmer/followers', 'https://api.github.com/users/briantimmer/following', 'https://api.github.com/users/briantimmer/gists', 'https://api.github.com/users/briantimmer/starred', 'https://api.github.com/users/briantimmer/repos', 'https://api.github.com/users/briantimmer/events', 'https://api.github.com/users/briantimmer/received_events', 0); +INSERT INTO `developer` VALUES (1873, 'jrobertson', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Robertson', NULL, 'http://www.jamesrobertson.me.uk/', 'Edinburgh, UK', NULL, 'true', NULL, NULL, 0, 0, 56, 136, 0, 0, 0, '2008-03-01T15:14:45Z', '2023-05-02T06:22:29Z', 'https://avatars.githubusercontent.com/u/1873?v=4', 'https://api.github.com/users/jrobertson', 'https://github.com/jrobertson', 'https://api.github.com/users/jrobertson/followers', 'https://api.github.com/users/jrobertson/following', 'https://api.github.com/users/jrobertson/gists', 'https://api.github.com/users/jrobertson/starred', 'https://api.github.com/users/jrobertson/repos', 'https://api.github.com/users/jrobertson/events', 'https://api.github.com/users/jrobertson/received_events', 0); +INSERT INTO `developer` VALUES (1874, 'Suraci', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-01T15:43:16Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1874?v=4', 'https://api.github.com/users/Suraci', 'https://github.com/Suraci', 'https://api.github.com/users/Suraci/followers', 'https://api.github.com/users/Suraci/following', 'https://api.github.com/users/Suraci/gists', 'https://api.github.com/users/Suraci/starred', 'https://api.github.com/users/Suraci/repos', 'https://api.github.com/users/Suraci/events', 'https://api.github.com/users/Suraci/received_events', 0); +INSERT INTO `developer` VALUES (1875, 'pingswept', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandon Stafford', 'Tufts University', 'nolop.org', 'Somerville, Massachusetts, USA', 'brandon@pingswept.org', NULL, NULL, NULL, 0, 0, 70, 41, 0, 0, 0, '2008-03-01T15:48:50Z', '2024-09-23T21:20:44Z', 'https://avatars.githubusercontent.com/u/1875?v=4', 'https://api.github.com/users/pingswept', 'https://github.com/pingswept', 'https://api.github.com/users/pingswept/followers', 'https://api.github.com/users/pingswept/following', 'https://api.github.com/users/pingswept/gists', 'https://api.github.com/users/pingswept/starred', 'https://api.github.com/users/pingswept/repos', 'https://api.github.com/users/pingswept/events', 'https://api.github.com/users/pingswept/received_events', 0); +INSERT INTO `developer` VALUES (1876, 'svesely', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2008-03-01T17:30:45Z', '2022-08-18T19:46:03Z', 'https://avatars.githubusercontent.com/u/1876?v=4', 'https://api.github.com/users/svesely', 'https://github.com/svesely', 'https://api.github.com/users/svesely/followers', 'https://api.github.com/users/svesely/following', 'https://api.github.com/users/svesely/gists', 'https://api.github.com/users/svesely/starred', 'https://api.github.com/users/svesely/repos', 'https://api.github.com/users/svesely/events', 'https://api.github.com/users/svesely/received_events', 0); +INSERT INTO `developer` VALUES (1877, 'thetoine', 'C', 0, 0, 0, 0, 0, 0, 0, 'Antoine Girard', 'Mill3 Studio', 'https://mill3.studio', 'Montréal, Canada', NULL, NULL, NULL, NULL, 0, 0, 62, 108, 0, 0, 0, '2008-03-01T18:15:39Z', '2024-07-25T15:03:54Z', 'https://avatars.githubusercontent.com/u/1877?v=4', 'https://api.github.com/users/thetoine', 'https://github.com/thetoine', 'https://api.github.com/users/thetoine/followers', 'https://api.github.com/users/thetoine/following', 'https://api.github.com/users/thetoine/gists', 'https://api.github.com/users/thetoine/starred', 'https://api.github.com/users/thetoine/repos', 'https://api.github.com/users/thetoine/events', 'https://api.github.com/users/thetoine/received_events', 0); +INSERT INTO `developer` VALUES (1878, 'pilt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Pantzare', 'Fet kod AB', 'http://fet.io/', 'Sundsvall, Sweden', 'simon@pewpewlabs.com', NULL, NULL, NULL, 0, 0, 35, 57, 0, 0, 0, '2008-03-01T18:16:17Z', '2024-10-31T16:10:44Z', 'https://avatars.githubusercontent.com/u/1878?v=4', 'https://api.github.com/users/pilt', 'https://github.com/pilt', 'https://api.github.com/users/pilt/followers', 'https://api.github.com/users/pilt/following', 'https://api.github.com/users/pilt/gists', 'https://api.github.com/users/pilt/starred', 'https://api.github.com/users/pilt/repos', 'https://api.github.com/users/pilt/events', 'https://api.github.com/users/pilt/received_events', 0); +INSERT INTO `developer` VALUES (1879, 'aperfect', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Perfect', 'Sage', 'https://adamperfect.com', 'Newcastle', NULL, NULL, 'Director of UX, photographer, sometime app creator.', NULL, 0, 0, 14, 5, 0, 0, 0, '2008-03-01T18:38:41Z', '2024-10-21T08:54:19Z', 'https://avatars.githubusercontent.com/u/1879?v=4', 'https://api.github.com/users/aperfect', 'https://github.com/aperfect', 'https://api.github.com/users/aperfect/followers', 'https://api.github.com/users/aperfect/following', 'https://api.github.com/users/aperfect/gists', 'https://api.github.com/users/aperfect/starred', 'https://api.github.com/users/aperfect/repos', 'https://api.github.com/users/aperfect/events', 'https://api.github.com/users/aperfect/received_events', 0); +INSERT INTO `developer` VALUES (1880, 'vito', 'C', 5.079098046481455, 0, 0, 0, 0, 0, 0, 'Alex Suraci', '@dagger', '', 'Toronto, ON', 'suraci.alex@gmail.com', NULL, NULL, NULL, 0, 0, 581, 20, 0, 0, 0, '2008-03-01T18:39:55Z', '2024-10-05T16:34:56Z', 'https://avatars.githubusercontent.com/u/1880?v=4', 'https://api.github.com/users/vito', 'https://github.com/vito', 'https://api.github.com/users/vito/followers', 'https://api.github.com/users/vito/following', 'https://api.github.com/users/vito/gists', 'https://api.github.com/users/vito/starred', 'https://api.github.com/users/vito/repos', 'https://api.github.com/users/vito/events', 'https://api.github.com/users/vito/received_events', 0); +INSERT INTO `developer` VALUES (1881, 'mikehaugland', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Haugland', NULL, 'https://mikehaugland.com', 'Canada', 'mike.haugland@gmail.com', NULL, NULL, NULL, 0, 0, 33, 23, 0, 0, 0, '2008-03-01T18:40:03Z', '2024-09-28T07:00:39Z', 'https://avatars.githubusercontent.com/u/1881?v=4', 'https://api.github.com/users/mikehaugland', 'https://github.com/mikehaugland', 'https://api.github.com/users/mikehaugland/followers', 'https://api.github.com/users/mikehaugland/following', 'https://api.github.com/users/mikehaugland/gists', 'https://api.github.com/users/mikehaugland/starred', 'https://api.github.com/users/mikehaugland/repos', 'https://api.github.com/users/mikehaugland/events', 'https://api.github.com/users/mikehaugland/received_events', 0); +INSERT INTO `developer` VALUES (1882, 'VxJasonxV', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Salaz', NULL, '', 'Castle Rock, CO, USA', NULL, NULL, NULL, NULL, 0, 0, 149, 0, 0, 0, 0, '2008-03-01T18:42:49Z', '2024-10-10T05:33:36Z', 'https://avatars.githubusercontent.com/u/1882?v=4', 'https://api.github.com/users/VxJasonxV', 'https://github.com/VxJasonxV', 'https://api.github.com/users/VxJasonxV/followers', 'https://api.github.com/users/VxJasonxV/following', 'https://api.github.com/users/VxJasonxV/gists', 'https://api.github.com/users/VxJasonxV/starred', 'https://api.github.com/users/VxJasonxV/repos', 'https://api.github.com/users/VxJasonxV/events', 'https://api.github.com/users/VxJasonxV/received_events', 0); +INSERT INTO `developer` VALUES (1883, 'michaeltaras', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Taras', 'Shopify', '', 'New York City', NULL, NULL, 'Engineer at @Shopify', NULL, 0, 0, 9, 3, 0, 0, 0, '2008-03-01T18:43:52Z', '2024-06-19T17:45:49Z', 'https://avatars.githubusercontent.com/u/1883?v=4', 'https://api.github.com/users/michaeltaras', 'https://github.com/michaeltaras', 'https://api.github.com/users/michaeltaras/followers', 'https://api.github.com/users/michaeltaras/following', 'https://api.github.com/users/michaeltaras/gists', 'https://api.github.com/users/michaeltaras/starred', 'https://api.github.com/users/michaeltaras/repos', 'https://api.github.com/users/michaeltaras/events', 'https://api.github.com/users/michaeltaras/received_events', 0); +INSERT INTO `developer` VALUES (1884, 'sebastjan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-01T18:44:34Z', '2020-11-06T14:01:59Z', 'https://avatars.githubusercontent.com/u/1884?v=4', 'https://api.github.com/users/sebastjan', 'https://github.com/sebastjan', 'https://api.github.com/users/sebastjan/followers', 'https://api.github.com/users/sebastjan/following', 'https://api.github.com/users/sebastjan/gists', 'https://api.github.com/users/sebastjan/starred', 'https://api.github.com/users/sebastjan/repos', 'https://api.github.com/users/sebastjan/events', 'https://api.github.com/users/sebastjan/received_events', 0); +INSERT INTO `developer` VALUES (1885, 'greghmerrill', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Merrill', NULL, '', 'Dallas, TX', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-01T18:45:45Z', '2024-10-08T13:41:33Z', 'https://avatars.githubusercontent.com/u/1885?v=4', 'https://api.github.com/users/greghmerrill', 'https://github.com/greghmerrill', 'https://api.github.com/users/greghmerrill/followers', 'https://api.github.com/users/greghmerrill/following', 'https://api.github.com/users/greghmerrill/gists', 'https://api.github.com/users/greghmerrill/starred', 'https://api.github.com/users/greghmerrill/repos', 'https://api.github.com/users/greghmerrill/events', 'https://api.github.com/users/greghmerrill/received_events', 0); +INSERT INTO `developer` VALUES (1886, 'billabel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Abel', NULL, '', 'Homewood, Alabama', NULL, NULL, NULL, NULL, 0, 0, 17, 35, 0, 0, 0, '2008-03-01T18:47:10Z', '2024-09-20T13:55:57Z', 'https://avatars.githubusercontent.com/u/1886?v=4', 'https://api.github.com/users/billabel', 'https://github.com/billabel', 'https://api.github.com/users/billabel/followers', 'https://api.github.com/users/billabel/following', 'https://api.github.com/users/billabel/gists', 'https://api.github.com/users/billabel/starred', 'https://api.github.com/users/billabel/repos', 'https://api.github.com/users/billabel/events', 'https://api.github.com/users/billabel/received_events', 0); +INSERT INTO `developer` VALUES (1887, 'johans', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johan Svedberg', NULL, '', 'Umeå, Sweden', 'johan@svedberg.com', NULL, NULL, NULL, 0, 0, 10, 8, 0, 0, 0, '2008-03-01T18:53:24Z', '2024-07-22T23:00:20Z', 'https://avatars.githubusercontent.com/u/1887?v=4', 'https://api.github.com/users/johans', 'https://github.com/johans', 'https://api.github.com/users/johans/followers', 'https://api.github.com/users/johans/following', 'https://api.github.com/users/johans/gists', 'https://api.github.com/users/johans/starred', 'https://api.github.com/users/johans/repos', 'https://api.github.com/users/johans/events', 'https://api.github.com/users/johans/received_events', 0); +INSERT INTO `developer` VALUES (1888, 'possiamo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-01T18:53:57Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1888?v=4', 'https://api.github.com/users/possiamo', 'https://github.com/possiamo', 'https://api.github.com/users/possiamo/followers', 'https://api.github.com/users/possiamo/following', 'https://api.github.com/users/possiamo/gists', 'https://api.github.com/users/possiamo/starred', 'https://api.github.com/users/possiamo/repos', 'https://api.github.com/users/possiamo/events', 'https://api.github.com/users/possiamo/received_events', 0); +INSERT INTO `developer` VALUES (1889, 'matthelm-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-01T18:55:41Z', '2019-10-23T16:42:31Z', 'https://avatars.githubusercontent.com/u/1889?v=4', 'https://api.github.com/users/matthelm-xx', 'https://github.com/matthelm-xx', 'https://api.github.com/users/matthelm-xx/followers', 'https://api.github.com/users/matthelm-xx/following', 'https://api.github.com/users/matthelm-xx/gists', 'https://api.github.com/users/matthelm-xx/starred', 'https://api.github.com/users/matthelm-xx/repos', 'https://api.github.com/users/matthelm-xx/events', 'https://api.github.com/users/matthelm-xx/received_events', 0); +INSERT INTO `developer` VALUES (1890, 'benjuang', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Juang', '@squareup ', 'https://puzzlebang.com', 'San Francisco, CA', 'ben.juang@gmail.com', NULL, 'This is a bio.', 'benjuang', 0, 0, 13, 3, 0, 0, 0, '2008-03-01T18:57:11Z', '2024-09-23T20:21:50Z', 'https://avatars.githubusercontent.com/u/1890?v=4', 'https://api.github.com/users/benjuang', 'https://github.com/benjuang', 'https://api.github.com/users/benjuang/followers', 'https://api.github.com/users/benjuang/following', 'https://api.github.com/users/benjuang/gists', 'https://api.github.com/users/benjuang/starred', 'https://api.github.com/users/benjuang/repos', 'https://api.github.com/users/benjuang/events', 'https://api.github.com/users/benjuang/received_events', 0); +INSERT INTO `developer` VALUES (1891, 'stephdau', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephane Daury', 'Automattic, Inc.', 'http://tekartist.org', 'Ericeira, Portugal', 'stephane+github@automattic.com', NULL, 'Enjoyer of life; software developer.', NULL, 0, 0, 68, 2, 0, 0, 0, '2008-03-01T18:57:45Z', '2024-10-29T09:09:51Z', 'https://avatars.githubusercontent.com/u/1891?v=4', 'https://api.github.com/users/stephdau', 'https://github.com/stephdau', 'https://api.github.com/users/stephdau/followers', 'https://api.github.com/users/stephdau/following', 'https://api.github.com/users/stephdau/gists', 'https://api.github.com/users/stephdau/starred', 'https://api.github.com/users/stephdau/repos', 'https://api.github.com/users/stephdau/events', 'https://api.github.com/users/stephdau/received_events', 0); +INSERT INTO `developer` VALUES (1892, 'paxx2', 'C', 0, 0, 0, 0, 0, 0, 0, 'Iván Vega', NULL, 'http://entren.ivanyvenian.com/', 'Mexico City', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-01T19:03:53Z', '2016-02-26T22:34:44Z', 'https://avatars.githubusercontent.com/u/1892?v=4', 'https://api.github.com/users/paxx2', 'https://github.com/paxx2', 'https://api.github.com/users/paxx2/followers', 'https://api.github.com/users/paxx2/following', 'https://api.github.com/users/paxx2/gists', 'https://api.github.com/users/paxx2/starred', 'https://api.github.com/users/paxx2/repos', 'https://api.github.com/users/paxx2/events', 'https://api.github.com/users/paxx2/received_events', 0); +INSERT INTO `developer` VALUES (1894, 'gbraad', 'C', 2.5068195386158396, 0, 0, 0, 0, 0, 0, 'Gerard Braad', '@RedHatOfficial, @redhat-developer, @crc-org, @containers, @jkubeio, @gbraadnl, @minishift, @gbraad-redhat', 'https://gbraad.nl', 'Remote (global)', 'me@gbraad.nl', 'true', 'Manager, Software Engineering - Principal Software Engineer @RedHatOfficial | #FOSS & IT Consultant @gbraadnl', NULL, 0, 0, 431, 744, 0, 0, 0, '2008-03-01T19:11:06Z', '2024-10-30T02:52:02Z', 'https://avatars.githubusercontent.com/u/1894?v=4', 'https://api.github.com/users/gbraad', 'https://github.com/gbraad', 'https://api.github.com/users/gbraad/followers', 'https://api.github.com/users/gbraad/following', 'https://api.github.com/users/gbraad/gists', 'https://api.github.com/users/gbraad/starred', 'https://api.github.com/users/gbraad/repos', 'https://api.github.com/users/gbraad/events', 'https://api.github.com/users/gbraad/received_events', 0); +INSERT INTO `developer` VALUES (1896, 'bartTC', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Mahner', '@lincolnloop', 'https://elephant.house', 'Stralsund, Germany', 'martin@mahner.org', NULL, NULL, 'barttc', 0, 0, 224, 0, 0, 0, 0, '2008-03-01T19:17:38Z', '2024-10-05T08:02:14Z', 'https://avatars.githubusercontent.com/u/1896?v=4', 'https://api.github.com/users/bartTC', 'https://github.com/bartTC', 'https://api.github.com/users/bartTC/followers', 'https://api.github.com/users/bartTC/following', 'https://api.github.com/users/bartTC/gists', 'https://api.github.com/users/bartTC/starred', 'https://api.github.com/users/bartTC/repos', 'https://api.github.com/users/bartTC/events', 'https://api.github.com/users/bartTC/received_events', 0); +INSERT INTO `developer` VALUES (1897, 'catch23', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-01T19:22:17Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1897?v=4', 'https://api.github.com/users/catch23', 'https://github.com/catch23', 'https://api.github.com/users/catch23/followers', 'https://api.github.com/users/catch23/following', 'https://api.github.com/users/catch23/gists', 'https://api.github.com/users/catch23/starred', 'https://api.github.com/users/catch23/repos', 'https://api.github.com/users/catch23/events', 'https://api.github.com/users/catch23/received_events', 0); +INSERT INTO `developer` VALUES (1898, 'caio', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://caio.co', '未知', NULL, 'true', NULL, NULL, 0, 0, 86, 13, 0, 0, 0, '2008-03-01T19:23:42Z', '2024-09-23T06:26:21Z', 'https://avatars.githubusercontent.com/u/1898?v=4', 'https://api.github.com/users/caio', 'https://github.com/caio', 'https://api.github.com/users/caio/followers', 'https://api.github.com/users/caio/following', 'https://api.github.com/users/caio/gists', 'https://api.github.com/users/caio/starred', 'https://api.github.com/users/caio/repos', 'https://api.github.com/users/caio/events', 'https://api.github.com/users/caio/received_events', 0); +INSERT INTO `developer` VALUES (1899, 'dennis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dennis Møllegaard Pedersen', NULL, '', 'Denmark', 'dennis@moellegaard.dk', NULL, NULL, NULL, 0, 0, 16, 4, 0, 0, 0, '2008-03-01T19:24:27Z', '2024-06-18T12:11:46Z', 'https://avatars.githubusercontent.com/u/1899?v=4', 'https://api.github.com/users/dennis', 'https://github.com/dennis', 'https://api.github.com/users/dennis/followers', 'https://api.github.com/users/dennis/following', 'https://api.github.com/users/dennis/gists', 'https://api.github.com/users/dennis/starred', 'https://api.github.com/users/dennis/repos', 'https://api.github.com/users/dennis/events', 'https://api.github.com/users/dennis/received_events', 0); +INSERT INTO `developer` VALUES (1900, 'asb', 'C', 3.158463427275129, 0, 0, 0, 0, 0, 0, 'Alex Bradbury', '@Igalia @muxup', 'https://muxup.com', 'Cambridge, UK', 'asb@asbradbury.org', NULL, NULL, 'asbradbury', 0, 0, 469, 45, 0, 0, 0, '2008-03-01T19:36:17Z', '2024-10-25T14:24:53Z', 'https://avatars.githubusercontent.com/u/1900?v=4', 'https://api.github.com/users/asb', 'https://github.com/asb', 'https://api.github.com/users/asb/followers', 'https://api.github.com/users/asb/following', 'https://api.github.com/users/asb/gists', 'https://api.github.com/users/asb/starred', 'https://api.github.com/users/asb/repos', 'https://api.github.com/users/asb/events', 'https://api.github.com/users/asb/received_events', 0); +INSERT INTO `developer` VALUES (1901, 'heimidal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Rose', NULL, '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 28, 2, 0, 0, 0, '2008-03-01T19:42:08Z', '2024-10-10T07:02:49Z', 'https://avatars.githubusercontent.com/u/1901?v=4', 'https://api.github.com/users/heimidal', 'https://github.com/heimidal', 'https://api.github.com/users/heimidal/followers', 'https://api.github.com/users/heimidal/following', 'https://api.github.com/users/heimidal/gists', 'https://api.github.com/users/heimidal/starred', 'https://api.github.com/users/heimidal/repos', 'https://api.github.com/users/heimidal/events', 'https://api.github.com/users/heimidal/received_events', 0); +INSERT INTO `developer` VALUES (1902, 'since1968', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Garrett', NULL, '', 'United States', NULL, NULL, 'Family man, conservationist, amateur historian', NULL, 0, 0, 6, 3, 0, 0, 0, '2008-03-01T19:45:09Z', '2024-10-24T17:19:41Z', 'https://avatars.githubusercontent.com/u/1902?v=4', 'https://api.github.com/users/since1968', 'https://github.com/since1968', 'https://api.github.com/users/since1968/followers', 'https://api.github.com/users/since1968/following', 'https://api.github.com/users/since1968/gists', 'https://api.github.com/users/since1968/starred', 'https://api.github.com/users/since1968/repos', 'https://api.github.com/users/since1968/events', 'https://api.github.com/users/since1968/received_events', 0); +INSERT INTO `developer` VALUES (1903, 'jamiew', 'C', 3.4499883248332317, 0, 0, 0, 0, 0, 0, 'Jamie Dubs', NULL, 'http://jamiedubs.com', 'New York, just like I pictured it', 'jamie@jamiedubs.com', NULL, 'American computer programmer', 'jamiew', 0, 0, 486, 199, 0, 0, 0, '2008-03-01T19:46:05Z', '2024-09-14T02:02:29Z', 'https://avatars.githubusercontent.com/u/1903?v=4', 'https://api.github.com/users/jamiew', 'https://github.com/jamiew', 'https://api.github.com/users/jamiew/followers', 'https://api.github.com/users/jamiew/following', 'https://api.github.com/users/jamiew/gists', 'https://api.github.com/users/jamiew/starred', 'https://api.github.com/users/jamiew/repos', 'https://api.github.com/users/jamiew/events', 'https://api.github.com/users/jamiew/received_events', 0); +INSERT INTO `developer` VALUES (1904, 'tessro', 'C', 0, 0, 1, 0, 264, 31, 0, 'Tess Rosania', '@sierra-inc', '', 'San Francisco, CA', 'tess@rosania.org', NULL, '💁🏼‍♀️ Teaching machines to be helpful', NULL, 0, 0, 57, 18, 0, 0, 0, '2008-03-01T19:46:14Z', '2024-10-15T16:26:10Z', 'https://avatars.githubusercontent.com/u/1904?v=4', 'https://api.github.com/users/tessro', 'https://github.com/tessro', 'https://api.github.com/users/tessro/followers', 'https://api.github.com/users/tessro/following', 'https://api.github.com/users/tessro/gists', 'https://api.github.com/users/tessro/starred', 'https://api.github.com/users/tessro/repos', 'https://api.github.com/users/tessro/events', 'https://api.github.com/users/tessro/received_events', 0); +INSERT INTO `developer` VALUES (1905, 'kassoulet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gautier Portet', NULL, 'http://kassoulet.free.fr', 'Toulouse, France', 'kassoulet gmail.com', 'true', NULL, NULL, 0, 0, 14, 1, 0, 0, 0, '2008-03-01T20:44:21Z', '2024-10-30T15:44:38Z', 'https://avatars.githubusercontent.com/u/1905?v=4', 'https://api.github.com/users/kassoulet', 'https://github.com/kassoulet', 'https://api.github.com/users/kassoulet/followers', 'https://api.github.com/users/kassoulet/following', 'https://api.github.com/users/kassoulet/gists', 'https://api.github.com/users/kassoulet/starred', 'https://api.github.com/users/kassoulet/repos', 'https://api.github.com/users/kassoulet/events', 'https://api.github.com/users/kassoulet/received_events', 0); +INSERT INTO `developer` VALUES (1906, 'mikeocool', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike O\'Toole', NULL, 'http://himikeo.com', 'Brooklyn, NY', 'mike.otoole@gmail.com', NULL, 'CTO, Co-founder of Funnel Leasing ', NULL, 0, 0, 39, 13, 0, 0, 0, '2008-03-01T20:48:01Z', '2024-09-11T14:07:08Z', 'https://avatars.githubusercontent.com/u/1906?v=4', 'https://api.github.com/users/mikeocool', 'https://github.com/mikeocool', 'https://api.github.com/users/mikeocool/followers', 'https://api.github.com/users/mikeocool/following', 'https://api.github.com/users/mikeocool/gists', 'https://api.github.com/users/mikeocool/starred', 'https://api.github.com/users/mikeocool/repos', 'https://api.github.com/users/mikeocool/events', 'https://api.github.com/users/mikeocool/received_events', 0); +INSERT INTO `developer` VALUES (1907, 'sabman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shoaib Burq', '@decision-labs', 'https://geobase.app', 'Berlin, Germany', 'saburq@gmail.com', NULL, 'Building, Shiping, Sharing! |\r\nGeospatial Software Developer |\r\nBoard of Directors @hotosm | https://geobase.app | https://getgeodb.com', 'sabman', 0, 0, 0, 0, 0, 0, 0, '2008-03-01T20:49:09Z', '2024-11-04T07:33:07Z', 'https://avatars.githubusercontent.com/u/1907?v=4', 'https://api.github.com/users/sabman', 'https://github.com/sabman', 'https://api.github.com/users/sabman/followers', 'https://api.github.com/users/sabman/following', 'https://api.github.com/users/sabman/gists', 'https://api.github.com/users/sabman/starred', 'https://api.github.com/users/sabman/repos', 'https://api.github.com/users/sabman/events', 'https://api.github.com/users/sabman/received_events', 0); +INSERT INTO `developer` VALUES (1908, 'rubyisbeautiful', 'C', 0, 0, 0, 0, 0, 0, 0, 'bryan', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 16, 8, 0, 0, 0, '2008-03-01T20:50:54Z', '2024-11-02T20:04:45Z', 'https://avatars.githubusercontent.com/u/1908?v=4', 'https://api.github.com/users/rubyisbeautiful', 'https://github.com/rubyisbeautiful', 'https://api.github.com/users/rubyisbeautiful/followers', 'https://api.github.com/users/rubyisbeautiful/following', 'https://api.github.com/users/rubyisbeautiful/gists', 'https://api.github.com/users/rubyisbeautiful/starred', 'https://api.github.com/users/rubyisbeautiful/repos', 'https://api.github.com/users/rubyisbeautiful/events', 'https://api.github.com/users/rubyisbeautiful/received_events', 0); +INSERT INTO `developer` VALUES (1909, 'gutsbolts', 'C', 0, 0, 0, 0, 0, 0, 0, 'Theo Mills', 'Guts & Bolts LLC', '', 'Austin, TX', 'theo@gutsbolts.com', NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-01T21:00:33Z', '2020-01-25T23:31:32Z', 'https://avatars.githubusercontent.com/u/1909?v=4', 'https://api.github.com/users/gutsbolts', 'https://github.com/gutsbolts', 'https://api.github.com/users/gutsbolts/followers', 'https://api.github.com/users/gutsbolts/following', 'https://api.github.com/users/gutsbolts/gists', 'https://api.github.com/users/gutsbolts/starred', 'https://api.github.com/users/gutsbolts/repos', 'https://api.github.com/users/gutsbolts/events', 'https://api.github.com/users/gutsbolts/received_events', 0); +INSERT INTO `developer` VALUES (1910, 'caritos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eladio Caritos', NULL, 'http://eladio.caritos.com', '未知', 'eladio@caritos.com', 'true', NULL, NULL, 0, 0, 16, 49, 0, 0, 0, '2008-03-01T21:11:21Z', '2024-10-12T11:26:24Z', 'https://avatars.githubusercontent.com/u/1910?v=4', 'https://api.github.com/users/caritos', 'https://github.com/caritos', 'https://api.github.com/users/caritos/followers', 'https://api.github.com/users/caritos/following', 'https://api.github.com/users/caritos/gists', 'https://api.github.com/users/caritos/starred', 'https://api.github.com/users/caritos/repos', 'https://api.github.com/users/caritos/events', 'https://api.github.com/users/caritos/received_events', 0); +INSERT INTO `developer` VALUES (1911, 'Gevey', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-01T21:50:48Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1911?v=4', 'https://api.github.com/users/Gevey', 'https://github.com/Gevey', 'https://api.github.com/users/Gevey/followers', 'https://api.github.com/users/Gevey/following', 'https://api.github.com/users/Gevey/gists', 'https://api.github.com/users/Gevey/starred', 'https://api.github.com/users/Gevey/repos', 'https://api.github.com/users/Gevey/events', 'https://api.github.com/users/Gevey/received_events', 0); +INSERT INTO `developer` VALUES (1912, 'gassoy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'gassoy@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-01T22:04:21Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1912?v=4', 'https://api.github.com/users/gassoy', 'https://github.com/gassoy', 'https://api.github.com/users/gassoy/followers', 'https://api.github.com/users/gassoy/following', 'https://api.github.com/users/gassoy/gists', 'https://api.github.com/users/gassoy/starred', 'https://api.github.com/users/gassoy/repos', 'https://api.github.com/users/gassoy/events', 'https://api.github.com/users/gassoy/received_events', 0); +INSERT INTO `developer` VALUES (1913, 'ariejan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ariejan de Vroom', '@kabisa ', 'https://www.devroom.io', 'Breugel, The Netherlands', 'ariejan@devroom.io', NULL, 'Software Engineer', 'ariejan', 0, 0, 176, 6, 0, 0, 0, '2008-03-01T22:07:51Z', '2024-10-16T15:13:18Z', 'https://avatars.githubusercontent.com/u/1913?v=4', 'https://api.github.com/users/ariejan', 'https://github.com/ariejan', 'https://api.github.com/users/ariejan/followers', 'https://api.github.com/users/ariejan/following', 'https://api.github.com/users/ariejan/gists', 'https://api.github.com/users/ariejan/starred', 'https://api.github.com/users/ariejan/repos', 'https://api.github.com/users/ariejan/events', 'https://api.github.com/users/ariejan/received_events', 0); +INSERT INTO `developer` VALUES (1914, 'mhw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark H. Wilkinson', 'Dangerous Techniques Limited', 'https://dangerous-techniques.com/', 'York, UK', 'mhw@dangerous-techniques.com', 'true', NULL, 'mhw', 0, 0, 18, 25, 0, 0, 0, '2008-03-01T22:18:47Z', '2024-10-29T11:17:50Z', 'https://avatars.githubusercontent.com/u/1914?v=4', 'https://api.github.com/users/mhw', 'https://github.com/mhw', 'https://api.github.com/users/mhw/followers', 'https://api.github.com/users/mhw/following', 'https://api.github.com/users/mhw/gists', 'https://api.github.com/users/mhw/starred', 'https://api.github.com/users/mhw/repos', 'https://api.github.com/users/mhw/events', 'https://api.github.com/users/mhw/received_events', 0); +INSERT INTO `developer` VALUES (1915, 'kivikakk', 'C', 6.931138572144698, 0, 0, 0, 0, 0, 0, 'Asherah Connor', NULL, 'https://kivikakk.ee', 'Melbourne, Australia', 'ashe@kivikakk.ee', NULL, 'Systems engineer.', NULL, 0, 0, 689, 20, 0, 0, 0, '2008-03-01T22:27:00Z', '2024-11-04T09:39:21Z', 'https://avatars.githubusercontent.com/u/1915?v=4', 'https://api.github.com/users/kivikakk', 'https://github.com/kivikakk', 'https://api.github.com/users/kivikakk/followers', 'https://api.github.com/users/kivikakk/following', 'https://api.github.com/users/kivikakk/gists', 'https://api.github.com/users/kivikakk/starred', 'https://api.github.com/users/kivikakk/repos', 'https://api.github.com/users/kivikakk/events', 'https://api.github.com/users/kivikakk/received_events', 0); +INSERT INTO `developer` VALUES (1916, 'MighMoS', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Petaccia', NULL, 'http://mighmos.org', 'Greensboro, NC', NULL, NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-01T22:36:34Z', '2016-02-26T22:34:44Z', 'https://avatars.githubusercontent.com/u/1916?v=4', 'https://api.github.com/users/MighMoS', 'https://github.com/MighMoS', 'https://api.github.com/users/MighMoS/followers', 'https://api.github.com/users/MighMoS/following', 'https://api.github.com/users/MighMoS/gists', 'https://api.github.com/users/MighMoS/starred', 'https://api.github.com/users/MighMoS/repos', 'https://api.github.com/users/MighMoS/events', 'https://api.github.com/users/MighMoS/received_events', 0); +INSERT INTO `developer` VALUES (1917, 'bisho', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 42, 4, 0, 0, 0, '2008-03-01T22:59:02Z', '2024-09-10T07:45:40Z', 'https://avatars.githubusercontent.com/u/1917?v=4', 'https://api.github.com/users/bisho', 'https://github.com/bisho', 'https://api.github.com/users/bisho/followers', 'https://api.github.com/users/bisho/following', 'https://api.github.com/users/bisho/gists', 'https://api.github.com/users/bisho/starred', 'https://api.github.com/users/bisho/repos', 'https://api.github.com/users/bisho/events', 'https://api.github.com/users/bisho/received_events', 0); +INSERT INTO `developer` VALUES (1918, 'danderson', 'C', 8.920367284894109, 0, 0, 0, 0, 0, 0, 'Dave Anderson', NULL, 'https://www.dave.tf', 'Canada', NULL, NULL, NULL, NULL, 0, 0, 805, 2, 0, 0, 0, '2008-03-01T23:11:12Z', '2024-07-15T00:53:58Z', 'https://avatars.githubusercontent.com/u/1918?v=4', 'https://api.github.com/users/danderson', 'https://github.com/danderson', 'https://api.github.com/users/danderson/followers', 'https://api.github.com/users/danderson/following', 'https://api.github.com/users/danderson/gists', 'https://api.github.com/users/danderson/starred', 'https://api.github.com/users/danderson/repos', 'https://api.github.com/users/danderson/events', 'https://api.github.com/users/danderson/received_events', 0); +INSERT INTO `developer` VALUES (1919, 'bobuk', 'B-', 34.26588484906331, 0, 0, 0, 0, 0, 0, 'Grigory Bakunov', 'Oranges Team', 'https://addmeto.cc/', 'Kyiv, Ukraine', NULL, NULL, NULL, 'bobuk', 0, 0, 2283, 12, 0, 0, 0, '2008-03-01T23:24:20Z', '2024-11-04T13:01:37Z', 'https://avatars.githubusercontent.com/u/1919?v=4', 'https://api.github.com/users/bobuk', 'https://github.com/bobuk', 'https://api.github.com/users/bobuk/followers', 'https://api.github.com/users/bobuk/following', 'https://api.github.com/users/bobuk/gists', 'https://api.github.com/users/bobuk/starred', 'https://api.github.com/users/bobuk/repos', 'https://api.github.com/users/bobuk/events', 'https://api.github.com/users/bobuk/received_events', 0); +INSERT INTO `developer` VALUES (1920, 'defeated', 'C', 0, 0, 0, 0, 0, 0, 0, 'eddie cianci', '@litmus ', 'https://eddiecianci.info', 'NH, US', NULL, NULL, 'VP of Engineering @litmus. bad latte artist. uncanny hand-eye coordination. strong opinions weakly held. freely exchanging ideas since 1982. Father of Triplets.', 'DefeatEd', 0, 0, 45, 63, 0, 0, 0, '2008-03-01T23:25:41Z', '2024-10-30T14:48:01Z', 'https://avatars.githubusercontent.com/u/1920?v=4', 'https://api.github.com/users/defeated', 'https://github.com/defeated', 'https://api.github.com/users/defeated/followers', 'https://api.github.com/users/defeated/following', 'https://api.github.com/users/defeated/gists', 'https://api.github.com/users/defeated/starred', 'https://api.github.com/users/defeated/repos', 'https://api.github.com/users/defeated/events', 'https://api.github.com/users/defeated/received_events', 0); +INSERT INTO `developer` VALUES (1921, 'peterson', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Peterson', NULL, '', 'Canberra, Australia', 'dhpeterson@gmail.com', NULL, NULL, NULL, 0, 0, 32, 12, 0, 0, 0, '2008-03-02T00:18:48Z', '2024-01-01T09:45:38Z', 'https://avatars.githubusercontent.com/u/1921?v=4', 'https://api.github.com/users/peterson', 'https://github.com/peterson', 'https://api.github.com/users/peterson/followers', 'https://api.github.com/users/peterson/following', 'https://api.github.com/users/peterson/gists', 'https://api.github.com/users/peterson/starred', 'https://api.github.com/users/peterson/repos', 'https://api.github.com/users/peterson/events', 'https://api.github.com/users/peterson/received_events', 0); +INSERT INTO `developer` VALUES (1922, 'gabe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gabriel Boyer', NULL, 'http://gabrielboyer.com', '未知', 'gboyer@gmail.com', NULL, NULL, NULL, 0, 0, 9, 5, 0, 0, 0, '2008-03-02T00:39:30Z', '2024-02-06T07:00:29Z', 'https://avatars.githubusercontent.com/u/1922?v=4', 'https://api.github.com/users/gabe', 'https://github.com/gabe', 'https://api.github.com/users/gabe/followers', 'https://api.github.com/users/gabe/following', 'https://api.github.com/users/gabe/gists', 'https://api.github.com/users/gabe/starred', 'https://api.github.com/users/gabe/repos', 'https://api.github.com/users/gabe/events', 'https://api.github.com/users/gabe/received_events', 0); +INSERT INTO `developer` VALUES (1923, 'lethain', 'C', 1.3921655185407393, 0, 0, 0, 0, 0, 0, 'Will Larson', NULL, 'http://lethain.com', '未知', 'lethain@gmail.com', NULL, NULL, 'lethain', 0, 0, 366, 14, 0, 0, 0, '2008-03-02T00:47:00Z', '2024-10-09T17:59:34Z', 'https://avatars.githubusercontent.com/u/1923?v=4', 'https://api.github.com/users/lethain', 'https://github.com/lethain', 'https://api.github.com/users/lethain/followers', 'https://api.github.com/users/lethain/following', 'https://api.github.com/users/lethain/gists', 'https://api.github.com/users/lethain/starred', 'https://api.github.com/users/lethain/repos', 'https://api.github.com/users/lethain/events', 'https://api.github.com/users/lethain/received_events', 0); +INSERT INTO `developer` VALUES (1924, 'ua-ml', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-02T01:07:17Z', '2017-01-14T19:21:36Z', 'https://avatars.githubusercontent.com/u/1924?v=4', 'https://api.github.com/users/ua-ml', 'https://github.com/ua-ml', 'https://api.github.com/users/ua-ml/followers', 'https://api.github.com/users/ua-ml/following', 'https://api.github.com/users/ua-ml/gists', 'https://api.github.com/users/ua-ml/starred', 'https://api.github.com/users/ua-ml/repos', 'https://api.github.com/users/ua-ml/events', 'https://api.github.com/users/ua-ml/received_events', 0); +INSERT INTO `developer` VALUES (1925, 'x37llnoise', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-02T01:29:49Z', '2020-11-06T06:28:15Z', 'https://avatars.githubusercontent.com/u/1925?v=4', 'https://api.github.com/users/x37llnoise', 'https://github.com/x37llnoise', 'https://api.github.com/users/x37llnoise/followers', 'https://api.github.com/users/x37llnoise/following', 'https://api.github.com/users/x37llnoise/gists', 'https://api.github.com/users/x37llnoise/starred', 'https://api.github.com/users/x37llnoise/repos', 'https://api.github.com/users/x37llnoise/events', 'https://api.github.com/users/x37llnoise/received_events', 0); +INSERT INTO `developer` VALUES (1926, 'markryall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Ryall', NULL, 'https://markryall.github.io', 'Brisbane, Queensland, Australia', 'mark.ryall@gmail.com', NULL, NULL, NULL, 0, 0, 71, 8, 0, 0, 0, '2008-03-02T01:36:46Z', '2024-09-17T00:22:06Z', 'https://avatars.githubusercontent.com/u/1926?v=4', 'https://api.github.com/users/markryall', 'https://github.com/markryall', 'https://api.github.com/users/markryall/followers', 'https://api.github.com/users/markryall/following', 'https://api.github.com/users/markryall/gists', 'https://api.github.com/users/markryall/starred', 'https://api.github.com/users/markryall/repos', 'https://api.github.com/users/markryall/events', 'https://api.github.com/users/markryall/received_events', 0); +INSERT INTO `developer` VALUES (1927, 'guymeyer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guy ', NULL, 'guymeyer.com', 'United States', 'guy.meyer@gmail.com', NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-03-02T02:00:36Z', '2024-10-25T01:45:07Z', 'https://avatars.githubusercontent.com/u/1927?v=4', 'https://api.github.com/users/guymeyer', 'https://github.com/guymeyer', 'https://api.github.com/users/guymeyer/followers', 'https://api.github.com/users/guymeyer/following', 'https://api.github.com/users/guymeyer/gists', 'https://api.github.com/users/guymeyer/starred', 'https://api.github.com/users/guymeyer/repos', 'https://api.github.com/users/guymeyer/events', 'https://api.github.com/users/guymeyer/received_events', 0); +INSERT INTO `developer` VALUES (1929, 'ceball', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris B', NULL, '', '未知', NULL, NULL, '@pyviz \r\n@holoviz\r\n@ioam ', NULL, 0, 0, 45, 0, 0, 0, 0, '2008-03-02T02:13:08Z', '2024-10-10T09:37:04Z', 'https://avatars.githubusercontent.com/u/1929?v=4', 'https://api.github.com/users/ceball', 'https://github.com/ceball', 'https://api.github.com/users/ceball/followers', 'https://api.github.com/users/ceball/following', 'https://api.github.com/users/ceball/gists', 'https://api.github.com/users/ceball/starred', 'https://api.github.com/users/ceball/repos', 'https://api.github.com/users/ceball/events', 'https://api.github.com/users/ceball/received_events', 0); +INSERT INTO `developer` VALUES (1930, 'kbrock', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keenan Brock', 'IBM', 'http://thebrocks.net/', 'Westford, MA', 'keenan@thebrocks.net', NULL, 'I love my wife, my kids, and ruby.', 'kbrock', 0, 0, 89, 36, 0, 0, 0, '2008-03-02T02:14:02Z', '2024-06-22T19:18:32Z', 'https://avatars.githubusercontent.com/u/1930?v=4', 'https://api.github.com/users/kbrock', 'https://github.com/kbrock', 'https://api.github.com/users/kbrock/followers', 'https://api.github.com/users/kbrock/following', 'https://api.github.com/users/kbrock/gists', 'https://api.github.com/users/kbrock/starred', 'https://api.github.com/users/kbrock/repos', 'https://api.github.com/users/kbrock/events', 'https://api.github.com/users/kbrock/received_events', 0); +INSERT INTO `developer` VALUES (1931, 'jsanti', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jorge Santiago', NULL, '', 'Medellín, Colombia', NULL, NULL, NULL, NULL, 0, 0, 13, 10, 0, 0, 0, '2008-03-02T02:21:35Z', '2024-10-07T21:51:15Z', 'https://avatars.githubusercontent.com/u/1931?v=4', 'https://api.github.com/users/jsanti', 'https://github.com/jsanti', 'https://api.github.com/users/jsanti/followers', 'https://api.github.com/users/jsanti/following', 'https://api.github.com/users/jsanti/gists', 'https://api.github.com/users/jsanti/starred', 'https://api.github.com/users/jsanti/repos', 'https://api.github.com/users/jsanti/events', 'https://api.github.com/users/jsanti/received_events', 0); +INSERT INTO `developer` VALUES (1932, 'thelema', 'C', 0, 0, 0, 0, 0, 0, 0, 'Edgar Friendly', NULL, '', 'San Jose, CA, USA', NULL, NULL, NULL, NULL, 0, 0, 53, 9, 0, 0, 0, '2008-03-02T02:31:48Z', '2024-10-26T03:47:55Z', 'https://avatars.githubusercontent.com/u/1932?v=4', 'https://api.github.com/users/thelema', 'https://github.com/thelema', 'https://api.github.com/users/thelema/followers', 'https://api.github.com/users/thelema/following', 'https://api.github.com/users/thelema/gists', 'https://api.github.com/users/thelema/starred', 'https://api.github.com/users/thelema/repos', 'https://api.github.com/users/thelema/events', 'https://api.github.com/users/thelema/received_events', 0); +INSERT INTO `developer` VALUES (1933, 'metavida', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcos Wright-Kuhns', 'PagerDuty', 'https://marcos.wrightkuhns.com', 'Portland, OR', 'webmaster@wrightkuhns.com', NULL, NULL, NULL, 0, 0, 22, 4, 0, 0, 0, '2008-03-02T03:06:30Z', '2024-11-03T14:13:13Z', 'https://avatars.githubusercontent.com/u/1933?v=4', 'https://api.github.com/users/metavida', 'https://github.com/metavida', 'https://api.github.com/users/metavida/followers', 'https://api.github.com/users/metavida/following', 'https://api.github.com/users/metavida/gists', 'https://api.github.com/users/metavida/starred', 'https://api.github.com/users/metavida/repos', 'https://api.github.com/users/metavida/events', 'https://api.github.com/users/metavida/received_events', 0); +INSERT INTO `developer` VALUES (1934, 'dglazkov', 'C', 0.9977494806680113, 0, 0, 0, 0, 0, 0, 'Dimitri Glazkov', 'Google', 'http://glazkov.com/', 'Mountain View, CA', 'dimitri@glazkov.com', NULL, NULL, 'dglazkov', 0, 0, 343, 1, 0, 0, 0, '2008-03-02T04:03:55Z', '2024-08-03T06:12:46Z', 'https://avatars.githubusercontent.com/u/1934?v=4', 'https://api.github.com/users/dglazkov', 'https://github.com/dglazkov', 'https://api.github.com/users/dglazkov/followers', 'https://api.github.com/users/dglazkov/following', 'https://api.github.com/users/dglazkov/gists', 'https://api.github.com/users/dglazkov/starred', 'https://api.github.com/users/dglazkov/repos', 'https://api.github.com/users/dglazkov/events', 'https://api.github.com/users/dglazkov/received_events', 0); +INSERT INTO `developer` VALUES (1935, 'rares', 'C', 0, 0, 0, 0, 0, 0, 0, '(╯°□°)╯︵ ┻━┻', NULL, '', '未知', NULL, 'true', 'average vim enjoyer. ', NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-02T05:04:20Z', '2024-08-16T23:01:43Z', 'https://avatars.githubusercontent.com/u/1935?v=4', 'https://api.github.com/users/rares', 'https://github.com/rares', 'https://api.github.com/users/rares/followers', 'https://api.github.com/users/rares/following', 'https://api.github.com/users/rares/gists', 'https://api.github.com/users/rares/starred', 'https://api.github.com/users/rares/repos', 'https://api.github.com/users/rares/events', 'https://api.github.com/users/rares/received_events', 0); +INSERT INTO `developer` VALUES (1936, 'hello-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-02T05:19:19Z', '2016-02-26T22:34:44Z', 'https://avatars.githubusercontent.com/u/1936?v=4', 'https://api.github.com/users/hello-xx', 'https://github.com/hello-xx', 'https://api.github.com/users/hello-xx/followers', 'https://api.github.com/users/hello-xx/following', 'https://api.github.com/users/hello-xx/gists', 'https://api.github.com/users/hello-xx/starred', 'https://api.github.com/users/hello-xx/repos', 'https://api.github.com/users/hello-xx/events', 'https://api.github.com/users/hello-xx/received_events', 0); +INSERT INTO `developer` VALUES (1937, 'jmimick', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-02T05:19:50Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1937?v=4', 'https://api.github.com/users/jmimick', 'https://github.com/jmimick', 'https://api.github.com/users/jmimick/followers', 'https://api.github.com/users/jmimick/following', 'https://api.github.com/users/jmimick/gists', 'https://api.github.com/users/jmimick/starred', 'https://api.github.com/users/jmimick/repos', 'https://api.github.com/users/jmimick/events', 'https://api.github.com/users/jmimick/received_events', 0); +INSERT INTO `developer` VALUES (1938, 'eventualbuddha', 'C', 0.3804026387802636, 0, 0, 0, 0, 0, 0, 'Brian Donovan', '@votingworks', '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 307, 11, 0, 0, 0, '2008-03-02T05:23:27Z', '2024-10-02T04:04:28Z', 'https://avatars.githubusercontent.com/u/1938?v=4', 'https://api.github.com/users/eventualbuddha', 'https://github.com/eventualbuddha', 'https://api.github.com/users/eventualbuddha/followers', 'https://api.github.com/users/eventualbuddha/following', 'https://api.github.com/users/eventualbuddha/gists', 'https://api.github.com/users/eventualbuddha/starred', 'https://api.github.com/users/eventualbuddha/repos', 'https://api.github.com/users/eventualbuddha/events', 'https://api.github.com/users/eventualbuddha/received_events', 0); +INSERT INTO `developer` VALUES (1939, 'ricardocastro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ricardo Castro', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-02T05:35:01Z', '2024-10-31T13:56:59Z', 'https://avatars.githubusercontent.com/u/1939?v=4', 'https://api.github.com/users/ricardocastro', 'https://github.com/ricardocastro', 'https://api.github.com/users/ricardocastro/followers', 'https://api.github.com/users/ricardocastro/following', 'https://api.github.com/users/ricardocastro/gists', 'https://api.github.com/users/ricardocastro/starred', 'https://api.github.com/users/ricardocastro/repos', 'https://api.github.com/users/ricardocastro/events', 'https://api.github.com/users/ricardocastro/received_events', 0); +INSERT INTO `developer` VALUES (1940, 'georg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Georg Friedrich', NULL, '', 'Melbourne, Australia', NULL, NULL, NULL, NULL, 0, 0, 23, 33, 0, 0, 0, '2008-03-02T08:19:59Z', '2024-10-28T09:26:11Z', 'https://avatars.githubusercontent.com/u/1940?v=4', 'https://api.github.com/users/georg', 'https://github.com/georg', 'https://api.github.com/users/georg/followers', 'https://api.github.com/users/georg/following', 'https://api.github.com/users/georg/gists', 'https://api.github.com/users/georg/starred', 'https://api.github.com/users/georg/repos', 'https://api.github.com/users/georg/events', 'https://api.github.com/users/georg/received_events', 0); +INSERT INTO `developer` VALUES (1941, 'azabaj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ferenc Fekete', 'VeryCreatives', 'http://verycreatives.com', 'Budapest, Hungary', NULL, NULL, 'We work with founders, CEOs and CMOs to validate ideas, build the perfect digital experience and deliver revenue generating platforms.', NULL, 0, 0, 29, 11, 0, 0, 0, '2008-03-02T08:27:00Z', '2024-01-10T12:52:23Z', 'https://avatars.githubusercontent.com/u/1941?v=4', 'https://api.github.com/users/azabaj', 'https://github.com/azabaj', 'https://api.github.com/users/azabaj/followers', 'https://api.github.com/users/azabaj/following', 'https://api.github.com/users/azabaj/gists', 'https://api.github.com/users/azabaj/starred', 'https://api.github.com/users/azabaj/repos', 'https://api.github.com/users/azabaj/events', 'https://api.github.com/users/azabaj/received_events', 0); +INSERT INTO `developer` VALUES (1942, 'nickb', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-02T09:23:36Z', '2019-06-14T03:03:51Z', 'https://avatars.githubusercontent.com/u/1942?v=4', 'https://api.github.com/users/nickb', 'https://github.com/nickb', 'https://api.github.com/users/nickb/followers', 'https://api.github.com/users/nickb/following', 'https://api.github.com/users/nickb/gists', 'https://api.github.com/users/nickb/starred', 'https://api.github.com/users/nickb/repos', 'https://api.github.com/users/nickb/events', 'https://api.github.com/users/nickb/received_events', 0); +INSERT INTO `developer` VALUES (1943, 'majersee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian', 'Abloom OG', '', '未知', 'christian@abloom.at', NULL, NULL, NULL, 0, 0, 28, 1, 0, 0, 0, '2008-03-02T09:53:58Z', '2019-05-06T06:07:35Z', 'https://avatars.githubusercontent.com/u/1943?v=4', 'https://api.github.com/users/majersee', 'https://github.com/majersee', 'https://api.github.com/users/majersee/followers', 'https://api.github.com/users/majersee/following', 'https://api.github.com/users/majersee/gists', 'https://api.github.com/users/majersee/starred', 'https://api.github.com/users/majersee/repos', 'https://api.github.com/users/majersee/events', 'https://api.github.com/users/majersee/received_events', 0); +INSERT INTO `developer` VALUES (1944, 'philippamarkovics', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philippa Markovics', '@nextjournal ', 'http://twitter.com/unkai', 'Vienna, Austria', NULL, NULL, 'UI at http://nextjournal.com', 'unkai', 0, 0, 105, 4, 0, 0, 0, '2008-03-02T09:55:35Z', '2024-10-31T10:34:58Z', 'https://avatars.githubusercontent.com/u/1944?v=4', 'https://api.github.com/users/philippamarkovics', 'https://github.com/philippamarkovics', 'https://api.github.com/users/philippamarkovics/followers', 'https://api.github.com/users/philippamarkovics/following', 'https://api.github.com/users/philippamarkovics/gists', 'https://api.github.com/users/philippamarkovics/starred', 'https://api.github.com/users/philippamarkovics/repos', 'https://api.github.com/users/philippamarkovics/events', 'https://api.github.com/users/philippamarkovics/received_events', 0); +INSERT INTO `developer` VALUES (1945, 'casey', 'B+', 52.30613145089416, 0, 0, 0, 0, 0, 0, 'Casey Rodarmor', NULL, 'https://rodarmor.com', 'The Blue Planet', 'casey@rodarmor.com', NULL, '😻A N A R C H O ー ネ コ バ ス 😻', NULL, 0, 0, 3335, 17, 0, 0, 0, '2008-03-02T09:58:31Z', '2024-10-05T22:03:43Z', 'https://avatars.githubusercontent.com/u/1945?v=4', 'https://api.github.com/users/casey', 'https://github.com/casey', 'https://api.github.com/users/casey/followers', 'https://api.github.com/users/casey/following', 'https://api.github.com/users/casey/gists', 'https://api.github.com/users/casey/starred', 'https://api.github.com/users/casey/repos', 'https://api.github.com/users/casey/events', 'https://api.github.com/users/casey/received_events', 0); +INSERT INTO `developer` VALUES (1946, 'herrtreas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Wolff', NULL, 'http://andreaswolff.de', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 60, 15, 0, 0, 0, '2008-03-02T10:21:21Z', '2024-10-14T12:24:49Z', 'https://avatars.githubusercontent.com/u/1946?v=4', 'https://api.github.com/users/herrtreas', 'https://github.com/herrtreas', 'https://api.github.com/users/herrtreas/followers', 'https://api.github.com/users/herrtreas/following', 'https://api.github.com/users/herrtreas/gists', 'https://api.github.com/users/herrtreas/starred', 'https://api.github.com/users/herrtreas/repos', 'https://api.github.com/users/herrtreas/events', 'https://api.github.com/users/herrtreas/received_events', 0); +INSERT INTO `developer` VALUES (1947, 'smoofles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samo Korosec', 'smoofles industries', 'http://twitter.com/apochworks', 'Vienna, Austria', NULL, NULL, NULL, NULL, 0, 0, 25, 6, 0, 0, 0, '2008-03-02T10:25:30Z', '2024-10-16T08:34:37Z', 'https://avatars.githubusercontent.com/u/1947?v=4', 'https://api.github.com/users/smoofles', 'https://github.com/smoofles', 'https://api.github.com/users/smoofles/followers', 'https://api.github.com/users/smoofles/following', 'https://api.github.com/users/smoofles/gists', 'https://api.github.com/users/smoofles/starred', 'https://api.github.com/users/smoofles/repos', 'https://api.github.com/users/smoofles/events', 'https://api.github.com/users/smoofles/received_events', 0); +INSERT INTO `developer` VALUES (1948, 'code-later', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dirk Breuer', 'Freelancer', 'https://codelater.de', 'Bonn / Germany', NULL, 'true', 'Freelancer focused on Web application architecture and Ruby development. Love to cut apps into tiny pieces and put them back into a majestic monolith 🤘', NULL, 0, 0, 74, 14, 0, 0, 0, '2008-03-02T11:05:14Z', '2024-07-25T05:31:04Z', 'https://avatars.githubusercontent.com/u/1948?v=4', 'https://api.github.com/users/code-later', 'https://github.com/code-later', 'https://api.github.com/users/code-later/followers', 'https://api.github.com/users/code-later/following', 'https://api.github.com/users/code-later/gists', 'https://api.github.com/users/code-later/starred', 'https://api.github.com/users/code-later/repos', 'https://api.github.com/users/code-later/events', 'https://api.github.com/users/code-later/received_events', 0); +INSERT INTO `developer` VALUES (1949, 'mdinacci', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marco Dinacci', NULL, '', 'California, USA', 'marco.dinacci@gmail.com', NULL, NULL, NULL, 0, 0, 35, 3, 0, 0, 0, '2008-03-02T11:06:54Z', '2024-10-12T22:42:24Z', 'https://avatars.githubusercontent.com/u/1949?v=4', 'https://api.github.com/users/mdinacci', 'https://github.com/mdinacci', 'https://api.github.com/users/mdinacci/followers', 'https://api.github.com/users/mdinacci/following', 'https://api.github.com/users/mdinacci/gists', 'https://api.github.com/users/mdinacci/starred', 'https://api.github.com/users/mdinacci/repos', 'https://api.github.com/users/mdinacci/events', 'https://api.github.com/users/mdinacci/received_events', 0); +INSERT INTO `developer` VALUES (1950, 'hchbaw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Takeshi Banse', NULL, '', 'Tokyo, Japan', 'takebi@laafc.net', NULL, NULL, NULL, 0, 0, 69, 41, 0, 0, 0, '2008-03-02T12:38:32Z', '2020-07-15T16:33:21Z', 'https://avatars.githubusercontent.com/u/1950?v=4', 'https://api.github.com/users/hchbaw', 'https://github.com/hchbaw', 'https://api.github.com/users/hchbaw/followers', 'https://api.github.com/users/hchbaw/following', 'https://api.github.com/users/hchbaw/gists', 'https://api.github.com/users/hchbaw/starred', 'https://api.github.com/users/hchbaw/repos', 'https://api.github.com/users/hchbaw/events', 'https://api.github.com/users/hchbaw/received_events', 0); +INSERT INTO `developer` VALUES (1951, 'anton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Haglund', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 30, 16, 0, 0, 0, '2008-03-02T12:39:39Z', '2024-05-06T16:33:18Z', 'https://avatars.githubusercontent.com/u/1951?v=4', 'https://api.github.com/users/anton', 'https://github.com/anton', 'https://api.github.com/users/anton/followers', 'https://api.github.com/users/anton/following', 'https://api.github.com/users/anton/gists', 'https://api.github.com/users/anton/starred', 'https://api.github.com/users/anton/repos', 'https://api.github.com/users/anton/events', 'https://api.github.com/users/anton/received_events', 0); +INSERT INTO `developer` VALUES (1952, 'fastman', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 17, 11, 0, 0, 0, '2008-03-02T12:43:40Z', '2024-10-02T22:35:49Z', 'https://avatars.githubusercontent.com/u/1952?v=4', 'https://api.github.com/users/fastman', 'https://github.com/fastman', 'https://api.github.com/users/fastman/followers', 'https://api.github.com/users/fastman/following', 'https://api.github.com/users/fastman/gists', 'https://api.github.com/users/fastman/starred', 'https://api.github.com/users/fastman/repos', 'https://api.github.com/users/fastman/events', 'https://api.github.com/users/fastman/received_events', 0); +INSERT INTO `developer` VALUES (1953, 'dill', 'C', 0, 0, 0, 0, 0, 0, 0, 'DL Miller', NULL, 'http://converged.yt', 'Scotland', NULL, NULL, NULL, NULL, 0, 0, 171, 47, 0, 0, 0, '2008-03-02T13:47:19Z', '2024-10-08T18:00:50Z', 'https://avatars.githubusercontent.com/u/1953?v=4', 'https://api.github.com/users/dill', 'https://github.com/dill', 'https://api.github.com/users/dill/followers', 'https://api.github.com/users/dill/following', 'https://api.github.com/users/dill/gists', 'https://api.github.com/users/dill/starred', 'https://api.github.com/users/dill/repos', 'https://api.github.com/users/dill/events', 'https://api.github.com/users/dill/received_events', 0); +INSERT INTO `developer` VALUES (1954, 'abisani', 'C', 0, 0, 0, 0, 0, 0, 0, 'A Bisani', NULL, '', 'London', NULL, NULL, NULL, NULL, 0, 0, 9, 10, 0, 0, 0, '2008-03-02T13:50:48Z', '2024-08-30T10:16:53Z', 'https://avatars.githubusercontent.com/u/1954?v=4', 'https://api.github.com/users/abisani', 'https://github.com/abisani', 'https://api.github.com/users/abisani/followers', 'https://api.github.com/users/abisani/following', 'https://api.github.com/users/abisani/gists', 'https://api.github.com/users/abisani/starred', 'https://api.github.com/users/abisani/repos', 'https://api.github.com/users/abisani/events', 'https://api.github.com/users/abisani/received_events', 0); +INSERT INTO `developer` VALUES (1955, 'teddyzetterlund', 'C', 0, 0, 0, 0, 0, 0, 0, 'Teddy Zetterlund', '@citerus ', 'https://teddyzetterlund.com', 'Stockholm, Sweden', 'teddy.zetterlund@gmail.com', 'true', '\r\n Product Coach and Maker\r\n', 'teddyzetterlund', 0, 0, 31, 44, 0, 0, 0, '2008-03-02T15:03:09Z', '2024-11-01T13:42:39Z', 'https://avatars.githubusercontent.com/u/1955?v=4', 'https://api.github.com/users/teddyzetterlund', 'https://github.com/teddyzetterlund', 'https://api.github.com/users/teddyzetterlund/followers', 'https://api.github.com/users/teddyzetterlund/following', 'https://api.github.com/users/teddyzetterlund/gists', 'https://api.github.com/users/teddyzetterlund/starred', 'https://api.github.com/users/teddyzetterlund/repos', 'https://api.github.com/users/teddyzetterlund/events', 'https://api.github.com/users/teddyzetterlund/received_events', 0); +INSERT INTO `developer` VALUES (1956, 'blj', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-02T15:34:17Z', '2024-10-31T00:09:31Z', 'https://avatars.githubusercontent.com/u/1956?v=4', 'https://api.github.com/users/blj', 'https://github.com/blj', 'https://api.github.com/users/blj/followers', 'https://api.github.com/users/blj/following', 'https://api.github.com/users/blj/gists', 'https://api.github.com/users/blj/starred', 'https://api.github.com/users/blj/repos', 'https://api.github.com/users/blj/events', 'https://api.github.com/users/blj/received_events', 0); +INSERT INTO `developer` VALUES (1957, 'creator-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-02T16:21:19Z', '2016-02-26T22:34:45Z', 'https://avatars.githubusercontent.com/u/1957?v=4', 'https://api.github.com/users/creator-zz', 'https://github.com/creator-zz', 'https://api.github.com/users/creator-zz/followers', 'https://api.github.com/users/creator-zz/following', 'https://api.github.com/users/creator-zz/gists', 'https://api.github.com/users/creator-zz/starred', 'https://api.github.com/users/creator-zz/repos', 'https://api.github.com/users/creator-zz/events', 'https://api.github.com/users/creator-zz/received_events', 0); +INSERT INTO `developer` VALUES (1958, 'fitzage', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Fitzsimmons', 'Datadog', 'https://fitzage.com', 'Tucson, AZ', NULL, NULL, NULL, NULL, 0, 0, 45, 14, 0, 0, 0, '2008-03-02T16:40:46Z', '2024-10-23T20:52:21Z', 'https://avatars.githubusercontent.com/u/1958?v=4', 'https://api.github.com/users/fitzage', 'https://github.com/fitzage', 'https://api.github.com/users/fitzage/followers', 'https://api.github.com/users/fitzage/following', 'https://api.github.com/users/fitzage/gists', 'https://api.github.com/users/fitzage/starred', 'https://api.github.com/users/fitzage/repos', 'https://api.github.com/users/fitzage/events', 'https://api.github.com/users/fitzage/received_events', 0); +INSERT INTO `developer` VALUES (1959, 'mlizoain', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-02T16:54:17Z', '2016-07-06T17:43:41Z', 'https://avatars.githubusercontent.com/u/1959?v=4', 'https://api.github.com/users/mlizoain', 'https://github.com/mlizoain', 'https://api.github.com/users/mlizoain/followers', 'https://api.github.com/users/mlizoain/following', 'https://api.github.com/users/mlizoain/gists', 'https://api.github.com/users/mlizoain/starred', 'https://api.github.com/users/mlizoain/repos', 'https://api.github.com/users/mlizoain/events', 'https://api.github.com/users/mlizoain/received_events', 0); +INSERT INTO `developer` VALUES (1960, 'funkatron', 'C', 7.497039843875133, 0, 0, 0, 0, 0, 0, 'Ed Finkler', 'Funkatron Productions', 'http://funkatron.com', 'West Lafayette, Indiana USA', 'coj@funkatron.com', NULL, 'Technologist and Mental Health advocate. I am in a 30 year love affair with the web. I am pretty into data and Python too. Founder of @OSMIHelp ', NULL, 0, 0, 722, 24, 0, 0, 0, '2008-03-02T17:24:42Z', '2024-10-20T01:18:45Z', 'https://avatars.githubusercontent.com/u/1960?v=4', 'https://api.github.com/users/funkatron', 'https://github.com/funkatron', 'https://api.github.com/users/funkatron/followers', 'https://api.github.com/users/funkatron/following', 'https://api.github.com/users/funkatron/gists', 'https://api.github.com/users/funkatron/starred', 'https://api.github.com/users/funkatron/repos', 'https://api.github.com/users/funkatron/events', 'https://api.github.com/users/funkatron/received_events', 0); +INSERT INTO `developer` VALUES (1961, 'crshle', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-02T18:56:07Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1961?v=4', 'https://api.github.com/users/crshle', 'https://github.com/crshle', 'https://api.github.com/users/crshle/followers', 'https://api.github.com/users/crshle/following', 'https://api.github.com/users/crshle/gists', 'https://api.github.com/users/crshle/starred', 'https://api.github.com/users/crshle/repos', 'https://api.github.com/users/crshle/events', 'https://api.github.com/users/crshle/received_events', 0); +INSERT INTO `developer` VALUES (1962, 'wesroe', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-02T18:57:38Z', '2020-09-18T20:51:05Z', 'https://avatars.githubusercontent.com/u/1962?v=4', 'https://api.github.com/users/wesroe', 'https://github.com/wesroe', 'https://api.github.com/users/wesroe/followers', 'https://api.github.com/users/wesroe/following', 'https://api.github.com/users/wesroe/gists', 'https://api.github.com/users/wesroe/starred', 'https://api.github.com/users/wesroe/repos', 'https://api.github.com/users/wesroe/events', 'https://api.github.com/users/wesroe/received_events', 0); +INSERT INTO `developer` VALUES (1963, 'rphillips', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Phillips', 'Red Hat', '', 'Austin, TX', 'rphillips@redhat.com', NULL, NULL, NULL, 0, 0, 179, 87, 0, 0, 0, '2008-03-02T19:00:27Z', '2024-10-17T02:45:59Z', 'https://avatars.githubusercontent.com/u/1963?v=4', 'https://api.github.com/users/rphillips', 'https://github.com/rphillips', 'https://api.github.com/users/rphillips/followers', 'https://api.github.com/users/rphillips/following', 'https://api.github.com/users/rphillips/gists', 'https://api.github.com/users/rphillips/starred', 'https://api.github.com/users/rphillips/repos', 'https://api.github.com/users/rphillips/events', 'https://api.github.com/users/rphillips/received_events', 0); +INSERT INTO `developer` VALUES (1964, 'lincolnloop', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lincoln Loop', NULL, 'http://lincolnloop.com', '未知', 'info@lincolnloop.com', NULL, 'Makers of high performance web applications.', NULL, 0, 0, 69, 0, 0, 0, 0, '2008-03-02T19:14:33Z', '2024-09-12T19:36:37Z', 'https://avatars.githubusercontent.com/u/1964?v=4', 'https://api.github.com/users/lincolnloop', 'https://github.com/lincolnloop', 'https://api.github.com/users/lincolnloop/followers', 'https://api.github.com/users/lincolnloop/following', 'https://api.github.com/users/lincolnloop/gists', 'https://api.github.com/users/lincolnloop/starred', 'https://api.github.com/users/lincolnloop/repos', 'https://api.github.com/users/lincolnloop/events', 'https://api.github.com/users/lincolnloop/received_events', 0); +INSERT INTO `developer` VALUES (1965, 'bsenyk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Borys Senyk', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 2, 0, 0, 0, '2008-03-02T19:31:02Z', '2024-09-10T04:02:23Z', 'https://avatars.githubusercontent.com/u/1965?v=4', 'https://api.github.com/users/bsenyk', 'https://github.com/bsenyk', 'https://api.github.com/users/bsenyk/followers', 'https://api.github.com/users/bsenyk/following', 'https://api.github.com/users/bsenyk/gists', 'https://api.github.com/users/bsenyk/starred', 'https://api.github.com/users/bsenyk/repos', 'https://api.github.com/users/bsenyk/events', 'https://api.github.com/users/bsenyk/received_events', 0); +INSERT INTO `developer` VALUES (1966, 'eoghanmccabe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eoghan McCabe', 'Intercom', 'http://blog.intercom.io/', 'San Francisco, CA', 'eoghan@intercom.io', NULL, NULL, NULL, 0, 0, 12, 5, 0, 0, 0, '2008-03-02T19:32:48Z', '2016-05-05T17:41:15Z', 'https://avatars.githubusercontent.com/u/1966?v=4', 'https://api.github.com/users/eoghanmccabe', 'https://github.com/eoghanmccabe', 'https://api.github.com/users/eoghanmccabe/followers', 'https://api.github.com/users/eoghanmccabe/following', 'https://api.github.com/users/eoghanmccabe/gists', 'https://api.github.com/users/eoghanmccabe/starred', 'https://api.github.com/users/eoghanmccabe/repos', 'https://api.github.com/users/eoghanmccabe/events', 'https://api.github.com/users/eoghanmccabe/received_events', 0); +INSERT INTO `developer` VALUES (1967, 'esanchma', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 10, 0, 0, 0, '2008-03-02T19:53:42Z', '2024-10-08T00:58:15Z', 'https://avatars.githubusercontent.com/u/1967?v=4', 'https://api.github.com/users/esanchma', 'https://github.com/esanchma', 'https://api.github.com/users/esanchma/followers', 'https://api.github.com/users/esanchma/following', 'https://api.github.com/users/esanchma/gists', 'https://api.github.com/users/esanchma/starred', 'https://api.github.com/users/esanchma/repos', 'https://api.github.com/users/esanchma/events', 'https://api.github.com/users/esanchma/received_events', 0); +INSERT INTO `developer` VALUES (1968, 'pfeilbr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Pfeil', NULL, 'https://brianpfeil.com', 'Philadelphia, PA', NULL, 'true', NULL, NULL, 0, 0, 54, 44, 0, 0, 0, '2008-03-02T19:57:03Z', '2024-09-29T20:09:28Z', 'https://avatars.githubusercontent.com/u/1968?v=4', 'https://api.github.com/users/pfeilbr', 'https://github.com/pfeilbr', 'https://api.github.com/users/pfeilbr/followers', 'https://api.github.com/users/pfeilbr/following', 'https://api.github.com/users/pfeilbr/gists', 'https://api.github.com/users/pfeilbr/starred', 'https://api.github.com/users/pfeilbr/repos', 'https://api.github.com/users/pfeilbr/events', 'https://api.github.com/users/pfeilbr/received_events', 0); +INSERT INTO `developer` VALUES (1969, 'goldenmeanie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Taylor', NULL, '', 'Providence, Rhode Island', NULL, NULL, 'I make things better than they were.', NULL, 0, 0, 30, 18, 0, 0, 0, '2008-03-02T20:00:33Z', '2024-10-17T12:20:03Z', 'https://avatars.githubusercontent.com/u/1969?v=4', 'https://api.github.com/users/goldenmeanie', 'https://github.com/goldenmeanie', 'https://api.github.com/users/goldenmeanie/followers', 'https://api.github.com/users/goldenmeanie/following', 'https://api.github.com/users/goldenmeanie/gists', 'https://api.github.com/users/goldenmeanie/starred', 'https://api.github.com/users/goldenmeanie/repos', 'https://api.github.com/users/goldenmeanie/events', 'https://api.github.com/users/goldenmeanie/received_events', 0); +INSERT INTO `developer` VALUES (1970, 'mgrajcarek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maciej Grajcarek', '@inelo', '', 'Bielsko-Biała', 'mgrajcarek@gmail.com', NULL, NULL, NULL, 0, 0, 37, 30, 0, 0, 0, '2008-03-02T21:31:05Z', '2023-03-22T19:36:08Z', 'https://avatars.githubusercontent.com/u/1970?v=4', 'https://api.github.com/users/mgrajcarek', 'https://github.com/mgrajcarek', 'https://api.github.com/users/mgrajcarek/followers', 'https://api.github.com/users/mgrajcarek/following', 'https://api.github.com/users/mgrajcarek/gists', 'https://api.github.com/users/mgrajcarek/starred', 'https://api.github.com/users/mgrajcarek/repos', 'https://api.github.com/users/mgrajcarek/events', 'https://api.github.com/users/mgrajcarek/received_events', 0); +INSERT INTO `developer` VALUES (1971, 'davidjrice', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Rice', NULL, '', 'Northern Ireland', 'me@davidjrice.co.uk', NULL, NULL, 'davidjrice', 0, 0, 99, 7, 0, 0, 0, '2008-03-02T22:00:43Z', '2024-05-15T08:20:05Z', 'https://avatars.githubusercontent.com/u/1971?v=4', 'https://api.github.com/users/davidjrice', 'https://github.com/davidjrice', 'https://api.github.com/users/davidjrice/followers', 'https://api.github.com/users/davidjrice/following', 'https://api.github.com/users/davidjrice/gists', 'https://api.github.com/users/davidjrice/starred', 'https://api.github.com/users/davidjrice/repos', 'https://api.github.com/users/davidjrice/events', 'https://api.github.com/users/davidjrice/received_events', 0); +INSERT INTO `developer` VALUES (1972, 'mg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Magnús Örn Gylfason', NULL, '', 'Reykjavík', 'magnus.gylfason@gmail.com', NULL, NULL, NULL, 0, 0, 46, 17, 0, 0, 0, '2008-03-02T22:12:23Z', '2024-06-08T17:26:42Z', 'https://avatars.githubusercontent.com/u/1972?v=4', 'https://api.github.com/users/mg', 'https://github.com/mg', 'https://api.github.com/users/mg/followers', 'https://api.github.com/users/mg/following', 'https://api.github.com/users/mg/gists', 'https://api.github.com/users/mg/starred', 'https://api.github.com/users/mg/repos', 'https://api.github.com/users/mg/events', 'https://api.github.com/users/mg/received_events', 0); +INSERT INTO `developer` VALUES (1973, 'will', 'C', 7.35985165678897, 0, 0, 0, 0, 0, 0, 'Will Leinweber', NULL, 'http://bitfission.com', '未知', NULL, NULL, '                    ه҈ͣفͤ҈ͥ҉ͦ҈ͧ҉ͨ҈ͩ҉ͪ҈ͫ҉ͬ҈ͭ҉ͮ҈ͯ҉ͨ҈ͬ҉ͧ҈ͣ҉ͨ҈ͧ҉ͯ҈ͮ҉ͭ҈ͤ҉ͦ҈ͥ҉ͧ҈ͩ҉ͭ҈ͨ҉ͣ҈ͪ҉ͧ҈ͭ҉ͩ҈ͤ҉ͮ҈ͯ҉ͬ҈ͭ҉ͦ҈ͨ҉ͥ҈ͯ҉ͧ҈ͫ҉ͭ҈ͯ҉ͦ҈ͥ҉ͧ҈ͩ҉ͭ҈ͨ҉ͣ҈ͪ҉ͧ҈ͭ҉ͩ҈ͤ҉ͮ҈ͯ҉ͧ҈ͣ҉ͨ҈ͧ҉ͯ҈ͮ҉ͭ҈ͤ҉', NULL, 0, 0, 714, 0, 0, 0, 0, '2008-03-02T22:29:17Z', '2024-10-31T09:30:20Z', 'https://avatars.githubusercontent.com/u/1973?v=4', 'https://api.github.com/users/will', 'https://github.com/will', 'https://api.github.com/users/will/followers', 'https://api.github.com/users/will/following', 'https://api.github.com/users/will/gists', 'https://api.github.com/users/will/starred', 'https://api.github.com/users/will/repos', 'https://api.github.com/users/will/events', 'https://api.github.com/users/will/received_events', 0); +INSERT INTO `developer` VALUES (1974, 'infininight', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Sheets', 'MacroMates', '', 'Alabama', NULL, NULL, NULL, 'Infininight', 0, 0, 87, 1, 0, 0, 0, '2008-03-03T00:24:12Z', '2024-06-10T16:13:11Z', 'https://avatars.githubusercontent.com/u/1974?v=4', 'https://api.github.com/users/infininight', 'https://github.com/infininight', 'https://api.github.com/users/infininight/followers', 'https://api.github.com/users/infininight/following', 'https://api.github.com/users/infininight/gists', 'https://api.github.com/users/infininight/starred', 'https://api.github.com/users/infininight/repos', 'https://api.github.com/users/infininight/events', 'https://api.github.com/users/infininight/received_events', 0); +INSERT INTO `developer` VALUES (1975, 'dragaroo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-03T00:26:33Z', '2021-05-23T14:25:13Z', 'https://avatars.githubusercontent.com/u/1975?v=4', 'https://api.github.com/users/dragaroo', 'https://github.com/dragaroo', 'https://api.github.com/users/dragaroo/followers', 'https://api.github.com/users/dragaroo/following', 'https://api.github.com/users/dragaroo/gists', 'https://api.github.com/users/dragaroo/starred', 'https://api.github.com/users/dragaroo/repos', 'https://api.github.com/users/dragaroo/events', 'https://api.github.com/users/dragaroo/received_events', 0); +INSERT INTO `developer` VALUES (1976, 'sqs', 'C', 9.829239024339959, 0, 0, 0, 0, 0, 0, 'Quinn Slack', '@Sourcegraph', 'https://slack.org', 'San Francisco, CA', 'quinn@slack.org', NULL, NULL, 'sqs', 0, 0, 858, 155, 0, 0, 0, '2008-03-03T00:29:51Z', '2024-10-18T18:53:39Z', 'https://avatars.githubusercontent.com/u/1976?v=4', 'https://api.github.com/users/sqs', 'https://github.com/sqs', 'https://api.github.com/users/sqs/followers', 'https://api.github.com/users/sqs/following', 'https://api.github.com/users/sqs/gists', 'https://api.github.com/users/sqs/starred', 'https://api.github.com/users/sqs/repos', 'https://api.github.com/users/sqs/events', 'https://api.github.com/users/sqs/received_events', 0); +INSERT INTO `developer` VALUES (1977, 'mjc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mika Cohen', NULL, '', 'Denver, CO', NULL, 'true', NULL, 'projct', 0, 0, 44, 191, 0, 0, 0, '2008-03-03T02:22:25Z', '2024-10-14T23:32:45Z', 'https://avatars.githubusercontent.com/u/1977?v=4', 'https://api.github.com/users/mjc', 'https://github.com/mjc', 'https://api.github.com/users/mjc/followers', 'https://api.github.com/users/mjc/following', 'https://api.github.com/users/mjc/gists', 'https://api.github.com/users/mjc/starred', 'https://api.github.com/users/mjc/repos', 'https://api.github.com/users/mjc/events', 'https://api.github.com/users/mjc/received_events', 0); +INSERT INTO `developer` VALUES (1978, 'aadvaark', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samuel Rajkumar', '@foundation-for-environmental-monitoring', 'http://ffem.io', 'Bangalore', 'srajkumar@ternup.com', NULL, NULL, NULL, 0, 0, 28, 29, 0, 0, 0, '2008-03-03T03:04:52Z', '2024-09-11T08:36:41Z', 'https://avatars.githubusercontent.com/u/1978?v=4', 'https://api.github.com/users/aadvaark', 'https://github.com/aadvaark', 'https://api.github.com/users/aadvaark/followers', 'https://api.github.com/users/aadvaark/following', 'https://api.github.com/users/aadvaark/gists', 'https://api.github.com/users/aadvaark/starred', 'https://api.github.com/users/aadvaark/repos', 'https://api.github.com/users/aadvaark/events', 'https://api.github.com/users/aadvaark/received_events', 0); +INSERT INTO `developer` VALUES (1979, 'jonleighton', 'C', 2.4039283983012147, 0, 0, 0, 0, 0, 0, 'Jon Leighton', NULL, 'https://jonleighton.name', 'Australia', NULL, 'true', NULL, NULL, 0, 0, 425, 0, 0, 0, 0, '2008-03-03T03:16:47Z', '2024-11-04T22:38:11Z', 'https://avatars.githubusercontent.com/u/1979?v=4', 'https://api.github.com/users/jonleighton', 'https://github.com/jonleighton', 'https://api.github.com/users/jonleighton/followers', 'https://api.github.com/users/jonleighton/following', 'https://api.github.com/users/jonleighton/gists', 'https://api.github.com/users/jonleighton/starred', 'https://api.github.com/users/jonleighton/repos', 'https://api.github.com/users/jonleighton/events', 'https://api.github.com/users/jonleighton/received_events', 0); +INSERT INTO `developer` VALUES (1981, 'clim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Lim', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-03-03T03:58:56Z', '2024-10-08T11:19:22Z', 'https://avatars.githubusercontent.com/u/1981?v=4', 'https://api.github.com/users/clim', 'https://github.com/clim', 'https://api.github.com/users/clim/followers', 'https://api.github.com/users/clim/following', 'https://api.github.com/users/clim/gists', 'https://api.github.com/users/clim/starred', 'https://api.github.com/users/clim/repos', 'https://api.github.com/users/clim/events', 'https://api.github.com/users/clim/received_events', 0); +INSERT INTO `developer` VALUES (1982, 'markjeee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark John Buenconsejo', 'Next Level, Synacy', 'http://markjeee.github.io', 'Cebu, Philippines', 'hi@markjeee.com', 'true', 'A software engineer, an advisor, a facilitator, and an entrepreneur. ', NULL, 0, 0, 47, 15, 0, 0, 0, '2008-03-03T03:59:38Z', '2024-08-26T07:22:50Z', 'https://avatars.githubusercontent.com/u/1982?v=4', 'https://api.github.com/users/markjeee', 'https://github.com/markjeee', 'https://api.github.com/users/markjeee/followers', 'https://api.github.com/users/markjeee/following', 'https://api.github.com/users/markjeee/gists', 'https://api.github.com/users/markjeee/starred', 'https://api.github.com/users/markjeee/repos', 'https://api.github.com/users/markjeee/events', 'https://api.github.com/users/markjeee/received_events', 0); +INSERT INTO `developer` VALUES (1983, 'jjonphl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Miguel Manese', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 15, 0, 0, 0, '2008-03-03T04:18:45Z', '2024-02-04T13:43:28Z', 'https://avatars.githubusercontent.com/u/1983?v=4', 'https://api.github.com/users/jjonphl', 'https://github.com/jjonphl', 'https://api.github.com/users/jjonphl/followers', 'https://api.github.com/users/jjonphl/following', 'https://api.github.com/users/jjonphl/gists', 'https://api.github.com/users/jjonphl/starred', 'https://api.github.com/users/jjonphl/repos', 'https://api.github.com/users/jjonphl/events', 'https://api.github.com/users/jjonphl/received_events', 0); +INSERT INTO `developer` VALUES (1984, 'jermaustin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Boyd', 'Humankind, Inc.', 'jeremyaboyd.com', 'Friendswood Tx', 'jboyd@infinicastonline.com', NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-03T06:21:27Z', '2017-01-10T14:53:00Z', 'https://avatars.githubusercontent.com/u/1984?v=4', 'https://api.github.com/users/jermaustin', 'https://github.com/jermaustin', 'https://api.github.com/users/jermaustin/followers', 'https://api.github.com/users/jermaustin/following', 'https://api.github.com/users/jermaustin/gists', 'https://api.github.com/users/jermaustin/starred', 'https://api.github.com/users/jermaustin/repos', 'https://api.github.com/users/jermaustin/events', 'https://api.github.com/users/jermaustin/received_events', 0); +INSERT INTO `developer` VALUES (1985, 'konakona', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-03T06:35:01Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1985?v=4', 'https://api.github.com/users/konakona', 'https://github.com/konakona', 'https://api.github.com/users/konakona/followers', 'https://api.github.com/users/konakona/following', 'https://api.github.com/users/konakona/gists', 'https://api.github.com/users/konakona/starred', 'https://api.github.com/users/konakona/repos', 'https://api.github.com/users/konakona/events', 'https://api.github.com/users/konakona/received_events', 0); +INSERT INTO `developer` VALUES (1986, 'greyfade', 'C', 0, 0, 0, 0, 173, 3, 0, 'Charles Banas', NULL, '', 'Seattle, WA', 'greyfade@gmail.com', NULL, NULL, NULL, 0, 0, 20, 19, 0, 0, 0, '2008-03-03T06:37:53Z', '2024-09-19T21:15:07Z', 'https://avatars.githubusercontent.com/u/1986?v=4', 'https://api.github.com/users/greyfade', 'https://github.com/greyfade', 'https://api.github.com/users/greyfade/followers', 'https://api.github.com/users/greyfade/following', 'https://api.github.com/users/greyfade/gists', 'https://api.github.com/users/greyfade/starred', 'https://api.github.com/users/greyfade/repos', 'https://api.github.com/users/greyfade/events', 'https://api.github.com/users/greyfade/received_events', 0); +INSERT INTO `developer` VALUES (1987, 'trogger', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-03T06:52:46Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1987?v=4', 'https://api.github.com/users/trogger', 'https://github.com/trogger', 'https://api.github.com/users/trogger/followers', 'https://api.github.com/users/trogger/following', 'https://api.github.com/users/trogger/gists', 'https://api.github.com/users/trogger/starred', 'https://api.github.com/users/trogger/repos', 'https://api.github.com/users/trogger/events', 'https://api.github.com/users/trogger/received_events', 0); +INSERT INTO `developer` VALUES (1988, 'harm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harm de Laat', 'Kabisa', 'kabisa.nl', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-03T07:53:23Z', '2024-09-20T09:41:19Z', 'https://avatars.githubusercontent.com/u/1988?v=4', 'https://api.github.com/users/harm', 'https://github.com/harm', 'https://api.github.com/users/harm/followers', 'https://api.github.com/users/harm/following', 'https://api.github.com/users/harm/gists', 'https://api.github.com/users/harm/starred', 'https://api.github.com/users/harm/repos', 'https://api.github.com/users/harm/events', 'https://api.github.com/users/harm/received_events', 0); +INSERT INTO `developer` VALUES (1989, 'jordanfowler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jordan Fowler', NULL, 'https://jordanfowler.co', 'Missoula, MT (USA)', 'me@jordanfowler.co', 'true', 'Building @datakit-dev !!', 'jordanfowler_', 0, 0, 24, 8, 0, 0, 0, '2008-03-03T08:26:48Z', '2024-10-20T17:17:49Z', 'https://avatars.githubusercontent.com/u/1989?v=4', 'https://api.github.com/users/jordanfowler', 'https://github.com/jordanfowler', 'https://api.github.com/users/jordanfowler/followers', 'https://api.github.com/users/jordanfowler/following', 'https://api.github.com/users/jordanfowler/gists', 'https://api.github.com/users/jordanfowler/starred', 'https://api.github.com/users/jordanfowler/repos', 'https://api.github.com/users/jordanfowler/events', 'https://api.github.com/users/jordanfowler/received_events', 0); +INSERT INTO `developer` VALUES (1990, 'davidolrik', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Jack Wange Olrik', '@OlrikIT', 'https://david.olrik.dk', 'Denmark', 'david@olrik.dk', 'true', '\r\n \r\n Artifex & Automation aficionado\r\n\r\n', 'davidolrik', 0, 0, 29, 17, 0, 0, 0, '2008-03-03T08:36:11Z', '2024-10-18T17:10:26Z', 'https://avatars.githubusercontent.com/u/1990?v=4', 'https://api.github.com/users/davidolrik', 'https://github.com/davidolrik', 'https://api.github.com/users/davidolrik/followers', 'https://api.github.com/users/davidolrik/following', 'https://api.github.com/users/davidolrik/gists', 'https://api.github.com/users/davidolrik/starred', 'https://api.github.com/users/davidolrik/repos', 'https://api.github.com/users/davidolrik/events', 'https://api.github.com/users/davidolrik/received_events', 0); +INSERT INTO `developer` VALUES (1991, 'aungur', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-03T09:04:18Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1991?v=4', 'https://api.github.com/users/aungur', 'https://github.com/aungur', 'https://api.github.com/users/aungur/followers', 'https://api.github.com/users/aungur/following', 'https://api.github.com/users/aungur/gists', 'https://api.github.com/users/aungur/starred', 'https://api.github.com/users/aungur/repos', 'https://api.github.com/users/aungur/events', 'https://api.github.com/users/aungur/received_events', 0); +INSERT INTO `developer` VALUES (1992, 'MamaTux', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gitte Olrik', 'Fitness Engros', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-03T09:18:31Z', '2024-09-24T12:54:50Z', 'https://avatars.githubusercontent.com/u/1992?v=4', 'https://api.github.com/users/MamaTux', 'https://github.com/MamaTux', 'https://api.github.com/users/MamaTux/followers', 'https://api.github.com/users/MamaTux/following', 'https://api.github.com/users/MamaTux/gists', 'https://api.github.com/users/MamaTux/starred', 'https://api.github.com/users/MamaTux/repos', 'https://api.github.com/users/MamaTux/events', 'https://api.github.com/users/MamaTux/received_events', 0); +INSERT INTO `developer` VALUES (1993, 'aurelijus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aurelijus Valeiša', NULL, 'http://aurelijus.eu', 'Lithuania', 'aurelijus@astdev.lt', NULL, NULL, NULL, 0, 0, 20, 4, 0, 0, 0, '2008-03-03T09:25:31Z', '2021-11-10T09:14:20Z', 'https://avatars.githubusercontent.com/u/1993?v=4', 'https://api.github.com/users/aurelijus', 'https://github.com/aurelijus', 'https://api.github.com/users/aurelijus/followers', 'https://api.github.com/users/aurelijus/following', 'https://api.github.com/users/aurelijus/gists', 'https://api.github.com/users/aurelijus/starred', 'https://api.github.com/users/aurelijus/repos', 'https://api.github.com/users/aurelijus/events', 'https://api.github.com/users/aurelijus/received_events', 0); +INSERT INTO `developer` VALUES (1994, 'kavu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Max Riveiro', NULL, '', '未知', 'horned@kavu.dev', NULL, NULL, NULL, 0, 0, 176, 132, 0, 0, 0, '2008-03-03T09:31:10Z', '2024-09-09T21:09:11Z', 'https://avatars.githubusercontent.com/u/1994?v=4', 'https://api.github.com/users/kavu', 'https://github.com/kavu', 'https://api.github.com/users/kavu/followers', 'https://api.github.com/users/kavu/following', 'https://api.github.com/users/kavu/gists', 'https://api.github.com/users/kavu/starred', 'https://api.github.com/users/kavu/repos', 'https://api.github.com/users/kavu/events', 'https://api.github.com/users/kavu/received_events', 0); +INSERT INTO `developer` VALUES (1995, 'kaiw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kai Willadsen', NULL, 'kaiw.github.com', 'Brisbane, Australia', NULL, NULL, NULL, NULL, 0, 0, 27, 0, 0, 0, 0, '2008-03-03T09:31:37Z', '2024-08-15T00:12:30Z', 'https://avatars.githubusercontent.com/u/1995?v=4', 'https://api.github.com/users/kaiw', 'https://github.com/kaiw', 'https://api.github.com/users/kaiw/followers', 'https://api.github.com/users/kaiw/following', 'https://api.github.com/users/kaiw/gists', 'https://api.github.com/users/kaiw/starred', 'https://api.github.com/users/kaiw/repos', 'https://api.github.com/users/kaiw/events', 'https://api.github.com/users/kaiw/received_events', 0); +INSERT INTO `developer` VALUES (1996, 'kabturek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcin Domański', NULL, 'http://kabturek.info', 'Warsaw, Poland', NULL, NULL, NULL, NULL, 0, 0, 19, 20, 0, 0, 0, '2008-03-03T09:33:01Z', '2024-04-29T14:09:38Z', 'https://avatars.githubusercontent.com/u/1996?v=4', 'https://api.github.com/users/kabturek', 'https://github.com/kabturek', 'https://api.github.com/users/kabturek/followers', 'https://api.github.com/users/kabturek/following', 'https://api.github.com/users/kabturek/gists', 'https://api.github.com/users/kabturek/starred', 'https://api.github.com/users/kabturek/repos', 'https://api.github.com/users/kabturek/events', 'https://api.github.com/users/kabturek/received_events', 0); +INSERT INTO `developer` VALUES (1997, 'mrfelcio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Félix Cachaldora Sánchez', NULL, 'www.felixcachaldorasanchez.com', 'Krakow', NULL, NULL, NULL, NULL, 0, 0, 37, 73, 0, 0, 0, '2008-03-03T09:59:57Z', '2024-10-14T09:39:30Z', 'https://avatars.githubusercontent.com/u/1997?v=4', 'https://api.github.com/users/mrfelcio', 'https://github.com/mrfelcio', 'https://api.github.com/users/mrfelcio/followers', 'https://api.github.com/users/mrfelcio/following', 'https://api.github.com/users/mrfelcio/gists', 'https://api.github.com/users/mrfelcio/starred', 'https://api.github.com/users/mrfelcio/repos', 'https://api.github.com/users/mrfelcio/events', 'https://api.github.com/users/mrfelcio/received_events', 0); +INSERT INTO `developer` VALUES (1998, 'bioinformaticszen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Barton', NULL, 'www.bioinformaticszen.com', 'Manchester, UK', 'mail@michaelbarton.me.uk', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-03T10:08:34Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/1998?v=4', 'https://api.github.com/users/bioinformaticszen', 'https://github.com/bioinformaticszen', 'https://api.github.com/users/bioinformaticszen/followers', 'https://api.github.com/users/bioinformaticszen/following', 'https://api.github.com/users/bioinformaticszen/gists', 'https://api.github.com/users/bioinformaticszen/starred', 'https://api.github.com/users/bioinformaticszen/repos', 'https://api.github.com/users/bioinformaticszen/events', 'https://api.github.com/users/bioinformaticszen/received_events', 0); +INSERT INTO `developer` VALUES (1999, 'christophsturm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christoph Sturm', NULL, '', 'vienna', 'me@christophsturm.com', 'true', 'TDD Afficionado, Team builder, Likes software without bugs. ', 'globalo', 0, 0, 65, 106, 0, 0, 0, '2008-03-03T10:10:30Z', '2024-11-04T11:39:02Z', 'https://avatars.githubusercontent.com/u/1999?v=4', 'https://api.github.com/users/christophsturm', 'https://github.com/christophsturm', 'https://api.github.com/users/christophsturm/followers', 'https://api.github.com/users/christophsturm/following', 'https://api.github.com/users/christophsturm/gists', 'https://api.github.com/users/christophsturm/starred', 'https://api.github.com/users/christophsturm/repos', 'https://api.github.com/users/christophsturm/events', 'https://api.github.com/users/christophsturm/received_events', 0); +INSERT INTO `developer` VALUES (2000, 'pablopr', 'C', 0, 0, 0, 0, 0, 0, 0, 'pablo pazos', 'Barkibu', 'www.barkibu.com', 'Madrid, Spain', 'pablopr@gmail.com', NULL, NULL, NULL, 0, 0, 21, 12, 0, 0, 0, '2008-03-03T10:16:37Z', '2024-09-10T13:19:43Z', 'https://avatars.githubusercontent.com/u/2000?v=4', 'https://api.github.com/users/pablopr', 'https://github.com/pablopr', 'https://api.github.com/users/pablopr/followers', 'https://api.github.com/users/pablopr/following', 'https://api.github.com/users/pablopr/gists', 'https://api.github.com/users/pablopr/starred', 'https://api.github.com/users/pablopr/repos', 'https://api.github.com/users/pablopr/events', 'https://api.github.com/users/pablopr/received_events', 0); +INSERT INTO `developer` VALUES (2001, 'countjocular', 'C', 0, 0, 0, 0, 0, 0, 0, 'Count Jocular', 'Mental Compost', '', 'Edinburgh, UK', 'i.am.count.jocular@gmail.com', NULL, 'Portable geek-to-English translation device. Agile product guy.', NULL, 0, 0, 19, 15, 0, 0, 0, '2008-03-03T11:14:55Z', '2024-06-06T08:53:36Z', 'https://avatars.githubusercontent.com/u/2001?v=4', 'https://api.github.com/users/countjocular', 'https://github.com/countjocular', 'https://api.github.com/users/countjocular/followers', 'https://api.github.com/users/countjocular/following', 'https://api.github.com/users/countjocular/gists', 'https://api.github.com/users/countjocular/starred', 'https://api.github.com/users/countjocular/repos', 'https://api.github.com/users/countjocular/events', 'https://api.github.com/users/countjocular/received_events', 0); +INSERT INTO `developer` VALUES (2002, 'funndude', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-03T11:48:36Z', '2019-12-15T12:11:36Z', 'https://avatars.githubusercontent.com/u/2002?v=4', 'https://api.github.com/users/funndude', 'https://github.com/funndude', 'https://api.github.com/users/funndude/followers', 'https://api.github.com/users/funndude/following', 'https://api.github.com/users/funndude/gists', 'https://api.github.com/users/funndude/starred', 'https://api.github.com/users/funndude/repos', 'https://api.github.com/users/funndude/events', 'https://api.github.com/users/funndude/received_events', 0); +INSERT INTO `developer` VALUES (2003, 'alxx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Deva', NULL, 'http://www.alxx.se', 'Sweden', NULL, NULL, NULL, NULL, 0, 0, 11, 3, 0, 0, 0, '2008-03-03T12:22:25Z', '2024-10-14T13:41:32Z', 'https://avatars.githubusercontent.com/u/2003?v=4', 'https://api.github.com/users/alxx', 'https://github.com/alxx', 'https://api.github.com/users/alxx/followers', 'https://api.github.com/users/alxx/following', 'https://api.github.com/users/alxx/gists', 'https://api.github.com/users/alxx/starred', 'https://api.github.com/users/alxx/repos', 'https://api.github.com/users/alxx/events', 'https://api.github.com/users/alxx/received_events', 0); +INSERT INTO `developer` VALUES (2004, 'zilvinas', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-03T12:32:44Z', '2019-12-22T14:54:32Z', 'https://avatars.githubusercontent.com/u/2004?v=4', 'https://api.github.com/users/zilvinas', 'https://github.com/zilvinas', 'https://api.github.com/users/zilvinas/followers', 'https://api.github.com/users/zilvinas/following', 'https://api.github.com/users/zilvinas/gists', 'https://api.github.com/users/zilvinas/starred', 'https://api.github.com/users/zilvinas/repos', 'https://api.github.com/users/zilvinas/events', 'https://api.github.com/users/zilvinas/received_events', 0); +INSERT INTO `developer` VALUES (2005, 'kbaird', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin C. Baird', 'Heroku', 'http://kbaird.github.io', 'Berkeley, CA', NULL, NULL, NULL, 'kevincbaird', 0, 0, 26, 10, 0, 0, 0, '2008-03-03T13:26:03Z', '2024-09-27T21:37:59Z', 'https://avatars.githubusercontent.com/u/2005?v=4', 'https://api.github.com/users/kbaird', 'https://github.com/kbaird', 'https://api.github.com/users/kbaird/followers', 'https://api.github.com/users/kbaird/following', 'https://api.github.com/users/kbaird/gists', 'https://api.github.com/users/kbaird/starred', 'https://api.github.com/users/kbaird/repos', 'https://api.github.com/users/kbaird/events', 'https://api.github.com/users/kbaird/received_events', 0); +INSERT INTO `developer` VALUES (2006, 'fel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris O\'Brien', NULL, '', 'United Kingdom', 'chris@chrisobrien.eu', NULL, NULL, NULL, 0, 0, 11, 2, 0, 0, 0, '2008-03-03T13:41:42Z', '2024-06-25T09:55:22Z', 'https://avatars.githubusercontent.com/u/2006?v=4', 'https://api.github.com/users/fel', 'https://github.com/fel', 'https://api.github.com/users/fel/followers', 'https://api.github.com/users/fel/following', 'https://api.github.com/users/fel/gists', 'https://api.github.com/users/fel/starred', 'https://api.github.com/users/fel/repos', 'https://api.github.com/users/fel/events', 'https://api.github.com/users/fel/received_events', 0); +INSERT INTO `developer` VALUES (2007, 'michel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michel de Graaf', 're-invention', 'http://re-invention.nl', 'Netherlands', 'michel@re-invention.nl', NULL, 'Digital mercenary', NULL, 0, 0, 21, 9, 0, 0, 0, '2008-03-03T13:55:58Z', '2024-05-20T11:48:22Z', 'https://avatars.githubusercontent.com/u/2007?v=4', 'https://api.github.com/users/michel', 'https://github.com/michel', 'https://api.github.com/users/michel/followers', 'https://api.github.com/users/michel/following', 'https://api.github.com/users/michel/gists', 'https://api.github.com/users/michel/starred', 'https://api.github.com/users/michel/repos', 'https://api.github.com/users/michel/events', 'https://api.github.com/users/michel/received_events', 0); +INSERT INTO `developer` VALUES (2008, 'peter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Marklund', 'Freelancing Full Stack Web Developer', 'http://marklunds.com', 'Stockholm', 'peter@marklunds.com', NULL, '\r\n Web developer and Data Engineer working in Python, JavaScript/Node.js, Clojure, Scala, Ruby, and Elixir\r\n', NULL, 0, 0, 82, 0, 0, 0, 0, '2008-03-03T14:00:59Z', '2024-10-08T15:10:44Z', 'https://avatars.githubusercontent.com/u/2008?v=4', 'https://api.github.com/users/peter', 'https://github.com/peter', 'https://api.github.com/users/peter/followers', 'https://api.github.com/users/peter/following', 'https://api.github.com/users/peter/gists', 'https://api.github.com/users/peter/starred', 'https://api.github.com/users/peter/repos', 'https://api.github.com/users/peter/events', 'https://api.github.com/users/peter/received_events', 0); +INSERT INTO `developer` VALUES (2009, 'magagnon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc-Andre Gagnon', 'Libro', 'http://twitter.com/magagnon', 'Montreal', 'magagnon@gmail.com', NULL, NULL, 'magagnon', 0, 0, 16, 7, 0, 0, 0, '2008-03-03T14:01:14Z', '2024-07-02T14:28:22Z', 'https://avatars.githubusercontent.com/u/2009?v=4', 'https://api.github.com/users/magagnon', 'https://github.com/magagnon', 'https://api.github.com/users/magagnon/followers', 'https://api.github.com/users/magagnon/following', 'https://api.github.com/users/magagnon/gists', 'https://api.github.com/users/magagnon/starred', 'https://api.github.com/users/magagnon/repos', 'https://api.github.com/users/magagnon/events', 'https://api.github.com/users/magagnon/received_events', 0); +INSERT INTO `developer` VALUES (2010, 'colinsurprenant', 'C', 0, 0, 0, 0, 0, 0, 0, 'Colin Surprenant', 'Freelance', 'https://linktr.ee/colinsurprenant', 'Canada', 'colin.surprenant@gmail.com', 'true', 'Open Source, Photography, Rock Climbing.\r\nEx-Elastic now Freelance.', NULL, 0, 0, 117, 15, 0, 0, 0, '2008-03-03T14:08:54Z', '2024-03-07T21:49:47Z', 'https://avatars.githubusercontent.com/u/2010?v=4', 'https://api.github.com/users/colinsurprenant', 'https://github.com/colinsurprenant', 'https://api.github.com/users/colinsurprenant/followers', 'https://api.github.com/users/colinsurprenant/following', 'https://api.github.com/users/colinsurprenant/gists', 'https://api.github.com/users/colinsurprenant/starred', 'https://api.github.com/users/colinsurprenant/repos', 'https://api.github.com/users/colinsurprenant/events', 'https://api.github.com/users/colinsurprenant/received_events', 0); +INSERT INTO `developer` VALUES (2011, 'Pawka', 'C', 0, 0, 0, 0, 0, 0, 0, 'Povilas Balzaravičius', '@Chronosphereio', 'https://pawka.notrollsallowed.com/', 'Lithuania', NULL, 'true', NULL, NULL, 0, 0, 122, 88, 0, 0, 0, '2008-03-03T14:13:12Z', '2024-11-02T14:39:36Z', 'https://avatars.githubusercontent.com/u/2011?v=4', 'https://api.github.com/users/Pawka', 'https://github.com/Pawka', 'https://api.github.com/users/Pawka/followers', 'https://api.github.com/users/Pawka/following', 'https://api.github.com/users/Pawka/gists', 'https://api.github.com/users/Pawka/starred', 'https://api.github.com/users/Pawka/repos', 'https://api.github.com/users/Pawka/events', 'https://api.github.com/users/Pawka/received_events', 0); +INSERT INTO `developer` VALUES (2012, 'Atilla', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Tsigularov', 'Ardoq', '', 'Oslo, Norway', NULL, NULL, NULL, NULL, 0, 0, 15, 11, 0, 0, 0, '2008-03-03T14:19:52Z', '2024-09-30T14:44:13Z', 'https://avatars.githubusercontent.com/u/2012?v=4', 'https://api.github.com/users/Atilla', 'https://github.com/Atilla', 'https://api.github.com/users/Atilla/followers', 'https://api.github.com/users/Atilla/following', 'https://api.github.com/users/Atilla/gists', 'https://api.github.com/users/Atilla/starred', 'https://api.github.com/users/Atilla/repos', 'https://api.github.com/users/Atilla/events', 'https://api.github.com/users/Atilla/received_events', 0); +INSERT INTO `developer` VALUES (2013, 'jeffsmith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Smith', NULL, 'http://jeffsmith.me', 'Amherst, Nova Scotia', 'jeff@jeffsmith.me', NULL, NULL, NULL, 0, 0, 34, 19, 0, 0, 0, '2008-03-03T14:20:01Z', '2024-10-08T12:30:37Z', 'https://avatars.githubusercontent.com/u/2013?v=4', 'https://api.github.com/users/jeffsmith', 'https://github.com/jeffsmith', 'https://api.github.com/users/jeffsmith/followers', 'https://api.github.com/users/jeffsmith/following', 'https://api.github.com/users/jeffsmith/gists', 'https://api.github.com/users/jeffsmith/starred', 'https://api.github.com/users/jeffsmith/repos', 'https://api.github.com/users/jeffsmith/events', 'https://api.github.com/users/jeffsmith/received_events', 0); +INSERT INTO `developer` VALUES (2014, 'lee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lee Bankewitz', NULL, '', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 39, 7, 0, 0, 0, '2008-03-03T14:23:14Z', '2024-07-29T18:20:55Z', 'https://avatars.githubusercontent.com/u/2014?v=4', 'https://api.github.com/users/lee', 'https://github.com/lee', 'https://api.github.com/users/lee/followers', 'https://api.github.com/users/lee/following', 'https://api.github.com/users/lee/gists', 'https://api.github.com/users/lee/starred', 'https://api.github.com/users/lee/repos', 'https://api.github.com/users/lee/events', 'https://api.github.com/users/lee/received_events', 0); +INSERT INTO `developer` VALUES (2015, 'sroske', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shawn Roske', 'MatBoss, LLC', 'http://www.matboss.com', 'Minneapolis, MN', 'sroske@gmail.com', NULL, NULL, NULL, 0, 0, 37, 3, 0, 0, 0, '2008-03-03T14:29:17Z', '2024-05-24T17:57:09Z', 'https://avatars.githubusercontent.com/u/2015?v=4', 'https://api.github.com/users/sroske', 'https://github.com/sroske', 'https://api.github.com/users/sroske/followers', 'https://api.github.com/users/sroske/following', 'https://api.github.com/users/sroske/gists', 'https://api.github.com/users/sroske/starred', 'https://api.github.com/users/sroske/repos', 'https://api.github.com/users/sroske/events', 'https://api.github.com/users/sroske/received_events', 0); +INSERT INTO `developer` VALUES (2016, 'tammersaleh', 'C', 0, 0, 2, 0, 3, 1, 0, 'Tammer Saleh', '@superorbital ', 'http://superorbital.io', 'California, USA', 'hello@superorbital.io', 'true', 'Kubernetes engineering & training at SuperOrbital 🚀 https://superorbital.io', 'superorbital_io', 0, 0, 245, 2, 0, 0, 0, '2008-03-03T14:50:36Z', '2024-10-18T22:15:23Z', 'https://avatars.githubusercontent.com/u/2016?v=4', 'https://api.github.com/users/tammersaleh', 'https://github.com/tammersaleh', 'https://api.github.com/users/tammersaleh/followers', 'https://api.github.com/users/tammersaleh/following', 'https://api.github.com/users/tammersaleh/gists', 'https://api.github.com/users/tammersaleh/starred', 'https://api.github.com/users/tammersaleh/repos', 'https://api.github.com/users/tammersaleh/events', 'https://api.github.com/users/tammersaleh/received_events', 0); +INSERT INTO `developer` VALUES (2017, 'brianculler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Culler', NULL, 'www.brianculler.com', 'Atlanta', 'brian@brianculler.com', NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-03-03T15:23:00Z', '2024-03-07T16:17:40Z', 'https://avatars.githubusercontent.com/u/2017?v=4', 'https://api.github.com/users/brianculler', 'https://github.com/brianculler', 'https://api.github.com/users/brianculler/followers', 'https://api.github.com/users/brianculler/following', 'https://api.github.com/users/brianculler/gists', 'https://api.github.com/users/brianculler/starred', 'https://api.github.com/users/brianculler/repos', 'https://api.github.com/users/brianculler/events', 'https://api.github.com/users/brianculler/received_events', 0); +INSERT INTO `developer` VALUES (2018, 'szhao', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-03T15:36:14Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/2018?v=4', 'https://api.github.com/users/szhao', 'https://github.com/szhao', 'https://api.github.com/users/szhao/followers', 'https://api.github.com/users/szhao/following', 'https://api.github.com/users/szhao/gists', 'https://api.github.com/users/szhao/starred', 'https://api.github.com/users/szhao/repos', 'https://api.github.com/users/szhao/events', 'https://api.github.com/users/szhao/received_events', 0); +INSERT INTO `developer` VALUES (2019, 'bricolage', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Pelletier', NULL, '', '未知', 'matt@spelunkus.com', NULL, NULL, NULL, 0, 0, 17, 19, 0, 0, 0, '2008-03-03T15:50:51Z', '2024-10-26T14:16:23Z', 'https://avatars.githubusercontent.com/u/2019?v=4', 'https://api.github.com/users/bricolage', 'https://github.com/bricolage', 'https://api.github.com/users/bricolage/followers', 'https://api.github.com/users/bricolage/following', 'https://api.github.com/users/bricolage/gists', 'https://api.github.com/users/bricolage/starred', 'https://api.github.com/users/bricolage/repos', 'https://api.github.com/users/bricolage/events', 'https://api.github.com/users/bricolage/received_events', 0); +INSERT INTO `developer` VALUES (2020, 'dastels', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Astels', NULL, 'daveastels.com', '未知', 'dastels@daveastels.com', NULL, NULL, NULL, 0, 0, 82, 7, 0, 0, 0, '2008-03-03T16:11:28Z', '2023-12-29T20:17:44Z', 'https://avatars.githubusercontent.com/u/2020?v=4', 'https://api.github.com/users/dastels', 'https://github.com/dastels', 'https://api.github.com/users/dastels/followers', 'https://api.github.com/users/dastels/following', 'https://api.github.com/users/dastels/gists', 'https://api.github.com/users/dastels/starred', 'https://api.github.com/users/dastels/repos', 'https://api.github.com/users/dastels/events', 'https://api.github.com/users/dastels/received_events', 0); +INSERT INTO `developer` VALUES (2021, 'siebertm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Siebert', NULL, '', 'Berlin, Germany', NULL, NULL, 'Not looking for a job. Not talking to recruiters. Anything in that direction will be reported as spam/abuse.', NULL, 0, 0, 18, 0, 0, 0, 0, '2008-03-03T16:43:29Z', '2024-10-25T11:12:30Z', 'https://avatars.githubusercontent.com/u/2021?v=4', 'https://api.github.com/users/siebertm', 'https://github.com/siebertm', 'https://api.github.com/users/siebertm/followers', 'https://api.github.com/users/siebertm/following', 'https://api.github.com/users/siebertm/gists', 'https://api.github.com/users/siebertm/starred', 'https://api.github.com/users/siebertm/repos', 'https://api.github.com/users/siebertm/events', 'https://api.github.com/users/siebertm/received_events', 0); +INSERT INTO `developer` VALUES (2022, 'jclarke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joseph Clarke', NULL, '', '未知', 'joemclarke@gmail.com', NULL, NULL, 'jclarke', 0, 0, 7, 0, 0, 0, 0, '2008-03-03T16:44:25Z', '2024-10-28T02:01:43Z', 'https://avatars.githubusercontent.com/u/2022?v=4', 'https://api.github.com/users/jclarke', 'https://github.com/jclarke', 'https://api.github.com/users/jclarke/followers', 'https://api.github.com/users/jclarke/following', 'https://api.github.com/users/jclarke/gists', 'https://api.github.com/users/jclarke/starred', 'https://api.github.com/users/jclarke/repos', 'https://api.github.com/users/jclarke/events', 'https://api.github.com/users/jclarke/received_events', 0); +INSERT INTO `developer` VALUES (2023, 'bantic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cory Forsyth', '@Addepar', 'http://coryforsyth.com/', 'Brooklyn, NY', 'cory.forsyth@gmail.com', NULL, 'Currently Engineering @Addepar, formerly ran @201-Created', 'bantic', 0, 0, 164, 9, 0, 0, 0, '2008-03-03T16:44:38Z', '2024-11-01T10:56:03Z', 'https://avatars.githubusercontent.com/u/2023?v=4', 'https://api.github.com/users/bantic', 'https://github.com/bantic', 'https://api.github.com/users/bantic/followers', 'https://api.github.com/users/bantic/following', 'https://api.github.com/users/bantic/gists', 'https://api.github.com/users/bantic/starred', 'https://api.github.com/users/bantic/repos', 'https://api.github.com/users/bantic/events', 'https://api.github.com/users/bantic/received_events', 0); +INSERT INTO `developer` VALUES (2024, 'jsa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Janne Savukoski', NULL, 'https://www.linkedin.com/in/savukoski/', 'Vantaa, Finland', 'janne@savukoski.name', NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-03-03T16:45:54Z', '2024-08-16T08:18:20Z', 'https://avatars.githubusercontent.com/u/2024?v=4', 'https://api.github.com/users/jsa', 'https://github.com/jsa', 'https://api.github.com/users/jsa/followers', 'https://api.github.com/users/jsa/following', 'https://api.github.com/users/jsa/gists', 'https://api.github.com/users/jsa/starred', 'https://api.github.com/users/jsa/repos', 'https://api.github.com/users/jsa/events', 'https://api.github.com/users/jsa/received_events', 0); +INSERT INTO `developer` VALUES (2025, 'jonpierce', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Pierce', NULL, 'https://jonpierce.com', 'Cambridge, MA', NULL, NULL, NULL, 'jonpierce', 0, 0, 57, 4, 0, 0, 0, '2008-03-03T16:47:29Z', '2024-10-29T04:08:24Z', 'https://avatars.githubusercontent.com/u/2025?v=4', 'https://api.github.com/users/jonpierce', 'https://github.com/jonpierce', 'https://api.github.com/users/jonpierce/followers', 'https://api.github.com/users/jonpierce/following', 'https://api.github.com/users/jonpierce/gists', 'https://api.github.com/users/jonpierce/starred', 'https://api.github.com/users/jonpierce/repos', 'https://api.github.com/users/jonpierce/events', 'https://api.github.com/users/jonpierce/received_events', 0); +INSERT INTO `developer` VALUES (2026, 'gregnewman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Newman', NULL, 'https://gregnewman.io', 'Charlotte, NC', 'greg@gregnewman.org', NULL, 'Artist. Designer. Python/Django. React. HTMX', 'gregnewman', 0, 0, 190, 68, 0, 0, 0, '2008-03-03T16:47:48Z', '2024-07-12T15:00:21Z', 'https://avatars.githubusercontent.com/u/2026?v=4', 'https://api.github.com/users/gregnewman', 'https://github.com/gregnewman', 'https://api.github.com/users/gregnewman/followers', 'https://api.github.com/users/gregnewman/following', 'https://api.github.com/users/gregnewman/gists', 'https://api.github.com/users/gregnewman/starred', 'https://api.github.com/users/gregnewman/repos', 'https://api.github.com/users/gregnewman/events', 'https://api.github.com/users/gregnewman/received_events', 0); +INSERT INTO `developer` VALUES (2027, 'zeenix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zeeshan Ali Khan', 'JUCR GmbH', 'http://zee-nix.blogspot.com/', 'Berlin', 'zeenix@gmail.com', NULL, 'Free Software dev, Ecomodernist, into flying & Rust, and love cats.', NULL, 0, 0, 226, 1, 0, 0, 0, '2008-03-03T16:48:06Z', '2024-11-04T15:11:02Z', 'https://avatars.githubusercontent.com/u/2027?v=4', 'https://api.github.com/users/zeenix', 'https://github.com/zeenix', 'https://api.github.com/users/zeenix/followers', 'https://api.github.com/users/zeenix/following', 'https://api.github.com/users/zeenix/gists', 'https://api.github.com/users/zeenix/starred', 'https://api.github.com/users/zeenix/repos', 'https://api.github.com/users/zeenix/events', 'https://api.github.com/users/zeenix/received_events', 0); +INSERT INTO `developer` VALUES (2028, 'lstep', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luc Stepniewski', NULL, 'http://www.banquise.org/', 'France', NULL, NULL, NULL, 'lstep', 0, 0, 20, 11, 0, 0, 0, '2008-03-03T16:48:13Z', '2024-06-19T14:41:14Z', 'https://avatars.githubusercontent.com/u/2028?v=4', 'https://api.github.com/users/lstep', 'https://github.com/lstep', 'https://api.github.com/users/lstep/followers', 'https://api.github.com/users/lstep/following', 'https://api.github.com/users/lstep/gists', 'https://api.github.com/users/lstep/starred', 'https://api.github.com/users/lstep/repos', 'https://api.github.com/users/lstep/events', 'https://api.github.com/users/lstep/received_events', 0); +INSERT INTO `developer` VALUES (2029, 'garethr', 'C', 10.155060968669604, 0, 0, 0, 0, 0, 0, 'Gareth Rushgrove', '@snyk ', 'morethanseven.net', 'Cambridge', 'gareth@morethanseven.net', NULL, NULL, NULL, 0, 0, 877, 11, 0, 0, 0, '2008-03-03T16:49:25Z', '2024-01-04T08:15:35Z', 'https://avatars.githubusercontent.com/u/2029?v=4', 'https://api.github.com/users/garethr', 'https://github.com/garethr', 'https://api.github.com/users/garethr/followers', 'https://api.github.com/users/garethr/following', 'https://api.github.com/users/garethr/gists', 'https://api.github.com/users/garethr/starred', 'https://api.github.com/users/garethr/repos', 'https://api.github.com/users/garethr/events', 'https://api.github.com/users/garethr/received_events', 0); +INSERT INTO `developer` VALUES (2030, 'ruphy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Riccardo Iaconelli', '@qredo', 'https://toad.social/@ruphy', 'Milano, Italia', 'riccardo@kde.org', NULL, 'open source/decentralisation @qredo.\r\nfmr head of @italia / @teamdigitale (@government) + @publiccodeyml @mozilla @WikiToLearn @KDE', NULL, 0, 0, 195, 5, 0, 0, 0, '2008-03-03T16:49:29Z', '2024-10-29T19:06:41Z', 'https://avatars.githubusercontent.com/u/2030?v=4', 'https://api.github.com/users/ruphy', 'https://github.com/ruphy', 'https://api.github.com/users/ruphy/followers', 'https://api.github.com/users/ruphy/following', 'https://api.github.com/users/ruphy/gists', 'https://api.github.com/users/ruphy/starred', 'https://api.github.com/users/ruphy/repos', 'https://api.github.com/users/ruphy/events', 'https://api.github.com/users/ruphy/received_events', 0); +INSERT INTO `developer` VALUES (2031, 'whomwah', 'C', 0, 0, 0, 0, 0, 0, 0, 'Duncan Robertson', '@kyan', 'http://whomwah.com', 'London, Uk', 'duncan@whomwah.com', NULL, 'I do computing', NULL, 0, 0, 164, 19, 0, 0, 0, '2008-03-03T16:50:18Z', '2024-10-17T21:00:37Z', 'https://avatars.githubusercontent.com/u/2031?v=4', 'https://api.github.com/users/whomwah', 'https://github.com/whomwah', 'https://api.github.com/users/whomwah/followers', 'https://api.github.com/users/whomwah/following', 'https://api.github.com/users/whomwah/gists', 'https://api.github.com/users/whomwah/starred', 'https://api.github.com/users/whomwah/repos', 'https://api.github.com/users/whomwah/events', 'https://api.github.com/users/whomwah/received_events', 0); +INSERT INTO `developer` VALUES (2033, 'billm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Marquette', NULL, 'http://www.ucsecurity.com/', 'Orlando, FL', 'bill.marquette@gmail.com', NULL, NULL, NULL, 0, 0, 24, 37, 0, 0, 0, '2008-03-03T16:51:40Z', '2023-08-15T11:23:17Z', 'https://avatars.githubusercontent.com/u/2033?v=4', 'https://api.github.com/users/billm', 'https://github.com/billm', 'https://api.github.com/users/billm/followers', 'https://api.github.com/users/billm/following', 'https://api.github.com/users/billm/gists', 'https://api.github.com/users/billm/starred', 'https://api.github.com/users/billm/repos', 'https://api.github.com/users/billm/events', 'https://api.github.com/users/billm/received_events', 0); +INSERT INTO `developer` VALUES (2034, 'dmeiz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Hensgen', 'CustomInk', '', 'Fairfax, VA', 'dan@methodhead.com', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-03T16:52:11Z', '2024-09-02T13:21:16Z', 'https://avatars.githubusercontent.com/u/2034?v=4', 'https://api.github.com/users/dmeiz', 'https://github.com/dmeiz', 'https://api.github.com/users/dmeiz/followers', 'https://api.github.com/users/dmeiz/following', 'https://api.github.com/users/dmeiz/gists', 'https://api.github.com/users/dmeiz/starred', 'https://api.github.com/users/dmeiz/repos', 'https://api.github.com/users/dmeiz/events', 'https://api.github.com/users/dmeiz/received_events', 0); +INSERT INTO `developer` VALUES (2035, 'carlosbrando', 'C', 6.005118309313078, 0, 0, 0, 0, 0, 0, 'Carlos Brando', 'Enjoei', 'carlosbrando.com', 'São Paulo, Brazil', 'eduardobrando@gmail.com', 'true', NULL, 'carlosbrando', 0, 0, 635, 33, 0, 0, 0, '2008-03-03T16:53:35Z', '2024-10-31T14:01:07Z', 'https://avatars.githubusercontent.com/u/2035?v=4', 'https://api.github.com/users/carlosbrando', 'https://github.com/carlosbrando', 'https://api.github.com/users/carlosbrando/followers', 'https://api.github.com/users/carlosbrando/following', 'https://api.github.com/users/carlosbrando/gists', 'https://api.github.com/users/carlosbrando/starred', 'https://api.github.com/users/carlosbrando/repos', 'https://api.github.com/users/carlosbrando/events', 'https://api.github.com/users/carlosbrando/received_events', 0); +INSERT INTO `developer` VALUES (2036, 'dcancel', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Cancel', 'Drift', 'http://davidcancel.com/', 'Cambridge, MA, US', NULL, NULL, NULL, NULL, 0, 0, 64, 67, 0, 0, 0, '2008-03-03T17:04:16Z', '2024-06-08T13:00:16Z', 'https://avatars.githubusercontent.com/u/2036?v=4', 'https://api.github.com/users/dcancel', 'https://github.com/dcancel', 'https://api.github.com/users/dcancel/followers', 'https://api.github.com/users/dcancel/following', 'https://api.github.com/users/dcancel/gists', 'https://api.github.com/users/dcancel/starred', 'https://api.github.com/users/dcancel/repos', 'https://api.github.com/users/dcancel/events', 'https://api.github.com/users/dcancel/received_events', 0); +INSERT INTO `developer` VALUES (2037, 'fairchild', 'C+', 20.87565053186303, 0, 0, 0, 3948, 9, 0, 'Michael Fairchild', 'Procore', '', 'California', NULL, NULL, NULL, NULL, 0, 0, 102, 79, 0, 0, 0, '2008-03-03T17:06:44Z', '2024-11-04T03:56:11Z', 'https://avatars.githubusercontent.com/u/2037?v=4', 'https://api.github.com/users/fairchild', 'https://github.com/fairchild', 'https://api.github.com/users/fairchild/followers', 'https://api.github.com/users/fairchild/following', 'https://api.github.com/users/fairchild/gists', 'https://api.github.com/users/fairchild/starred', 'https://api.github.com/users/fairchild/repos', 'https://api.github.com/users/fairchild/events', 'https://api.github.com/users/fairchild/received_events', 0); +INSERT INTO `developer` VALUES (2038, 'eduardo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Edu Fernández', NULL, '', 'Seville, Spain', NULL, NULL, NULL, NULL, 0, 0, 67, 116, 0, 0, 0, '2008-03-03T17:07:44Z', '2024-07-29T09:47:19Z', 'https://avatars.githubusercontent.com/u/2038?v=4', 'https://api.github.com/users/eduardo', 'https://github.com/eduardo', 'https://api.github.com/users/eduardo/followers', 'https://api.github.com/users/eduardo/following', 'https://api.github.com/users/eduardo/gists', 'https://api.github.com/users/eduardo/starred', 'https://api.github.com/users/eduardo/repos', 'https://api.github.com/users/eduardo/events', 'https://api.github.com/users/eduardo/received_events', 0); +INSERT INTO `developer` VALUES (2039, 'pilhofer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aron Pilhofer', 'The New York Times', 'www.aronpilhofer.com', 'New York, NY', 'aron@nytimes.com', NULL, NULL, NULL, 0, 0, 95, 1, 0, 0, 0, '2008-03-03T17:10:17Z', '2016-02-26T22:34:45Z', 'https://avatars.githubusercontent.com/u/2039?v=4', 'https://api.github.com/users/pilhofer', 'https://github.com/pilhofer', 'https://api.github.com/users/pilhofer/followers', 'https://api.github.com/users/pilhofer/following', 'https://api.github.com/users/pilhofer/gists', 'https://api.github.com/users/pilhofer/starred', 'https://api.github.com/users/pilhofer/repos', 'https://api.github.com/users/pilhofer/events', 'https://api.github.com/users/pilhofer/received_events', 0); +INSERT INTO `developer` VALUES (2040, 'gicmo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Kellner', '@Apple', 'http://christian.kellner.me', 'San Francisco', 'christian@kellner.me', NULL, NULL, 'gicmo', 0, 0, 113, 86, 0, 0, 0, '2008-03-03T17:17:03Z', '2024-10-20T11:21:01Z', 'https://avatars.githubusercontent.com/u/2040?v=4', 'https://api.github.com/users/gicmo', 'https://github.com/gicmo', 'https://api.github.com/users/gicmo/followers', 'https://api.github.com/users/gicmo/following', 'https://api.github.com/users/gicmo/gists', 'https://api.github.com/users/gicmo/starred', 'https://api.github.com/users/gicmo/repos', 'https://api.github.com/users/gicmo/events', 'https://api.github.com/users/gicmo/received_events', 0); +INSERT INTO `developer` VALUES (2041, 'bratsche', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cody Russell', NULL, '', 'Atlanta, GA', 'cody@bratsche.org', NULL, 'Software engineer interested in Elixir and machine learning. Previously @github, @microsoft, @xamarin.', NULL, 0, 0, 178, 8, 0, 0, 0, '2008-03-03T17:18:10Z', '2024-09-08T00:21:17Z', 'https://avatars.githubusercontent.com/u/2041?v=4', 'https://api.github.com/users/bratsche', 'https://github.com/bratsche', 'https://api.github.com/users/bratsche/followers', 'https://api.github.com/users/bratsche/following', 'https://api.github.com/users/bratsche/gists', 'https://api.github.com/users/bratsche/starred', 'https://api.github.com/users/bratsche/repos', 'https://api.github.com/users/bratsche/events', 'https://api.github.com/users/bratsche/received_events', 0); +INSERT INTO `developer` VALUES (2042, 'btaylor', 'C', 0, 0, 0, 0, 41, 0, 0, 'Brad Taylor', NULL, 'http://bradtaylor.co', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 26, 16, 0, 0, 0, '2008-03-03T17:19:07Z', '2024-11-01T20:14:12Z', 'https://avatars.githubusercontent.com/u/2042?v=4', 'https://api.github.com/users/btaylor', 'https://github.com/btaylor', 'https://api.github.com/users/btaylor/followers', 'https://api.github.com/users/btaylor/following', 'https://api.github.com/users/btaylor/gists', 'https://api.github.com/users/btaylor/starred', 'https://api.github.com/users/btaylor/repos', 'https://api.github.com/users/btaylor/events', 'https://api.github.com/users/btaylor/received_events', 0); +INSERT INTO `developer` VALUES (2043, 'iamstillalive', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dylan Fareed', NULL, '', '未知', 'email@dylanfareed.com', NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-03-03T17:20:42Z', '2016-07-06T16:11:32Z', 'https://avatars.githubusercontent.com/u/2043?v=4', 'https://api.github.com/users/iamstillalive', 'https://github.com/iamstillalive', 'https://api.github.com/users/iamstillalive/followers', 'https://api.github.com/users/iamstillalive/following', 'https://api.github.com/users/iamstillalive/gists', 'https://api.github.com/users/iamstillalive/starred', 'https://api.github.com/users/iamstillalive/repos', 'https://api.github.com/users/iamstillalive/events', 'https://api.github.com/users/iamstillalive/received_events', 0); +INSERT INTO `developer` VALUES (2044, 'harrisj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob Harris', 'Nava PBC', 'harrisj.github.io', 'Washington, DC', 'jacob@navapbc.com', 'true', NULL, 'harrisj', 0, 0, 194, 5, 0, 0, 0, '2008-03-03T17:20:55Z', '2024-10-14T20:09:08Z', 'https://avatars.githubusercontent.com/u/2044?v=4', 'https://api.github.com/users/harrisj', 'https://github.com/harrisj', 'https://api.github.com/users/harrisj/followers', 'https://api.github.com/users/harrisj/following', 'https://api.github.com/users/harrisj/gists', 'https://api.github.com/users/harrisj/starred', 'https://api.github.com/users/harrisj/repos', 'https://api.github.com/users/harrisj/events', 'https://api.github.com/users/harrisj/received_events', 0); +INSERT INTO `developer` VALUES (2045, 'gnubios', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-03T17:21:24Z', '2016-03-17T00:32:12Z', 'https://avatars.githubusercontent.com/u/2045?v=4', 'https://api.github.com/users/gnubios', 'https://github.com/gnubios', 'https://api.github.com/users/gnubios/followers', 'https://api.github.com/users/gnubios/following', 'https://api.github.com/users/gnubios/gists', 'https://api.github.com/users/gnubios/starred', 'https://api.github.com/users/gnubios/repos', 'https://api.github.com/users/gnubios/events', 'https://api.github.com/users/gnubios/received_events', 0); +INSERT INTO `developer` VALUES (2046, 'dguettler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Guettler', NULL, '', 'Boston', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-03T17:34:42Z', '2024-09-16T14:40:09Z', 'https://avatars.githubusercontent.com/u/2046?v=4', 'https://api.github.com/users/dguettler', 'https://github.com/dguettler', 'https://api.github.com/users/dguettler/followers', 'https://api.github.com/users/dguettler/following', 'https://api.github.com/users/dguettler/gists', 'https://api.github.com/users/dguettler/starred', 'https://api.github.com/users/dguettler/repos', 'https://api.github.com/users/dguettler/events', 'https://api.github.com/users/dguettler/received_events', 0); +INSERT INTO `developer` VALUES (2047, 'ericgoodwin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Goodwin', 'Wealthsimple', 'goodwin.co', 'Squamish BC, Canada', 'eric@goodwin.co', NULL, NULL, 'ericgoodwin', 0, 0, 15, 5, 0, 0, 0, '2008-03-03T17:41:28Z', '2024-09-24T15:56:24Z', 'https://avatars.githubusercontent.com/u/2047?v=4', 'https://api.github.com/users/ericgoodwin', 'https://github.com/ericgoodwin', 'https://api.github.com/users/ericgoodwin/followers', 'https://api.github.com/users/ericgoodwin/following', 'https://api.github.com/users/ericgoodwin/gists', 'https://api.github.com/users/ericgoodwin/starred', 'https://api.github.com/users/ericgoodwin/repos', 'https://api.github.com/users/ericgoodwin/events', 'https://api.github.com/users/ericgoodwin/received_events', 0); +INSERT INTO `developer` VALUES (2048, 'gburt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gabriel Burt', '@DevotedHealth ', 'https://devoted.com', 'Boston', NULL, NULL, 'VP Engineering at Devoted Health. We\'re hiring! https://devoted.com/careers', NULL, 0, 0, 46, 2, 0, 0, 0, '2008-03-03T17:45:09Z', '2024-05-08T20:08:43Z', 'https://avatars.githubusercontent.com/u/2048?v=4', 'https://api.github.com/users/gburt', 'https://github.com/gburt', 'https://api.github.com/users/gburt/followers', 'https://api.github.com/users/gburt/following', 'https://api.github.com/users/gburt/gists', 'https://api.github.com/users/gburt/starred', 'https://api.github.com/users/gburt/repos', 'https://api.github.com/users/gburt/events', 'https://api.github.com/users/gburt/received_events', 0); +INSERT INTO `developer` VALUES (2050, 'kirk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kirk Richey', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 26, 15, 0, 0, 0, '2008-03-03T17:52:36Z', '2022-10-24T18:57:22Z', 'https://avatars.githubusercontent.com/u/2050?v=4', 'https://api.github.com/users/kirk', 'https://github.com/kirk', 'https://api.github.com/users/kirk/followers', 'https://api.github.com/users/kirk/following', 'https://api.github.com/users/kirk/gists', 'https://api.github.com/users/kirk/starred', 'https://api.github.com/users/kirk/repos', 'https://api.github.com/users/kirk/events', 'https://api.github.com/users/kirk/received_events', 0); +INSERT INTO `developer` VALUES (2051, 'bbttxu', 'C', 0, 0, 0, 0, 0, 0, 0, 'adam krawiec', 'Black Bear Theory', 'http://blackbeartheory.com/', 'North Texas (really central-eastern Texas)', NULL, 'true', NULL, NULL, 0, 0, 16, 10, 0, 0, 0, '2008-03-03T17:55:17Z', '2024-08-21T00:42:30Z', 'https://avatars.githubusercontent.com/u/2051?v=4', 'https://api.github.com/users/bbttxu', 'https://github.com/bbttxu', 'https://api.github.com/users/bbttxu/followers', 'https://api.github.com/users/bbttxu/following', 'https://api.github.com/users/bbttxu/gists', 'https://api.github.com/users/bbttxu/starred', 'https://api.github.com/users/bbttxu/repos', 'https://api.github.com/users/bbttxu/events', 'https://api.github.com/users/bbttxu/received_events', 0); +INSERT INTO `developer` VALUES (2052, 'kbob', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bob Miller', NULL, '', 'Eugene, Oregon, USA', NULL, NULL, NULL, NULL, 0, 0, 54, 8, 0, 0, 0, '2008-03-03T17:56:06Z', '2024-08-15T01:15:47Z', 'https://avatars.githubusercontent.com/u/2052?v=4', 'https://api.github.com/users/kbob', 'https://github.com/kbob', 'https://api.github.com/users/kbob/followers', 'https://api.github.com/users/kbob/following', 'https://api.github.com/users/kbob/gists', 'https://api.github.com/users/kbob/starred', 'https://api.github.com/users/kbob/repos', 'https://api.github.com/users/kbob/events', 'https://api.github.com/users/kbob/received_events', 0); +INSERT INTO `developer` VALUES (2053, 'protocarl', 'C', 0, 0, 0, 0, 64, 0, 0, 'Carl Porth', NULL, '', '未知', 'carl@protocarl.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-03T17:56:42Z', '2024-07-27T03:30:38Z', 'https://avatars.githubusercontent.com/u/2053?v=4', 'https://api.github.com/users/protocarl', 'https://github.com/protocarl', 'https://api.github.com/users/protocarl/followers', 'https://api.github.com/users/protocarl/following', 'https://api.github.com/users/protocarl/gists', 'https://api.github.com/users/protocarl/starred', 'https://api.github.com/users/protocarl/repos', 'https://api.github.com/users/protocarl/events', 'https://api.github.com/users/protocarl/received_events', 0); +INSERT INTO `developer` VALUES (2054, 'andreum', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andre Uratsuka Manoel', 'Insite Serv. e Com. Ltda', '', 'Sao Paulo, Brazil', 'andre@corp.insite.com.br', NULL, NULL, NULL, 0, 0, 13, 10, 0, 0, 0, '2008-03-03T18:04:10Z', '2024-10-10T18:29:44Z', 'https://avatars.githubusercontent.com/u/2054?v=4', 'https://api.github.com/users/andreum', 'https://github.com/andreum', 'https://api.github.com/users/andreum/followers', 'https://api.github.com/users/andreum/following', 'https://api.github.com/users/andreum/gists', 'https://api.github.com/users/andreum/starred', 'https://api.github.com/users/andreum/repos', 'https://api.github.com/users/andreum/events', 'https://api.github.com/users/andreum/received_events', 0); +INSERT INTO `developer` VALUES (2055, 'nathanwfish', 'C', 0, 0, 0, 0, 0, 0, 0, 'nathan fish', 'Nathan Fish', 'http://nathanwfish.com', 'Ventura, CA', 'nathanwfish@gmail.com', NULL, NULL, NULL, 0, 0, 11, 5, 0, 0, 0, '2008-03-03T18:12:24Z', '2024-03-21T14:58:37Z', 'https://avatars.githubusercontent.com/u/2055?v=4', 'https://api.github.com/users/nathanwfish', 'https://github.com/nathanwfish', 'https://api.github.com/users/nathanwfish/followers', 'https://api.github.com/users/nathanwfish/following', 'https://api.github.com/users/nathanwfish/gists', 'https://api.github.com/users/nathanwfish/starred', 'https://api.github.com/users/nathanwfish/repos', 'https://api.github.com/users/nathanwfish/events', 'https://api.github.com/users/nathanwfish/received_events', 0); +INSERT INTO `developer` VALUES (2056, 'garnaat', 'C', 3.329948661132836, 0, 0, 0, 0, 0, 0, 'Mitch Garnaat', 'Amazon Web Services', 'http://elastician.com/', '未知', NULL, NULL, 'Principal engineer at AWS. Creator of boto, botocore, and AWSCLI.', NULL, 0, 0, 479, 1, 0, 0, 0, '2008-03-03T18:13:02Z', '2024-10-28T16:04:42Z', 'https://avatars.githubusercontent.com/u/2056?v=4', 'https://api.github.com/users/garnaat', 'https://github.com/garnaat', 'https://api.github.com/users/garnaat/followers', 'https://api.github.com/users/garnaat/following', 'https://api.github.com/users/garnaat/gists', 'https://api.github.com/users/garnaat/starred', 'https://api.github.com/users/garnaat/repos', 'https://api.github.com/users/garnaat/events', 'https://api.github.com/users/garnaat/received_events', 0); +INSERT INTO `developer` VALUES (2057, 'trak3r', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas \"Teflon Ted\" Davis', NULL, '', 'South Florida', 'github@rudiment.net', NULL, NULL, NULL, 0, 0, 29, 10, 0, 0, 0, '2008-03-03T18:20:52Z', '2022-05-11T15:09:16Z', 'https://avatars.githubusercontent.com/u/2057?v=4', 'https://api.github.com/users/trak3r', 'https://github.com/trak3r', 'https://api.github.com/users/trak3r/followers', 'https://api.github.com/users/trak3r/following', 'https://api.github.com/users/trak3r/gists', 'https://api.github.com/users/trak3r/starred', 'https://api.github.com/users/trak3r/repos', 'https://api.github.com/users/trak3r/events', 'https://api.github.com/users/trak3r/received_events', 0); +INSERT INTO `developer` VALUES (2058, 'zhhz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zhonghai Zuo', NULL, 'zhhz.blogspot.com', 'Delaware, USA', 'zhonghai.zuo@gmail.com', NULL, NULL, NULL, 0, 0, 13, 1, 0, 0, 0, '2008-03-03T18:25:37Z', '2021-03-10T01:08:13Z', 'https://avatars.githubusercontent.com/u/2058?v=4', 'https://api.github.com/users/zhhz', 'https://github.com/zhhz', 'https://api.github.com/users/zhhz/followers', 'https://api.github.com/users/zhhz/following', 'https://api.github.com/users/zhhz/gists', 'https://api.github.com/users/zhhz/starred', 'https://api.github.com/users/zhhz/repos', 'https://api.github.com/users/zhhz/events', 'https://api.github.com/users/zhhz/received_events', 0); +INSERT INTO `developer` VALUES (2059, 'fahim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fahim Ferdous', NULL, '', 'earth', NULL, NULL, NULL, NULL, 0, 0, 29, 49, 0, 0, 0, '2008-03-03T18:26:38Z', '2024-10-27T17:12:43Z', 'https://avatars.githubusercontent.com/u/2059?v=4', 'https://api.github.com/users/fahim', 'https://github.com/fahim', 'https://api.github.com/users/fahim/followers', 'https://api.github.com/users/fahim/following', 'https://api.github.com/users/fahim/gists', 'https://api.github.com/users/fahim/starred', 'https://api.github.com/users/fahim/repos', 'https://api.github.com/users/fahim/events', 'https://api.github.com/users/fahim/received_events', 0); +INSERT INTO `developer` VALUES (2060, 'sah', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steven Hazel', NULL, 'http://stevenhazel.org/', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 98, 55, 0, 0, 0, '2008-03-03T18:32:24Z', '2024-09-18T17:40:57Z', 'https://avatars.githubusercontent.com/u/2060?v=4', 'https://api.github.com/users/sah', 'https://github.com/sah', 'https://api.github.com/users/sah/followers', 'https://api.github.com/users/sah/following', 'https://api.github.com/users/sah/gists', 'https://api.github.com/users/sah/starred', 'https://api.github.com/users/sah/repos', 'https://api.github.com/users/sah/events', 'https://api.github.com/users/sah/received_events', 0); +INSERT INTO `developer` VALUES (2061, 'Stefan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-03T18:37:21Z', '2021-02-22T08:42:12Z', 'https://avatars.githubusercontent.com/u/2061?v=4', 'https://api.github.com/users/Stefan', 'https://github.com/Stefan', 'https://api.github.com/users/Stefan/followers', 'https://api.github.com/users/Stefan/following', 'https://api.github.com/users/Stefan/gists', 'https://api.github.com/users/Stefan/starred', 'https://api.github.com/users/Stefan/repos', 'https://api.github.com/users/Stefan/events', 'https://api.github.com/users/Stefan/received_events', 0); +INSERT INTO `developer` VALUES (2062, 'kopertop', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Moyer', 'Newstex, LLC', 'http://blog.coredumped.org', 'Ohio', 'kopertop@gmail.com', NULL, 'CTO of Newstex. Serverless/AWS.', 'kopertop', 0, 0, 23, 1, 0, 0, 0, '2008-03-03T18:44:51Z', '2024-09-24T13:27:27Z', 'https://avatars.githubusercontent.com/u/2062?v=4', 'https://api.github.com/users/kopertop', 'https://github.com/kopertop', 'https://api.github.com/users/kopertop/followers', 'https://api.github.com/users/kopertop/following', 'https://api.github.com/users/kopertop/gists', 'https://api.github.com/users/kopertop/starred', 'https://api.github.com/users/kopertop/repos', 'https://api.github.com/users/kopertop/events', 'https://api.github.com/users/kopertop/received_events', 0); +INSERT INTO `developer` VALUES (2063, 'vertiginous', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gordon Thiesfeld', NULL, 'vert.igino.us', 'St. Louis, MO', 'gthiesfeld@gmail.com', 'true', NULL, NULL, 0, 0, 54, 10, 0, 0, 0, '2008-03-03T18:48:34Z', '2024-10-09T12:24:51Z', 'https://avatars.githubusercontent.com/u/2063?v=4', 'https://api.github.com/users/vertiginous', 'https://github.com/vertiginous', 'https://api.github.com/users/vertiginous/followers', 'https://api.github.com/users/vertiginous/following', 'https://api.github.com/users/vertiginous/gists', 'https://api.github.com/users/vertiginous/starred', 'https://api.github.com/users/vertiginous/repos', 'https://api.github.com/users/vertiginous/events', 'https://api.github.com/users/vertiginous/received_events', 0); +INSERT INTO `developer` VALUES (2064, 'rwl4', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raymond Lucke', NULL, 'http://www.raylucke.com/', 'New York City', 'ray@raylucke.com', NULL, NULL, NULL, 0, 0, 13, 13, 0, 0, 0, '2008-03-03T18:58:57Z', '2024-09-29T05:28:39Z', 'https://avatars.githubusercontent.com/u/2064?v=4', 'https://api.github.com/users/rwl4', 'https://github.com/rwl4', 'https://api.github.com/users/rwl4/followers', 'https://api.github.com/users/rwl4/following', 'https://api.github.com/users/rwl4/gists', 'https://api.github.com/users/rwl4/starred', 'https://api.github.com/users/rwl4/repos', 'https://api.github.com/users/rwl4/events', 'https://api.github.com/users/rwl4/received_events', 0); +INSERT INTO `developer` VALUES (2065, 'sgala', 'C', 0, 0, 0, 0, 0, 0, 0, 'Santiago Gala', 'Red Hat', '', 'Playa de Muchavista, El Campello, Spain', 'sgala@apache.org', 'true', NULL, NULL, 0, 0, 17, 0, 0, 0, 0, '2008-03-03T19:02:41Z', '2024-10-02T14:08:12Z', 'https://avatars.githubusercontent.com/u/2065?v=4', 'https://api.github.com/users/sgala', 'https://github.com/sgala', 'https://api.github.com/users/sgala/followers', 'https://api.github.com/users/sgala/following', 'https://api.github.com/users/sgala/gists', 'https://api.github.com/users/sgala/starred', 'https://api.github.com/users/sgala/repos', 'https://api.github.com/users/sgala/events', 'https://api.github.com/users/sgala/received_events', 0); +INSERT INTO `developer` VALUES (2066, 'abbra', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Bokovoy', '@RedHatOfficial', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 58, 0, 0, 0, 0, '2008-03-03T19:14:11Z', '2024-10-13T11:19:18Z', 'https://avatars.githubusercontent.com/u/2066?v=4', 'https://api.github.com/users/abbra', 'https://github.com/abbra', 'https://api.github.com/users/abbra/followers', 'https://api.github.com/users/abbra/following', 'https://api.github.com/users/abbra/gists', 'https://api.github.com/users/abbra/starred', 'https://api.github.com/users/abbra/repos', 'https://api.github.com/users/abbra/events', 'https://api.github.com/users/abbra/received_events', 0); +INSERT INTO `developer` VALUES (2067, 'kblake', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karmen Blake', NULL, 'http://blog.dudeblake.com', 'Post Falls, ID', 'karmen@hey.com', NULL, NULL, 'kblake', 0, 0, 127, 43, 0, 0, 0, '2008-03-03T19:20:08Z', '2024-10-21T11:19:08Z', 'https://avatars.githubusercontent.com/u/2067?v=4', 'https://api.github.com/users/kblake', 'https://github.com/kblake', 'https://api.github.com/users/kblake/followers', 'https://api.github.com/users/kblake/following', 'https://api.github.com/users/kblake/gists', 'https://api.github.com/users/kblake/starred', 'https://api.github.com/users/kblake/repos', 'https://api.github.com/users/kblake/events', 'https://api.github.com/users/kblake/received_events', 0); +INSERT INTO `developer` VALUES (2068, 'electric', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eru Goodwin', NULL, '', 'Auckland, New Zealand', 'eru.goodwin@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-03T19:35:42Z', '2023-10-09T04:09:09Z', 'https://avatars.githubusercontent.com/u/2068?v=4', 'https://api.github.com/users/electric', 'https://github.com/electric', 'https://api.github.com/users/electric/followers', 'https://api.github.com/users/electric/following', 'https://api.github.com/users/electric/gists', 'https://api.github.com/users/electric/starred', 'https://api.github.com/users/electric/repos', 'https://api.github.com/users/electric/events', 'https://api.github.com/users/electric/received_events', 0); +INSERT INTO `developer` VALUES (2069, 'CharlieSu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Sullivan', NULL, 'https://charles.dev', 'Colorado, USA', 'github@charles.dev', NULL, NULL, 'charliesullivan', 0, 0, 27, 17, 0, 0, 0, '2008-03-03T19:51:24Z', '2024-10-03T15:56:58Z', 'https://avatars.githubusercontent.com/u/2069?v=4', 'https://api.github.com/users/CharlieSu', 'https://github.com/CharlieSu', 'https://api.github.com/users/CharlieSu/followers', 'https://api.github.com/users/CharlieSu/following', 'https://api.github.com/users/CharlieSu/gists', 'https://api.github.com/users/CharlieSu/starred', 'https://api.github.com/users/CharlieSu/repos', 'https://api.github.com/users/CharlieSu/events', 'https://api.github.com/users/CharlieSu/received_events', 0); +INSERT INTO `developer` VALUES (2070, 'isaac', 'C', 0, 0, 0, 0, 0, 0, 0, 'Isaac Kearse', 'Pocket Square', '', 'New Zealand', 'isaac@kearse.co.nz', NULL, NULL, NULL, 0, 0, 23, 43, 0, 0, 0, '2008-03-03T20:07:14Z', '2024-07-18T19:44:10Z', 'https://avatars.githubusercontent.com/u/2070?v=4', 'https://api.github.com/users/isaac', 'https://github.com/isaac', 'https://api.github.com/users/isaac/followers', 'https://api.github.com/users/isaac/following', 'https://api.github.com/users/isaac/gists', 'https://api.github.com/users/isaac/starred', 'https://api.github.com/users/isaac/repos', 'https://api.github.com/users/isaac/events', 'https://api.github.com/users/isaac/received_events', 0); +INSERT INTO `developer` VALUES (2071, 'JackDanger', 'C', 3.7929587925486468, 0, 0, 0, 0, 0, 0, 'Jack Danger', 'Pathstream', 'http://jackdanger.com', 'San Francisco', 'github@jackcanty.com', NULL, 'This industry has room for everybody; let\'s remove obstacles together.\r\n@square @Pathstream \r\n@Gusto @opsolutely', NULL, 0, 0, 506, 143, 0, 0, 0, '2008-03-03T20:07:42Z', '2024-10-18T00:12:27Z', 'https://avatars.githubusercontent.com/u/2071?v=4', 'https://api.github.com/users/JackDanger', 'https://github.com/JackDanger', 'https://api.github.com/users/JackDanger/followers', 'https://api.github.com/users/JackDanger/following', 'https://api.github.com/users/JackDanger/gists', 'https://api.github.com/users/JackDanger/starred', 'https://api.github.com/users/JackDanger/repos', 'https://api.github.com/users/JackDanger/events', 'https://api.github.com/users/JackDanger/received_events', 0); +INSERT INTO `developer` VALUES (2072, 'cjse', 'C', 0, 0, 0, 0, 0, 0, 0, 'CJ Kihlbom', '@teamtailor', 'https://career.teamtailor.com/departments/product', 'Gothenburg, Sweden', 'cj@teamtailor.com', NULL, 'Senior Product Manager at @Teamtailor. Previously founder of @elabs, co-founder of @varvet, organiser of Nordic Ruby, and VP People & Culture at Velory.', 'cjse', 0, 0, 51, 1, 0, 0, 0, '2008-03-03T20:09:30Z', '2024-10-24T13:08:33Z', 'https://avatars.githubusercontent.com/u/2072?v=4', 'https://api.github.com/users/cjse', 'https://github.com/cjse', 'https://api.github.com/users/cjse/followers', 'https://api.github.com/users/cjse/following', 'https://api.github.com/users/cjse/gists', 'https://api.github.com/users/cjse/starred', 'https://api.github.com/users/cjse/repos', 'https://api.github.com/users/cjse/events', 'https://api.github.com/users/cjse/received_events', 0); +INSERT INTO `developer` VALUES (2073, 'imajes', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Cox', 'smokeclouds', 'http://imaj.es/', 'Minneapolis, MN', NULL, 'true', 'github#2073', NULL, 0, 0, 83, 36, 0, 0, 0, '2008-03-03T20:19:32Z', '2024-09-22T17:27:08Z', 'https://avatars.githubusercontent.com/u/2073?v=4', 'https://api.github.com/users/imajes', 'https://github.com/imajes', 'https://api.github.com/users/imajes/followers', 'https://api.github.com/users/imajes/following', 'https://api.github.com/users/imajes/gists', 'https://api.github.com/users/imajes/starred', 'https://api.github.com/users/imajes/repos', 'https://api.github.com/users/imajes/events', 'https://api.github.com/users/imajes/received_events', 0); +INSERT INTO `developer` VALUES (2074, 'teamtux', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-03T20:27:59Z', '2016-02-26T22:34:46Z', 'https://avatars.githubusercontent.com/u/2074?v=4', 'https://api.github.com/users/teamtux', 'https://github.com/teamtux', 'https://api.github.com/users/teamtux/followers', 'https://api.github.com/users/teamtux/following', 'https://api.github.com/users/teamtux/gists', 'https://api.github.com/users/teamtux/starred', 'https://api.github.com/users/teamtux/repos', 'https://api.github.com/users/teamtux/events', 'https://api.github.com/users/teamtux/received_events', 0); +INSERT INTO `developer` VALUES (2076, 'teyc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chui Tey', NULL, '', 'Brisbane', NULL, NULL, NULL, 'teyc', 0, 0, 10, 11, 0, 0, 0, '2008-03-03T20:40:59Z', '2024-06-28T04:43:15Z', 'https://avatars.githubusercontent.com/u/2076?v=4', 'https://api.github.com/users/teyc', 'https://github.com/teyc', 'https://api.github.com/users/teyc/followers', 'https://api.github.com/users/teyc/following', 'https://api.github.com/users/teyc/gists', 'https://api.github.com/users/teyc/starred', 'https://api.github.com/users/teyc/repos', 'https://api.github.com/users/teyc/events', 'https://api.github.com/users/teyc/received_events', 0); +INSERT INTO `developer` VALUES (2077, 'jaw6', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Wehner', NULL, 'http://joshuawehner.com/', 'Utrecht, The Netherlands', 'joshua.wehner@gmail.com', NULL, 'I have no idea what I\'m doing', NULL, 0, 0, 158, 7, 0, 0, 0, '2008-03-03T20:46:58Z', '2024-10-20T11:21:01Z', 'https://avatars.githubusercontent.com/u/2077?v=4', 'https://api.github.com/users/jaw6', 'https://github.com/jaw6', 'https://api.github.com/users/jaw6/followers', 'https://api.github.com/users/jaw6/following', 'https://api.github.com/users/jaw6/gists', 'https://api.github.com/users/jaw6/starred', 'https://api.github.com/users/jaw6/repos', 'https://api.github.com/users/jaw6/events', 'https://api.github.com/users/jaw6/received_events', 0); +INSERT INTO `developer` VALUES (2079, 'whoisjake', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jake Good', NULL, 'https://hachyderm.io/@gooberdlx', 'Minneapolis, MN', NULL, NULL, '(╯°□°)╯︵ ǝɹɐʍʇɟos', NULL, 0, 0, 109, 103, 0, 0, 0, '2008-03-03T20:51:43Z', '2024-10-04T16:16:57Z', 'https://avatars.githubusercontent.com/u/2079?v=4', 'https://api.github.com/users/whoisjake', 'https://github.com/whoisjake', 'https://api.github.com/users/whoisjake/followers', 'https://api.github.com/users/whoisjake/following', 'https://api.github.com/users/whoisjake/gists', 'https://api.github.com/users/whoisjake/starred', 'https://api.github.com/users/whoisjake/repos', 'https://api.github.com/users/whoisjake/events', 'https://api.github.com/users/whoisjake/received_events', 0); +INSERT INTO `developer` VALUES (2080, 'jeannie', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-03T21:07:21Z', '2016-02-26T22:34:46Z', 'https://avatars.githubusercontent.com/u/2080?v=4', 'https://api.github.com/users/jeannie', 'https://github.com/jeannie', 'https://api.github.com/users/jeannie/followers', 'https://api.github.com/users/jeannie/following', 'https://api.github.com/users/jeannie/gists', 'https://api.github.com/users/jeannie/starred', 'https://api.github.com/users/jeannie/repos', 'https://api.github.com/users/jeannie/events', 'https://api.github.com/users/jeannie/received_events', 0); +INSERT INTO `developer` VALUES (2081, 'cmaggard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cody Maggard', NULL, 'http://www.twitter.com/cmaggard', 'Washington, DC', NULL, NULL, NULL, NULL, 0, 0, 19, 3, 0, 0, 0, '2008-03-03T21:12:58Z', '2024-09-12T19:30:53Z', 'https://avatars.githubusercontent.com/u/2081?v=4', 'https://api.github.com/users/cmaggard', 'https://github.com/cmaggard', 'https://api.github.com/users/cmaggard/followers', 'https://api.github.com/users/cmaggard/following', 'https://api.github.com/users/cmaggard/gists', 'https://api.github.com/users/cmaggard/starred', 'https://api.github.com/users/cmaggard/repos', 'https://api.github.com/users/cmaggard/events', 'https://api.github.com/users/cmaggard/received_events', 0); +INSERT INTO `developer` VALUES (2082, 'hspitia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hector F. Espitia-Navarro', 'Solventum', 'https://www.linkedin.com/in/hespitianavarro', 'St Paul, MN', NULL, NULL, 'Bioinformatician at Solventum | Bioinformatician at 3M | Before, PhD Student at the Jordan Lab (@jordanlab) at Georgia Tech.', 'hspitia', 0, 0, 8, 0, 0, 0, 0, '2008-03-03T21:14:11Z', '2024-08-22T14:02:29Z', 'https://avatars.githubusercontent.com/u/2082?v=4', 'https://api.github.com/users/hspitia', 'https://github.com/hspitia', 'https://api.github.com/users/hspitia/followers', 'https://api.github.com/users/hspitia/following', 'https://api.github.com/users/hspitia/gists', 'https://api.github.com/users/hspitia/starred', 'https://api.github.com/users/hspitia/repos', 'https://api.github.com/users/hspitia/events', 'https://api.github.com/users/hspitia/received_events', 0); +INSERT INTO `developer` VALUES (2083, 'Bira', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ubiratan Pires Alberton', 'Red Guava', '', 'Campinas, Brazil', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-03-03T21:21:53Z', '2024-10-15T01:36:39Z', 'https://avatars.githubusercontent.com/u/2083?v=4', 'https://api.github.com/users/Bira', 'https://github.com/Bira', 'https://api.github.com/users/Bira/followers', 'https://api.github.com/users/Bira/following', 'https://api.github.com/users/Bira/gists', 'https://api.github.com/users/Bira/starred', 'https://api.github.com/users/Bira/repos', 'https://api.github.com/users/Bira/events', 'https://api.github.com/users/Bira/received_events', 0); +INSERT INTO `developer` VALUES (2084, 'notch8', 'C', 0, 0, 0, 0, 0, 0, 0, 'Notch8', NULL, 'http://notch8.com', 'San Diego, CA', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-03T21:24:37Z', '2022-04-20T18:05:36Z', 'https://avatars.githubusercontent.com/u/2084?v=4', 'https://api.github.com/users/notch8', 'https://github.com/notch8', 'https://api.github.com/users/notch8/followers', 'https://api.github.com/users/notch8/following', 'https://api.github.com/users/notch8/gists', 'https://api.github.com/users/notch8/starred', 'https://api.github.com/users/notch8/repos', 'https://api.github.com/users/notch8/events', 'https://api.github.com/users/notch8/received_events', 0); +INSERT INTO `developer` VALUES (2085, 'jamesaspinwall', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Aspinwall', NULL, '', 'United States', 'jamesaspinwall@gmail.com', NULL, NULL, NULL, 0, 0, 4, 6, 0, 0, 0, '2008-03-03T22:04:48Z', '2024-09-08T14:23:25Z', 'https://avatars.githubusercontent.com/u/2085?v=4', 'https://api.github.com/users/jamesaspinwall', 'https://github.com/jamesaspinwall', 'https://api.github.com/users/jamesaspinwall/followers', 'https://api.github.com/users/jamesaspinwall/following', 'https://api.github.com/users/jamesaspinwall/gists', 'https://api.github.com/users/jamesaspinwall/starred', 'https://api.github.com/users/jamesaspinwall/repos', 'https://api.github.com/users/jamesaspinwall/events', 'https://api.github.com/users/jamesaspinwall/received_events', 0); +INSERT INTO `developer` VALUES (2086, 'laribee', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Laribee', 'Nerd/Noir', 'https://nerdnoir.com/', 'Atlanta', 'david@laribee.com', 'true', NULL, NULL, 0, 0, 63, 9, 0, 0, 0, '2008-03-03T22:10:08Z', '2024-02-19T15:35:44Z', 'https://avatars.githubusercontent.com/u/2086?v=4', 'https://api.github.com/users/laribee', 'https://github.com/laribee', 'https://api.github.com/users/laribee/followers', 'https://api.github.com/users/laribee/following', 'https://api.github.com/users/laribee/gists', 'https://api.github.com/users/laribee/starred', 'https://api.github.com/users/laribee/repos', 'https://api.github.com/users/laribee/events', 'https://api.github.com/users/laribee/received_events', 0); +INSERT INTO `developer` VALUES (2088, 'sanga', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Sampson', NULL, '', 'Helsinki, Finland', NULL, NULL, NULL, NULL, 0, 0, 21, 14, 0, 0, 0, '2008-03-03T22:29:12Z', '2024-09-26T10:25:06Z', 'https://avatars.githubusercontent.com/u/2088?v=4', 'https://api.github.com/users/sanga', 'https://github.com/sanga', 'https://api.github.com/users/sanga/followers', 'https://api.github.com/users/sanga/following', 'https://api.github.com/users/sanga/gists', 'https://api.github.com/users/sanga/starred', 'https://api.github.com/users/sanga/repos', 'https://api.github.com/users/sanga/events', 'https://api.github.com/users/sanga/received_events', 0); +INSERT INTO `developer` VALUES (2089, 'clee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Lee', NULL, '', 'Denver', 'clee@mg8.org', 'true', 'Open-source hacker, maker, 3D-printer/custom-keyboard enthusiast', NULL, 0, 0, 133, 48, 0, 0, 0, '2008-03-03T23:34:42Z', '2024-10-01T13:23:53Z', 'https://avatars.githubusercontent.com/u/2089?v=4', 'https://api.github.com/users/clee', 'https://github.com/clee', 'https://api.github.com/users/clee/followers', 'https://api.github.com/users/clee/following', 'https://api.github.com/users/clee/gists', 'https://api.github.com/users/clee/starred', 'https://api.github.com/users/clee/repos', 'https://api.github.com/users/clee/events', 'https://api.github.com/users/clee/received_events', 0); +INSERT INTO `developer` VALUES (2090, 'abedra', 'C', 1.100640620982636, 0, 0, 0, 0, 0, 0, 'Aaron Bedra', 'DRW', 'http://aaronbedra.com', 'Chicago, IL', 'aaron@aaronbedra.com', 'true', NULL, 'abedra', 0, 0, 349, 2, 0, 0, 0, '2008-03-03T23:46:03Z', '2024-06-27T01:51:47Z', 'https://avatars.githubusercontent.com/u/2090?v=4', 'https://api.github.com/users/abedra', 'https://github.com/abedra', 'https://api.github.com/users/abedra/followers', 'https://api.github.com/users/abedra/following', 'https://api.github.com/users/abedra/gists', 'https://api.github.com/users/abedra/starred', 'https://api.github.com/users/abedra/repos', 'https://api.github.com/users/abedra/events', 'https://api.github.com/users/abedra/received_events', 0); +INSERT INTO `developer` VALUES (2091, 'bjsteiger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandon Steiger', NULL, '', 'Philadelphia, PA', NULL, NULL, NULL, NULL, 0, 0, 3, 3, 0, 0, 0, '2008-03-04T00:16:02Z', '2024-04-18T18:03:42Z', 'https://avatars.githubusercontent.com/u/2091?v=4', 'https://api.github.com/users/bjsteiger', 'https://github.com/bjsteiger', 'https://api.github.com/users/bjsteiger/followers', 'https://api.github.com/users/bjsteiger/following', 'https://api.github.com/users/bjsteiger/gists', 'https://api.github.com/users/bjsteiger/starred', 'https://api.github.com/users/bjsteiger/repos', 'https://api.github.com/users/bjsteiger/events', 'https://api.github.com/users/bjsteiger/received_events', 0); +INSERT INTO `developer` VALUES (2092, 'bigjhnny', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shuo Yang', NULL, '', 'Walnut, CA', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-04T00:22:02Z', '2024-09-10T19:27:38Z', 'https://avatars.githubusercontent.com/u/2092?v=4', 'https://api.github.com/users/bigjhnny', 'https://github.com/bigjhnny', 'https://api.github.com/users/bigjhnny/followers', 'https://api.github.com/users/bigjhnny/following', 'https://api.github.com/users/bigjhnny/gists', 'https://api.github.com/users/bigjhnny/starred', 'https://api.github.com/users/bigjhnny/repos', 'https://api.github.com/users/bigjhnny/events', 'https://api.github.com/users/bigjhnny/received_events', 0); +INSERT INTO `developer` VALUES (2093, 'pschalm', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-04T00:25:35Z', '2015-04-09T19:38:44Z', 'https://avatars.githubusercontent.com/u/2093?v=4', 'https://api.github.com/users/pschalm', 'https://github.com/pschalm', 'https://api.github.com/users/pschalm/followers', 'https://api.github.com/users/pschalm/following', 'https://api.github.com/users/pschalm/gists', 'https://api.github.com/users/pschalm/starred', 'https://api.github.com/users/pschalm/repos', 'https://api.github.com/users/pschalm/events', 'https://api.github.com/users/pschalm/received_events', 0); +INSERT INTO `developer` VALUES (2094, 'simonpk', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-04T00:34:40Z', '2017-02-03T18:22:30Z', 'https://avatars.githubusercontent.com/u/2094?v=4', 'https://api.github.com/users/simonpk', 'https://github.com/simonpk', 'https://api.github.com/users/simonpk/followers', 'https://api.github.com/users/simonpk/following', 'https://api.github.com/users/simonpk/gists', 'https://api.github.com/users/simonpk/starred', 'https://api.github.com/users/simonpk/repos', 'https://api.github.com/users/simonpk/events', 'https://api.github.com/users/simonpk/received_events', 0); +INSERT INTO `developer` VALUES (2095, 'matthutchinson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Hutchinson', 'Hiddenloop', 'https://hiddenloop.com', 'N. Ireland, UK', 'matt@hiddenloop.com', 'true', '🛠️ Maker of things with Ruby on Rails, Hotwire, JS, iOS & more // 👾 SW-1408-9592-5798 // 🔑 89B0 4DE8 8C71 0FA0', 'matthutchin', 0, 0, 109, 7, 0, 0, 0, '2008-03-04T00:59:29Z', '2024-10-11T20:19:27Z', 'https://avatars.githubusercontent.com/u/2095?v=4', 'https://api.github.com/users/matthutchinson', 'https://github.com/matthutchinson', 'https://api.github.com/users/matthutchinson/followers', 'https://api.github.com/users/matthutchinson/following', 'https://api.github.com/users/matthutchinson/gists', 'https://api.github.com/users/matthutchinson/starred', 'https://api.github.com/users/matthutchinson/repos', 'https://api.github.com/users/matthutchinson/events', 'https://api.github.com/users/matthutchinson/received_events', 0); +INSERT INTO `developer` VALUES (2096, 'bohford', 'C', 0, 0, 0, 0, 0, 0, 0, 'Beau Harrington', '@braintree ', '', 'OAKLAND', NULL, NULL, NULL, NULL, 0, 0, 14, 8, 0, 0, 0, '2008-03-04T01:53:33Z', '2024-07-16T19:16:56Z', 'https://avatars.githubusercontent.com/u/2096?v=4', 'https://api.github.com/users/bohford', 'https://github.com/bohford', 'https://api.github.com/users/bohford/followers', 'https://api.github.com/users/bohford/following', 'https://api.github.com/users/bohford/gists', 'https://api.github.com/users/bohford/starred', 'https://api.github.com/users/bohford/repos', 'https://api.github.com/users/bohford/events', 'https://api.github.com/users/bohford/received_events', 0); +INSERT INTO `developer` VALUES (2097, 'vsharma', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vivek Sharma', 'Movable Ink', 'movableink.com', 'New York, NY', 'vivek.x.sharma@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-04T01:57:00Z', '2017-07-17T13:38:06Z', 'https://avatars.githubusercontent.com/u/2097?v=4', 'https://api.github.com/users/vsharma', 'https://github.com/vsharma', 'https://api.github.com/users/vsharma/followers', 'https://api.github.com/users/vsharma/following', 'https://api.github.com/users/vsharma/gists', 'https://api.github.com/users/vsharma/starred', 'https://api.github.com/users/vsharma/repos', 'https://api.github.com/users/vsharma/events', 'https://api.github.com/users/vsharma/received_events', 0); +INSERT INTO `developer` VALUES (2098, 'secondtoughest', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Maloney', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-04T02:31:25Z', '2020-11-06T04:43:21Z', 'https://avatars.githubusercontent.com/u/2098?v=4', 'https://api.github.com/users/secondtoughest', 'https://github.com/secondtoughest', 'https://api.github.com/users/secondtoughest/followers', 'https://api.github.com/users/secondtoughest/following', 'https://api.github.com/users/secondtoughest/gists', 'https://api.github.com/users/secondtoughest/starred', 'https://api.github.com/users/secondtoughest/repos', 'https://api.github.com/users/secondtoughest/events', 'https://api.github.com/users/secondtoughest/received_events', 0); +INSERT INTO `developer` VALUES (2099, 'pjanderson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick J.Anderson', NULL, '', '未知', 'pat.j.anderson@gmail.com', NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-04T02:39:22Z', '2020-11-06T14:28:11Z', 'https://avatars.githubusercontent.com/u/2099?v=4', 'https://api.github.com/users/pjanderson', 'https://github.com/pjanderson', 'https://api.github.com/users/pjanderson/followers', 'https://api.github.com/users/pjanderson/following', 'https://api.github.com/users/pjanderson/gists', 'https://api.github.com/users/pjanderson/starred', 'https://api.github.com/users/pjanderson/repos', 'https://api.github.com/users/pjanderson/events', 'https://api.github.com/users/pjanderson/received_events', 0); +INSERT INTO `developer` VALUES (2100, 'leonho', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leon Ho', NULL, 'http://leonho.com', 'Canada', NULL, NULL, NULL, NULL, 0, 0, 19, 8, 0, 0, 0, '2008-03-04T02:46:20Z', '2024-11-03T19:02:32Z', 'https://avatars.githubusercontent.com/u/2100?v=4', 'https://api.github.com/users/leonho', 'https://github.com/leonho', 'https://api.github.com/users/leonho/followers', 'https://api.github.com/users/leonho/following', 'https://api.github.com/users/leonho/gists', 'https://api.github.com/users/leonho/starred', 'https://api.github.com/users/leonho/repos', 'https://api.github.com/users/leonho/events', 'https://api.github.com/users/leonho/received_events', 0); +INSERT INTO `developer` VALUES (2101, 'ericstewart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Stewart', NULL, 'https://eric-stewart.com', 'Austin, TX', NULL, 'true', NULL, NULL, 0, 0, 26, 41, 0, 0, 0, '2008-03-04T03:02:25Z', '2024-05-10T03:46:13Z', 'https://avatars.githubusercontent.com/u/2101?v=4', 'https://api.github.com/users/ericstewart', 'https://github.com/ericstewart', 'https://api.github.com/users/ericstewart/followers', 'https://api.github.com/users/ericstewart/following', 'https://api.github.com/users/ericstewart/gists', 'https://api.github.com/users/ericstewart/starred', 'https://api.github.com/users/ericstewart/repos', 'https://api.github.com/users/ericstewart/events', 'https://api.github.com/users/ericstewart/received_events', 0); +INSERT INTO `developer` VALUES (2102, 'tbenne02', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T04:03:44Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2102?v=4', 'https://api.github.com/users/tbenne02', 'https://github.com/tbenne02', 'https://api.github.com/users/tbenne02/followers', 'https://api.github.com/users/tbenne02/following', 'https://api.github.com/users/tbenne02/gists', 'https://api.github.com/users/tbenne02/starred', 'https://api.github.com/users/tbenne02/repos', 'https://api.github.com/users/tbenne02/events', 'https://api.github.com/users/tbenne02/received_events', 0); +INSERT INTO `developer` VALUES (2103, 'jobi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johan Bilien', 'Google', '', 'Boston', 'johan@bilien.org', NULL, NULL, 'johanbilien', 0, 0, 8, 0, 0, 0, 0, '2008-03-04T04:19:43Z', '2024-10-22T01:45:03Z', 'https://avatars.githubusercontent.com/u/2103?v=4', 'https://api.github.com/users/jobi', 'https://github.com/jobi', 'https://api.github.com/users/jobi/followers', 'https://api.github.com/users/jobi/following', 'https://api.github.com/users/jobi/gists', 'https://api.github.com/users/jobi/starred', 'https://api.github.com/users/jobi/repos', 'https://api.github.com/users/jobi/events', 'https://api.github.com/users/jobi/received_events', 0); +INSERT INTO `developer` VALUES (2104, 'jcnetdev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacques Crocker', NULL, 'www.railsjedi.com', 'Seattle, WA', 'railsjedi@gmail.com', NULL, NULL, NULL, 0, 0, 33, 0, 0, 0, 0, '2008-03-04T04:48:56Z', '2018-10-26T21:27:55Z', 'https://avatars.githubusercontent.com/u/2104?v=4', 'https://api.github.com/users/jcnetdev', 'https://github.com/jcnetdev', 'https://api.github.com/users/jcnetdev/followers', 'https://api.github.com/users/jcnetdev/following', 'https://api.github.com/users/jcnetdev/gists', 'https://api.github.com/users/jcnetdev/starred', 'https://api.github.com/users/jcnetdev/repos', 'https://api.github.com/users/jcnetdev/events', 'https://api.github.com/users/jcnetdev/received_events', 0); +INSERT INTO `developer` VALUES (2105, 'johnclaus', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Claus', NULL, '', 'The Front Range', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-04T04:50:50Z', '2024-09-28T17:33:05Z', 'https://avatars.githubusercontent.com/u/2105?v=4', 'https://api.github.com/users/johnclaus', 'https://github.com/johnclaus', 'https://api.github.com/users/johnclaus/followers', 'https://api.github.com/users/johnclaus/following', 'https://api.github.com/users/johnclaus/gists', 'https://api.github.com/users/johnclaus/starred', 'https://api.github.com/users/johnclaus/repos', 'https://api.github.com/users/johnclaus/events', 'https://api.github.com/users/johnclaus/received_events', 0); +INSERT INTO `developer` VALUES (2107, 'Wobin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-04T05:49:35Z', '2024-10-21T23:54:00Z', 'https://avatars.githubusercontent.com/u/2107?v=4', 'https://api.github.com/users/Wobin', 'https://github.com/Wobin', 'https://api.github.com/users/Wobin/followers', 'https://api.github.com/users/Wobin/following', 'https://api.github.com/users/Wobin/gists', 'https://api.github.com/users/Wobin/starred', 'https://api.github.com/users/Wobin/repos', 'https://api.github.com/users/Wobin/events', 'https://api.github.com/users/Wobin/received_events', 0); +INSERT INTO `developer` VALUES (2108, 'iamruinous', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jade Meskill', '@magicleap', 'http://jademeskill.com', 'Queen Creek, AZ', 'jade.meskill@gmail.com', NULL, 'VP, Product @magicleap,\r\nCo-Founder of @gangplank,\r\nHuman. ', 'iamruinous', 0, 0, 74, 23, 0, 0, 0, '2008-03-04T06:11:02Z', '2024-10-21T11:19:08Z', 'https://avatars.githubusercontent.com/u/2108?v=4', 'https://api.github.com/users/iamruinous', 'https://github.com/iamruinous', 'https://api.github.com/users/iamruinous/followers', 'https://api.github.com/users/iamruinous/following', 'https://api.github.com/users/iamruinous/gists', 'https://api.github.com/users/iamruinous/starred', 'https://api.github.com/users/iamruinous/repos', 'https://api.github.com/users/iamruinous/events', 'https://api.github.com/users/iamruinous/received_events', 0); +INSERT INTO `developer` VALUES (2109, 'quicklywilliam', 'C', 0, 0, 0, 0, 0, 0, 0, 'William Henderson', 'Ride Report', 'http://quicklywilliam.com', 'Portland, OR', 'william.c.henderson@gmail.com', NULL, NULL, NULL, 0, 0, 34, 8, 0, 0, 0, '2008-03-04T06:13:46Z', '2024-10-20T21:06:49Z', 'https://avatars.githubusercontent.com/u/2109?v=4', 'https://api.github.com/users/quicklywilliam', 'https://github.com/quicklywilliam', 'https://api.github.com/users/quicklywilliam/followers', 'https://api.github.com/users/quicklywilliam/following', 'https://api.github.com/users/quicklywilliam/gists', 'https://api.github.com/users/quicklywilliam/starred', 'https://api.github.com/users/quicklywilliam/repos', 'https://api.github.com/users/quicklywilliam/events', 'https://api.github.com/users/quicklywilliam/received_events', 0); +INSERT INTO `developer` VALUES (2110, 'chipski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chip Vanek', 'JumpDaily', 'http://chipski.com', 'Bethlehem, New Hampshire', 'chipski@mac.com', 'true', NULL, 'chipski', 0, 0, 35, 67, 0, 0, 0, '2008-03-04T06:27:40Z', '2024-10-30T15:00:07Z', 'https://avatars.githubusercontent.com/u/2110?v=4', 'https://api.github.com/users/chipski', 'https://github.com/chipski', 'https://api.github.com/users/chipski/followers', 'https://api.github.com/users/chipski/following', 'https://api.github.com/users/chipski/gists', 'https://api.github.com/users/chipski/starred', 'https://api.github.com/users/chipski/repos', 'https://api.github.com/users/chipski/events', 'https://api.github.com/users/chipski/received_events', 0); +INSERT INTO `developer` VALUES (2111, 'misto', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mirko Stocker', 'OST – Ostschweizer Fachhochschule', 'misto.ch', 'Switzerland', 'me@misto.ch', NULL, NULL, NULL, 0, 0, 118, 28, 0, 0, 0, '2008-03-04T07:13:21Z', '2024-10-08T11:19:22Z', 'https://avatars.githubusercontent.com/u/2111?v=4', 'https://api.github.com/users/misto', 'https://github.com/misto', 'https://api.github.com/users/misto/followers', 'https://api.github.com/users/misto/following', 'https://api.github.com/users/misto/gists', 'https://api.github.com/users/misto/starred', 'https://api.github.com/users/misto/repos', 'https://api.github.com/users/misto/events', 'https://api.github.com/users/misto/received_events', 0); +INSERT INTO `developer` VALUES (2112, 'winston', 'C', 0, 0, 0, 0, 0, 0, 0, 'Winston', NULL, 'http://www.winstonyw.com', 'Singapore', 'winston.yongwei@gmail.com', NULL, NULL, NULL, 0, 0, 195, 25, 0, 0, 0, '2008-03-04T07:14:40Z', '2024-10-29T05:12:30Z', 'https://avatars.githubusercontent.com/u/2112?v=4', 'https://api.github.com/users/winston', 'https://github.com/winston', 'https://api.github.com/users/winston/followers', 'https://api.github.com/users/winston/following', 'https://api.github.com/users/winston/gists', 'https://api.github.com/users/winston/starred', 'https://api.github.com/users/winston/repos', 'https://api.github.com/users/winston/events', 'https://api.github.com/users/winston/received_events', 0); +INSERT INTO `developer` VALUES (2113, 'Negaja', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T07:55:08Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2113?v=4', 'https://api.github.com/users/Negaja', 'https://github.com/Negaja', 'https://api.github.com/users/Negaja/followers', 'https://api.github.com/users/Negaja/following', 'https://api.github.com/users/Negaja/gists', 'https://api.github.com/users/Negaja/starred', 'https://api.github.com/users/Negaja/repos', 'https://api.github.com/users/Negaja/events', 'https://api.github.com/users/Negaja/received_events', 0); +INSERT INTO `developer` VALUES (2114, 'Sigurd', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-04T07:56:32Z', '2018-04-03T06:53:03Z', 'https://avatars.githubusercontent.com/u/2114?v=4', 'https://api.github.com/users/Sigurd', 'https://github.com/Sigurd', 'https://api.github.com/users/Sigurd/followers', 'https://api.github.com/users/Sigurd/following', 'https://api.github.com/users/Sigurd/gists', 'https://api.github.com/users/Sigurd/starred', 'https://api.github.com/users/Sigurd/repos', 'https://api.github.com/users/Sigurd/events', 'https://api.github.com/users/Sigurd/received_events', 0); +INSERT INTO `developer` VALUES (2115, 'eastein', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Stein', NULL, 'http://cons.truct.org', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 90, 82, 0, 0, 0, '2008-03-04T08:09:02Z', '2024-02-27T00:44:23Z', 'https://avatars.githubusercontent.com/u/2115?v=4', 'https://api.github.com/users/eastein', 'https://github.com/eastein', 'https://api.github.com/users/eastein/followers', 'https://api.github.com/users/eastein/following', 'https://api.github.com/users/eastein/gists', 'https://api.github.com/users/eastein/starred', 'https://api.github.com/users/eastein/repos', 'https://api.github.com/users/eastein/events', 'https://api.github.com/users/eastein/received_events', 0); +INSERT INTO `developer` VALUES (2116, 'jasonwatkinspdx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'github@jasonwatkins.net', 'true', NULL, NULL, 0, 0, 38, 30, 0, 0, 0, '2008-03-04T08:32:30Z', '2021-05-05T14:45:49Z', 'https://avatars.githubusercontent.com/u/2116?v=4', 'https://api.github.com/users/jasonwatkinspdx', 'https://github.com/jasonwatkinspdx', 'https://api.github.com/users/jasonwatkinspdx/followers', 'https://api.github.com/users/jasonwatkinspdx/following', 'https://api.github.com/users/jasonwatkinspdx/gists', 'https://api.github.com/users/jasonwatkinspdx/starred', 'https://api.github.com/users/jasonwatkinspdx/repos', 'https://api.github.com/users/jasonwatkinspdx/events', 'https://api.github.com/users/jasonwatkinspdx/received_events', 0); +INSERT INTO `developer` VALUES (2117, 'CrazyPit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Rezikov', 'Toptal', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-04T08:33:00Z', '2024-10-19T19:17:06Z', 'https://avatars.githubusercontent.com/u/2117?v=4', 'https://api.github.com/users/CrazyPit', 'https://github.com/CrazyPit', 'https://api.github.com/users/CrazyPit/followers', 'https://api.github.com/users/CrazyPit/following', 'https://api.github.com/users/CrazyPit/gists', 'https://api.github.com/users/CrazyPit/starred', 'https://api.github.com/users/CrazyPit/repos', 'https://api.github.com/users/CrazyPit/events', 'https://api.github.com/users/CrazyPit/received_events', 0); +INSERT INTO `developer` VALUES (2118, 'jnwhiteh', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 119, 5, 0, 0, 0, '2008-03-04T08:38:04Z', '2024-08-18T10:56:47Z', 'https://avatars.githubusercontent.com/u/2118?v=4', 'https://api.github.com/users/jnwhiteh', 'https://github.com/jnwhiteh', 'https://api.github.com/users/jnwhiteh/followers', 'https://api.github.com/users/jnwhiteh/following', 'https://api.github.com/users/jnwhiteh/gists', 'https://api.github.com/users/jnwhiteh/starred', 'https://api.github.com/users/jnwhiteh/repos', 'https://api.github.com/users/jnwhiteh/events', 'https://api.github.com/users/jnwhiteh/received_events', 0); +INSERT INTO `developer` VALUES (2119, 'yuri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yuri Takhteyev', 'rangle.io', 'http://yto.io/', 'Toronto', NULL, NULL, NULL, NULL, 0, 0, 98, 2, 0, 0, 0, '2008-03-04T08:48:59Z', '2024-10-23T20:41:27Z', 'https://avatars.githubusercontent.com/u/2119?v=4', 'https://api.github.com/users/yuri', 'https://github.com/yuri', 'https://api.github.com/users/yuri/followers', 'https://api.github.com/users/yuri/following', 'https://api.github.com/users/yuri/gists', 'https://api.github.com/users/yuri/starred', 'https://api.github.com/users/yuri/repos', 'https://api.github.com/users/yuri/events', 'https://api.github.com/users/yuri/received_events', 0); +INSERT INTO `developer` VALUES (2120, 'akhavr', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'DevNull.AI', 'https://medium.com/@akhavr', '未知', NULL, NULL, NULL, NULL, 0, 0, 32, 3, 0, 0, 0, '2008-03-04T09:00:34Z', '2024-10-17T22:02:59Z', 'https://avatars.githubusercontent.com/u/2120?v=4', 'https://api.github.com/users/akhavr', 'https://github.com/akhavr', 'https://api.github.com/users/akhavr/followers', 'https://api.github.com/users/akhavr/following', 'https://api.github.com/users/akhavr/gists', 'https://api.github.com/users/akhavr/starred', 'https://api.github.com/users/akhavr/repos', 'https://api.github.com/users/akhavr/events', 'https://api.github.com/users/akhavr/received_events', 0); +INSERT INTO `developer` VALUES (2121, 'mtrimpe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michiel Trimpe', 'Interactly', 'https://interactly.com', 'Amsterdam', 'michiel@trimpe.nl', NULL, NULL, NULL, 0, 0, 18, 14, 0, 0, 0, '2008-03-04T10:11:14Z', '2024-02-13T18:49:35Z', 'https://avatars.githubusercontent.com/u/2121?v=4', 'https://api.github.com/users/mtrimpe', 'https://github.com/mtrimpe', 'https://api.github.com/users/mtrimpe/followers', 'https://api.github.com/users/mtrimpe/following', 'https://api.github.com/users/mtrimpe/gists', 'https://api.github.com/users/mtrimpe/starred', 'https://api.github.com/users/mtrimpe/repos', 'https://api.github.com/users/mtrimpe/events', 'https://api.github.com/users/mtrimpe/received_events', 0); +INSERT INTO `developer` VALUES (2122, 'gma', 'C', 0, 0, 0, 0, 0, 0, 0, 'Graham Ashton', NULL, 'https://www.linkedin.com/in/ashtong/', 'Manchester, UK', NULL, 'true', NULL, 'grahamashton', 0, 0, 146, 1, 0, 0, 0, '2008-03-04T11:20:32Z', '2024-10-31T17:27:02Z', 'https://avatars.githubusercontent.com/u/2122?v=4', 'https://api.github.com/users/gma', 'https://github.com/gma', 'https://api.github.com/users/gma/followers', 'https://api.github.com/users/gma/following', 'https://api.github.com/users/gma/gists', 'https://api.github.com/users/gma/starred', 'https://api.github.com/users/gma/repos', 'https://api.github.com/users/gma/events', 'https://api.github.com/users/gma/received_events', 0); +INSERT INTO `developer` VALUES (2123, 'h3xl3r', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Fischer', NULL, 'https://hexler.net', 'Toyko, Japan', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-04T11:24:45Z', '2024-09-12T05:56:21Z', 'https://avatars.githubusercontent.com/u/2123?v=4', 'https://api.github.com/users/h3xl3r', 'https://github.com/h3xl3r', 'https://api.github.com/users/h3xl3r/followers', 'https://api.github.com/users/h3xl3r/following', 'https://api.github.com/users/h3xl3r/gists', 'https://api.github.com/users/h3xl3r/starred', 'https://api.github.com/users/h3xl3r/repos', 'https://api.github.com/users/h3xl3r/events', 'https://api.github.com/users/h3xl3r/received_events', 0); +INSERT INTO `developer` VALUES (2124, 'roy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roy van der Meij', 'Undeveloped', 'http://royvandermeij.com', 'Netherlands', 'roy@royapps.nl', NULL, NULL, NULL, 0, 0, 22, 7, 0, 0, 0, '2008-03-04T11:26:13Z', '2023-01-28T15:42:04Z', 'https://avatars.githubusercontent.com/u/2124?v=4', 'https://api.github.com/users/roy', 'https://github.com/roy', 'https://api.github.com/users/roy/followers', 'https://api.github.com/users/roy/following', 'https://api.github.com/users/roy/gists', 'https://api.github.com/users/roy/starred', 'https://api.github.com/users/roy/repos', 'https://api.github.com/users/roy/events', 'https://api.github.com/users/roy/received_events', 0); +INSERT INTO `developer` VALUES (2125, 'cjsmessaert', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T11:32:09Z', '2024-11-03T13:53:07Z', 'https://avatars.githubusercontent.com/u/2125?v=4', 'https://api.github.com/users/cjsmessaert', 'https://github.com/cjsmessaert', 'https://api.github.com/users/cjsmessaert/followers', 'https://api.github.com/users/cjsmessaert/following', 'https://api.github.com/users/cjsmessaert/gists', 'https://api.github.com/users/cjsmessaert/starred', 'https://api.github.com/users/cjsmessaert/repos', 'https://api.github.com/users/cjsmessaert/events', 'https://api.github.com/users/cjsmessaert/received_events', 0); +INSERT INTO `developer` VALUES (2126, 'river', 'C', 0, 0, 0, 0, 0, 0, 0, 'River Jiang', NULL, 'jiang.md', 'Vancouver, BC', NULL, NULL, 'Cardiology + ML', 'riverjiang', 0, 0, 12, 8, 0, 0, 0, '2008-03-04T11:55:50Z', '2024-10-31T20:52:57Z', 'https://avatars.githubusercontent.com/u/2126?v=4', 'https://api.github.com/users/river', 'https://github.com/river', 'https://api.github.com/users/river/followers', 'https://api.github.com/users/river/following', 'https://api.github.com/users/river/gists', 'https://api.github.com/users/river/starred', 'https://api.github.com/users/river/repos', 'https://api.github.com/users/river/events', 'https://api.github.com/users/river/received_events', 0); +INSERT INTO `developer` VALUES (2127, 'bruci', 'C', 0, 0, 0, 0, 4, 2, 0, 'Bruno Cigic ', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 3, 0, 0, 0, '2008-03-04T12:06:36Z', '2019-06-13T11:42:28Z', 'https://avatars.githubusercontent.com/u/2127?v=4', 'https://api.github.com/users/bruci', 'https://github.com/bruci', 'https://api.github.com/users/bruci/followers', 'https://api.github.com/users/bruci/following', 'https://api.github.com/users/bruci/gists', 'https://api.github.com/users/bruci/starred', 'https://api.github.com/users/bruci/repos', 'https://api.github.com/users/bruci/events', 'https://api.github.com/users/bruci/received_events', 0); +INSERT INTO `developer` VALUES (2128, 'nunonunes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nuno Nunes', '@worten', 'http://nunonunes.org/', 'Lisbon, Portugal', NULL, NULL, NULL, NULL, 0, 0, 39, 17, 0, 0, 0, '2008-03-04T12:13:17Z', '2024-10-06T11:21:39Z', 'https://avatars.githubusercontent.com/u/2128?v=4', 'https://api.github.com/users/nunonunes', 'https://github.com/nunonunes', 'https://api.github.com/users/nunonunes/followers', 'https://api.github.com/users/nunonunes/following', 'https://api.github.com/users/nunonunes/gists', 'https://api.github.com/users/nunonunes/starred', 'https://api.github.com/users/nunonunes/repos', 'https://api.github.com/users/nunonunes/events', 'https://api.github.com/users/nunonunes/received_events', 0); +INSERT INTO `developer` VALUES (2129, 'badboy', 'C', 11.681279550003202, 0, 0, 0, 0, 0, 0, 'Jan-Erik Rediger', 'Mozilla', 'https://fnordig.de/', 'World', NULL, NULL, '@rustfesteu organizer', NULL, 0, 0, 966, 75, 0, 0, 0, '2008-03-04T13:02:54Z', '2024-11-04T23:12:24Z', 'https://avatars.githubusercontent.com/u/2129?v=4', 'https://api.github.com/users/badboy', 'https://github.com/badboy', 'https://api.github.com/users/badboy/followers', 'https://api.github.com/users/badboy/following', 'https://api.github.com/users/badboy/gists', 'https://api.github.com/users/badboy/starred', 'https://api.github.com/users/badboy/repos', 'https://api.github.com/users/badboy/events', 'https://api.github.com/users/badboy/received_events', 0); +INSERT INTO `developer` VALUES (2130, 'jeremyf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Friesen', 'https://scientist.com', 'https://takeonrules.com/', 'Goshen, IN USA', 'jeremy.n.friesen@gmail.com', 'true', 'Recovering interrupter with occasional relapses, lover of spreadsheets, blogger, adept debugger, conjurer of analogies, and probably other things.', NULL, 0, 0, 109, 40, 0, 0, 0, '2008-03-04T13:39:19Z', '2024-11-01T22:25:45Z', 'https://avatars.githubusercontent.com/u/2130?v=4', 'https://api.github.com/users/jeremyf', 'https://github.com/jeremyf', 'https://api.github.com/users/jeremyf/followers', 'https://api.github.com/users/jeremyf/following', 'https://api.github.com/users/jeremyf/gists', 'https://api.github.com/users/jeremyf/starred', 'https://api.github.com/users/jeremyf/repos', 'https://api.github.com/users/jeremyf/events', 'https://api.github.com/users/jeremyf/received_events', 0); +INSERT INTO `developer` VALUES (2131, 'ynyreds', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aled Edwards', NULL, '', 'Cwm Uwch Artro', NULL, NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-03-04T13:43:33Z', '2024-10-25T10:11:41Z', 'https://avatars.githubusercontent.com/u/2131?v=4', 'https://api.github.com/users/ynyreds', 'https://github.com/ynyreds', 'https://api.github.com/users/ynyreds/followers', 'https://api.github.com/users/ynyreds/following', 'https://api.github.com/users/ynyreds/gists', 'https://api.github.com/users/ynyreds/starred', 'https://api.github.com/users/ynyreds/repos', 'https://api.github.com/users/ynyreds/events', 'https://api.github.com/users/ynyreds/received_events', 0); +INSERT INTO `developer` VALUES (2132, 'virtuoso', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Shishkin', NULL, '', 'Espoo, Finland', 'ash@koowaldah.org', 'true', NULL, NULL, 0, 0, 26, 8, 0, 0, 0, '2008-03-04T13:54:27Z', '2024-09-20T17:16:56Z', 'https://avatars.githubusercontent.com/u/2132?v=4', 'https://api.github.com/users/virtuoso', 'https://github.com/virtuoso', 'https://api.github.com/users/virtuoso/followers', 'https://api.github.com/users/virtuoso/following', 'https://api.github.com/users/virtuoso/gists', 'https://api.github.com/users/virtuoso/starred', 'https://api.github.com/users/virtuoso/repos', 'https://api.github.com/users/virtuoso/events', 'https://api.github.com/users/virtuoso/received_events', 0); +INSERT INTO `developer` VALUES (2133, 'danhorst', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Brubaker Horst', '@Interfolio', 'https://dan.brubakerhorst.com', 'South Bend, IN', 'dan.brubaker.horst@gmail.com', NULL, 'Experienced, rigorous, versatile, software engineer', 'danhorst', 0, 0, 31, 11, 0, 0, 0, '2008-03-04T14:01:59Z', '2024-10-17T15:51:32Z', 'https://avatars.githubusercontent.com/u/2133?v=4', 'https://api.github.com/users/danhorst', 'https://github.com/danhorst', 'https://api.github.com/users/danhorst/followers', 'https://api.github.com/users/danhorst/following', 'https://api.github.com/users/danhorst/gists', 'https://api.github.com/users/danhorst/starred', 'https://api.github.com/users/danhorst/repos', 'https://api.github.com/users/danhorst/events', 'https://api.github.com/users/danhorst/received_events', 0); +INSERT INTO `developer` VALUES (2134, 'clarkbw', 'C', 2.352482828143902, 0, 0, 0, 0, 0, 0, 'Bryan Clark', '@neondatabase', 'https://clarkbw.dev', 'Victoria, BC', NULL, NULL, 'VP Product @neondatabase | previously @timescale, @github, @mozilla, and @RedHatOfficial ', 'clarkbw', 0, 0, 422, 83, 0, 0, 0, '2008-03-04T14:05:06Z', '2024-11-03T22:52:35Z', 'https://avatars.githubusercontent.com/u/2134?v=4', 'https://api.github.com/users/clarkbw', 'https://github.com/clarkbw', 'https://api.github.com/users/clarkbw/followers', 'https://api.github.com/users/clarkbw/following', 'https://api.github.com/users/clarkbw/gists', 'https://api.github.com/users/clarkbw/starred', 'https://api.github.com/users/clarkbw/repos', 'https://api.github.com/users/clarkbw/events', 'https://api.github.com/users/clarkbw/received_events', 0); +INSERT INTO `developer` VALUES (2135, 'xionon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alec Hipshear', NULL, 'http://www.alechipshear.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 29, 5, 0, 0, 0, '2008-03-04T15:00:27Z', '2024-07-20T17:18:14Z', 'https://avatars.githubusercontent.com/u/2135?v=4', 'https://api.github.com/users/xionon', 'https://github.com/xionon', 'https://api.github.com/users/xionon/followers', 'https://api.github.com/users/xionon/following', 'https://api.github.com/users/xionon/gists', 'https://api.github.com/users/xionon/starred', 'https://api.github.com/users/xionon/repos', 'https://api.github.com/users/xionon/events', 'https://api.github.com/users/xionon/received_events', 0); +INSERT INTO `developer` VALUES (2136, 'dneighbors', 'C', 0, 0, 0, 0, 0, 0, 0, 'Derek Neighbors', 'Bodybuilding.com', 'http://derekneighbors.com', 'Phoenix, AZ', 'dneighbo@gmail.com', NULL, NULL, 'dneighbors', 0, 0, 53, 50, 0, 0, 0, '2008-03-04T15:03:15Z', '2024-11-02T21:19:21Z', 'https://avatars.githubusercontent.com/u/2136?v=4', 'https://api.github.com/users/dneighbors', 'https://github.com/dneighbors', 'https://api.github.com/users/dneighbors/followers', 'https://api.github.com/users/dneighbors/following', 'https://api.github.com/users/dneighbors/gists', 'https://api.github.com/users/dneighbors/starred', 'https://api.github.com/users/dneighbors/repos', 'https://api.github.com/users/dneighbors/events', 'https://api.github.com/users/dneighbors/received_events', 0); +INSERT INTO `developer` VALUES (2137, 'reynhout', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 55, 4, 0, 0, 0, '2008-03-04T15:08:49Z', '2023-08-29T08:04:55Z', 'https://avatars.githubusercontent.com/u/2137?v=4', 'https://api.github.com/users/reynhout', 'https://github.com/reynhout', 'https://api.github.com/users/reynhout/followers', 'https://api.github.com/users/reynhout/following', 'https://api.github.com/users/reynhout/gists', 'https://api.github.com/users/reynhout/starred', 'https://api.github.com/users/reynhout/repos', 'https://api.github.com/users/reynhout/events', 'https://api.github.com/users/reynhout/received_events', 0); +INSERT INTO `developer` VALUES (2138, 'rchuasing', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raymond Chua SIng', 'Freelance', '', 'Philippines', NULL, 'true', NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-04T15:09:19Z', '2023-08-22T23:35:03Z', 'https://avatars.githubusercontent.com/u/2138?v=4', 'https://api.github.com/users/rchuasing', 'https://github.com/rchuasing', 'https://api.github.com/users/rchuasing/followers', 'https://api.github.com/users/rchuasing/following', 'https://api.github.com/users/rchuasing/gists', 'https://api.github.com/users/rchuasing/starred', 'https://api.github.com/users/rchuasing/repos', 'https://api.github.com/users/rchuasing/events', 'https://api.github.com/users/rchuasing/received_events', 0); +INSERT INTO `developer` VALUES (2139, 'jamieorc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jamie Orchard-Hays', 'Dang Development LLC and SciVera LLC', 'http://jamieorc.wordpress.com', 'Charlottesville, VA', 'jamieorc@gmail.com', NULL, 'Owner of Dang Development. I\'ve worked a lot in Ruby and quite a bit in Clojure and Clojurescript. ', 'jamieorc', 0, 0, 19, 0, 0, 0, 0, '2008-03-04T15:21:04Z', '2024-09-29T17:02:52Z', 'https://avatars.githubusercontent.com/u/2139?v=4', 'https://api.github.com/users/jamieorc', 'https://github.com/jamieorc', 'https://api.github.com/users/jamieorc/followers', 'https://api.github.com/users/jamieorc/following', 'https://api.github.com/users/jamieorc/gists', 'https://api.github.com/users/jamieorc/starred', 'https://api.github.com/users/jamieorc/repos', 'https://api.github.com/users/jamieorc/events', 'https://api.github.com/users/jamieorc/received_events', 0); +INSERT INTO `developer` VALUES (2140, 'anoopr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anoop Ranganath', NULL, 'http://anoop.ranganath.com', 'Nashville, TN', 'anoop@ranganath.com', NULL, NULL, 'anoopr', 0, 0, 110, 5, 0, 0, 0, '2008-03-04T15:29:18Z', '2024-10-30T13:45:59Z', 'https://avatars.githubusercontent.com/u/2140?v=4', 'https://api.github.com/users/anoopr', 'https://github.com/anoopr', 'https://api.github.com/users/anoopr/followers', 'https://api.github.com/users/anoopr/following', 'https://api.github.com/users/anoopr/gists', 'https://api.github.com/users/anoopr/starred', 'https://api.github.com/users/anoopr/repos', 'https://api.github.com/users/anoopr/events', 'https://api.github.com/users/anoopr/received_events', 0); +INSERT INTO `developer` VALUES (2141, 'pcapriotti', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paolo Capriotti', 'Wire', 'https://paolocapriotti.com', 'Berlin, Germany', 'paolo@capriotti.io', NULL, 'Senior Haskell Developer at Wire.\r\n\r\nPreviously I was a postdoc at TU Darmstadt. Before that I was a postdoc at University of Nottingham.', NULL, 0, 0, 161, 0, 0, 0, 0, '2008-03-04T15:34:56Z', '2024-09-29T13:44:55Z', 'https://avatars.githubusercontent.com/u/2141?v=4', 'https://api.github.com/users/pcapriotti', 'https://github.com/pcapriotti', 'https://api.github.com/users/pcapriotti/followers', 'https://api.github.com/users/pcapriotti/following', 'https://api.github.com/users/pcapriotti/gists', 'https://api.github.com/users/pcapriotti/starred', 'https://api.github.com/users/pcapriotti/repos', 'https://api.github.com/users/pcapriotti/events', 'https://api.github.com/users/pcapriotti/received_events', 0); +INSERT INTO `developer` VALUES (2142, 'maccman', 'B+', 61.189066564723426, 0, 0, 0, 0, 0, 0, 'Alex MacCaw', 'Reflect', 'https://alexmaccaw.com', 'Atlantic', 'alex@alexmaccaw.com', NULL, 'Gentleman hacker.', 'maccaw', 0, 0, 3853, 129, 0, 0, 0, '2008-03-04T15:53:35Z', '2024-10-30T21:30:23Z', 'https://avatars.githubusercontent.com/u/2142?v=4', 'https://api.github.com/users/maccman', 'https://github.com/maccman', 'https://api.github.com/users/maccman/followers', 'https://api.github.com/users/maccman/following', 'https://api.github.com/users/maccman/gists', 'https://api.github.com/users/maccman/starred', 'https://api.github.com/users/maccman/repos', 'https://api.github.com/users/maccman/events', 'https://api.github.com/users/maccman/received_events', 0); +INSERT INTO `developer` VALUES (2143, 'cselmer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Selmer', NULL, 'http://cselmer.com', 'Eugene, OR', 'chris@cselmer.com', 'true', 'Ruby on Rails Developer / Architect', NULL, 0, 0, 83, 29, 0, 0, 0, '2008-03-04T16:03:05Z', '2024-08-08T21:05:12Z', 'https://avatars.githubusercontent.com/u/2143?v=4', 'https://api.github.com/users/cselmer', 'https://github.com/cselmer', 'https://api.github.com/users/cselmer/followers', 'https://api.github.com/users/cselmer/following', 'https://api.github.com/users/cselmer/gists', 'https://api.github.com/users/cselmer/starred', 'https://api.github.com/users/cselmer/repos', 'https://api.github.com/users/cselmer/events', 'https://api.github.com/users/cselmer/received_events', 0); +INSERT INTO `developer` VALUES (2144, 'jsullivan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Sullivan', '@heroku / @salesforce', '', 'Charlottesville, VA', 'josh@dipperstove.com', NULL, NULL, NULL, 0, 0, 48, 32, 0, 0, 0, '2008-03-04T16:22:24Z', '2024-10-23T17:58:33Z', 'https://avatars.githubusercontent.com/u/2144?v=4', 'https://api.github.com/users/jsullivan', 'https://github.com/jsullivan', 'https://api.github.com/users/jsullivan/followers', 'https://api.github.com/users/jsullivan/following', 'https://api.github.com/users/jsullivan/gists', 'https://api.github.com/users/jsullivan/starred', 'https://api.github.com/users/jsullivan/repos', 'https://api.github.com/users/jsullivan/events', 'https://api.github.com/users/jsullivan/received_events', 0); +INSERT INTO `developer` VALUES (2145, 'mattpolito', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Polito', '@hashrocket ', 'http://www.mattpolito.info', 'Ponte Vedra, FL', NULL, NULL, 'Robot / Robit / Robutt', 'mattpolito', 0, 0, 83, 31, 0, 0, 0, '2008-03-04T16:26:55Z', '2024-10-20T23:32:20Z', 'https://avatars.githubusercontent.com/u/2145?v=4', 'https://api.github.com/users/mattpolito', 'https://github.com/mattpolito', 'https://api.github.com/users/mattpolito/followers', 'https://api.github.com/users/mattpolito/following', 'https://api.github.com/users/mattpolito/gists', 'https://api.github.com/users/mattpolito/starred', 'https://api.github.com/users/mattpolito/repos', 'https://api.github.com/users/mattpolito/events', 'https://api.github.com/users/mattpolito/received_events', 0); +INSERT INTO `developer` VALUES (2146, 'fleadope', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2008-03-04T16:52:51Z', '2024-08-31T16:32:26Z', 'https://avatars.githubusercontent.com/u/2146?v=4', 'https://api.github.com/users/fleadope', 'https://github.com/fleadope', 'https://api.github.com/users/fleadope/followers', 'https://api.github.com/users/fleadope/following', 'https://api.github.com/users/fleadope/gists', 'https://api.github.com/users/fleadope/starred', 'https://api.github.com/users/fleadope/repos', 'https://api.github.com/users/fleadope/events', 'https://api.github.com/users/fleadope/received_events', 0); +INSERT INTO `developer` VALUES (2148, 'pcrawfor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Crawford', NULL, 'http://www.cometcoast.com', 'Calgary AB, Canada', NULL, NULL, NULL, NULL, 0, 0, 35, 0, 0, 0, 0, '2008-03-04T17:00:14Z', '2024-10-27T16:04:05Z', 'https://avatars.githubusercontent.com/u/2148?v=4', 'https://api.github.com/users/pcrawfor', 'https://github.com/pcrawfor', 'https://api.github.com/users/pcrawfor/followers', 'https://api.github.com/users/pcrawfor/following', 'https://api.github.com/users/pcrawfor/gists', 'https://api.github.com/users/pcrawfor/starred', 'https://api.github.com/users/pcrawfor/repos', 'https://api.github.com/users/pcrawfor/events', 'https://api.github.com/users/pcrawfor/received_events', 0); +INSERT INTO `developer` VALUES (2149, 'mrmemes-eth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen Caudill', 'Chaindrop', 'https://stephencaudill.com', 'Building the next web', 'hello@stephencaudill.com', NULL, 'Dreamer, engineer and relentless creator.', NULL, 0, 0, 128, 37, 0, 0, 0, '2008-03-04T17:00:41Z', '2024-10-15T20:06:15Z', 'https://avatars.githubusercontent.com/u/2149?v=4', 'https://api.github.com/users/mrmemes-eth', 'https://github.com/mrmemes-eth', 'https://api.github.com/users/mrmemes-eth/followers', 'https://api.github.com/users/mrmemes-eth/following', 'https://api.github.com/users/mrmemes-eth/gists', 'https://api.github.com/users/mrmemes-eth/starred', 'https://api.github.com/users/mrmemes-eth/repos', 'https://api.github.com/users/mrmemes-eth/events', 'https://api.github.com/users/mrmemes-eth/received_events', 0); +INSERT INTO `developer` VALUES (2150, 'Odaeus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew France', 'Avito', '', 'Berlin, Germany', 'andrew@avito.uk', 'true', 'I\'m a freelance web developer with interests in project management, data modelling, and UX.\r\n@rails, @postgres, @vuejs, and @elixir-lang are my preferred tools', 'Odaeus', 0, 0, 31, 23, 0, 0, 0, '2008-03-04T17:02:24Z', '2024-09-18T11:51:44Z', 'https://avatars.githubusercontent.com/u/2150?v=4', 'https://api.github.com/users/Odaeus', 'https://github.com/Odaeus', 'https://api.github.com/users/Odaeus/followers', 'https://api.github.com/users/Odaeus/following', 'https://api.github.com/users/Odaeus/gists', 'https://api.github.com/users/Odaeus/starred', 'https://api.github.com/users/Odaeus/repos', 'https://api.github.com/users/Odaeus/events', 'https://api.github.com/users/Odaeus/received_events', 0); +INSERT INTO `developer` VALUES (2151, 'JeremyGrosser', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Grosser', NULL, 'https://synack.me/', '未知', NULL, NULL, NULL, NULL, 0, 0, 174, 105, 0, 0, 0, '2008-03-04T17:03:22Z', '2024-11-01T04:20:22Z', 'https://avatars.githubusercontent.com/u/2151?v=4', 'https://api.github.com/users/JeremyGrosser', 'https://github.com/JeremyGrosser', 'https://api.github.com/users/JeremyGrosser/followers', 'https://api.github.com/users/JeremyGrosser/following', 'https://api.github.com/users/JeremyGrosser/gists', 'https://api.github.com/users/JeremyGrosser/starred', 'https://api.github.com/users/JeremyGrosser/repos', 'https://api.github.com/users/JeremyGrosser/events', 'https://api.github.com/users/JeremyGrosser/received_events', 0); +INSERT INTO `developer` VALUES (2152, 'grahambancroft', 'C', 0, 0, 0, 0, 0, 0, 0, 'Graham Bancroft', '@TalentDeskApp', '', 'London', NULL, 'true', NULL, NULL, 0, 0, 8, 4, 0, 0, 0, '2008-03-04T17:03:40Z', '2024-05-07T15:45:09Z', 'https://avatars.githubusercontent.com/u/2152?v=4', 'https://api.github.com/users/grahambancroft', 'https://github.com/grahambancroft', 'https://api.github.com/users/grahambancroft/followers', 'https://api.github.com/users/grahambancroft/following', 'https://api.github.com/users/grahambancroft/gists', 'https://api.github.com/users/grahambancroft/starred', 'https://api.github.com/users/grahambancroft/repos', 'https://api.github.com/users/grahambancroft/events', 'https://api.github.com/users/grahambancroft/received_events', 0); +INSERT INTO `developer` VALUES (2153, 'benvinegar', 'C', 5.662147841597661, 0, 0, 0, 0, 0, 0, 'Ben Vinegar', 'Sentry', 'http://benv.ca', 'Toronto, Canada', NULL, NULL, 'General Manager @syntaxfm at @getsentry. Co-author of Third-party JavaScript. ', 'bentlegen', 0, 0, 615, 36, 0, 0, 0, '2008-03-04T17:04:00Z', '2024-11-04T16:56:56Z', 'https://avatars.githubusercontent.com/u/2153?v=4', 'https://api.github.com/users/benvinegar', 'https://github.com/benvinegar', 'https://api.github.com/users/benvinegar/followers', 'https://api.github.com/users/benvinegar/following', 'https://api.github.com/users/benvinegar/gists', 'https://api.github.com/users/benvinegar/starred', 'https://api.github.com/users/benvinegar/repos', 'https://api.github.com/users/benvinegar/events', 'https://api.github.com/users/benvinegar/received_events', 0); +INSERT INTO `developer` VALUES (2154, 'bfolkens', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brad Folkens', NULL, 'https://bradfolkens.com', 'Earth', NULL, 'true', NULL, 'bfolkens', 0, 0, 82, 55, 0, 0, 0, '2008-03-04T17:05:05Z', '2024-10-31T22:38:48Z', 'https://avatars.githubusercontent.com/u/2154?v=4', 'https://api.github.com/users/bfolkens', 'https://github.com/bfolkens', 'https://api.github.com/users/bfolkens/followers', 'https://api.github.com/users/bfolkens/following', 'https://api.github.com/users/bfolkens/gists', 'https://api.github.com/users/bfolkens/starred', 'https://api.github.com/users/bfolkens/repos', 'https://api.github.com/users/bfolkens/events', 'https://api.github.com/users/bfolkens/received_events', 0); +INSERT INTO `developer` VALUES (2155, 'rich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rich Cavanaugh', 'Datalot, Inc.', '', 'Port Saint Lucie, FL', 'rcavanaugh@gmail.com', 'true', NULL, NULL, 0, 0, 40, 12, 0, 0, 0, '2008-03-04T17:05:13Z', '2024-11-04T16:47:24Z', 'https://avatars.githubusercontent.com/u/2155?v=4', 'https://api.github.com/users/rich', 'https://github.com/rich', 'https://api.github.com/users/rich/followers', 'https://api.github.com/users/rich/following', 'https://api.github.com/users/rich/gists', 'https://api.github.com/users/rich/starred', 'https://api.github.com/users/rich/repos', 'https://api.github.com/users/rich/events', 'https://api.github.com/users/rich/received_events', 0); +INSERT INTO `developer` VALUES (2156, 'briandailey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Dailey', 'Creo Advisory', 'http://creollc.co/', 'Nashville, TN', 'github@dailytechnology.net', NULL, 'computational coryphaeus', NULL, 0, 0, 63, 25, 0, 0, 0, '2008-03-04T17:05:28Z', '2024-10-01T22:25:01Z', 'https://avatars.githubusercontent.com/u/2156?v=4', 'https://api.github.com/users/briandailey', 'https://github.com/briandailey', 'https://api.github.com/users/briandailey/followers', 'https://api.github.com/users/briandailey/following', 'https://api.github.com/users/briandailey/gists', 'https://api.github.com/users/briandailey/starred', 'https://api.github.com/users/briandailey/repos', 'https://api.github.com/users/briandailey/events', 'https://api.github.com/users/briandailey/received_events', 0); +INSERT INTO `developer` VALUES (2157, 'JoshD', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 4, 0, 0, 0, '2008-03-04T17:05:31Z', '2021-08-23T19:02:13Z', 'https://avatars.githubusercontent.com/u/2157?v=4', 'https://api.github.com/users/JoshD', 'https://github.com/JoshD', 'https://api.github.com/users/JoshD/followers', 'https://api.github.com/users/JoshD/following', 'https://api.github.com/users/JoshD/gists', 'https://api.github.com/users/JoshD/starred', 'https://api.github.com/users/JoshD/repos', 'https://api.github.com/users/JoshD/events', 'https://api.github.com/users/JoshD/received_events', 0); +INSERT INTO `developer` VALUES (2158, 'Dunkelschorsch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Armin Schmidt', NULL, '', 'Erlangen/Germany', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-04T17:05:55Z', '2022-01-25T11:46:12Z', 'https://avatars.githubusercontent.com/u/2158?v=4', 'https://api.github.com/users/Dunkelschorsch', 'https://github.com/Dunkelschorsch', 'https://api.github.com/users/Dunkelschorsch/followers', 'https://api.github.com/users/Dunkelschorsch/following', 'https://api.github.com/users/Dunkelschorsch/gists', 'https://api.github.com/users/Dunkelschorsch/starred', 'https://api.github.com/users/Dunkelschorsch/repos', 'https://api.github.com/users/Dunkelschorsch/events', 'https://api.github.com/users/Dunkelschorsch/received_events', 0); +INSERT INTO `developer` VALUES (2159, 'mikerentas', 'C', 0, 0, 0, 0, 4, 1, 0, 'Mike Rentas', NULL, '', 'Brooklyn, NY', 'mike.rentas@gmail.com', NULL, NULL, NULL, 0, 0, 10, 7, 0, 0, 0, '2008-03-04T17:07:09Z', '2023-05-08T17:14:18Z', 'https://avatars.githubusercontent.com/u/2159?v=4', 'https://api.github.com/users/mikerentas', 'https://github.com/mikerentas', 'https://api.github.com/users/mikerentas/followers', 'https://api.github.com/users/mikerentas/following', 'https://api.github.com/users/mikerentas/gists', 'https://api.github.com/users/mikerentas/starred', 'https://api.github.com/users/mikerentas/repos', 'https://api.github.com/users/mikerentas/events', 'https://api.github.com/users/mikerentas/received_events', 0); +INSERT INTO `developer` VALUES (2160, 'kakutani', 'C', 4.084483690106749, 0, 0, 0, 0, 0, 0, 'Kakutani Shintaro', 'Freelance, Ruby-no-Kai', 'http://kakutani.com', 'Tokyo, Japan', 'shintaro@kakutani.com', 'true', 'a plain-old agile rubyist-ist. keeb zombie.\r\n', 'kakutani', 0, 0, 523, 47, 0, 0, 0, '2008-03-04T17:11:22Z', '2024-10-26T02:10:32Z', 'https://avatars.githubusercontent.com/u/2160?v=4', 'https://api.github.com/users/kakutani', 'https://github.com/kakutani', 'https://api.github.com/users/kakutani/followers', 'https://api.github.com/users/kakutani/following', 'https://api.github.com/users/kakutani/gists', 'https://api.github.com/users/kakutani/starred', 'https://api.github.com/users/kakutani/repos', 'https://api.github.com/users/kakutani/events', 'https://api.github.com/users/kakutani/received_events', 0); +INSERT INTO `developer` VALUES (2161, 'febuiles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Federico Builes', 'Fly.io', 'http://mheroin.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 180, 4, 0, 0, 0, '2008-03-04T17:11:53Z', '2024-10-25T18:07:13Z', 'https://avatars.githubusercontent.com/u/2161?v=4', 'https://api.github.com/users/febuiles', 'https://github.com/febuiles', 'https://api.github.com/users/febuiles/followers', 'https://api.github.com/users/febuiles/following', 'https://api.github.com/users/febuiles/gists', 'https://api.github.com/users/febuiles/starred', 'https://api.github.com/users/febuiles/repos', 'https://api.github.com/users/febuiles/events', 'https://api.github.com/users/febuiles/received_events', 0); +INSERT INTO `developer` VALUES (2162, 'getconor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Conor Ryan', NULL, '', '未知', NULL, 'true', 'Since the Microsoft acquisition I\'ll be porting all of my projects to a self-hosted solution.', NULL, 0, 0, 14, 14, 0, 0, 0, '2008-03-04T17:12:29Z', '2024-05-14T04:04:49Z', 'https://avatars.githubusercontent.com/u/2162?v=4', 'https://api.github.com/users/getconor', 'https://github.com/getconor', 'https://api.github.com/users/getconor/followers', 'https://api.github.com/users/getconor/following', 'https://api.github.com/users/getconor/gists', 'https://api.github.com/users/getconor/starred', 'https://api.github.com/users/getconor/repos', 'https://api.github.com/users/getconor/events', 'https://api.github.com/users/getconor/received_events', 0); +INSERT INTO `developer` VALUES (2163, 'patoh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Ohearn', NULL, '', 'Australia', 'pat@400gbits.net', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-04T17:12:54Z', '2024-10-08T00:12:01Z', 'https://avatars.githubusercontent.com/u/2163?v=4', 'https://api.github.com/users/patoh', 'https://github.com/patoh', 'https://api.github.com/users/patoh/followers', 'https://api.github.com/users/patoh/following', 'https://api.github.com/users/patoh/gists', 'https://api.github.com/users/patoh/starred', 'https://api.github.com/users/patoh/repos', 'https://api.github.com/users/patoh/events', 'https://api.github.com/users/patoh/received_events', 0); +INSERT INTO `developer` VALUES (2164, 'codeblogger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicolai Reuschling', NULL, 'http://github.com/ncreuschling', 'Follow my new GitHub account: ncreuschling', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-04T17:14:05Z', '2021-06-30T13:10:07Z', 'https://avatars.githubusercontent.com/u/2164?v=4', 'https://api.github.com/users/codeblogger', 'https://github.com/codeblogger', 'https://api.github.com/users/codeblogger/followers', 'https://api.github.com/users/codeblogger/following', 'https://api.github.com/users/codeblogger/gists', 'https://api.github.com/users/codeblogger/starred', 'https://api.github.com/users/codeblogger/repos', 'https://api.github.com/users/codeblogger/events', 'https://api.github.com/users/codeblogger/received_events', 0); +INSERT INTO `developer` VALUES (2165, 'errcw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Woroshow', NULL, 'http://ericw.ca', 'Sunnyvale, CA', 'eric@ericw.ca', NULL, NULL, NULL, 0, 0, 20, 0, 0, 0, 0, '2008-03-04T17:15:54Z', '2024-08-20T01:08:18Z', 'https://avatars.githubusercontent.com/u/2165?v=4', 'https://api.github.com/users/errcw', 'https://github.com/errcw', 'https://api.github.com/users/errcw/followers', 'https://api.github.com/users/errcw/following', 'https://api.github.com/users/errcw/gists', 'https://api.github.com/users/errcw/starred', 'https://api.github.com/users/errcw/repos', 'https://api.github.com/users/errcw/events', 'https://api.github.com/users/errcw/received_events', 0); +INSERT INTO `developer` VALUES (2166, 'doubledare', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joc', 'Double Dare', '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 6, 5, 0, 0, 0, '2008-03-04T17:17:31Z', '2023-12-07T13:39:18Z', 'https://avatars.githubusercontent.com/u/2166?v=4', 'https://api.github.com/users/doubledare', 'https://github.com/doubledare', 'https://api.github.com/users/doubledare/followers', 'https://api.github.com/users/doubledare/following', 'https://api.github.com/users/doubledare/gists', 'https://api.github.com/users/doubledare/starred', 'https://api.github.com/users/doubledare/repos', 'https://api.github.com/users/doubledare/events', 'https://api.github.com/users/doubledare/received_events', 0); +INSERT INTO `developer` VALUES (2167, 'octover', 'C', 0, 0, 0, 0, 0, 0, 0, 'Caleb Jaffa', '@RedCaboose ', 'http://adipo.se', 'Falun & Stockholm, Sweden', NULL, 'true', 'American naturalized Swede doing mostly iOS related development.', NULL, 0, 0, 15, 3, 0, 0, 0, '2008-03-04T17:25:34Z', '2024-07-12T06:26:44Z', 'https://avatars.githubusercontent.com/u/2167?v=4', 'https://api.github.com/users/octover', 'https://github.com/octover', 'https://api.github.com/users/octover/followers', 'https://api.github.com/users/octover/following', 'https://api.github.com/users/octover/gists', 'https://api.github.com/users/octover/starred', 'https://api.github.com/users/octover/repos', 'https://api.github.com/users/octover/events', 'https://api.github.com/users/octover/received_events', 0); +INSERT INTO `developer` VALUES (2168, 'harmon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Grant', 'Wärtsilä North America', 'https://www.wartsila.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 3, 0, 0, 0, '2008-03-04T17:25:52Z', '2024-09-17T16:12:33Z', 'https://avatars.githubusercontent.com/u/2168?v=4', 'https://api.github.com/users/harmon', 'https://github.com/harmon', 'https://api.github.com/users/harmon/followers', 'https://api.github.com/users/harmon/following', 'https://api.github.com/users/harmon/gists', 'https://api.github.com/users/harmon/starred', 'https://api.github.com/users/harmon/repos', 'https://api.github.com/users/harmon/events', 'https://api.github.com/users/harmon/received_events', 0); +INSERT INTO `developer` VALUES (2169, 'rgregory', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roger Gregory', NULL, 'age1a33977m0weamjuvkwhxde8tqjry3j786znjmtqhxchymc0du74es95w4mc', 'Virginia', 'rtgregory@gmail.com', 'true', NULL, NULL, 0, 0, 8, 5, 0, 0, 0, '2008-03-04T17:26:04Z', '2024-02-08T02:58:23Z', 'https://avatars.githubusercontent.com/u/2169?v=4', 'https://api.github.com/users/rgregory', 'https://github.com/rgregory', 'https://api.github.com/users/rgregory/followers', 'https://api.github.com/users/rgregory/following', 'https://api.github.com/users/rgregory/gists', 'https://api.github.com/users/rgregory/starred', 'https://api.github.com/users/rgregory/repos', 'https://api.github.com/users/rgregory/events', 'https://api.github.com/users/rgregory/received_events', 0); +INSERT INTO `developer` VALUES (2170, 'mattbeedle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Beedle', NULL, 'https://www.vegan.io', 'Malta', NULL, NULL, 'Currently working on https://www.groovehq.com and https://www.vegan.io', NULL, 0, 0, 27, 1, 0, 0, 0, '2008-03-04T17:30:26Z', '2024-09-21T09:00:06Z', 'https://avatars.githubusercontent.com/u/2170?v=4', 'https://api.github.com/users/mattbeedle', 'https://github.com/mattbeedle', 'https://api.github.com/users/mattbeedle/followers', 'https://api.github.com/users/mattbeedle/following', 'https://api.github.com/users/mattbeedle/gists', 'https://api.github.com/users/mattbeedle/starred', 'https://api.github.com/users/mattbeedle/repos', 'https://api.github.com/users/mattbeedle/events', 'https://api.github.com/users/mattbeedle/received_events', 0); +INSERT INTO `developer` VALUES (2171, 'pardel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Ardeleanu', 'Vonage', 'http://pardel.dev', 'London, UK', 'pardel@gmail.com', NULL, 'Software engineer; \r\nDeveloper Relations Manager at @Vonage (formerly Nexmo, now part of Ericsson)\r\n🥑\r\n\r\n\r\n\r\n\r\n', 'pardel', 0, 0, 42, 60, 0, 0, 0, '2008-03-04T17:31:14Z', '2024-10-30T22:54:59Z', 'https://avatars.githubusercontent.com/u/2171?v=4', 'https://api.github.com/users/pardel', 'https://github.com/pardel', 'https://api.github.com/users/pardel/followers', 'https://api.github.com/users/pardel/following', 'https://api.github.com/users/pardel/gists', 'https://api.github.com/users/pardel/starred', 'https://api.github.com/users/pardel/repos', 'https://api.github.com/users/pardel/events', 'https://api.github.com/users/pardel/received_events', 0); +INSERT INTO `developer` VALUES (2172, 'sethwalker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seth Walker', '@daily-co ', 'https://sethwalker.net', 'Brooklyn, New York', NULL, NULL, 'Engineering / growth / product', NULL, 0, 0, 37, 7, 0, 0, 0, '2008-03-04T17:35:36Z', '2024-11-01T18:58:30Z', 'https://avatars.githubusercontent.com/u/2172?v=4', 'https://api.github.com/users/sethwalker', 'https://github.com/sethwalker', 'https://api.github.com/users/sethwalker/followers', 'https://api.github.com/users/sethwalker/following', 'https://api.github.com/users/sethwalker/gists', 'https://api.github.com/users/sethwalker/starred', 'https://api.github.com/users/sethwalker/repos', 'https://api.github.com/users/sethwalker/events', 'https://api.github.com/users/sethwalker/received_events', 0); +INSERT INTO `developer` VALUES (2173, 'langalex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Lang', '@cobot ', 'http://cobot.me', 'Berlin, Germany', NULL, NULL, 'CTO cobot.me', 'langalex', 0, 0, 181, 27, 0, 0, 0, '2008-03-04T17:36:12Z', '2024-07-24T08:27:37Z', 'https://avatars.githubusercontent.com/u/2173?v=4', 'https://api.github.com/users/langalex', 'https://github.com/langalex', 'https://api.github.com/users/langalex/followers', 'https://api.github.com/users/langalex/following', 'https://api.github.com/users/langalex/gists', 'https://api.github.com/users/langalex/starred', 'https://api.github.com/users/langalex/repos', 'https://api.github.com/users/langalex/events', 'https://api.github.com/users/langalex/received_events', 0); +INSERT INTO `developer` VALUES (2175, 'Fudge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erlend Simonsen', NULL, 'http://mr.fudgie.org/', 'Oslo, Norway', 'mr@fudgie.org', NULL, NULL, NULL, 0, 0, 43, 0, 0, 0, 0, '2008-03-04T17:38:31Z', '2024-07-22T09:22:52Z', 'https://avatars.githubusercontent.com/u/2175?v=4', 'https://api.github.com/users/Fudge', 'https://github.com/Fudge', 'https://api.github.com/users/Fudge/followers', 'https://api.github.com/users/Fudge/following', 'https://api.github.com/users/Fudge/gists', 'https://api.github.com/users/Fudge/starred', 'https://api.github.com/users/Fudge/repos', 'https://api.github.com/users/Fudge/events', 'https://api.github.com/users/Fudge/received_events', 0); +INSERT INTO `developer` VALUES (2176, 'ppierre', 'C', 0, 0, 0, 0, 746, 0, 0, 'pierre pracht', NULL, 'http://pierre-pracht.blogspot.com/', 'Montbéliard, Doubs, France', 'pierre.pracht@gmail.com', NULL, NULL, NULL, 0, 0, 23, 0, 0, 0, 0, '2008-03-04T17:43:00Z', '2024-10-22T11:18:22Z', 'https://avatars.githubusercontent.com/u/2176?v=4', 'https://api.github.com/users/ppierre', 'https://github.com/ppierre', 'https://api.github.com/users/ppierre/followers', 'https://api.github.com/users/ppierre/following', 'https://api.github.com/users/ppierre/gists', 'https://api.github.com/users/ppierre/starred', 'https://api.github.com/users/ppierre/repos', 'https://api.github.com/users/ppierre/events', 'https://api.github.com/users/ppierre/received_events', 0); +INSERT INTO `developer` VALUES (2177, 'yolk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastian Munz', 'mite GmbH', 'https://mite.de/', 'Berlin & Freiburg, Germany', NULL, NULL, NULL, NULL, 0, 0, 101, 5, 0, 0, 0, '2008-03-04T17:45:57Z', '2024-08-25T09:29:34Z', 'https://avatars.githubusercontent.com/u/2177?v=4', 'https://api.github.com/users/yolk', 'https://github.com/yolk', 'https://api.github.com/users/yolk/followers', 'https://api.github.com/users/yolk/following', 'https://api.github.com/users/yolk/gists', 'https://api.github.com/users/yolk/starred', 'https://api.github.com/users/yolk/repos', 'https://api.github.com/users/yolk/events', 'https://api.github.com/users/yolk/received_events', 0); +INSERT INTO `developer` VALUES (2178, 'virgild', 'C', 0, 0, 0, 0, 0, 0, 0, 'virgil', NULL, 'https://virgil.dev', 'Canada', NULL, 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-04T17:46:27Z', '2024-08-07T18:24:04Z', 'https://avatars.githubusercontent.com/u/2178?v=4', 'https://api.github.com/users/virgild', 'https://github.com/virgild', 'https://api.github.com/users/virgild/followers', 'https://api.github.com/users/virgild/following', 'https://api.github.com/users/virgild/gists', 'https://api.github.com/users/virgild/starred', 'https://api.github.com/users/virgild/repos', 'https://api.github.com/users/virgild/events', 'https://api.github.com/users/virgild/received_events', 0); +INSERT INTO `developer` VALUES (2179, 'kellan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kellan', NULL, 'http://laughingmeme.org', '未知', 'kellan@pobox.com', 'true', NULL, NULL, 0, 0, 257, 46, 0, 0, 0, '2008-03-04T17:49:59Z', '2024-08-29T16:55:34Z', 'https://avatars.githubusercontent.com/u/2179?v=4', 'https://api.github.com/users/kellan', 'https://github.com/kellan', 'https://api.github.com/users/kellan/followers', 'https://api.github.com/users/kellan/following', 'https://api.github.com/users/kellan/gists', 'https://api.github.com/users/kellan/starred', 'https://api.github.com/users/kellan/repos', 'https://api.github.com/users/kellan/events', 'https://api.github.com/users/kellan/received_events', 0); +INSERT INTO `developer` VALUES (2180, 'lucaspanjer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lucas Panjer', NULL, '', 'Vancouver, BC', 'lucas@panjer.org', NULL, NULL, NULL, 0, 0, 21, 18, 0, 0, 0, '2008-03-04T17:50:15Z', '2023-11-28T21:43:43Z', 'https://avatars.githubusercontent.com/u/2180?v=4', 'https://api.github.com/users/lucaspanjer', 'https://github.com/lucaspanjer', 'https://api.github.com/users/lucaspanjer/followers', 'https://api.github.com/users/lucaspanjer/following', 'https://api.github.com/users/lucaspanjer/gists', 'https://api.github.com/users/lucaspanjer/starred', 'https://api.github.com/users/lucaspanjer/repos', 'https://api.github.com/users/lucaspanjer/events', 'https://api.github.com/users/lucaspanjer/received_events', 0); +INSERT INTO `developer` VALUES (2181, 'yeah', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://twitter.com/jan', '未知', NULL, NULL, NULL, NULL, 0, 0, 63, 45, 0, 0, 0, '2008-03-04T17:51:34Z', '2024-09-24T18:43:58Z', 'https://avatars.githubusercontent.com/u/2181?v=4', 'https://api.github.com/users/yeah', 'https://github.com/yeah', 'https://api.github.com/users/yeah/followers', 'https://api.github.com/users/yeah/following', 'https://api.github.com/users/yeah/gists', 'https://api.github.com/users/yeah/starred', 'https://api.github.com/users/yeah/repos', 'https://api.github.com/users/yeah/events', 'https://api.github.com/users/yeah/received_events', 0); +INSERT INTO `developer` VALUES (2182, 'danp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Peterson', NULL, 'https://danp.net', 'Halifax, Nova Scotia, Canada', 'danp@danp.net', NULL, NULL, NULL, 0, 0, 149, 5, 0, 0, 0, '2008-03-04T17:52:10Z', '2024-07-18T22:21:04Z', 'https://avatars.githubusercontent.com/u/2182?v=4', 'https://api.github.com/users/danp', 'https://github.com/danp', 'https://api.github.com/users/danp/followers', 'https://api.github.com/users/danp/following', 'https://api.github.com/users/danp/gists', 'https://api.github.com/users/danp/starred', 'https://api.github.com/users/danp/repos', 'https://api.github.com/users/danp/events', 'https://api.github.com/users/danp/received_events', 0); +INSERT INTO `developer` VALUES (2183, 'martincik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ladi', 'Access Protocol, Amenti Studio', 'https://accessprotocol.co', 'Czech Republic', 'ladislav.martincik@gmail.com', 'true', NULL, 'martincik', 0, 0, 70, 69, 0, 0, 0, '2008-03-04T17:57:16Z', '2024-08-17T10:04:13Z', 'https://avatars.githubusercontent.com/u/2183?v=4', 'https://api.github.com/users/martincik', 'https://github.com/martincik', 'https://api.github.com/users/martincik/followers', 'https://api.github.com/users/martincik/following', 'https://api.github.com/users/martincik/gists', 'https://api.github.com/users/martincik/starred', 'https://api.github.com/users/martincik/repos', 'https://api.github.com/users/martincik/events', 'https://api.github.com/users/martincik/received_events', 0); +INSERT INTO `developer` VALUES (2184, 'supafly', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-04T17:57:41Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2184?v=4', 'https://api.github.com/users/supafly', 'https://github.com/supafly', 'https://api.github.com/users/supafly/followers', 'https://api.github.com/users/supafly/following', 'https://api.github.com/users/supafly/gists', 'https://api.github.com/users/supafly/starred', 'https://api.github.com/users/supafly/repos', 'https://api.github.com/users/supafly/events', 'https://api.github.com/users/supafly/received_events', 0); +INSERT INTO `developer` VALUES (2185, 'booleanman', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-04T18:01:00Z', '2016-02-26T22:34:47Z', 'https://avatars.githubusercontent.com/u/2185?v=4', 'https://api.github.com/users/booleanman', 'https://github.com/booleanman', 'https://api.github.com/users/booleanman/followers', 'https://api.github.com/users/booleanman/following', 'https://api.github.com/users/booleanman/gists', 'https://api.github.com/users/booleanman/starred', 'https://api.github.com/users/booleanman/repos', 'https://api.github.com/users/booleanman/events', 'https://api.github.com/users/booleanman/received_events', 0); +INSERT INTO `developer` VALUES (2186, 'benstiglitz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Stiglitz', NULL, '', 'Pittsburgh, PA', 'ben@tanjero.com', NULL, NULL, NULL, 0, 0, 27, 2, 0, 0, 0, '2008-03-04T18:04:28Z', '2024-07-08T17:48:53Z', 'https://avatars.githubusercontent.com/u/2186?v=4', 'https://api.github.com/users/benstiglitz', 'https://github.com/benstiglitz', 'https://api.github.com/users/benstiglitz/followers', 'https://api.github.com/users/benstiglitz/following', 'https://api.github.com/users/benstiglitz/gists', 'https://api.github.com/users/benstiglitz/starred', 'https://api.github.com/users/benstiglitz/repos', 'https://api.github.com/users/benstiglitz/events', 'https://api.github.com/users/benstiglitz/received_events', 0); +INSERT INTO `developer` VALUES (2187, 'kemayo', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Lynch', '@wikimedia ', 'https://davidlynch.org/', 'Saint Louis, MO', 'kemayo@gmail.com', 'true', NULL, NULL, 0, 0, 242, 8, 0, 0, 0, '2008-03-04T18:08:45Z', '2024-09-14T16:09:44Z', 'https://avatars.githubusercontent.com/u/2187?v=4', 'https://api.github.com/users/kemayo', 'https://github.com/kemayo', 'https://api.github.com/users/kemayo/followers', 'https://api.github.com/users/kemayo/following', 'https://api.github.com/users/kemayo/gists', 'https://api.github.com/users/kemayo/starred', 'https://api.github.com/users/kemayo/repos', 'https://api.github.com/users/kemayo/events', 'https://api.github.com/users/kemayo/received_events', 0); +INSERT INTO `developer` VALUES (2189, 'unders', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anders Törnqvist', 'Functionbox', '', 'Göteborg, Sweden', 'anders.tornqvist@gmail.com', 'true', NULL, NULL, 0, 0, 37, 6, 0, 0, 0, '2008-03-04T18:34:38Z', '2024-10-07T14:44:37Z', 'https://avatars.githubusercontent.com/u/2189?v=4', 'https://api.github.com/users/unders', 'https://github.com/unders', 'https://api.github.com/users/unders/followers', 'https://api.github.com/users/unders/following', 'https://api.github.com/users/unders/gists', 'https://api.github.com/users/unders/starred', 'https://api.github.com/users/unders/repos', 'https://api.github.com/users/unders/events', 'https://api.github.com/users/unders/received_events', 0); +INSERT INTO `developer` VALUES (2190, 'ralph', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ralph von der Heyden', 'Freelance', 'http://www.rvdh.de', 'Hamburg, Germany', NULL, 'true', NULL, NULL, 0, 0, 93, 78, 0, 0, 0, '2008-03-04T18:35:34Z', '2024-10-21T12:34:02Z', 'https://avatars.githubusercontent.com/u/2190?v=4', 'https://api.github.com/users/ralph', 'https://github.com/ralph', 'https://api.github.com/users/ralph/followers', 'https://api.github.com/users/ralph/following', 'https://api.github.com/users/ralph/gists', 'https://api.github.com/users/ralph/starred', 'https://api.github.com/users/ralph/repos', 'https://api.github.com/users/ralph/events', 'https://api.github.com/users/ralph/received_events', 0); +INSERT INTO `developer` VALUES (2191, 'peterlih', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Grosskopf', 'Unstoppable Finance GmbH', 'http://www.linkedin.com/in/petergrosskopf', 'Berlin, Germany', NULL, 'true', NULL, 'peterlih', 0, 0, 106, 85, 0, 0, 0, '2008-03-04T18:40:09Z', '2024-10-14T20:15:05Z', 'https://avatars.githubusercontent.com/u/2191?v=4', 'https://api.github.com/users/peterlih', 'https://github.com/peterlih', 'https://api.github.com/users/peterlih/followers', 'https://api.github.com/users/peterlih/following', 'https://api.github.com/users/peterlih/gists', 'https://api.github.com/users/peterlih/starred', 'https://api.github.com/users/peterlih/repos', 'https://api.github.com/users/peterlih/events', 'https://api.github.com/users/peterlih/received_events', 0); +INSERT INTO `developer` VALUES (2192, 'gnoshme', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keith Hunniford', 'WUMP Services Inc.', 'http://www.gnoshme.com', 'Denver', NULL, NULL, NULL, NULL, 0, 0, 9, 4, 0, 0, 0, '2008-03-04T18:40:41Z', '2024-06-13T00:47:55Z', 'https://avatars.githubusercontent.com/u/2192?v=4', 'https://api.github.com/users/gnoshme', 'https://github.com/gnoshme', 'https://api.github.com/users/gnoshme/followers', 'https://api.github.com/users/gnoshme/following', 'https://api.github.com/users/gnoshme/gists', 'https://api.github.com/users/gnoshme/starred', 'https://api.github.com/users/gnoshme/repos', 'https://api.github.com/users/gnoshme/events', 'https://api.github.com/users/gnoshme/received_events', 0); +INSERT INTO `developer` VALUES (2193, 'jeremybise', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Bise', 'ThoseGeeks', 'https://thosegeeks.com/', 'Abingdon, VA', NULL, 'true', NULL, NULL, 0, 0, 7, 4, 0, 0, 0, '2008-03-04T18:45:45Z', '2024-10-25T17:12:09Z', 'https://avatars.githubusercontent.com/u/2193?v=4', 'https://api.github.com/users/jeremybise', 'https://github.com/jeremybise', 'https://api.github.com/users/jeremybise/followers', 'https://api.github.com/users/jeremybise/following', 'https://api.github.com/users/jeremybise/gists', 'https://api.github.com/users/jeremybise/starred', 'https://api.github.com/users/jeremybise/repos', 'https://api.github.com/users/jeremybise/events', 'https://api.github.com/users/jeremybise/received_events', 0); +INSERT INTO `developer` VALUES (2194, 'foucist', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Robey', NULL, 'www.jamesrobey.com', 'Victoria, BC', 'james.robey+github@gmail.com', 'true', 'Senior Software Developer\r\n\r\nRuby, Elixir, JavaScript', NULL, 0, 0, 28, 13, 0, 0, 0, '2008-03-04T18:46:57Z', '2024-10-29T22:47:52Z', 'https://avatars.githubusercontent.com/u/2194?v=4', 'https://api.github.com/users/foucist', 'https://github.com/foucist', 'https://api.github.com/users/foucist/followers', 'https://api.github.com/users/foucist/following', 'https://api.github.com/users/foucist/gists', 'https://api.github.com/users/foucist/starred', 'https://api.github.com/users/foucist/repos', 'https://api.github.com/users/foucist/events', 'https://api.github.com/users/foucist/received_events', 0); +INSERT INTO `developer` VALUES (2195, 'arthurschreiber', 'C+', 12.847379140235612, 0, 0, 0, 0, 0, 0, 'Arthur Schreiber', 'GitHub', 'http://nokarma.org', 'Germany', 'arthurschreiber@github.com', NULL, 'I work at @github. ❤️ ', NULL, 0, 0, 1034, 42, 0, 0, 0, '2008-03-04T18:55:53Z', '2024-11-01T13:30:04Z', 'https://avatars.githubusercontent.com/u/2195?v=4', 'https://api.github.com/users/arthurschreiber', 'https://github.com/arthurschreiber', 'https://api.github.com/users/arthurschreiber/followers', 'https://api.github.com/users/arthurschreiber/following', 'https://api.github.com/users/arthurschreiber/gists', 'https://api.github.com/users/arthurschreiber/starred', 'https://api.github.com/users/arthurschreiber/repos', 'https://api.github.com/users/arthurschreiber/events', 'https://api.github.com/users/arthurschreiber/received_events', 0); +INSERT INTO `developer` VALUES (2196, 'rbarooah', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robin Barooah', NULL, 'http://www.sublime.org', 'San Francisco', 'robin@sublime.org', NULL, NULL, NULL, 0, 0, 10, 7, 0, 0, 0, '2008-03-04T18:59:25Z', '2024-11-02T15:54:50Z', 'https://avatars.githubusercontent.com/u/2196?v=4', 'https://api.github.com/users/rbarooah', 'https://github.com/rbarooah', 'https://api.github.com/users/rbarooah/followers', 'https://api.github.com/users/rbarooah/following', 'https://api.github.com/users/rbarooah/gists', 'https://api.github.com/users/rbarooah/starred', 'https://api.github.com/users/rbarooah/repos', 'https://api.github.com/users/rbarooah/events', 'https://api.github.com/users/rbarooah/received_events', 0); +INSERT INTO `developer` VALUES (2197, 'jonnii', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Goldman', NULL, 'jonnii.com', 'NYC', 'me@jonnii.com', 'true', NULL, 'jonnii', 0, 0, 37, 105, 0, 0, 0, '2008-03-04T19:00:39Z', '2024-10-23T00:05:36Z', 'https://avatars.githubusercontent.com/u/2197?v=4', 'https://api.github.com/users/jonnii', 'https://github.com/jonnii', 'https://api.github.com/users/jonnii/followers', 'https://api.github.com/users/jonnii/following', 'https://api.github.com/users/jonnii/gists', 'https://api.github.com/users/jonnii/starred', 'https://api.github.com/users/jonnii/repos', 'https://api.github.com/users/jonnii/events', 'https://api.github.com/users/jonnii/received_events', 0); +INSERT INTO `developer` VALUES (2198, 'az', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Zygadlewicz', 'Ecommerce Poland Expo', 'https://targiehandlu.pl', 'Poznan, Poland', 'adam@zygadlewicz.com', NULL, '<3 React', NULL, 0, 0, 15, 5, 0, 0, 0, '2008-03-04T19:06:55Z', '2024-07-24T11:34:39Z', 'https://avatars.githubusercontent.com/u/2198?v=4', 'https://api.github.com/users/az', 'https://github.com/az', 'https://api.github.com/users/az/followers', 'https://api.github.com/users/az/following', 'https://api.github.com/users/az/gists', 'https://api.github.com/users/az/starred', 'https://api.github.com/users/az/repos', 'https://api.github.com/users/az/events', 'https://api.github.com/users/az/received_events', 0); +INSERT INTO `developer` VALUES (2199, 'herzi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sven Herzberg', NULL, '', 'Hamburg, Europe', NULL, NULL, NULL, NULL, 0, 0, 24, 5, 0, 0, 0, '2008-03-04T19:26:24Z', '2024-09-26T09:58:21Z', 'https://avatars.githubusercontent.com/u/2199?v=4', 'https://api.github.com/users/herzi', 'https://github.com/herzi', 'https://api.github.com/users/herzi/followers', 'https://api.github.com/users/herzi/following', 'https://api.github.com/users/herzi/gists', 'https://api.github.com/users/herzi/starred', 'https://api.github.com/users/herzi/repos', 'https://api.github.com/users/herzi/events', 'https://api.github.com/users/herzi/received_events', 0); +INSERT INTO `developer` VALUES (2202, 'uwolfer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Urs Wolfer', '@true-wealth', '', 'Zurich, Switzerland', 'uwolfer@fwo.ch', NULL, NULL, NULL, 0, 0, 74, 20, 0, 0, 0, '2008-03-04T19:48:22Z', '2024-10-24T19:41:48Z', 'https://avatars.githubusercontent.com/u/2202?v=4', 'https://api.github.com/users/uwolfer', 'https://github.com/uwolfer', 'https://api.github.com/users/uwolfer/followers', 'https://api.github.com/users/uwolfer/following', 'https://api.github.com/users/uwolfer/gists', 'https://api.github.com/users/uwolfer/starred', 'https://api.github.com/users/uwolfer/repos', 'https://api.github.com/users/uwolfer/events', 'https://api.github.com/users/uwolfer/received_events', 0); +INSERT INTO `developer` VALUES (2203, 'amontoya', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alejandro Montoya', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T20:18:53Z', '2024-05-15T13:57:47Z', 'https://avatars.githubusercontent.com/u/2203?v=4', 'https://api.github.com/users/amontoya', 'https://github.com/amontoya', 'https://api.github.com/users/amontoya/followers', 'https://api.github.com/users/amontoya/following', 'https://api.github.com/users/amontoya/gists', 'https://api.github.com/users/amontoya/starred', 'https://api.github.com/users/amontoya/repos', 'https://api.github.com/users/amontoya/events', 'https://api.github.com/users/amontoya/received_events', 0); +INSERT INTO `developer` VALUES (2204, 'RobertL', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert L Crocker', 'WhiteLabelApps Inc.', 'http://whitelabelapps.com', 'Chehalis, WA', 'littleriver1@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T20:20:38Z', '2020-11-06T06:28:01Z', 'https://avatars.githubusercontent.com/u/2204?v=4', 'https://api.github.com/users/RobertL', 'https://github.com/RobertL', 'https://api.github.com/users/RobertL/followers', 'https://api.github.com/users/RobertL/following', 'https://api.github.com/users/RobertL/gists', 'https://api.github.com/users/RobertL/starred', 'https://api.github.com/users/RobertL/repos', 'https://api.github.com/users/RobertL/events', 'https://api.github.com/users/RobertL/received_events', 0); +INSERT INTO `developer` VALUES (2205, 'kjg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Glowacz', '@github ', '', 'Northbrook, IL', 'kjg@github.com', NULL, 'Engineer on the Licensing team @github ', NULL, 0, 0, 45, 37, 0, 0, 0, '2008-03-04T20:23:10Z', '2024-11-01T23:20:14Z', 'https://avatars.githubusercontent.com/u/2205?v=4', 'https://api.github.com/users/kjg', 'https://github.com/kjg', 'https://api.github.com/users/kjg/followers', 'https://api.github.com/users/kjg/following', 'https://api.github.com/users/kjg/gists', 'https://api.github.com/users/kjg/starred', 'https://api.github.com/users/kjg/repos', 'https://api.github.com/users/kjg/events', 'https://api.github.com/users/kjg/received_events', 0); +INSERT INTO `developer` VALUES (2206, 'thomasscovell', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T20:30:36Z', '2024-08-30T20:37:14Z', 'https://avatars.githubusercontent.com/u/2206?v=4', 'https://api.github.com/users/thomasscovell', 'https://github.com/thomasscovell', 'https://api.github.com/users/thomasscovell/followers', 'https://api.github.com/users/thomasscovell/following', 'https://api.github.com/users/thomasscovell/gists', 'https://api.github.com/users/thomasscovell/starred', 'https://api.github.com/users/thomasscovell/repos', 'https://api.github.com/users/thomasscovell/events', 'https://api.github.com/users/thomasscovell/received_events', 0); +INSERT INTO `developer` VALUES (2207, 'spirozh', 'C', 0, 0, 0, 0, 0, 0, 0, 'jason songhurst', NULL, '', 'Köln, Deutschland', 'jason.songhurst@gmail.com', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-04T20:36:44Z', '2024-08-23T14:12:30Z', 'https://avatars.githubusercontent.com/u/2207?v=4', 'https://api.github.com/users/spirozh', 'https://github.com/spirozh', 'https://api.github.com/users/spirozh/followers', 'https://api.github.com/users/spirozh/following', 'https://api.github.com/users/spirozh/gists', 'https://api.github.com/users/spirozh/starred', 'https://api.github.com/users/spirozh/repos', 'https://api.github.com/users/spirozh/events', 'https://api.github.com/users/spirozh/received_events', 0); +INSERT INTO `developer` VALUES (2208, 'svenfuchs', 'C', 8.251574872849048, 0, 0, 0, 0, 0, 0, 'Sven Fuchs', 'formerly Travis CI', 'http://svenfuchs.com', 'Germany/Berlin', 'me@svenfuchs.com', NULL, NULL, NULL, 0, 0, 766, 78, 0, 0, 0, '2008-03-04T20:38:09Z', '2024-10-13T11:02:52Z', 'https://avatars.githubusercontent.com/u/2208?v=4', 'https://api.github.com/users/svenfuchs', 'https://github.com/svenfuchs', 'https://api.github.com/users/svenfuchs/followers', 'https://api.github.com/users/svenfuchs/following', 'https://api.github.com/users/svenfuchs/gists', 'https://api.github.com/users/svenfuchs/starred', 'https://api.github.com/users/svenfuchs/repos', 'https://api.github.com/users/svenfuchs/events', 'https://api.github.com/users/svenfuchs/received_events', 0); +INSERT INTO `developer` VALUES (2209, 'wart', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-04T20:40:39Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2209?v=4', 'https://api.github.com/users/wart', 'https://github.com/wart', 'https://api.github.com/users/wart/followers', 'https://api.github.com/users/wart/following', 'https://api.github.com/users/wart/gists', 'https://api.github.com/users/wart/starred', 'https://api.github.com/users/wart/repos', 'https://api.github.com/users/wart/events', 'https://api.github.com/users/wart/received_events', 0); +INSERT INTO `developer` VALUES (2210, 'SteveMarshall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Marshall', '@ministryofjustice ', 'https://stevemarshall.com', 'London, England', NULL, 'true', 'If he ever grows up, Steve wants to be a mighty pirate. Until then, he\'s head of hosting at @ministryofjustice.', 'SteveMarshall', 0, 0, 111, 40, 0, 0, 0, '2008-03-04T20:47:45Z', '2024-10-28T11:18:33Z', 'https://avatars.githubusercontent.com/u/2210?v=4', 'https://api.github.com/users/SteveMarshall', 'https://github.com/SteveMarshall', 'https://api.github.com/users/SteveMarshall/followers', 'https://api.github.com/users/SteveMarshall/following', 'https://api.github.com/users/SteveMarshall/gists', 'https://api.github.com/users/SteveMarshall/starred', 'https://api.github.com/users/SteveMarshall/repos', 'https://api.github.com/users/SteveMarshall/events', 'https://api.github.com/users/SteveMarshall/received_events', 0); +INSERT INTO `developer` VALUES (2211, 'damnpenguins', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'cameronsenior.com', 'cameronsenior.com', 'Sydney, Australia', 'cs.subscribe@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T20:51:49Z', '2024-05-14T15:02:01Z', 'https://avatars.githubusercontent.com/u/2211?v=4', 'https://api.github.com/users/damnpenguins', 'https://github.com/damnpenguins', 'https://api.github.com/users/damnpenguins/followers', 'https://api.github.com/users/damnpenguins/following', 'https://api.github.com/users/damnpenguins/gists', 'https://api.github.com/users/damnpenguins/starred', 'https://api.github.com/users/damnpenguins/repos', 'https://api.github.com/users/damnpenguins/events', 'https://api.github.com/users/damnpenguins/received_events', 0); +INSERT INTO `developer` VALUES (2212, 'slewis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Lewis', NULL, '', 'Grand Rapids, MI', NULL, NULL, NULL, NULL, 0, 0, 5, 3, 0, 0, 0, '2008-03-04T20:56:01Z', '2024-11-01T10:48:21Z', 'https://avatars.githubusercontent.com/u/2212?v=4', 'https://api.github.com/users/slewis', 'https://github.com/slewis', 'https://api.github.com/users/slewis/followers', 'https://api.github.com/users/slewis/following', 'https://api.github.com/users/slewis/gists', 'https://api.github.com/users/slewis/starred', 'https://api.github.com/users/slewis/repos', 'https://api.github.com/users/slewis/events', 'https://api.github.com/users/slewis/received_events', 0); +INSERT INTO `developer` VALUES (2213, 'Zariel', 'C', 0, 0, 5, 0, 88, 26, 0, 'Chris Bannister', NULL, '', 'London, United Kingdom', 'c.bannister@gmail.com', NULL, NULL, NULL, 0, 0, 74, 21, 0, 0, 0, '2008-03-04T21:19:39Z', '2024-09-11T17:45:35Z', 'https://avatars.githubusercontent.com/u/2213?v=4', 'https://api.github.com/users/Zariel', 'https://github.com/Zariel', 'https://api.github.com/users/Zariel/followers', 'https://api.github.com/users/Zariel/following', 'https://api.github.com/users/Zariel/gists', 'https://api.github.com/users/Zariel/starred', 'https://api.github.com/users/Zariel/repos', 'https://api.github.com/users/Zariel/events', 'https://api.github.com/users/Zariel/received_events', 0); +INSERT INTO `developer` VALUES (2214, 'dwillis', 'C', 7.977198498676715, 0, 0, 0, 0, 0, 0, 'Derek Willis', '@openelections ', 'http://thescoop.org/', '未知', 'dwillis@gmail.com', NULL, 'I teach data journalism at the University of Maryland and am co-founder of @openelections. I enjoy cricket, scraping and other things people enjoy.', NULL, 0, 0, 750, 134, 0, 0, 0, '2008-03-04T21:21:27Z', '2024-11-01T01:16:51Z', 'https://avatars.githubusercontent.com/u/2214?v=4', 'https://api.github.com/users/dwillis', 'https://github.com/dwillis', 'https://api.github.com/users/dwillis/followers', 'https://api.github.com/users/dwillis/following', 'https://api.github.com/users/dwillis/gists', 'https://api.github.com/users/dwillis/starred', 'https://api.github.com/users/dwillis/repos', 'https://api.github.com/users/dwillis/events', 'https://api.github.com/users/dwillis/received_events', 0); +INSERT INTO `developer` VALUES (2215, 'whiteley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Whiteley', 'Fastly', '', 'Bend, OR', 'mattwhiteley@gmail.com', NULL, NULL, NULL, 0, 0, 33, 23, 0, 0, 0, '2008-03-04T21:39:45Z', '2024-10-22T11:18:22Z', 'https://avatars.githubusercontent.com/u/2215?v=4', 'https://api.github.com/users/whiteley', 'https://github.com/whiteley', 'https://api.github.com/users/whiteley/followers', 'https://api.github.com/users/whiteley/following', 'https://api.github.com/users/whiteley/gists', 'https://api.github.com/users/whiteley/starred', 'https://api.github.com/users/whiteley/repos', 'https://api.github.com/users/whiteley/events', 'https://api.github.com/users/whiteley/received_events', 0); +INSERT INTO `developer` VALUES (2216, 'spike', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephan B', NULL, '', 'Alameda, CA', NULL, NULL, 'Android Mobile Software Engineer', NULL, 0, 0, 20, 25, 0, 0, 0, '2008-03-04T21:41:39Z', '2024-09-28T19:56:40Z', 'https://avatars.githubusercontent.com/u/2216?v=4', 'https://api.github.com/users/spike', 'https://github.com/spike', 'https://api.github.com/users/spike/followers', 'https://api.github.com/users/spike/following', 'https://api.github.com/users/spike/gists', 'https://api.github.com/users/spike/starred', 'https://api.github.com/users/spike/repos', 'https://api.github.com/users/spike/events', 'https://api.github.com/users/spike/received_events', 0); +INSERT INTO `developer` VALUES (2217, 'tdyer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Dyer', NULL, '', 'Chelmsford, MA', 'tdyer1@gmail.com', NULL, NULL, NULL, 0, 0, 60, 10, 0, 0, 0, '2008-03-04T21:53:13Z', '2024-02-09T21:27:27Z', 'https://avatars.githubusercontent.com/u/2217?v=4', 'https://api.github.com/users/tdyer', 'https://github.com/tdyer', 'https://api.github.com/users/tdyer/followers', 'https://api.github.com/users/tdyer/following', 'https://api.github.com/users/tdyer/gists', 'https://api.github.com/users/tdyer/starred', 'https://api.github.com/users/tdyer/repos', 'https://api.github.com/users/tdyer/events', 'https://api.github.com/users/tdyer/received_events', 0); +INSERT INTO `developer` VALUES (2218, 'redondos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Angelo Olivera', 'MongoDB', '', 'New York, NY', 'aolivera@gmail.com', NULL, NULL, NULL, 0, 0, 31, 23, 0, 0, 0, '2008-03-04T21:54:54Z', '2024-10-22T08:02:38Z', 'https://avatars.githubusercontent.com/u/2218?v=4', 'https://api.github.com/users/redondos', 'https://github.com/redondos', 'https://api.github.com/users/redondos/followers', 'https://api.github.com/users/redondos/following', 'https://api.github.com/users/redondos/gists', 'https://api.github.com/users/redondos/starred', 'https://api.github.com/users/redondos/repos', 'https://api.github.com/users/redondos/events', 'https://api.github.com/users/redondos/received_events', 0); +INSERT INTO `developer` VALUES (2219, 'myelin', 'C', 0, 0, 1, 4, 48, 17, 0, 'Phillip Pearson', '@google ', 'http://myelin.nz/', 'Palo Alto, CA', NULL, NULL, 'Programmer/EE from New Zealand, now living in the San Francisco Bay Area. Working on Chrome OS at Google, and on retro hardware projects in my spare time.', 'myelin', 0, 0, 117, 77, 0, 0, 0, '2008-03-04T22:06:18Z', '2024-09-07T02:23:48Z', 'https://avatars.githubusercontent.com/u/2219?v=4', 'https://api.github.com/users/myelin', 'https://github.com/myelin', 'https://api.github.com/users/myelin/followers', 'https://api.github.com/users/myelin/following', 'https://api.github.com/users/myelin/gists', 'https://api.github.com/users/myelin/starred', 'https://api.github.com/users/myelin/repos', 'https://api.github.com/users/myelin/events', 'https://api.github.com/users/myelin/received_events', 0); +INSERT INTO `developer` VALUES (2220, 'techpeace', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Buck', NULL, '', 'Pittsburgh, PA', 'github@matthewbuck.com', NULL, 'Ex-founder, full-stack engineer', NULL, 0, 0, 105, 15, 0, 0, 0, '2008-03-04T22:08:08Z', '2024-11-04T16:29:31Z', 'https://avatars.githubusercontent.com/u/2220?v=4', 'https://api.github.com/users/techpeace', 'https://github.com/techpeace', 'https://api.github.com/users/techpeace/followers', 'https://api.github.com/users/techpeace/following', 'https://api.github.com/users/techpeace/gists', 'https://api.github.com/users/techpeace/starred', 'https://api.github.com/users/techpeace/repos', 'https://api.github.com/users/techpeace/events', 'https://api.github.com/users/techpeace/received_events', 0); +INSERT INTO `developer` VALUES (2221, 'mlandauer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Landauer', '@openaustralia ', '', '未知', NULL, NULL, 'I make things for people with computers. Founder OpenAustralia Foundation. Am I a pragmatist or an idealist? ex physicist, film VFX.', 'matthewlandauer', 0, 0, 143, 49, 0, 0, 0, '2008-03-04T22:18:13Z', '2024-10-27T09:10:09Z', 'https://avatars.githubusercontent.com/u/2221?v=4', 'https://api.github.com/users/mlandauer', 'https://github.com/mlandauer', 'https://api.github.com/users/mlandauer/followers', 'https://api.github.com/users/mlandauer/following', 'https://api.github.com/users/mlandauer/gists', 'https://api.github.com/users/mlandauer/starred', 'https://api.github.com/users/mlandauer/repos', 'https://api.github.com/users/mlandauer/events', 'https://api.github.com/users/mlandauer/received_events', 0); +INSERT INTO `developer` VALUES (2222, 'stevenberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steven Berg', NULL, 'http://stevenberg.net/', 'Indiana, USA', 'steven@stevenberg.net', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T22:34:11Z', '2024-09-23T11:58:44Z', 'https://avatars.githubusercontent.com/u/2222?v=4', 'https://api.github.com/users/stevenberg', 'https://github.com/stevenberg', 'https://api.github.com/users/stevenberg/followers', 'https://api.github.com/users/stevenberg/following', 'https://api.github.com/users/stevenberg/gists', 'https://api.github.com/users/stevenberg/starred', 'https://api.github.com/users/stevenberg/repos', 'https://api.github.com/users/stevenberg/events', 'https://api.github.com/users/stevenberg/received_events', 0); +INSERT INTO `developer` VALUES (2223, 'jathayde', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Athayde', 'Meticulous, LLC', 'www.sfumatofarm.com', 'Charlottesville, Virginia', 'john@athayde.com', NULL, NULL, 'johnathayde', 0, 0, 60, 51, 0, 0, 0, '2008-03-04T22:57:35Z', '2024-10-24T16:35:53Z', 'https://avatars.githubusercontent.com/u/2223?v=4', 'https://api.github.com/users/jathayde', 'https://github.com/jathayde', 'https://api.github.com/users/jathayde/followers', 'https://api.github.com/users/jathayde/following', 'https://api.github.com/users/jathayde/gists', 'https://api.github.com/users/jathayde/starred', 'https://api.github.com/users/jathayde/repos', 'https://api.github.com/users/jathayde/events', 'https://api.github.com/users/jathayde/received_events', 0); +INSERT INTO `developer` VALUES (2224, 'jjh', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-04T22:57:42Z', '2022-06-22T19:53:58Z', 'https://avatars.githubusercontent.com/u/2224?v=4', 'https://api.github.com/users/jjh', 'https://github.com/jjh', 'https://api.github.com/users/jjh/followers', 'https://api.github.com/users/jjh/following', 'https://api.github.com/users/jjh/gists', 'https://api.github.com/users/jjh/starred', 'https://api.github.com/users/jjh/repos', 'https://api.github.com/users/jjh/events', 'https://api.github.com/users/jjh/received_events', 0); +INSERT INTO `developer` VALUES (2225, 'graham71', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Graham', NULL, '', '未知', 'graham71@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T23:16:45Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2225?v=4', 'https://api.github.com/users/graham71', 'https://github.com/graham71', 'https://api.github.com/users/graham71/followers', 'https://api.github.com/users/graham71/following', 'https://api.github.com/users/graham71/gists', 'https://api.github.com/users/graham71/starred', 'https://api.github.com/users/graham71/repos', 'https://api.github.com/users/graham71/events', 'https://api.github.com/users/graham71/received_events', 0); +INSERT INTO `developer` VALUES (2226, 'mage2k', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Jones', 'EnterpriseDB', '', 'Portland, OR', NULL, NULL, NULL, NULL, 0, 0, 18, 0, 0, 0, 0, '2008-03-04T23:18:00Z', '2024-10-22T11:18:22Z', 'https://avatars.githubusercontent.com/u/2226?v=4', 'https://api.github.com/users/mage2k', 'https://github.com/mage2k', 'https://api.github.com/users/mage2k/followers', 'https://api.github.com/users/mage2k/following', 'https://api.github.com/users/mage2k/gists', 'https://api.github.com/users/mage2k/starred', 'https://api.github.com/users/mage2k/repos', 'https://api.github.com/users/mage2k/events', 'https://api.github.com/users/mage2k/received_events', 0); +INSERT INTO `developer` VALUES (2227, 'leifthande', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T23:26:35Z', '2019-12-17T13:48:45Z', 'https://avatars.githubusercontent.com/u/2227?v=4', 'https://api.github.com/users/leifthande', 'https://github.com/leifthande', 'https://api.github.com/users/leifthande/followers', 'https://api.github.com/users/leifthande/following', 'https://api.github.com/users/leifthande/gists', 'https://api.github.com/users/leifthande/starred', 'https://api.github.com/users/leifthande/repos', 'https://api.github.com/users/leifthande/events', 'https://api.github.com/users/leifthande/received_events', 0); +INSERT INTO `developer` VALUES (2228, 'tjl', 'C', 0, 0, 0, 0, 0, 0, 0, 'T.J. Lahey', NULL, '', 'Kitchener, Ontario', NULL, NULL, NULL, NULL, 0, 0, 19, 0, 0, 0, 0, '2008-03-04T23:36:24Z', '2023-02-02T04:02:34Z', 'https://avatars.githubusercontent.com/u/2228?v=4', 'https://api.github.com/users/tjl', 'https://github.com/tjl', 'https://api.github.com/users/tjl/followers', 'https://api.github.com/users/tjl/following', 'https://api.github.com/users/tjl/gists', 'https://api.github.com/users/tjl/starred', 'https://api.github.com/users/tjl/repos', 'https://api.github.com/users/tjl/events', 'https://api.github.com/users/tjl/received_events', 0); +INSERT INTO `developer` VALUES (2229, 'hal-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T23:40:58Z', '2016-02-26T22:34:47Z', 'https://avatars.githubusercontent.com/u/2229?v=4', 'https://api.github.com/users/hal-xx', 'https://github.com/hal-xx', 'https://api.github.com/users/hal-xx/followers', 'https://api.github.com/users/hal-xx/following', 'https://api.github.com/users/hal-xx/gists', 'https://api.github.com/users/hal-xx/starred', 'https://api.github.com/users/hal-xx/repos', 'https://api.github.com/users/hal-xx/events', 'https://api.github.com/users/hal-xx/received_events', 0); +INSERT INTO `developer` VALUES (2230, 'scartunas', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-04T23:41:24Z', '2018-10-01T11:21:59Z', 'https://avatars.githubusercontent.com/u/2230?v=4', 'https://api.github.com/users/scartunas', 'https://github.com/scartunas', 'https://api.github.com/users/scartunas/followers', 'https://api.github.com/users/scartunas/following', 'https://api.github.com/users/scartunas/gists', 'https://api.github.com/users/scartunas/starred', 'https://api.github.com/users/scartunas/repos', 'https://api.github.com/users/scartunas/events', 'https://api.github.com/users/scartunas/received_events', 0); +INSERT INTO `developer` VALUES (2231, 'djgraphite', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://djgraphite.com/', '未知', 'vinay@djgraphite.com', NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-03-04T23:47:58Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2231?v=4', 'https://api.github.com/users/djgraphite', 'https://github.com/djgraphite', 'https://api.github.com/users/djgraphite/followers', 'https://api.github.com/users/djgraphite/following', 'https://api.github.com/users/djgraphite/gists', 'https://api.github.com/users/djgraphite/starred', 'https://api.github.com/users/djgraphite/repos', 'https://api.github.com/users/djgraphite/events', 'https://api.github.com/users/djgraphite/received_events', 0); +INSERT INTO `developer` VALUES (2232, 'bobreyes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert \"Bob\" Reyes', NULL, '', 'Philippines', NULL, 'true', 'Philippine-based Mozilla Rep and Mozilla Tech Speaker. Open Source Advocate. Tech News Columnist. Football fan.', 'bobreyes', 0, 0, 25, 20, 0, 0, 0, '2008-03-04T23:54:36Z', '2024-01-08T13:26:51Z', 'https://avatars.githubusercontent.com/u/2232?v=4', 'https://api.github.com/users/bobreyes', 'https://github.com/bobreyes', 'https://api.github.com/users/bobreyes/followers', 'https://api.github.com/users/bobreyes/following', 'https://api.github.com/users/bobreyes/gists', 'https://api.github.com/users/bobreyes/starred', 'https://api.github.com/users/bobreyes/repos', 'https://api.github.com/users/bobreyes/events', 'https://api.github.com/users/bobreyes/received_events', 0); +INSERT INTO `developer` VALUES (2233, 'trashpanda001', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trash Panda', NULL, 'trashpanda.com/gh', 'San Francisco, CA', 'adrian@trashpanda.com', NULL, 'I like to do all the things\r\n', 'trashpandacode', 0, 0, 31, 16, 0, 0, 0, '2008-03-05T00:16:16Z', '2024-11-05T04:40:15Z', 'https://avatars.githubusercontent.com/u/2233?v=4', 'https://api.github.com/users/trashpanda001', 'https://github.com/trashpanda001', 'https://api.github.com/users/trashpanda001/followers', 'https://api.github.com/users/trashpanda001/following', 'https://api.github.com/users/trashpanda001/gists', 'https://api.github.com/users/trashpanda001/starred', 'https://api.github.com/users/trashpanda001/repos', 'https://api.github.com/users/trashpanda001/events', 'https://api.github.com/users/trashpanda001/received_events', 0); +INSERT INTO `developer` VALUES (2234, 'brinkost', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T00:25:09Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2234?v=4', 'https://api.github.com/users/brinkost', 'https://github.com/brinkost', 'https://api.github.com/users/brinkost/followers', 'https://api.github.com/users/brinkost/following', 'https://api.github.com/users/brinkost/gists', 'https://api.github.com/users/brinkost/starred', 'https://api.github.com/users/brinkost/repos', 'https://api.github.com/users/brinkost/events', 'https://api.github.com/users/brinkost/received_events', 0); +INSERT INTO `developer` VALUES (2235, 'mgreenly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Greenly', 'Logic Refinery, LLC', 'http://mgreenly.github.com/mgreenly', 'Sandstone MN', 'mgreenly@gmail.com', NULL, 'blah...', NULL, 0, 0, 16, 4, 0, 0, 0, '2008-03-05T00:26:32Z', '2024-08-03T11:40:41Z', 'https://avatars.githubusercontent.com/u/2235?v=4', 'https://api.github.com/users/mgreenly', 'https://github.com/mgreenly', 'https://api.github.com/users/mgreenly/followers', 'https://api.github.com/users/mgreenly/following', 'https://api.github.com/users/mgreenly/gists', 'https://api.github.com/users/mgreenly/starred', 'https://api.github.com/users/mgreenly/repos', 'https://api.github.com/users/mgreenly/events', 'https://api.github.com/users/mgreenly/received_events', 0); +INSERT INTO `developer` VALUES (2236, 'aseigo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Seigo', '@Esri', '', '未知', 'aseigo@esri.com', NULL, NULL, NULL, 0, 0, 60, 1, 0, 0, 0, '2008-03-05T00:38:42Z', '2024-08-21T13:23:20Z', 'https://avatars.githubusercontent.com/u/2236?v=4', 'https://api.github.com/users/aseigo', 'https://github.com/aseigo', 'https://api.github.com/users/aseigo/followers', 'https://api.github.com/users/aseigo/following', 'https://api.github.com/users/aseigo/gists', 'https://api.github.com/users/aseigo/starred', 'https://api.github.com/users/aseigo/repos', 'https://api.github.com/users/aseigo/events', 'https://api.github.com/users/aseigo/received_events', 0); +INSERT INTO `developer` VALUES (2237, 'davidmduarte', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Duarte', 'Fractalmind', 'http://www.fractalmind.pt', 'Portugal', 'davidmduarte@gmail.com', 'true', NULL, NULL, 0, 0, 14, 3, 0, 0, 0, '2008-03-05T00:43:31Z', '2024-03-14T12:02:24Z', 'https://avatars.githubusercontent.com/u/2237?v=4', 'https://api.github.com/users/davidmduarte', 'https://github.com/davidmduarte', 'https://api.github.com/users/davidmduarte/followers', 'https://api.github.com/users/davidmduarte/following', 'https://api.github.com/users/davidmduarte/gists', 'https://api.github.com/users/davidmduarte/starred', 'https://api.github.com/users/davidmduarte/repos', 'https://api.github.com/users/davidmduarte/events', 'https://api.github.com/users/davidmduarte/received_events', 0); +INSERT INTO `developer` VALUES (2238, 'ryanirelan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Irelan', '@pineworksco, @craftquest', 'https://pineworks.co', 'Austin, TX', 'ryan@irelan.net', NULL, 'Building web applications, leading technical training, and guiding teams at @pineworksco ', NULL, 0, 0, 148, 27, 0, 0, 0, '2008-03-05T00:46:57Z', '2024-10-25T16:33:29Z', 'https://avatars.githubusercontent.com/u/2238?v=4', 'https://api.github.com/users/ryanirelan', 'https://github.com/ryanirelan', 'https://api.github.com/users/ryanirelan/followers', 'https://api.github.com/users/ryanirelan/following', 'https://api.github.com/users/ryanirelan/gists', 'https://api.github.com/users/ryanirelan/starred', 'https://api.github.com/users/ryanirelan/repos', 'https://api.github.com/users/ryanirelan/events', 'https://api.github.com/users/ryanirelan/received_events', 0); +INSERT INTO `developer` VALUES (2239, 'goban', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Briscoe', 'product.money', '', 'Denver, Colorado', 'everynothing@gmail.com', NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2008-03-05T01:00:50Z', '2024-10-31T23:24:05Z', 'https://avatars.githubusercontent.com/u/2239?v=4', 'https://api.github.com/users/goban', 'https://github.com/goban', 'https://api.github.com/users/goban/followers', 'https://api.github.com/users/goban/following', 'https://api.github.com/users/goban/gists', 'https://api.github.com/users/goban/starred', 'https://api.github.com/users/goban/repos', 'https://api.github.com/users/goban/events', 'https://api.github.com/users/goban/received_events', 0); +INSERT INTO `developer` VALUES (2240, 'davidt', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Trowbridge', '@beanbaginc ', '', '未知', 'trowbrds@gmail.com', NULL, NULL, NULL, 0, 0, 27, 0, 0, 0, 0, '2008-03-05T01:33:08Z', '2024-04-17T15:47:58Z', 'https://avatars.githubusercontent.com/u/2240?v=4', 'https://api.github.com/users/davidt', 'https://github.com/davidt', 'https://api.github.com/users/davidt/followers', 'https://api.github.com/users/davidt/following', 'https://api.github.com/users/davidt/gists', 'https://api.github.com/users/davidt/starred', 'https://api.github.com/users/davidt/repos', 'https://api.github.com/users/davidt/events', 'https://api.github.com/users/davidt/received_events', 0); +INSERT INTO `developer` VALUES (2241, 'melriffe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mel Riffe', 'Juicy Parts Software', 'http://melriffe.info', 'Richmond, VA', NULL, 'true', 'I wear pants, short pants', NULL, 0, 0, 40, 48, 0, 0, 0, '2008-03-05T03:16:33Z', '2024-10-02T14:10:10Z', 'https://avatars.githubusercontent.com/u/2241?v=4', 'https://api.github.com/users/melriffe', 'https://github.com/melriffe', 'https://api.github.com/users/melriffe/followers', 'https://api.github.com/users/melriffe/following', 'https://api.github.com/users/melriffe/gists', 'https://api.github.com/users/melriffe/starred', 'https://api.github.com/users/melriffe/repos', 'https://api.github.com/users/melriffe/events', 'https://api.github.com/users/melriffe/received_events', 0); +INSERT INTO `developer` VALUES (2242, 'softprops', 'C', 10.446585866227705, 0, 0, 0, 0, 0, 0, 'Doug Tangren', 'https://www.mongodb.com/atlas', 'http://lessis.me', 'nyc', 'd.tangren@gmail.com', NULL, 'rusting at sea', 'softprops', 0, 0, 894, 163, 0, 0, 0, '2008-03-05T03:41:51Z', '2024-10-28T11:18:33Z', 'https://avatars.githubusercontent.com/u/2242?v=4', 'https://api.github.com/users/softprops', 'https://github.com/softprops', 'https://api.github.com/users/softprops/followers', 'https://api.github.com/users/softprops/following', 'https://api.github.com/users/softprops/gists', 'https://api.github.com/users/softprops/starred', 'https://api.github.com/users/softprops/repos', 'https://api.github.com/users/softprops/events', 'https://api.github.com/users/softprops/received_events', 0); +INSERT INTO `developer` VALUES (2243, 'kristinalim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kristina Lim', 'Bit Control Technologies, Inc.', 'https://www.bitcontroltech.com', 'Mandaluyong, Philippines', 'kristina.lim@bitcontroltech.com', 'true', NULL, NULL, 0, 0, 69, 14, 0, 0, 0, '2008-03-05T04:02:48Z', '2024-10-19T03:38:10Z', 'https://avatars.githubusercontent.com/u/2243?v=4', 'https://api.github.com/users/kristinalim', 'https://github.com/kristinalim', 'https://api.github.com/users/kristinalim/followers', 'https://api.github.com/users/kristinalim/following', 'https://api.github.com/users/kristinalim/gists', 'https://api.github.com/users/kristinalim/starred', 'https://api.github.com/users/kristinalim/repos', 'https://api.github.com/users/kristinalim/events', 'https://api.github.com/users/kristinalim/received_events', 0); +INSERT INTO `developer` VALUES (2244, 'awilkinson', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-05T04:39:34Z', '2017-02-06T19:33:08Z', 'https://avatars.githubusercontent.com/u/2244?v=4', 'https://api.github.com/users/awilkinson', 'https://github.com/awilkinson', 'https://api.github.com/users/awilkinson/followers', 'https://api.github.com/users/awilkinson/following', 'https://api.github.com/users/awilkinson/gists', 'https://api.github.com/users/awilkinson/starred', 'https://api.github.com/users/awilkinson/repos', 'https://api.github.com/users/awilkinson/events', 'https://api.github.com/users/awilkinson/received_events', 0); +INSERT INTO `developer` VALUES (2245, 'vamsee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vamsee Kanakala', NULL, 'https://vamsee.in', 'Bangalore, India', 'dev@vamsee.in', 'true', NULL, 'vamsee', 0, 0, 29, 0, 0, 0, 0, '2008-03-05T04:59:03Z', '2024-10-20T11:21:01Z', 'https://avatars.githubusercontent.com/u/2245?v=4', 'https://api.github.com/users/vamsee', 'https://github.com/vamsee', 'https://api.github.com/users/vamsee/followers', 'https://api.github.com/users/vamsee/following', 'https://api.github.com/users/vamsee/gists', 'https://api.github.com/users/vamsee/starred', 'https://api.github.com/users/vamsee/repos', 'https://api.github.com/users/vamsee/events', 'https://api.github.com/users/vamsee/received_events', 0); +INSERT INTO `developer` VALUES (2246, 'joannou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joannou Ng', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-05T05:16:26Z', '2024-09-16T16:33:29Z', 'https://avatars.githubusercontent.com/u/2246?v=4', 'https://api.github.com/users/joannou', 'https://github.com/joannou', 'https://api.github.com/users/joannou/followers', 'https://api.github.com/users/joannou/following', 'https://api.github.com/users/joannou/gists', 'https://api.github.com/users/joannou/starred', 'https://api.github.com/users/joannou/repos', 'https://api.github.com/users/joannou/events', 'https://api.github.com/users/joannou/received_events', 0); +INSERT INTO `developer` VALUES (2247, 'unragr', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T05:52:58Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2247?v=4', 'https://api.github.com/users/unragr', 'https://github.com/unragr', 'https://api.github.com/users/unragr/followers', 'https://api.github.com/users/unragr/following', 'https://api.github.com/users/unragr/gists', 'https://api.github.com/users/unragr/starred', 'https://api.github.com/users/unragr/repos', 'https://api.github.com/users/unragr/events', 'https://api.github.com/users/unragr/received_events', 0); +INSERT INTO `developer` VALUES (2248, 'pedro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pedro Belo', NULL, '', 'San Francisco, CA', NULL, NULL, 'app and pizza maker', 'ped', 0, 0, 271, 0, 0, 0, 0, '2008-03-05T06:09:44Z', '2024-10-18T15:23:39Z', 'https://avatars.githubusercontent.com/u/2248?v=4', 'https://api.github.com/users/pedro', 'https://github.com/pedro', 'https://api.github.com/users/pedro/followers', 'https://api.github.com/users/pedro/following', 'https://api.github.com/users/pedro/gists', 'https://api.github.com/users/pedro/starred', 'https://api.github.com/users/pedro/repos', 'https://api.github.com/users/pedro/events', 'https://api.github.com/users/pedro/received_events', 0); +INSERT INTO `developer` VALUES (2250, 'macio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maciej Kozak', NULL, '', 'Gdańsk, PL', 'maciej.kozak@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-05T07:41:28Z', '2024-07-22T09:37:56Z', 'https://avatars.githubusercontent.com/u/2250?v=4', 'https://api.github.com/users/macio', 'https://github.com/macio', 'https://api.github.com/users/macio/followers', 'https://api.github.com/users/macio/following', 'https://api.github.com/users/macio/gists', 'https://api.github.com/users/macio/starred', 'https://api.github.com/users/macio/repos', 'https://api.github.com/users/macio/events', 'https://api.github.com/users/macio/received_events', 0); +INSERT INTO `developer` VALUES (2251, 'Senori', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T07:46:47Z', '2020-04-24T21:16:22Z', 'https://avatars.githubusercontent.com/u/2251?v=4', 'https://api.github.com/users/Senori', 'https://github.com/Senori', 'https://api.github.com/users/Senori/followers', 'https://api.github.com/users/Senori/following', 'https://api.github.com/users/Senori/gists', 'https://api.github.com/users/Senori/starred', 'https://api.github.com/users/Senori/repos', 'https://api.github.com/users/Senori/events', 'https://api.github.com/users/Senori/received_events', 0); +INSERT INTO `developer` VALUES (2252, 'specialist', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T08:53:05Z', '2022-06-22T07:08:02Z', 'https://avatars.githubusercontent.com/u/2252?v=4', 'https://api.github.com/users/specialist', 'https://github.com/specialist', 'https://api.github.com/users/specialist/followers', 'https://api.github.com/users/specialist/following', 'https://api.github.com/users/specialist/gists', 'https://api.github.com/users/specialist/starred', 'https://api.github.com/users/specialist/repos', 'https://api.github.com/users/specialist/events', 'https://api.github.com/users/specialist/received_events', 0); +INSERT INTO `developer` VALUES (2253, 'seb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seb', 'Coeur d\'Alene', 'https://milesandlove.com', 'Paris', NULL, NULL, NULL, NULL, 0, 0, 13, 11, 0, 0, 0, '2008-03-05T08:54:31Z', '2024-08-06T13:35:58Z', 'https://avatars.githubusercontent.com/u/2253?v=4', 'https://api.github.com/users/seb', 'https://github.com/seb', 'https://api.github.com/users/seb/followers', 'https://api.github.com/users/seb/following', 'https://api.github.com/users/seb/gists', 'https://api.github.com/users/seb/starred', 'https://api.github.com/users/seb/repos', 'https://api.github.com/users/seb/events', 'https://api.github.com/users/seb/received_events', 0); +INSERT INTO `developer` VALUES (2254, 'aaronbrethorst', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Brethorst', NULL, 'http://brethorsting.com', 'Seattle WA', NULL, 'true', 'Executive Director of @OneBusAway. Engineering Director at @twistle ', NULL, 0, 0, 276, 15, 0, 0, 0, '2008-03-05T09:18:24Z', '2024-10-03T22:32:36Z', 'https://avatars.githubusercontent.com/u/2254?v=4', 'https://api.github.com/users/aaronbrethorst', 'https://github.com/aaronbrethorst', 'https://api.github.com/users/aaronbrethorst/followers', 'https://api.github.com/users/aaronbrethorst/following', 'https://api.github.com/users/aaronbrethorst/gists', 'https://api.github.com/users/aaronbrethorst/starred', 'https://api.github.com/users/aaronbrethorst/repos', 'https://api.github.com/users/aaronbrethorst/events', 'https://api.github.com/users/aaronbrethorst/received_events', 0); +INSERT INTO `developer` VALUES (2255, 'kamui', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jack Chu', NULL, 'https://jackchu.com', 'New York', NULL, NULL, NULL, 'jack_chu', 0, 0, 70, 47, 0, 0, 0, '2008-03-05T09:43:19Z', '2024-10-27T11:19:14Z', 'https://avatars.githubusercontent.com/u/2255?v=4', 'https://api.github.com/users/kamui', 'https://github.com/kamui', 'https://api.github.com/users/kamui/followers', 'https://api.github.com/users/kamui/following', 'https://api.github.com/users/kamui/gists', 'https://api.github.com/users/kamui/starred', 'https://api.github.com/users/kamui/repos', 'https://api.github.com/users/kamui/events', 'https://api.github.com/users/kamui/received_events', 0); +INSERT INTO `developer` VALUES (2256, 'kates', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kates Gasis', NULL, '', 'Philippines', NULL, 'true', NULL, NULL, 0, 0, 23, 8, 0, 0, 0, '2008-03-05T09:47:12Z', '2024-07-04T13:19:02Z', 'https://avatars.githubusercontent.com/u/2256?v=4', 'https://api.github.com/users/kates', 'https://github.com/kates', 'https://api.github.com/users/kates/followers', 'https://api.github.com/users/kates/following', 'https://api.github.com/users/kates/gists', 'https://api.github.com/users/kates/starred', 'https://api.github.com/users/kates/repos', 'https://api.github.com/users/kates/events', 'https://api.github.com/users/kates/received_events', 0); +INSERT INTO `developer` VALUES (2257, 'cyx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cyril David', 'Auth0', 'http://cyx.is', 'Redmond, WA', NULL, NULL, NULL, 'cyx', 0, 0, 200, 9, 0, 0, 0, '2008-03-05T11:02:27Z', '2024-10-21T19:53:50Z', 'https://avatars.githubusercontent.com/u/2257?v=4', 'https://api.github.com/users/cyx', 'https://github.com/cyx', 'https://api.github.com/users/cyx/followers', 'https://api.github.com/users/cyx/following', 'https://api.github.com/users/cyx/gists', 'https://api.github.com/users/cyx/starred', 'https://api.github.com/users/cyx/repos', 'https://api.github.com/users/cyx/events', 'https://api.github.com/users/cyx/received_events', 0); +INSERT INTO `developer` VALUES (2258, 'jerome', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jérôme Lipowicz', 'Eugenol - Promopixel', 'http://www.linkedin.com/in/lipowicz', 'Paris, France', NULL, NULL, NULL, NULL, 0, 0, 20, 3, 0, 0, 0, '2008-03-05T11:21:43Z', '2024-11-03T17:43:32Z', 'https://avatars.githubusercontent.com/u/2258?v=4', 'https://api.github.com/users/jerome', 'https://github.com/jerome', 'https://api.github.com/users/jerome/followers', 'https://api.github.com/users/jerome/following', 'https://api.github.com/users/jerome/gists', 'https://api.github.com/users/jerome/starred', 'https://api.github.com/users/jerome/repos', 'https://api.github.com/users/jerome/events', 'https://api.github.com/users/jerome/received_events', 0); +INSERT INTO `developer` VALUES (2259, 'simonm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Mullis', NULL, 'http://www.simonmullis.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-03-05T13:57:38Z', '2024-11-01T14:40:39Z', 'https://avatars.githubusercontent.com/u/2259?v=4', 'https://api.github.com/users/simonm', 'https://github.com/simonm', 'https://api.github.com/users/simonm/followers', 'https://api.github.com/users/simonm/following', 'https://api.github.com/users/simonm/gists', 'https://api.github.com/users/simonm/starred', 'https://api.github.com/users/simonm/repos', 'https://api.github.com/users/simonm/events', 'https://api.github.com/users/simonm/received_events', 0); +INSERT INTO `developer` VALUES (2260, 'MDCore', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gavin van Lelyveld', NULL, '', 'Bristol, England', NULL, NULL, NULL, NULL, 0, 0, 9, 2, 0, 0, 0, '2008-03-05T14:13:58Z', '2024-07-10T14:48:28Z', 'https://avatars.githubusercontent.com/u/2260?v=4', 'https://api.github.com/users/MDCore', 'https://github.com/MDCore', 'https://api.github.com/users/MDCore/followers', 'https://api.github.com/users/MDCore/following', 'https://api.github.com/users/MDCore/gists', 'https://api.github.com/users/MDCore/starred', 'https://api.github.com/users/MDCore/repos', 'https://api.github.com/users/MDCore/events', 'https://api.github.com/users/MDCore/received_events', 0); +INSERT INTO `developer` VALUES (2261, 'nazgul', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kee Hinckley', NULL, '', 'Seattle area', NULL, NULL, NULL, 'nazgul', 0, 0, 4, 1, 0, 0, 0, '2008-03-05T14:26:45Z', '2024-08-03T03:07:34Z', 'https://avatars.githubusercontent.com/u/2261?v=4', 'https://api.github.com/users/nazgul', 'https://github.com/nazgul', 'https://api.github.com/users/nazgul/followers', 'https://api.github.com/users/nazgul/following', 'https://api.github.com/users/nazgul/gists', 'https://api.github.com/users/nazgul/starred', 'https://api.github.com/users/nazgul/repos', 'https://api.github.com/users/nazgul/events', 'https://api.github.com/users/nazgul/received_events', 0); +INSERT INTO `developer` VALUES (2262, 'zhenyi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zhenyi Tan', 'And a Dinosaur', 'http://andadinosaur.com', 'Singapore', NULL, NULL, NULL, NULL, 0, 0, 47, 5, 0, 0, 0, '2008-03-05T14:28:56Z', '2024-10-25T09:50:35Z', 'https://avatars.githubusercontent.com/u/2262?v=4', 'https://api.github.com/users/zhenyi', 'https://github.com/zhenyi', 'https://api.github.com/users/zhenyi/followers', 'https://api.github.com/users/zhenyi/following', 'https://api.github.com/users/zhenyi/gists', 'https://api.github.com/users/zhenyi/starred', 'https://api.github.com/users/zhenyi/repos', 'https://api.github.com/users/zhenyi/events', 'https://api.github.com/users/zhenyi/received_events', 0); +INSERT INTO `developer` VALUES (2263, 'JamesHarrison', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Harrison', 'Zzoomm plc', 'http://www.talkunafraid.co.uk/', 'Oxfordshire, UK', NULL, NULL, 'Engineer who occasionally writes some code.', NULL, 0, 0, 80, 13, 0, 0, 0, '2008-03-05T16:47:15Z', '2024-09-29T15:48:18Z', 'https://avatars.githubusercontent.com/u/2263?v=4', 'https://api.github.com/users/JamesHarrison', 'https://github.com/JamesHarrison', 'https://api.github.com/users/JamesHarrison/followers', 'https://api.github.com/users/JamesHarrison/following', 'https://api.github.com/users/JamesHarrison/gists', 'https://api.github.com/users/JamesHarrison/starred', 'https://api.github.com/users/JamesHarrison/repos', 'https://api.github.com/users/JamesHarrison/events', 'https://api.github.com/users/JamesHarrison/received_events', 0); +INSERT INTO `developer` VALUES (2264, 'omnifroodle', 'C', 8.686585726675807, 0, 22, 134, 76, 1, 0, 'Matt Overstreet', 'DataStax', '', 'Richmond, VA', NULL, NULL, NULL, NULL, 0, 0, 44, 12, 0, 0, 0, '2008-03-05T16:47:52Z', '2024-07-19T14:16:43Z', 'https://avatars.githubusercontent.com/u/2264?v=4', 'https://api.github.com/users/omnifroodle', 'https://github.com/omnifroodle', 'https://api.github.com/users/omnifroodle/followers', 'https://api.github.com/users/omnifroodle/following', 'https://api.github.com/users/omnifroodle/gists', 'https://api.github.com/users/omnifroodle/starred', 'https://api.github.com/users/omnifroodle/repos', 'https://api.github.com/users/omnifroodle/events', 'https://api.github.com/users/omnifroodle/received_events', 0); +INSERT INTO `developer` VALUES (2265, 'jro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Rohwedder', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 49, 42, 0, 0, 0, '2008-03-05T16:47:58Z', '2024-09-12T02:30:31Z', 'https://avatars.githubusercontent.com/u/2265?v=4', 'https://api.github.com/users/jro', 'https://github.com/jro', 'https://api.github.com/users/jro/followers', 'https://api.github.com/users/jro/following', 'https://api.github.com/users/jro/gists', 'https://api.github.com/users/jro/starred', 'https://api.github.com/users/jro/repos', 'https://api.github.com/users/jro/events', 'https://api.github.com/users/jro/received_events', 0); +INSERT INTO `developer` VALUES (2266, 'mag', 'C', 0, 0, 0, 0, 25, 11, 0, 'Mike Grafton', 'Citizen Code', '', 'Oakland', NULL, NULL, NULL, NULL, 0, 0, 39, 10, 0, 0, 0, '2008-03-05T16:48:42Z', '2024-09-28T16:21:28Z', 'https://avatars.githubusercontent.com/u/2266?v=4', 'https://api.github.com/users/mag', 'https://github.com/mag', 'https://api.github.com/users/mag/followers', 'https://api.github.com/users/mag/following', 'https://api.github.com/users/mag/gists', 'https://api.github.com/users/mag/starred', 'https://api.github.com/users/mag/repos', 'https://api.github.com/users/mag/events', 'https://api.github.com/users/mag/received_events', 0); +INSERT INTO `developer` VALUES (2267, 'jonner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathon Jongsma', NULL, '', 'minnesota', 'jonathon@quotidian.org', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-05T16:50:39Z', '2024-10-31T15:55:25Z', 'https://avatars.githubusercontent.com/u/2267?v=4', 'https://api.github.com/users/jonner', 'https://github.com/jonner', 'https://api.github.com/users/jonner/followers', 'https://api.github.com/users/jonner/following', 'https://api.github.com/users/jonner/gists', 'https://api.github.com/users/jonner/starred', 'https://api.github.com/users/jonner/repos', 'https://api.github.com/users/jonner/events', 'https://api.github.com/users/jonner/received_events', 0); +INSERT INTO `developer` VALUES (2268, 'djanowski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damian Janowski', '@community-phone-company', '', 'Buenos Aires, Argentina', 'jano@dimaion.com', NULL, NULL, NULL, 0, 0, 280, 21, 0, 0, 0, '2008-03-05T16:50:49Z', '2024-10-24T22:25:21Z', 'https://avatars.githubusercontent.com/u/2268?v=4', 'https://api.github.com/users/djanowski', 'https://github.com/djanowski', 'https://api.github.com/users/djanowski/followers', 'https://api.github.com/users/djanowski/following', 'https://api.github.com/users/djanowski/gists', 'https://api.github.com/users/djanowski/starred', 'https://api.github.com/users/djanowski/repos', 'https://api.github.com/users/djanowski/events', 'https://api.github.com/users/djanowski/received_events', 0); +INSERT INTO `developer` VALUES (2269, 'ginader', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dirk Ginader', '@Google', 'https://dir.kg', '未知', NULL, NULL, 'Daddy | UX Engineer at Google | Accessibility | Javascript | floating Head | Photography Noob | happy chap | lover of lunch breaks :-)', NULL, 0, 0, 252, 160, 0, 0, 0, '2008-03-05T16:52:59Z', '2024-08-25T12:55:23Z', 'https://avatars.githubusercontent.com/u/2269?v=4', 'https://api.github.com/users/ginader', 'https://github.com/ginader', 'https://api.github.com/users/ginader/followers', 'https://api.github.com/users/ginader/following', 'https://api.github.com/users/ginader/gists', 'https://api.github.com/users/ginader/starred', 'https://api.github.com/users/ginader/repos', 'https://api.github.com/users/ginader/events', 'https://api.github.com/users/ginader/received_events', 0); +INSERT INTO `developer` VALUES (2270, 'raul', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raul Murciano', NULL, '', '未知', 'raul@murciano.net', 'true', NULL, NULL, 0, 0, 181, 262, 0, 0, 0, '2008-03-05T16:53:44Z', '2024-06-24T06:52:50Z', 'https://avatars.githubusercontent.com/u/2270?v=4', 'https://api.github.com/users/raul', 'https://github.com/raul', 'https://api.github.com/users/raul/followers', 'https://api.github.com/users/raul/following', 'https://api.github.com/users/raul/gists', 'https://api.github.com/users/raul/starred', 'https://api.github.com/users/raul/repos', 'https://api.github.com/users/raul/events', 'https://api.github.com/users/raul/received_events', 0); +INSERT INTO `developer` VALUES (2271, 'cdemyanovich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Craig Demyanovich', NULL, 'http://craigdemyanovich.blogspot.com/', 'Chicago, IL, USA', NULL, NULL, NULL, NULL, 0, 0, 24, 4, 0, 0, 0, '2008-03-05T16:54:05Z', '2024-08-20T19:47:38Z', 'https://avatars.githubusercontent.com/u/2271?v=4', 'https://api.github.com/users/cdemyanovich', 'https://github.com/cdemyanovich', 'https://api.github.com/users/cdemyanovich/followers', 'https://api.github.com/users/cdemyanovich/following', 'https://api.github.com/users/cdemyanovich/gists', 'https://api.github.com/users/cdemyanovich/starred', 'https://api.github.com/users/cdemyanovich/repos', 'https://api.github.com/users/cdemyanovich/events', 'https://api.github.com/users/cdemyanovich/received_events', 0); +INSERT INTO `developer` VALUES (2272, 'jemminger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Emminger', 'Seventh Compass', '', 'Florida', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-05T16:58:22Z', '2024-09-27T20:15:05Z', 'https://avatars.githubusercontent.com/u/2272?v=4', 'https://api.github.com/users/jemminger', 'https://github.com/jemminger', 'https://api.github.com/users/jemminger/followers', 'https://api.github.com/users/jemminger/following', 'https://api.github.com/users/jemminger/gists', 'https://api.github.com/users/jemminger/starred', 'https://api.github.com/users/jemminger/repos', 'https://api.github.com/users/jemminger/events', 'https://api.github.com/users/jemminger/received_events', 0); +INSERT INTO `developer` VALUES (2273, 'jmazzi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Mazzi', 'a2hosting.com', 'http://justinmazzi.com', 'Downingtown, PA', 'jmazzi@gmail.com', 'true', 'CTO - A2 Hosting', NULL, 0, 0, 86, 50, 0, 0, 0, '2008-03-05T17:02:16Z', '2024-10-29T19:29:19Z', 'https://avatars.githubusercontent.com/u/2273?v=4', 'https://api.github.com/users/jmazzi', 'https://github.com/jmazzi', 'https://api.github.com/users/jmazzi/followers', 'https://api.github.com/users/jmazzi/following', 'https://api.github.com/users/jmazzi/gists', 'https://api.github.com/users/jmazzi/starred', 'https://api.github.com/users/jmazzi/repos', 'https://api.github.com/users/jmazzi/events', 'https://api.github.com/users/jmazzi/received_events', 0); +INSERT INTO `developer` VALUES (2274, 'simeng', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simen Graaten', '@changers-no ', 'https://h4x.no/', 'Oslo', 'simeng@gmail.com', NULL, NULL, NULL, 0, 0, 40, 39, 0, 0, 0, '2008-03-05T17:03:52Z', '2024-11-04T15:26:44Z', 'https://avatars.githubusercontent.com/u/2274?v=4', 'https://api.github.com/users/simeng', 'https://github.com/simeng', 'https://api.github.com/users/simeng/followers', 'https://api.github.com/users/simeng/following', 'https://api.github.com/users/simeng/gists', 'https://api.github.com/users/simeng/starred', 'https://api.github.com/users/simeng/repos', 'https://api.github.com/users/simeng/events', 'https://api.github.com/users/simeng/received_events', 0); +INSERT INTO `developer` VALUES (2275, 'jcoletaylor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pete Taylor', 'Wrapbook', 'https://github.com/jcoletaylor', 'Mansfield Center, CT', 'pete.jc.taylor@hey.com', NULL, NULL, NULL, 0, 0, 5, 5, 0, 0, 0, '2008-03-05T17:04:35Z', '2024-10-10T07:09:21Z', 'https://avatars.githubusercontent.com/u/2275?v=4', 'https://api.github.com/users/jcoletaylor', 'https://github.com/jcoletaylor', 'https://api.github.com/users/jcoletaylor/followers', 'https://api.github.com/users/jcoletaylor/following', 'https://api.github.com/users/jcoletaylor/gists', 'https://api.github.com/users/jcoletaylor/starred', 'https://api.github.com/users/jcoletaylor/repos', 'https://api.github.com/users/jcoletaylor/events', 'https://api.github.com/users/jcoletaylor/received_events', 0); +INSERT INTO `developer` VALUES (2276, 'neodude', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Bukowski', NULL, 'http://neodude.net/', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 16, 19, 0, 0, 0, '2008-03-05T17:06:06Z', '2024-09-14T19:22:30Z', 'https://avatars.githubusercontent.com/u/2276?v=4', 'https://api.github.com/users/neodude', 'https://github.com/neodude', 'https://api.github.com/users/neodude/followers', 'https://api.github.com/users/neodude/following', 'https://api.github.com/users/neodude/gists', 'https://api.github.com/users/neodude/starred', 'https://api.github.com/users/neodude/repos', 'https://api.github.com/users/neodude/events', 'https://api.github.com/users/neodude/received_events', 0); +INSERT INTO `developer` VALUES (2277, 'claus', 'C', 2.8154929595597133, 0, 0, 0, 0, 0, 0, 'Claus Wahlers', '@MadeInHaus ', 'https://wa.hle.rs', 'São Paulo', 'w@hle.rs', NULL, 'Keypunch operations supervisor', NULL, 0, 0, 449, 39, 0, 0, 0, '2008-03-05T17:07:26Z', '2024-10-30T21:52:36Z', 'https://avatars.githubusercontent.com/u/2277?v=4', 'https://api.github.com/users/claus', 'https://github.com/claus', 'https://api.github.com/users/claus/followers', 'https://api.github.com/users/claus/following', 'https://api.github.com/users/claus/gists', 'https://api.github.com/users/claus/starred', 'https://api.github.com/users/claus/repos', 'https://api.github.com/users/claus/events', 'https://api.github.com/users/claus/received_events', 0); +INSERT INTO `developer` VALUES (2278, 'charleseff', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Finkel', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 50, 31, 0, 0, 0, '2008-03-05T17:08:34Z', '2024-07-07T01:53:48Z', 'https://avatars.githubusercontent.com/u/2278?v=4', 'https://api.github.com/users/charleseff', 'https://github.com/charleseff', 'https://api.github.com/users/charleseff/followers', 'https://api.github.com/users/charleseff/following', 'https://api.github.com/users/charleseff/gists', 'https://api.github.com/users/charleseff/starred', 'https://api.github.com/users/charleseff/repos', 'https://api.github.com/users/charleseff/events', 'https://api.github.com/users/charleseff/received_events', 0); +INSERT INTO `developer` VALUES (2279, 'edsinclair', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eirik Dentz Sinclair', NULL, '', 'indieweb.social', 'eirikdentz@gmail.com', 'true', 'I\'m a full stack engineer with more than 20 years of experience currently traveling the world with my family.', '_eirik', 0, 0, 23, 49, 0, 0, 0, '2008-03-05T17:10:00Z', '2024-09-25T08:43:14Z', 'https://avatars.githubusercontent.com/u/2279?v=4', 'https://api.github.com/users/edsinclair', 'https://github.com/edsinclair', 'https://api.github.com/users/edsinclair/followers', 'https://api.github.com/users/edsinclair/following', 'https://api.github.com/users/edsinclair/gists', 'https://api.github.com/users/edsinclair/starred', 'https://api.github.com/users/edsinclair/repos', 'https://api.github.com/users/edsinclair/events', 'https://api.github.com/users/edsinclair/received_events', 0); +INSERT INTO `developer` VALUES (2280, 'johnh', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Haro', 'PartySlate', 'johnharo.net', 'Chicago', NULL, NULL, NULL, NULL, 0, 0, 6, 9, 0, 0, 0, '2008-03-05T17:10:12Z', '2024-08-07T19:37:50Z', 'https://avatars.githubusercontent.com/u/2280?v=4', 'https://api.github.com/users/johnh', 'https://github.com/johnh', 'https://api.github.com/users/johnh/followers', 'https://api.github.com/users/johnh/following', 'https://api.github.com/users/johnh/gists', 'https://api.github.com/users/johnh/starred', 'https://api.github.com/users/johnh/repos', 'https://api.github.com/users/johnh/events', 'https://api.github.com/users/johnh/received_events', 0); +INSERT INTO `developer` VALUES (2281, 'benaldred', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Aldred', 'Tiny Code Factory', 'http://tinycodefactory.com', 'Manchester', NULL, 'true', NULL, NULL, 0, 0, 30, 44, 0, 0, 0, '2008-03-05T17:12:56Z', '2024-10-11T08:50:32Z', 'https://avatars.githubusercontent.com/u/2281?v=4', 'https://api.github.com/users/benaldred', 'https://github.com/benaldred', 'https://api.github.com/users/benaldred/followers', 'https://api.github.com/users/benaldred/following', 'https://api.github.com/users/benaldred/gists', 'https://api.github.com/users/benaldred/starred', 'https://api.github.com/users/benaldred/repos', 'https://api.github.com/users/benaldred/events', 'https://api.github.com/users/benaldred/received_events', 0); +INSERT INTO `developer` VALUES (2282, 'jcartwright', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Cartwright', NULL, '', 'Denton, TX', 'jasonecartwright@gmail.com', NULL, 'Elixir developer and technology leader helping businesses to innovate and build amazing online products and services', NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-05T17:13:21Z', '2024-10-30T18:30:04Z', 'https://avatars.githubusercontent.com/u/2282?v=4', 'https://api.github.com/users/jcartwright', 'https://github.com/jcartwright', 'https://api.github.com/users/jcartwright/followers', 'https://api.github.com/users/jcartwright/following', 'https://api.github.com/users/jcartwright/gists', 'https://api.github.com/users/jcartwright/starred', 'https://api.github.com/users/jcartwright/repos', 'https://api.github.com/users/jcartwright/events', 'https://api.github.com/users/jcartwright/received_events', 0); +INSERT INTO `developer` VALUES (2283, 'botrby', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 5, 0, 0, 0, '2008-03-05T17:16:52Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2283?v=4', 'https://api.github.com/users/botrby', 'https://github.com/botrby', 'https://api.github.com/users/botrby/followers', 'https://api.github.com/users/botrby/following', 'https://api.github.com/users/botrby/gists', 'https://api.github.com/users/botrby/starred', 'https://api.github.com/users/botrby/repos', 'https://api.github.com/users/botrby/events', 'https://api.github.com/users/botrby/received_events', 0); +INSERT INTO `developer` VALUES (2284, 'whatistheamazon', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T17:18:16Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2284?v=4', 'https://api.github.com/users/whatistheamazon', 'https://github.com/whatistheamazon', 'https://api.github.com/users/whatistheamazon/followers', 'https://api.github.com/users/whatistheamazon/following', 'https://api.github.com/users/whatistheamazon/gists', 'https://api.github.com/users/whatistheamazon/starred', 'https://api.github.com/users/whatistheamazon/repos', 'https://api.github.com/users/whatistheamazon/events', 'https://api.github.com/users/whatistheamazon/received_events', 0); +INSERT INTO `developer` VALUES (2285, 'redsymbol', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'San Franicsco, CA, USA', NULL, NULL, NULL, NULL, 0, 0, 229, 3, 0, 0, 0, '2008-03-05T17:20:19Z', '2024-04-16T11:28:46Z', 'https://avatars.githubusercontent.com/u/2285?v=4', 'https://api.github.com/users/redsymbol', 'https://github.com/redsymbol', 'https://api.github.com/users/redsymbol/followers', 'https://api.github.com/users/redsymbol/following', 'https://api.github.com/users/redsymbol/gists', 'https://api.github.com/users/redsymbol/starred', 'https://api.github.com/users/redsymbol/repos', 'https://api.github.com/users/redsymbol/events', 'https://api.github.com/users/redsymbol/received_events', 0); +INSERT INTO `developer` VALUES (2286, 'xn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Trosclair', 'Trosclairity', 'trosclairity.com', 'New Orleans, LA', NULL, NULL, NULL, NULL, 0, 0, 32, 28, 0, 0, 0, '2008-03-05T17:21:57Z', '2024-08-09T14:40:40Z', 'https://avatars.githubusercontent.com/u/2286?v=4', 'https://api.github.com/users/xn', 'https://github.com/xn', 'https://api.github.com/users/xn/followers', 'https://api.github.com/users/xn/following', 'https://api.github.com/users/xn/gists', 'https://api.github.com/users/xn/starred', 'https://api.github.com/users/xn/repos', 'https://api.github.com/users/xn/events', 'https://api.github.com/users/xn/received_events', 0); +INSERT INTO `developer` VALUES (2287, 'dustyd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dusty Davidson', 'Flywheel - Premium WordPress Hosting *Built for Designers*', 'http://www.getFlywheel.com', 'Omaha, NE', 'dusty@brightmix.com', NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2008-03-05T17:24:38Z', '2020-10-01T16:26:08Z', 'https://avatars.githubusercontent.com/u/2287?v=4', 'https://api.github.com/users/dustyd', 'https://github.com/dustyd', 'https://api.github.com/users/dustyd/followers', 'https://api.github.com/users/dustyd/following', 'https://api.github.com/users/dustyd/gists', 'https://api.github.com/users/dustyd/starred', 'https://api.github.com/users/dustyd/repos', 'https://api.github.com/users/dustyd/events', 'https://api.github.com/users/dustyd/received_events', 0); +INSERT INTO `developer` VALUES (2288, 'cc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Cooke', 'Google', '', 'Mountain View', 'cc@chris-cooke.com', NULL, NULL, NULL, 0, 0, 28, 18, 0, 0, 0, '2008-03-05T17:25:04Z', '2024-10-04T18:39:04Z', 'https://avatars.githubusercontent.com/u/2288?v=4', 'https://api.github.com/users/cc', 'https://github.com/cc', 'https://api.github.com/users/cc/followers', 'https://api.github.com/users/cc/following', 'https://api.github.com/users/cc/gists', 'https://api.github.com/users/cc/starred', 'https://api.github.com/users/cc/repos', 'https://api.github.com/users/cc/events', 'https://api.github.com/users/cc/received_events', 0); +INSERT INTO `developer` VALUES (2289, 'zeke', 'B', 42.87444358872023, 0, 0, 0, 0, 0, 0, 'Zeke Sikelianos', '@replicate ', 'http://zeke.sikelianos.com', 'Berkeley, CA', 'zeke@sikelianos.com', NULL, '\"Zeek\". Open-source AI engineer at @replicate.\r\n\r\nPreviously @github, @electron, @npm, @heroku. **he/him**', 'zeke', 0, 0, 2785, 298, 0, 0, 0, '2008-03-05T17:26:18Z', '2024-10-20T03:27:18Z', 'https://avatars.githubusercontent.com/u/2289?v=4', 'https://api.github.com/users/zeke', 'https://github.com/zeke', 'https://api.github.com/users/zeke/followers', 'https://api.github.com/users/zeke/following', 'https://api.github.com/users/zeke/gists', 'https://api.github.com/users/zeke/starred', 'https://api.github.com/users/zeke/repos', 'https://api.github.com/users/zeke/events', 'https://api.github.com/users/zeke/received_events', 0); +INSERT INTO `developer` VALUES (2290, 'wesmaldonado', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wes Maldonado', NULL, 'http://www.linkedin.com/in/wesmaldonado', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 25, 8, 0, 0, 0, '2008-03-05T17:27:29Z', '2023-11-30T21:37:05Z', 'https://avatars.githubusercontent.com/u/2290?v=4', 'https://api.github.com/users/wesmaldonado', 'https://github.com/wesmaldonado', 'https://api.github.com/users/wesmaldonado/followers', 'https://api.github.com/users/wesmaldonado/following', 'https://api.github.com/users/wesmaldonado/gists', 'https://api.github.com/users/wesmaldonado/starred', 'https://api.github.com/users/wesmaldonado/repos', 'https://api.github.com/users/wesmaldonado/events', 'https://api.github.com/users/wesmaldonado/received_events', 0); +INSERT INTO `developer` VALUES (2291, 'kenpratt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ken Pratt', 'Stripe', 'http://kenpratt.net/', 'Vancouver, BC', 'ken@kenpratt.net', NULL, NULL, NULL, 0, 0, 78, 8, 0, 0, 0, '2008-03-05T17:28:08Z', '2024-04-11T04:00:06Z', 'https://avatars.githubusercontent.com/u/2291?v=4', 'https://api.github.com/users/kenpratt', 'https://github.com/kenpratt', 'https://api.github.com/users/kenpratt/followers', 'https://api.github.com/users/kenpratt/following', 'https://api.github.com/users/kenpratt/gists', 'https://api.github.com/users/kenpratt/starred', 'https://api.github.com/users/kenpratt/repos', 'https://api.github.com/users/kenpratt/events', 'https://api.github.com/users/kenpratt/received_events', 0); +INSERT INTO `developer` VALUES (2292, 'jacib', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob Pedersen', NULL, '', 'Denmark', 'jaacib@gmail.com', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T17:28:32Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2292?v=4', 'https://api.github.com/users/jacib', 'https://github.com/jacib', 'https://api.github.com/users/jacib/followers', 'https://api.github.com/users/jacib/following', 'https://api.github.com/users/jacib/gists', 'https://api.github.com/users/jacib/starred', 'https://api.github.com/users/jacib/repos', 'https://api.github.com/users/jacib/events', 'https://api.github.com/users/jacib/received_events', 0); +INSERT INTO `developer` VALUES (2293, 'stesla', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samantha Tesla', 'DRW', '', 'Chicago, Illinois, USA', 'samuel.tesla@gmail.com', NULL, NULL, NULL, 0, 0, 33, 0, 0, 0, 0, '2008-03-05T17:31:20Z', '2024-10-17T16:07:03Z', 'https://avatars.githubusercontent.com/u/2293?v=4', 'https://api.github.com/users/stesla', 'https://github.com/stesla', 'https://api.github.com/users/stesla/followers', 'https://api.github.com/users/stesla/following', 'https://api.github.com/users/stesla/gists', 'https://api.github.com/users/stesla/starred', 'https://api.github.com/users/stesla/repos', 'https://api.github.com/users/stesla/events', 'https://api.github.com/users/stesla/received_events', 0); +INSERT INTO `developer` VALUES (2294, 'lorisdfsdfsdfsdf', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T17:31:39Z', '2016-02-26T22:34:48Z', 'https://avatars.githubusercontent.com/u/2294?v=4', 'https://api.github.com/users/lorisdfsdfsdfsdf', 'https://github.com/lorisdfsdfsdfsdf', 'https://api.github.com/users/lorisdfsdfsdfsdf/followers', 'https://api.github.com/users/lorisdfsdfsdfsdf/following', 'https://api.github.com/users/lorisdfsdfsdfsdf/gists', 'https://api.github.com/users/lorisdfsdfsdfsdf/starred', 'https://api.github.com/users/lorisdfsdfsdfsdf/repos', 'https://api.github.com/users/lorisdfsdfsdfsdf/events', 'https://api.github.com/users/lorisdfsdfsdfsdf/received_events', 0); +INSERT INTO `developer` VALUES (2295, 'envoked', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adrian Wisernig', NULL, 'http://envoked.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 70, 6, 0, 0, 0, '2008-03-05T17:55:06Z', '2024-10-26T11:20:58Z', 'https://avatars.githubusercontent.com/u/2295?v=4', 'https://api.github.com/users/envoked', 'https://github.com/envoked', 'https://api.github.com/users/envoked/followers', 'https://api.github.com/users/envoked/following', 'https://api.github.com/users/envoked/gists', 'https://api.github.com/users/envoked/starred', 'https://api.github.com/users/envoked/repos', 'https://api.github.com/users/envoked/events', 'https://api.github.com/users/envoked/received_events', 0); +INSERT INTO `developer` VALUES (2296, 'cheeaun', 'C+', 24.1825530982301, 0, 0, 0, 0, 0, 0, 'Chee Aun', 'Unemployed since Jul\'22', 'https://cheeaun.com/projects', 'Singapore', 'cheeaun@gmail.com', 'true', 'Product-first Front-end Engineer. Interested in design, dataviz, maps, public transport & stickers.', 'cheeaun', 0, 0, 1695, 1012, 0, 0, 0, '2008-03-05T17:58:29Z', '2024-11-01T04:21:09Z', 'https://avatars.githubusercontent.com/u/2296?v=4', 'https://api.github.com/users/cheeaun', 'https://github.com/cheeaun', 'https://api.github.com/users/cheeaun/followers', 'https://api.github.com/users/cheeaun/following', 'https://api.github.com/users/cheeaun/gists', 'https://api.github.com/users/cheeaun/starred', 'https://api.github.com/users/cheeaun/repos', 'https://api.github.com/users/cheeaun/events', 'https://api.github.com/users/cheeaun/received_events', 0); +INSERT INTO `developer` VALUES (2297, 'blair', 'C', 0, 0, 0, 0, 0, 0, 0, 'Blair Zajac', 'OrcaWare Technologies', 'http://www.orcaware.com/', 'Venice, CA', 'blair@orcaware.com', NULL, NULL, NULL, 0, 0, 28, 4, 0, 0, 0, '2008-03-05T17:59:44Z', '2024-05-30T23:26:26Z', 'https://avatars.githubusercontent.com/u/2297?v=4', 'https://api.github.com/users/blair', 'https://github.com/blair', 'https://api.github.com/users/blair/followers', 'https://api.github.com/users/blair/following', 'https://api.github.com/users/blair/gists', 'https://api.github.com/users/blair/starred', 'https://api.github.com/users/blair/repos', 'https://api.github.com/users/blair/events', 'https://api.github.com/users/blair/received_events', 0); +INSERT INTO `developer` VALUES (2298, 'scrubber', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Szinek', NULL, 'http://www.rubyrailways.com', '未知', 'peter@[NOSP]AMrubyrailways.com ', NULL, NULL, NULL, 0, 0, 42, 8, 0, 0, 0, '2008-03-05T18:02:40Z', '2015-04-21T15:45:02Z', 'https://avatars.githubusercontent.com/u/2298?v=4', 'https://api.github.com/users/scrubber', 'https://github.com/scrubber', 'https://api.github.com/users/scrubber/followers', 'https://api.github.com/users/scrubber/following', 'https://api.github.com/users/scrubber/gists', 'https://api.github.com/users/scrubber/starred', 'https://api.github.com/users/scrubber/repos', 'https://api.github.com/users/scrubber/events', 'https://api.github.com/users/scrubber/received_events', 0); +INSERT INTO `developer` VALUES (2299, 'bam-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T18:02:51Z', '2016-02-26T22:34:48Z', 'https://avatars.githubusercontent.com/u/2299?v=4', 'https://api.github.com/users/bam-xx', 'https://github.com/bam-xx', 'https://api.github.com/users/bam-xx/followers', 'https://api.github.com/users/bam-xx/following', 'https://api.github.com/users/bam-xx/gists', 'https://api.github.com/users/bam-xx/starred', 'https://api.github.com/users/bam-xx/repos', 'https://api.github.com/users/bam-xx/events', 'https://api.github.com/users/bam-xx/received_events', 0); +INSERT INTO `developer` VALUES (2300, 'webmat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathieu Martin', 'Elastic', 'www.programblings.com', 'Montréal', NULL, NULL, 'Dev, Ops, Sec: all things I care about', NULL, 0, 0, 100, 77, 0, 0, 0, '2008-03-05T18:10:27Z', '2024-11-04T22:06:07Z', 'https://avatars.githubusercontent.com/u/2300?v=4', 'https://api.github.com/users/webmat', 'https://github.com/webmat', 'https://api.github.com/users/webmat/followers', 'https://api.github.com/users/webmat/following', 'https://api.github.com/users/webmat/gists', 'https://api.github.com/users/webmat/starred', 'https://api.github.com/users/webmat/repos', 'https://api.github.com/users/webmat/events', 'https://api.github.com/users/webmat/received_events', 0); +INSERT INTO `developer` VALUES (2302, 'soult', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Triendl', NULL, 'https://www.triendl.name/', '未知', NULL, 'true', 'Software developer', NULL, 0, 0, 20, 20, 0, 0, 0, '2008-03-05T18:26:27Z', '2024-10-12T20:34:48Z', 'https://avatars.githubusercontent.com/u/2302?v=4', 'https://api.github.com/users/soult', 'https://github.com/soult', 'https://api.github.com/users/soult/followers', 'https://api.github.com/users/soult/following', 'https://api.github.com/users/soult/gists', 'https://api.github.com/users/soult/starred', 'https://api.github.com/users/soult/repos', 'https://api.github.com/users/soult/events', 'https://api.github.com/users/soult/received_events', 0); +INSERT INTO `developer` VALUES (2303, 'danja', 'C', 0, 0, 0, 0, 0, 0, 0, 'Danny Ayers', 'hyperdata.it', 'https://hyperdata.it', 'Mozzanella', 'danny.ayers@gmail.com', 'true', 'Half-Full Stack Developer', 'danja', 0, 0, 45, 92, 0, 0, 0, '2008-03-05T18:26:39Z', '2024-10-17T10:15:45Z', 'https://avatars.githubusercontent.com/u/2303?v=4', 'https://api.github.com/users/danja', 'https://github.com/danja', 'https://api.github.com/users/danja/followers', 'https://api.github.com/users/danja/following', 'https://api.github.com/users/danja/gists', 'https://api.github.com/users/danja/starred', 'https://api.github.com/users/danja/repos', 'https://api.github.com/users/danja/events', 'https://api.github.com/users/danja/received_events', 0); +INSERT INTO `developer` VALUES (2304, 'jerrett', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jerrett Taylor', NULL, '', 'B.C., Canada', 'jerrett@gmail.com', NULL, NULL, NULL, 0, 0, 20, 4, 0, 0, 0, '2008-03-05T18:32:32Z', '2024-09-17T23:50:12Z', 'https://avatars.githubusercontent.com/u/2304?v=4', 'https://api.github.com/users/jerrett', 'https://github.com/jerrett', 'https://api.github.com/users/jerrett/followers', 'https://api.github.com/users/jerrett/following', 'https://api.github.com/users/jerrett/gists', 'https://api.github.com/users/jerrett/starred', 'https://api.github.com/users/jerrett/repos', 'https://api.github.com/users/jerrett/events', 'https://api.github.com/users/jerrett/received_events', 0); +INSERT INTO `developer` VALUES (2305, 'agrover', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Grover', NULL, 'http://groveronline.com', 'Portland, OR', 'andy@groveronline.com', NULL, 'Rust, Python, C. Plays the bass. Takes pictures. Likes clicky keyboards.', 'iamagrover', 0, 0, 115, 89, 0, 0, 0, '2008-03-05T18:34:37Z', '2024-10-23T11:17:48Z', 'https://avatars.githubusercontent.com/u/2305?v=4', 'https://api.github.com/users/agrover', 'https://github.com/agrover', 'https://api.github.com/users/agrover/followers', 'https://api.github.com/users/agrover/following', 'https://api.github.com/users/agrover/gists', 'https://api.github.com/users/agrover/starred', 'https://api.github.com/users/agrover/repos', 'https://api.github.com/users/agrover/events', 'https://api.github.com/users/agrover/received_events', 0); +INSERT INTO `developer` VALUES (2306, 'timothykim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timothy Kim', NULL, 'http://timothylive.net', 'Austin, TX', NULL, NULL, 'I make things so you don\'t have to.', NULL, 0, 0, 36, 3, 0, 0, 0, '2008-03-05T18:37:30Z', '2024-10-01T12:03:38Z', 'https://avatars.githubusercontent.com/u/2306?v=4', 'https://api.github.com/users/timothykim', 'https://github.com/timothykim', 'https://api.github.com/users/timothykim/followers', 'https://api.github.com/users/timothykim/following', 'https://api.github.com/users/timothykim/gists', 'https://api.github.com/users/timothykim/starred', 'https://api.github.com/users/timothykim/repos', 'https://api.github.com/users/timothykim/events', 'https://api.github.com/users/timothykim/received_events', 0); +INSERT INTO `developer` VALUES (2308, 'Frost', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Frost', NULL, 'https://ceri.se', 'Stockholm', 'martin@frost.ws', NULL, NULL, NULL, 0, 0, 71, 46, 0, 0, 0, '2008-03-05T18:41:29Z', '2024-10-19T19:55:37Z', 'https://avatars.githubusercontent.com/u/2308?v=4', 'https://api.github.com/users/Frost', 'https://github.com/Frost', 'https://api.github.com/users/Frost/followers', 'https://api.github.com/users/Frost/following', 'https://api.github.com/users/Frost/gists', 'https://api.github.com/users/Frost/starred', 'https://api.github.com/users/Frost/repos', 'https://api.github.com/users/Frost/events', 'https://api.github.com/users/Frost/received_events', 0); +INSERT INTO `developer` VALUES (2309, 'edgecase', 'C', 0, 0, 0, 0, 0, 0, 0, 'EdgeCase', NULL, 'http://www.edgecase.com', 'Columbus, OH', 'mike@mikedoel.com', NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-05T18:45:38Z', '2019-10-17T19:26:17Z', 'https://avatars.githubusercontent.com/u/2309?v=4', 'https://api.github.com/users/edgecase', 'https://github.com/edgecase', 'https://api.github.com/users/edgecase/followers', 'https://api.github.com/users/edgecase/following', 'https://api.github.com/users/edgecase/gists', 'https://api.github.com/users/edgecase/starred', 'https://api.github.com/users/edgecase/repos', 'https://api.github.com/users/edgecase/events', 'https://api.github.com/users/edgecase/received_events', 0); +INSERT INTO `developer` VALUES (2310, 'eungyu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eun-Gyu Kim', NULL, '', 'Austin, TX', NULL, NULL, 'writes for loops and while loops that scale', NULL, 0, 0, 6, 6, 0, 0, 0, '2008-03-05T18:49:03Z', '2021-03-03T17:33:43Z', 'https://avatars.githubusercontent.com/u/2310?v=4', 'https://api.github.com/users/eungyu', 'https://github.com/eungyu', 'https://api.github.com/users/eungyu/followers', 'https://api.github.com/users/eungyu/following', 'https://api.github.com/users/eungyu/gists', 'https://api.github.com/users/eungyu/starred', 'https://api.github.com/users/eungyu/repos', 'https://api.github.com/users/eungyu/events', 'https://api.github.com/users/eungyu/received_events', 0); +INSERT INTO `developer` VALUES (2311, 'phurley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Hurley', 'Invoca', 'photos.hurleyhome.com', 'Canton, MI', 'phurley@gmail.com', NULL, NULL, 'pth', 0, 0, 8, 1, 0, 0, 0, '2008-03-05T18:55:51Z', '2024-10-23T23:10:39Z', 'https://avatars.githubusercontent.com/u/2311?v=4', 'https://api.github.com/users/phurley', 'https://github.com/phurley', 'https://api.github.com/users/phurley/followers', 'https://api.github.com/users/phurley/following', 'https://api.github.com/users/phurley/gists', 'https://api.github.com/users/phurley/starred', 'https://api.github.com/users/phurley/repos', 'https://api.github.com/users/phurley/events', 'https://api.github.com/users/phurley/received_events', 0); +INSERT INTO `developer` VALUES (2312, 'ijbaird', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Baird', NULL, 'http://ijbaird.me/', 'San Jose, CA', 'ibaird@gmail.com', NULL, NULL, NULL, 0, 0, 34, 20, 0, 0, 0, '2008-03-05T18:57:04Z', '2024-09-24T19:46:26Z', 'https://avatars.githubusercontent.com/u/2312?v=4', 'https://api.github.com/users/ijbaird', 'https://github.com/ijbaird', 'https://api.github.com/users/ijbaird/followers', 'https://api.github.com/users/ijbaird/following', 'https://api.github.com/users/ijbaird/gists', 'https://api.github.com/users/ijbaird/starred', 'https://api.github.com/users/ijbaird/repos', 'https://api.github.com/users/ijbaird/events', 'https://api.github.com/users/ijbaird/received_events', 0); +INSERT INTO `developer` VALUES (2313, 'infil00p', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Bowser', 'Baseweight Solutions Inc', 'http://infil00p.org', 'Vancouver, BC Canada', 'bowserj@gmail.com', 'true', 'Founder: Baseweight Solutions \r\n\r\nPhoneGap/Apache Cordova Co-Founder, Ex-Adobe. ', NULL, 0, 0, 193, 22, 0, 0, 0, '2008-03-05T18:57:18Z', '2024-10-05T18:28:33Z', 'https://avatars.githubusercontent.com/u/2313?v=4', 'https://api.github.com/users/infil00p', 'https://github.com/infil00p', 'https://api.github.com/users/infil00p/followers', 'https://api.github.com/users/infil00p/following', 'https://api.github.com/users/infil00p/gists', 'https://api.github.com/users/infil00p/starred', 'https://api.github.com/users/infil00p/repos', 'https://api.github.com/users/infil00p/events', 'https://api.github.com/users/infil00p/received_events', 0); +INSERT INTO `developer` VALUES (2314, 'nutmeg', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T18:58:21Z', '2022-06-22T20:49:25Z', 'https://avatars.githubusercontent.com/u/2314?v=4', 'https://api.github.com/users/nutmeg', 'https://github.com/nutmeg', 'https://api.github.com/users/nutmeg/followers', 'https://api.github.com/users/nutmeg/following', 'https://api.github.com/users/nutmeg/gists', 'https://api.github.com/users/nutmeg/starred', 'https://api.github.com/users/nutmeg/repos', 'https://api.github.com/users/nutmeg/events', 'https://api.github.com/users/nutmeg/received_events', 0); +INSERT INTO `developer` VALUES (2315, 'dw', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Wilson', NULL, '', '未知', 'dw@botanicus.net', 'true', NULL, NULL, 0, 0, 145, 9, 0, 0, 0, '2008-03-05T19:06:53Z', '2024-11-03T21:14:45Z', 'https://avatars.githubusercontent.com/u/2315?v=4', 'https://api.github.com/users/dw', 'https://github.com/dw', 'https://api.github.com/users/dw/followers', 'https://api.github.com/users/dw/following', 'https://api.github.com/users/dw/gists', 'https://api.github.com/users/dw/starred', 'https://api.github.com/users/dw/repos', 'https://api.github.com/users/dw/events', 'https://api.github.com/users/dw/received_events', 0); +INSERT INTO `developer` VALUES (2316, 'voins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexey Voinov', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 32, 16, 0, 0, 0, '2008-03-05T19:35:38Z', '2023-11-04T20:12:18Z', 'https://avatars.githubusercontent.com/u/2316?v=4', 'https://api.github.com/users/voins', 'https://github.com/voins', 'https://api.github.com/users/voins/followers', 'https://api.github.com/users/voins/following', 'https://api.github.com/users/voins/gists', 'https://api.github.com/users/voins/starred', 'https://api.github.com/users/voins/repos', 'https://api.github.com/users/voins/events', 'https://api.github.com/users/voins/received_events', 0); +INSERT INTO `developer` VALUES (2317, 'flexd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kristoffer Berdal', NULL, '', 'Oslo, Norway', 'github@flexd.net', 'true', NULL, NULL, 0, 0, 87, 168, 0, 0, 0, '2008-03-05T19:41:56Z', '2024-10-14T10:37:02Z', 'https://avatars.githubusercontent.com/u/2317?v=4', 'https://api.github.com/users/flexd', 'https://github.com/flexd', 'https://api.github.com/users/flexd/followers', 'https://api.github.com/users/flexd/following', 'https://api.github.com/users/flexd/gists', 'https://api.github.com/users/flexd/starred', 'https://api.github.com/users/flexd/repos', 'https://api.github.com/users/flexd/events', 'https://api.github.com/users/flexd/received_events', 0); +INSERT INTO `developer` VALUES (2318, 'danimal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Bostonweeks', NULL, 'http://danimal.org/', 'Oakland, California, USA', NULL, NULL, 'I am electric meat.', NULL, 0, 0, 32, 7, 0, 0, 0, '2008-03-05T19:50:49Z', '2024-09-22T17:50:24Z', 'https://avatars.githubusercontent.com/u/2318?v=4', 'https://api.github.com/users/danimal', 'https://github.com/danimal', 'https://api.github.com/users/danimal/followers', 'https://api.github.com/users/danimal/following', 'https://api.github.com/users/danimal/gists', 'https://api.github.com/users/danimal/starred', 'https://api.github.com/users/danimal/repos', 'https://api.github.com/users/danimal/events', 'https://api.github.com/users/danimal/received_events', 0); +INSERT INTO `developer` VALUES (2319, 'wukerplank', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'wukerplank.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2008-03-05T19:59:12Z', '2024-05-12T13:02:51Z', 'https://avatars.githubusercontent.com/u/2319?v=4', 'https://api.github.com/users/wukerplank', 'https://github.com/wukerplank', 'https://api.github.com/users/wukerplank/followers', 'https://api.github.com/users/wukerplank/following', 'https://api.github.com/users/wukerplank/gists', 'https://api.github.com/users/wukerplank/starred', 'https://api.github.com/users/wukerplank/repos', 'https://api.github.com/users/wukerplank/events', 'https://api.github.com/users/wukerplank/received_events', 0); +INSERT INTO `developer` VALUES (2320, 'alloy', 'C+', 17.288846697150248, 0, 0, 0, 0, 0, 0, 'Eloy Durán', 'Microsoft', 'https://twitter.com/alloy', 'Seattle, WA', 'eloy.de.enige@gmail.com', NULL, NULL, NULL, 0, 0, 1293, 30, 0, 0, 0, '2008-03-05T20:02:54Z', '2024-10-22T17:12:31Z', 'https://avatars.githubusercontent.com/u/2320?v=4', 'https://api.github.com/users/alloy', 'https://github.com/alloy', 'https://api.github.com/users/alloy/followers', 'https://api.github.com/users/alloy/following', 'https://api.github.com/users/alloy/gists', 'https://api.github.com/users/alloy/starred', 'https://api.github.com/users/alloy/repos', 'https://api.github.com/users/alloy/events', 'https://api.github.com/users/alloy/received_events', 0); +INSERT INTO `developer` VALUES (2322, 'jthomas', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Thomas', 'JT Consulting Services', 'http://jamesthom.as', 'Manchester', 'james@jamesthom.as', 'true', 'software consultant. ex-devrel (serverless) & open-source dev @IBMCloud. wrote code, blog posts & conf talks. @openwhisk committer. @serverlessldn founder', 'thomasj', 0, 0, 211, 1, 0, 0, 0, '2008-03-05T20:21:24Z', '2024-10-15T11:18:45Z', 'https://avatars.githubusercontent.com/u/2322?v=4', 'https://api.github.com/users/jthomas', 'https://github.com/jthomas', 'https://api.github.com/users/jthomas/followers', 'https://api.github.com/users/jthomas/following', 'https://api.github.com/users/jthomas/gists', 'https://api.github.com/users/jthomas/starred', 'https://api.github.com/users/jthomas/repos', 'https://api.github.com/users/jthomas/events', 'https://api.github.com/users/jthomas/received_events', 0); +INSERT INTO `developer` VALUES (2323, 'kschrader', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kurt Schrader', '@useshortcut ', 'http://kurt.karmalab.org', 'New York, NY', 'kurt@clubhouse.io', NULL, 'CEO at @clubhouse ', NULL, 0, 0, 83, 12, 0, 0, 0, '2008-03-05T20:28:36Z', '2024-10-03T15:13:15Z', 'https://avatars.githubusercontent.com/u/2323?v=4', 'https://api.github.com/users/kschrader', 'https://github.com/kschrader', 'https://api.github.com/users/kschrader/followers', 'https://api.github.com/users/kschrader/following', 'https://api.github.com/users/kschrader/gists', 'https://api.github.com/users/kschrader/starred', 'https://api.github.com/users/kschrader/repos', 'https://api.github.com/users/kschrader/events', 'https://api.github.com/users/kschrader/received_events', 0); +INSERT INTO `developer` VALUES (2324, 'drwmak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Drew Macleod', NULL, '', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T20:57:25Z', '2021-08-31T23:27:20Z', 'https://avatars.githubusercontent.com/u/2324?v=4', 'https://api.github.com/users/drwmak', 'https://github.com/drwmak', 'https://api.github.com/users/drwmak/followers', 'https://api.github.com/users/drwmak/following', 'https://api.github.com/users/drwmak/gists', 'https://api.github.com/users/drwmak/starred', 'https://api.github.com/users/drwmak/repos', 'https://api.github.com/users/drwmak/events', 'https://api.github.com/users/drwmak/received_events', 0); +INSERT INTO `developer` VALUES (2325, 'ademcho', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T21:00:24Z', '2023-10-01T04:16:36Z', 'https://avatars.githubusercontent.com/u/2325?v=4', 'https://api.github.com/users/ademcho', 'https://github.com/ademcho', 'https://api.github.com/users/ademcho/followers', 'https://api.github.com/users/ademcho/following', 'https://api.github.com/users/ademcho/gists', 'https://api.github.com/users/ademcho/starred', 'https://api.github.com/users/ademcho/repos', 'https://api.github.com/users/ademcho/events', 'https://api.github.com/users/ademcho/received_events', 0); +INSERT INTO `developer` VALUES (2326, 'jkit', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-05T21:07:33Z', '2024-09-24T18:50:08Z', 'https://avatars.githubusercontent.com/u/2326?v=4', 'https://api.github.com/users/jkit', 'https://github.com/jkit', 'https://api.github.com/users/jkit/followers', 'https://api.github.com/users/jkit/following', 'https://api.github.com/users/jkit/gists', 'https://api.github.com/users/jkit/starred', 'https://api.github.com/users/jkit/repos', 'https://api.github.com/users/jkit/events', 'https://api.github.com/users/jkit/received_events', 0); +INSERT INTO `developer` VALUES (2327, 'zequix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ezequiel', NULL, '', 'Vienna, Austria', NULL, NULL, NULL, NULL, 0, 0, 22, 22, 0, 0, 0, '2008-03-05T21:24:05Z', '2024-10-15T22:07:26Z', 'https://avatars.githubusercontent.com/u/2327?v=4', 'https://api.github.com/users/zequix', 'https://github.com/zequix', 'https://api.github.com/users/zequix/followers', 'https://api.github.com/users/zequix/following', 'https://api.github.com/users/zequix/gists', 'https://api.github.com/users/zequix/starred', 'https://api.github.com/users/zequix/repos', 'https://api.github.com/users/zequix/events', 'https://api.github.com/users/zequix/received_events', 0); +INSERT INTO `developer` VALUES (2328, 'DrMark', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Lane', NULL, '', 'Virginia Beach, VA', 'drmark@gmail.com', NULL, NULL, NULL, 0, 0, 14, 3, 0, 0, 0, '2008-03-05T21:32:46Z', '2024-08-29T12:13:54Z', 'https://avatars.githubusercontent.com/u/2328?v=4', 'https://api.github.com/users/DrMark', 'https://github.com/DrMark', 'https://api.github.com/users/DrMark/followers', 'https://api.github.com/users/DrMark/following', 'https://api.github.com/users/DrMark/gists', 'https://api.github.com/users/DrMark/starred', 'https://api.github.com/users/DrMark/repos', 'https://api.github.com/users/DrMark/events', 'https://api.github.com/users/DrMark/received_events', 0); +INSERT INTO `developer` VALUES (2329, 'rrosson', 'C', 0, 0, 0, 0, 0, 0, 0, 'rrosson', NULL, 'https://www.oneinsane.org', 'Loveland, CO', 'ron@oneinsane.org', NULL, NULL, NULL, 0, 0, 8, 5, 0, 0, 0, '2008-03-05T21:35:22Z', '2021-08-07T15:30:19Z', 'https://avatars.githubusercontent.com/u/2329?v=4', 'https://api.github.com/users/rrosson', 'https://github.com/rrosson', 'https://api.github.com/users/rrosson/followers', 'https://api.github.com/users/rrosson/following', 'https://api.github.com/users/rrosson/gists', 'https://api.github.com/users/rrosson/starred', 'https://api.github.com/users/rrosson/repos', 'https://api.github.com/users/rrosson/events', 'https://api.github.com/users/rrosson/received_events', 0); +INSERT INTO `developer` VALUES (2330, 'catharinejm', 'C', 0, 0, 0, 0, 77, 8, 0, 'Catharine Manning', NULL, '', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 68, 8, 0, 0, 0, '2008-03-05T21:36:00Z', '2024-09-09T17:17:02Z', 'https://avatars.githubusercontent.com/u/2330?v=4', 'https://api.github.com/users/catharinejm', 'https://github.com/catharinejm', 'https://api.github.com/users/catharinejm/followers', 'https://api.github.com/users/catharinejm/following', 'https://api.github.com/users/catharinejm/gists', 'https://api.github.com/users/catharinejm/starred', 'https://api.github.com/users/catharinejm/repos', 'https://api.github.com/users/catharinejm/events', 'https://api.github.com/users/catharinejm/received_events', 0); +INSERT INTO `developer` VALUES (2331, 'jhamann', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-05T21:36:27Z', '2022-01-28T02:58:45Z', 'https://avatars.githubusercontent.com/u/2331?v=4', 'https://api.github.com/users/jhamann', 'https://github.com/jhamann', 'https://api.github.com/users/jhamann/followers', 'https://api.github.com/users/jhamann/following', 'https://api.github.com/users/jhamann/gists', 'https://api.github.com/users/jhamann/starred', 'https://api.github.com/users/jhamann/repos', 'https://api.github.com/users/jhamann/events', 'https://api.github.com/users/jhamann/received_events', 0); +INSERT INTO `developer` VALUES (2332, 'danharan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-05T21:43:15Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2332?v=4', 'https://api.github.com/users/danharan', 'https://github.com/danharan', 'https://api.github.com/users/danharan/followers', 'https://api.github.com/users/danharan/following', 'https://api.github.com/users/danharan/gists', 'https://api.github.com/users/danharan/starred', 'https://api.github.com/users/danharan/repos', 'https://api.github.com/users/danharan/events', 'https://api.github.com/users/danharan/received_events', 0); +INSERT INTO `developer` VALUES (2334, 'niroze', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Humphries', 'Niroze, LLC', 'http://niroze.net/', 'Scranton, PA', 'christopher@niroze.net', NULL, NULL, NULL, 0, 0, 16, 21, 0, 0, 0, '2008-03-05T22:08:24Z', '2020-11-06T06:19:07Z', 'https://avatars.githubusercontent.com/u/2334?v=4', 'https://api.github.com/users/niroze', 'https://github.com/niroze', 'https://api.github.com/users/niroze/followers', 'https://api.github.com/users/niroze/following', 'https://api.github.com/users/niroze/gists', 'https://api.github.com/users/niroze/starred', 'https://api.github.com/users/niroze/repos', 'https://api.github.com/users/niroze/events', 'https://api.github.com/users/niroze/received_events', 0); +INSERT INTO `developer` VALUES (2335, 'Bugmaster', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-05T22:12:53Z', '2024-09-09T00:53:10Z', 'https://avatars.githubusercontent.com/u/2335?v=4', 'https://api.github.com/users/Bugmaster', 'https://github.com/Bugmaster', 'https://api.github.com/users/Bugmaster/followers', 'https://api.github.com/users/Bugmaster/following', 'https://api.github.com/users/Bugmaster/gists', 'https://api.github.com/users/Bugmaster/starred', 'https://api.github.com/users/Bugmaster/repos', 'https://api.github.com/users/Bugmaster/events', 'https://api.github.com/users/Bugmaster/received_events', 0); +INSERT INTO `developer` VALUES (2336, 'jwarchol', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Warchol', NULL, 'http://www.unwin.org/', 'Plainville, CT', NULL, NULL, NULL, NULL, 0, 0, 36, 31, 0, 0, 0, '2008-03-05T22:22:36Z', '2024-10-11T16:53:59Z', 'https://avatars.githubusercontent.com/u/2336?v=4', 'https://api.github.com/users/jwarchol', 'https://github.com/jwarchol', 'https://api.github.com/users/jwarchol/followers', 'https://api.github.com/users/jwarchol/following', 'https://api.github.com/users/jwarchol/gists', 'https://api.github.com/users/jwarchol/starred', 'https://api.github.com/users/jwarchol/repos', 'https://api.github.com/users/jwarchol/events', 'https://api.github.com/users/jwarchol/received_events', 0); +INSERT INTO `developer` VALUES (2337, 'konobi', 'C', 0, 0, 0, 0, 0, 0, 0, 'konobi', NULL, '', 'BC', NULL, NULL, NULL, NULL, 0, 0, 96, 12, 0, 0, 0, '2008-03-05T22:40:08Z', '2022-05-07T21:32:20Z', 'https://avatars.githubusercontent.com/u/2337?v=4', 'https://api.github.com/users/konobi', 'https://github.com/konobi', 'https://api.github.com/users/konobi/followers', 'https://api.github.com/users/konobi/following', 'https://api.github.com/users/konobi/gists', 'https://api.github.com/users/konobi/starred', 'https://api.github.com/users/konobi/repos', 'https://api.github.com/users/konobi/events', 'https://api.github.com/users/konobi/received_events', 0); +INSERT INTO `developer` VALUES (2338, 'digitalronin', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Salgado', NULL, 'https://blog.digitalronin.com', 'Fukuoka, Japan', NULL, NULL, NULL, 'digitalronin', 0, 0, 37, 5, 0, 0, 0, '2008-03-05T22:57:40Z', '2024-10-30T02:54:15Z', 'https://avatars.githubusercontent.com/u/2338?v=4', 'https://api.github.com/users/digitalronin', 'https://github.com/digitalronin', 'https://api.github.com/users/digitalronin/followers', 'https://api.github.com/users/digitalronin/following', 'https://api.github.com/users/digitalronin/gists', 'https://api.github.com/users/digitalronin/starred', 'https://api.github.com/users/digitalronin/repos', 'https://api.github.com/users/digitalronin/events', 'https://api.github.com/users/digitalronin/received_events', 0); +INSERT INTO `developer` VALUES (2339, 'sungo', 'C', 0, 0, 0, 0, 0, 0, 0, 'sungo', '@coreweave ', 'https://sungo.io', 'Camp Springs, MD', 'sungo@sungo.us', NULL, NULL, NULL, 0, 0, 63, 28, 0, 0, 0, '2008-03-05T22:59:17Z', '2024-11-04T22:44:41Z', 'https://avatars.githubusercontent.com/u/2339?v=4', 'https://api.github.com/users/sungo', 'https://github.com/sungo', 'https://api.github.com/users/sungo/followers', 'https://api.github.com/users/sungo/following', 'https://api.github.com/users/sungo/gists', 'https://api.github.com/users/sungo/starred', 'https://api.github.com/users/sungo/repos', 'https://api.github.com/users/sungo/events', 'https://api.github.com/users/sungo/received_events', 0); +INSERT INTO `developer` VALUES (2340, 'anthonycrumley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anthony Crumley', 'http://craftyco.de', 'http://craftyco.de', 'Montevallo, AL', 'anthony.crumley@gmail.com', NULL, NULL, NULL, 0, 0, 33, 6, 0, 0, 0, '2008-03-05T23:04:13Z', '2024-07-19T21:29:04Z', 'https://avatars.githubusercontent.com/u/2340?v=4', 'https://api.github.com/users/anthonycrumley', 'https://github.com/anthonycrumley', 'https://api.github.com/users/anthonycrumley/followers', 'https://api.github.com/users/anthonycrumley/following', 'https://api.github.com/users/anthonycrumley/gists', 'https://api.github.com/users/anthonycrumley/starred', 'https://api.github.com/users/anthonycrumley/repos', 'https://api.github.com/users/anthonycrumley/events', 'https://api.github.com/users/anthonycrumley/received_events', 0); +INSERT INTO `developer` VALUES (2341, 'kriberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kristian Berg', NULL, '', 'Norway', 'kriberg@tihlde.org', NULL, NULL, NULL, 0, 0, 15, 3, 0, 0, 0, '2008-03-05T23:10:02Z', '2024-10-22T08:37:10Z', 'https://avatars.githubusercontent.com/u/2341?v=4', 'https://api.github.com/users/kriberg', 'https://github.com/kriberg', 'https://api.github.com/users/kriberg/followers', 'https://api.github.com/users/kriberg/following', 'https://api.github.com/users/kriberg/gists', 'https://api.github.com/users/kriberg/starred', 'https://api.github.com/users/kriberg/repos', 'https://api.github.com/users/kriberg/events', 'https://api.github.com/users/kriberg/received_events', 0); +INSERT INTO `developer` VALUES (2342, 'mjwall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Wall', NULL, 'http://www.mjwall.com', '未知', 'mjwall@gmail.com', NULL, NULL, NULL, 0, 0, 86, 77, 0, 0, 0, '2008-03-05T23:10:37Z', '2024-10-10T12:03:47Z', 'https://avatars.githubusercontent.com/u/2342?v=4', 'https://api.github.com/users/mjwall', 'https://github.com/mjwall', 'https://api.github.com/users/mjwall/followers', 'https://api.github.com/users/mjwall/following', 'https://api.github.com/users/mjwall/gists', 'https://api.github.com/users/mjwall/starred', 'https://api.github.com/users/mjwall/repos', 'https://api.github.com/users/mjwall/events', 'https://api.github.com/users/mjwall/received_events', 0); +INSERT INTO `developer` VALUES (2343, 'rcarver', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Carver', 'Recentralized', 'https://www.ryancarver.com/', 'Berkeley', NULL, NULL, NULL, NULL, 0, 0, 61, 12, 0, 0, 0, '2008-03-05T23:17:08Z', '2024-10-17T22:24:46Z', 'https://avatars.githubusercontent.com/u/2343?v=4', 'https://api.github.com/users/rcarver', 'https://github.com/rcarver', 'https://api.github.com/users/rcarver/followers', 'https://api.github.com/users/rcarver/following', 'https://api.github.com/users/rcarver/gists', 'https://api.github.com/users/rcarver/starred', 'https://api.github.com/users/rcarver/repos', 'https://api.github.com/users/rcarver/events', 'https://api.github.com/users/rcarver/received_events', 0); +INSERT INTO `developer` VALUES (2344, 'oliver', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oliver Gerlich', NULL, '', '未知', 'oliver.gerlich@gmx.de', NULL, 'GPG fingerprint: D9E1 7720 9082 82C3 A823 2361 DB7D 9F68 F00F 513E', NULL, 0, 0, 24, 2, 0, 0, 0, '2008-03-05T23:56:24Z', '2024-10-07T19:58:20Z', 'https://avatars.githubusercontent.com/u/2344?v=4', 'https://api.github.com/users/oliver', 'https://github.com/oliver', 'https://api.github.com/users/oliver/followers', 'https://api.github.com/users/oliver/following', 'https://api.github.com/users/oliver/gists', 'https://api.github.com/users/oliver/starred', 'https://api.github.com/users/oliver/repos', 'https://api.github.com/users/oliver/events', 'https://api.github.com/users/oliver/received_events', 0); +INSERT INTO `developer` VALUES (2345, 'gruner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew', NULL, 'https://gruner.io', 'Seattle, WA', 'andrew.gruner@gmail.com', NULL, NULL, 'gruner', 0, 0, 14, 4, 0, 0, 0, '2008-03-06T00:21:57Z', '2024-10-16T18:26:23Z', 'https://avatars.githubusercontent.com/u/2345?v=4', 'https://api.github.com/users/gruner', 'https://github.com/gruner', 'https://api.github.com/users/gruner/followers', 'https://api.github.com/users/gruner/following', 'https://api.github.com/users/gruner/gists', 'https://api.github.com/users/gruner/starred', 'https://api.github.com/users/gruner/repos', 'https://api.github.com/users/gruner/events', 'https://api.github.com/users/gruner/received_events', 0); +INSERT INTO `developer` VALUES (2346, 'garrizaldy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Garrizaldy Santos', NULL, 'garrizaldy.blogspot.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-06T00:26:19Z', '2024-09-30T14:55:29Z', 'https://avatars.githubusercontent.com/u/2346?v=4', 'https://api.github.com/users/garrizaldy', 'https://github.com/garrizaldy', 'https://api.github.com/users/garrizaldy/followers', 'https://api.github.com/users/garrizaldy/following', 'https://api.github.com/users/garrizaldy/gists', 'https://api.github.com/users/garrizaldy/starred', 'https://api.github.com/users/garrizaldy/repos', 'https://api.github.com/users/garrizaldy/events', 'https://api.github.com/users/garrizaldy/received_events', 0); +INSERT INTO `developer` VALUES (2347, 'jbrewer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Brewer', NULL, 'http://www.jbrewer.me', 'Novato', NULL, NULL, NULL, 'jbrewer', 0, 0, 115, 17, 0, 0, 0, '2008-03-06T00:30:14Z', '2024-07-21T17:32:06Z', 'https://avatars.githubusercontent.com/u/2347?v=4', 'https://api.github.com/users/jbrewer', 'https://github.com/jbrewer', 'https://api.github.com/users/jbrewer/followers', 'https://api.github.com/users/jbrewer/following', 'https://api.github.com/users/jbrewer/gists', 'https://api.github.com/users/jbrewer/starred', 'https://api.github.com/users/jbrewer/repos', 'https://api.github.com/users/jbrewer/events', 'https://api.github.com/users/jbrewer/received_events', 0); +INSERT INTO `developer` VALUES (2348, 'iccodes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Michaels', NULL, 'http://iccodes.com', '未知', 'adam@iccodes.com', NULL, NULL, NULL, 0, 0, 7, 3, 0, 0, 0, '2008-03-06T00:36:34Z', '2024-10-04T06:46:00Z', 'https://avatars.githubusercontent.com/u/2348?v=4', 'https://api.github.com/users/iccodes', 'https://github.com/iccodes', 'https://api.github.com/users/iccodes/followers', 'https://api.github.com/users/iccodes/following', 'https://api.github.com/users/iccodes/gists', 'https://api.github.com/users/iccodes/starred', 'https://api.github.com/users/iccodes/repos', 'https://api.github.com/users/iccodes/events', 'https://api.github.com/users/iccodes/received_events', 0); +INSERT INTO `developer` VALUES (2349, 'percyperez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Percy Perez', 'ORCAS', '', 'Eugene, Oregon', 'percyp3@gmail.com', NULL, NULL, NULL, 0, 0, 25, 45, 0, 0, 0, '2008-03-06T00:47:04Z', '2024-10-23T15:55:03Z', 'https://avatars.githubusercontent.com/u/2349?v=4', 'https://api.github.com/users/percyperez', 'https://github.com/percyperez', 'https://api.github.com/users/percyperez/followers', 'https://api.github.com/users/percyperez/following', 'https://api.github.com/users/percyperez/gists', 'https://api.github.com/users/percyperez/starred', 'https://api.github.com/users/percyperez/repos', 'https://api.github.com/users/percyperez/events', 'https://api.github.com/users/percyperez/received_events', 0); +INSERT INTO `developer` VALUES (2350, 'pvande', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pieter van de Bruggen', NULL, '', 'Portland, OR', NULL, NULL, NULL, NULL, 0, 0, 85, 14, 0, 0, 0, '2008-03-06T01:36:17Z', '2024-09-24T05:57:14Z', 'https://avatars.githubusercontent.com/u/2350?v=4', 'https://api.github.com/users/pvande', 'https://github.com/pvande', 'https://api.github.com/users/pvande/followers', 'https://api.github.com/users/pvande/following', 'https://api.github.com/users/pvande/gists', 'https://api.github.com/users/pvande/starred', 'https://api.github.com/users/pvande/repos', 'https://api.github.com/users/pvande/events', 'https://api.github.com/users/pvande/received_events', 0); +INSERT INTO `developer` VALUES (2351, 'ChadOhman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chad Ohman', NULL, 'http://www.chadohman.ca/', 'Edmonton, Alberta, Canada', 'chad@chadohman.ca', 'true', 'NAIT Digital Media & IT (System Administration), musician, and ham.\r\nMaking health info healthier.', 'ChadOhman', 0, 0, 13, 9, 0, 0, 0, '2008-03-06T01:50:04Z', '2024-08-14T21:35:46Z', 'https://avatars.githubusercontent.com/u/2351?v=4', 'https://api.github.com/users/ChadOhman', 'https://github.com/ChadOhman', 'https://api.github.com/users/ChadOhman/followers', 'https://api.github.com/users/ChadOhman/following', 'https://api.github.com/users/ChadOhman/gists', 'https://api.github.com/users/ChadOhman/starred', 'https://api.github.com/users/ChadOhman/repos', 'https://api.github.com/users/ChadOhman/events', 'https://api.github.com/users/ChadOhman/received_events', 0); +INSERT INTO `developer` VALUES (2352, 'tuplebunny', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel', NULL, '', 'Pacific Northwest', 'rabbitblue@gmail.com', NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-03-06T01:51:30Z', '2021-05-20T21:19:05Z', 'https://avatars.githubusercontent.com/u/2352?v=4', 'https://api.github.com/users/tuplebunny', 'https://github.com/tuplebunny', 'https://api.github.com/users/tuplebunny/followers', 'https://api.github.com/users/tuplebunny/following', 'https://api.github.com/users/tuplebunny/gists', 'https://api.github.com/users/tuplebunny/starred', 'https://api.github.com/users/tuplebunny/repos', 'https://api.github.com/users/tuplebunny/events', 'https://api.github.com/users/tuplebunny/received_events', 0); +INSERT INTO `developer` VALUES (2353, 'angelo0000', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jake Dempsey', 'Starterstep LLC', 'http://www.starterstep.com', 'Fort Worth, Texas', NULL, NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-03-06T03:12:06Z', '2024-09-21T22:52:48Z', 'https://avatars.githubusercontent.com/u/2353?v=4', 'https://api.github.com/users/angelo0000', 'https://github.com/angelo0000', 'https://api.github.com/users/angelo0000/followers', 'https://api.github.com/users/angelo0000/following', 'https://api.github.com/users/angelo0000/gists', 'https://api.github.com/users/angelo0000/starred', 'https://api.github.com/users/angelo0000/repos', 'https://api.github.com/users/angelo0000/events', 'https://api.github.com/users/angelo0000/received_events', 0); +INSERT INTO `developer` VALUES (2354, 'jash', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Ash', 'K3 Integrations, LLC', 'http://k3integrations.com/', 'Walla Walla, WA', 'jash@k3integrations.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-06T03:26:19Z', '2024-10-11T18:24:40Z', 'https://avatars.githubusercontent.com/u/2354?v=4', 'https://api.github.com/users/jash', 'https://github.com/jash', 'https://api.github.com/users/jash/followers', 'https://api.github.com/users/jash/following', 'https://api.github.com/users/jash/gists', 'https://api.github.com/users/jash/starred', 'https://api.github.com/users/jash/repos', 'https://api.github.com/users/jash/events', 'https://api.github.com/users/jash/received_events', 0); +INSERT INTO `developer` VALUES (2355, 'jhirbour', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Hirbour', '@tedconf ', 'http://www.hirbour.org', 'Harwinton, CT', 'john@hirbour.org', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-06T03:37:52Z', '2024-02-29T02:43:32Z', 'https://avatars.githubusercontent.com/u/2355?v=4', 'https://api.github.com/users/jhirbour', 'https://github.com/jhirbour', 'https://api.github.com/users/jhirbour/followers', 'https://api.github.com/users/jhirbour/following', 'https://api.github.com/users/jhirbour/gists', 'https://api.github.com/users/jhirbour/starred', 'https://api.github.com/users/jhirbour/repos', 'https://api.github.com/users/jhirbour/events', 'https://api.github.com/users/jhirbour/received_events', 0); +INSERT INTO `developer` VALUES (2356, 'awallwork', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-06T03:41:31Z', '2024-06-03T17:48:06Z', 'https://avatars.githubusercontent.com/u/2356?v=4', 'https://api.github.com/users/awallwork', 'https://github.com/awallwork', 'https://api.github.com/users/awallwork/followers', 'https://api.github.com/users/awallwork/following', 'https://api.github.com/users/awallwork/gists', 'https://api.github.com/users/awallwork/starred', 'https://api.github.com/users/awallwork/repos', 'https://api.github.com/users/awallwork/events', 'https://api.github.com/users/awallwork/received_events', 0); +INSERT INTO `developer` VALUES (2357, 'RichGhostWolf', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-06T04:28:36Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2357?v=4', 'https://api.github.com/users/RichGhostWolf', 'https://github.com/RichGhostWolf', 'https://api.github.com/users/RichGhostWolf/followers', 'https://api.github.com/users/RichGhostWolf/following', 'https://api.github.com/users/RichGhostWolf/gists', 'https://api.github.com/users/RichGhostWolf/starred', 'https://api.github.com/users/RichGhostWolf/repos', 'https://api.github.com/users/RichGhostWolf/events', 'https://api.github.com/users/RichGhostWolf/received_events', 0); +INSERT INTO `developer` VALUES (2358, 'Heril', 'C', 0, 0, 0, 0, 0, 0, 0, 'Spencer R Hall', NULL, 'https://spencer-r-hall.medium.com/', 'Arizona, USA', 'spencer.r.hall@protonmail.com', NULL, 'Data Scientist, Statistician, Technical Trainer and Data Advocate. Empowering Individuals with Data using Machine Learning, Exploratory Analysis and Simulations', 'heril', 0, 0, 12, 4, 0, 0, 0, '2008-03-06T04:57:42Z', '2024-08-12T11:21:24Z', 'https://avatars.githubusercontent.com/u/2358?v=4', 'https://api.github.com/users/Heril', 'https://github.com/Heril', 'https://api.github.com/users/Heril/followers', 'https://api.github.com/users/Heril/following', 'https://api.github.com/users/Heril/gists', 'https://api.github.com/users/Heril/starred', 'https://api.github.com/users/Heril/repos', 'https://api.github.com/users/Heril/events', 'https://api.github.com/users/Heril/received_events', 0); +INSERT INTO `developer` VALUES (2359, 'daeken', 'C', 8.337317489777902, 0, 0, 0, 0, 0, 0, 'Serafina Brocious', NULL, 'http://daeken.dev/', 'Atlanta, GA', 'sera.brocious@gmail.com', 'true', NULL, NULL, 0, 0, 771, 24, 0, 0, 0, '2008-03-06T05:01:32Z', '2024-06-15T17:07:36Z', 'https://avatars.githubusercontent.com/u/2359?v=4', 'https://api.github.com/users/daeken', 'https://github.com/daeken', 'https://api.github.com/users/daeken/followers', 'https://api.github.com/users/daeken/following', 'https://api.github.com/users/daeken/gists', 'https://api.github.com/users/daeken/starred', 'https://api.github.com/users/daeken/repos', 'https://api.github.com/users/daeken/events', 'https://api.github.com/users/daeken/received_events', 0); +INSERT INTO `developer` VALUES (2361, 'abasit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Abdul Basit', NULL, '', '未知', 'basit.abdul@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-06T05:49:27Z', '2024-10-08T03:09:37Z', 'https://avatars.githubusercontent.com/u/2361?v=4', 'https://api.github.com/users/abasit', 'https://github.com/abasit', 'https://api.github.com/users/abasit/followers', 'https://api.github.com/users/abasit/following', 'https://api.github.com/users/abasit/gists', 'https://api.github.com/users/abasit/starred', 'https://api.github.com/users/abasit/repos', 'https://api.github.com/users/abasit/events', 'https://api.github.com/users/abasit/received_events', 0); +INSERT INTO `developer` VALUES (2362, 'disnet', 'C', 0.44899673232334664, 0, 0, 0, 0, 0, 0, 'Tim Disney', '@shapesecurity ', 'http://disnetdev.com/', '未知', 'tim@disnetdev.com', NULL, NULL, NULL, 0, 0, 311, 11, 0, 0, 0, '2008-03-06T05:52:27Z', '2024-01-06T20:56:22Z', 'https://avatars.githubusercontent.com/u/2362?v=4', 'https://api.github.com/users/disnet', 'https://github.com/disnet', 'https://api.github.com/users/disnet/followers', 'https://api.github.com/users/disnet/following', 'https://api.github.com/users/disnet/gists', 'https://api.github.com/users/disnet/starred', 'https://api.github.com/users/disnet/repos', 'https://api.github.com/users/disnet/events', 'https://api.github.com/users/disnet/received_events', 0); +INSERT INTO `developer` VALUES (2363, 'darashi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yoji Shidara', 'Enishi Tech Inc.', 'https://darashi.net', 'Sapporo, Hokkaido, Japan', 'dara@shidara.net', NULL, NULL, NULL, 0, 0, 204, 149, 0, 0, 0, '2008-03-06T06:36:38Z', '2024-08-20T01:57:36Z', 'https://avatars.githubusercontent.com/u/2363?v=4', 'https://api.github.com/users/darashi', 'https://github.com/darashi', 'https://api.github.com/users/darashi/followers', 'https://api.github.com/users/darashi/following', 'https://api.github.com/users/darashi/gists', 'https://api.github.com/users/darashi/starred', 'https://api.github.com/users/darashi/repos', 'https://api.github.com/users/darashi/events', 'https://api.github.com/users/darashi/received_events', 0); +INSERT INTO `developer` VALUES (2364, 'ebangug', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Bangug', 'OLX Philippines', '', 'Quezon City, Philippines', 'ericbangug@gmail.com', NULL, 'Senior Software Engineer / OLX Philippines', NULL, 0, 0, 20, 2, 0, 0, 0, '2008-03-06T06:37:48Z', '2024-06-04T08:12:56Z', 'https://avatars.githubusercontent.com/u/2364?v=4', 'https://api.github.com/users/ebangug', 'https://github.com/ebangug', 'https://api.github.com/users/ebangug/followers', 'https://api.github.com/users/ebangug/following', 'https://api.github.com/users/ebangug/gists', 'https://api.github.com/users/ebangug/starred', 'https://api.github.com/users/ebangug/repos', 'https://api.github.com/users/ebangug/events', 'https://api.github.com/users/ebangug/received_events', 0); +INSERT INTO `developer` VALUES (2365, 'Dieken', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yubao Liu', NULL, '', 'Beijing, China', NULL, NULL, NULL, NULL, 0, 0, 76, 23, 0, 0, 0, '2008-03-06T06:54:48Z', '2024-10-16T08:56:21Z', 'https://avatars.githubusercontent.com/u/2365?v=4', 'https://api.github.com/users/Dieken', 'https://github.com/Dieken', 'https://api.github.com/users/Dieken/followers', 'https://api.github.com/users/Dieken/following', 'https://api.github.com/users/Dieken/gists', 'https://api.github.com/users/Dieken/starred', 'https://api.github.com/users/Dieken/repos', 'https://api.github.com/users/Dieken/events', 'https://api.github.com/users/Dieken/received_events', 0); +INSERT INTO `developer` VALUES (2366, 'nick-b', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 22, 0, 0, 0, '2008-03-06T07:23:54Z', '2019-11-11T04:52:05Z', 'https://avatars.githubusercontent.com/u/2366?v=4', 'https://api.github.com/users/nick-b', 'https://github.com/nick-b', 'https://api.github.com/users/nick-b/followers', 'https://api.github.com/users/nick-b/following', 'https://api.github.com/users/nick-b/gists', 'https://api.github.com/users/nick-b/starred', 'https://api.github.com/users/nick-b/repos', 'https://api.github.com/users/nick-b/events', 'https://api.github.com/users/nick-b/received_events', 0); +INSERT INTO `developer` VALUES (2367, 'jrockway', 'C', 1.4436110886980518, 0, 0, 0, 0, 0, 0, 'Jonathan Rockway', NULL, 'https://jrock.us/', 'Brooklyn, New York', NULL, NULL, NULL, 'jrockway', 0, 0, 369, 105, 0, 0, 0, '2008-03-06T07:40:53Z', '2024-11-01T17:37:32Z', 'https://avatars.githubusercontent.com/u/2367?v=4', 'https://api.github.com/users/jrockway', 'https://github.com/jrockway', 'https://api.github.com/users/jrockway/followers', 'https://api.github.com/users/jrockway/following', 'https://api.github.com/users/jrockway/gists', 'https://api.github.com/users/jrockway/starred', 'https://api.github.com/users/jrockway/repos', 'https://api.github.com/users/jrockway/events', 'https://api.github.com/users/jrockway/received_events', 0); +INSERT INTO `developer` VALUES (2368, 'lauer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesper Grann Laursen', NULL, 'http://lauer.dk', 'Vedbæk, Denmark', NULL, NULL, NULL, NULL, 0, 0, 10, 7, 0, 0, 0, '2008-03-06T07:49:13Z', '2024-10-29T15:38:16Z', 'https://avatars.githubusercontent.com/u/2368?v=4', 'https://api.github.com/users/lauer', 'https://github.com/lauer', 'https://api.github.com/users/lauer/followers', 'https://api.github.com/users/lauer/following', 'https://api.github.com/users/lauer/gists', 'https://api.github.com/users/lauer/starred', 'https://api.github.com/users/lauer/repos', 'https://api.github.com/users/lauer/events', 'https://api.github.com/users/lauer/received_events', 0); +INSERT INTO `developer` VALUES (2369, 'jhoyimperial', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-06T08:11:35Z', '2020-11-06T14:01:25Z', 'https://avatars.githubusercontent.com/u/2369?v=4', 'https://api.github.com/users/jhoyimperial', 'https://github.com/jhoyimperial', 'https://api.github.com/users/jhoyimperial/followers', 'https://api.github.com/users/jhoyimperial/following', 'https://api.github.com/users/jhoyimperial/gists', 'https://api.github.com/users/jhoyimperial/starred', 'https://api.github.com/users/jhoyimperial/repos', 'https://api.github.com/users/jhoyimperial/events', 'https://api.github.com/users/jhoyimperial/received_events', 0); +INSERT INTO `developer` VALUES (2370, 'soulim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Sulim', '@babbel ', 'https://sul.im/', 'Berlin, Germany', 'hello@sul.im', NULL, 'Principal Software Engineer at @babbel.', 'soulim', 0, 0, 69, 19, 0, 0, 0, '2008-03-06T08:39:56Z', '2024-10-28T10:49:33Z', 'https://avatars.githubusercontent.com/u/2370?v=4', 'https://api.github.com/users/soulim', 'https://github.com/soulim', 'https://api.github.com/users/soulim/followers', 'https://api.github.com/users/soulim/following', 'https://api.github.com/users/soulim/gists', 'https://api.github.com/users/soulim/starred', 'https://api.github.com/users/soulim/repos', 'https://api.github.com/users/soulim/events', 'https://api.github.com/users/soulim/received_events', 0); +INSERT INTO `developer` VALUES (2371, 'hojberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Højberg', '@unisoncomputing @unisonweb ', 'https://hojberg.xyz', 'Massachusetts', 'r.hackr@gmail.com', NULL, 'Functional Programming, UIs, Collaboration, Food, Writing', 'shojberg', 0, 0, 227, 115, 0, 0, 0, '2008-03-06T09:22:31Z', '2024-08-19T18:01:50Z', 'https://avatars.githubusercontent.com/u/2371?v=4', 'https://api.github.com/users/hojberg', 'https://github.com/hojberg', 'https://api.github.com/users/hojberg/followers', 'https://api.github.com/users/hojberg/following', 'https://api.github.com/users/hojberg/gists', 'https://api.github.com/users/hojberg/starred', 'https://api.github.com/users/hojberg/repos', 'https://api.github.com/users/hojberg/events', 'https://api.github.com/users/hojberg/received_events', 0); +INSERT INTO `developer` VALUES (2372, 'fredericsidler', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-06T10:04:19Z', '2016-07-06T16:23:16Z', 'https://avatars.githubusercontent.com/u/2372?v=4', 'https://api.github.com/users/fredericsidler', 'https://github.com/fredericsidler', 'https://api.github.com/users/fredericsidler/followers', 'https://api.github.com/users/fredericsidler/following', 'https://api.github.com/users/fredericsidler/gists', 'https://api.github.com/users/fredericsidler/starred', 'https://api.github.com/users/fredericsidler/repos', 'https://api.github.com/users/fredericsidler/events', 'https://api.github.com/users/fredericsidler/received_events', 0); +INSERT INTO `developer` VALUES (2373, 'pfefferle', 'C', 3.381394231290148, 0, 0, 0, 0, 0, 0, 'Matthias Pfefferle', '@automattic', 'https://notiz.blog', 'Karlsruhe, Germany', NULL, 'true', 'Webworker, podcaster and blogger, advocate of the #openweb and citizen of the @indieweb and the @fediverse, working on #activitypub & @IndieWeb for @WordPress', NULL, 0, 0, 482, 452, 0, 0, 0, '2008-03-06T10:09:57Z', '2024-09-13T09:31:30Z', 'https://avatars.githubusercontent.com/u/2373?v=4', 'https://api.github.com/users/pfefferle', 'https://github.com/pfefferle', 'https://api.github.com/users/pfefferle/followers', 'https://api.github.com/users/pfefferle/following', 'https://api.github.com/users/pfefferle/gists', 'https://api.github.com/users/pfefferle/starred', 'https://api.github.com/users/pfefferle/repos', 'https://api.github.com/users/pfefferle/events', 'https://api.github.com/users/pfefferle/received_events', 0); +INSERT INTO `developer` VALUES (2374, 'diroussel', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Roussel', NULL, '', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 14, 11, 0, 0, 0, '2008-03-06T10:34:28Z', '2024-10-26T10:19:16Z', 'https://avatars.githubusercontent.com/u/2374?v=4', 'https://api.github.com/users/diroussel', 'https://github.com/diroussel', 'https://api.github.com/users/diroussel/followers', 'https://api.github.com/users/diroussel/following', 'https://api.github.com/users/diroussel/gists', 'https://api.github.com/users/diroussel/starred', 'https://api.github.com/users/diroussel/repos', 'https://api.github.com/users/diroussel/events', 'https://api.github.com/users/diroussel/received_events', 0); +INSERT INTO `developer` VALUES (2375, 'thsp', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-06T11:15:36Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2375?v=4', 'https://api.github.com/users/thsp', 'https://github.com/thsp', 'https://api.github.com/users/thsp/followers', 'https://api.github.com/users/thsp/following', 'https://api.github.com/users/thsp/gists', 'https://api.github.com/users/thsp/starred', 'https://api.github.com/users/thsp/repos', 'https://api.github.com/users/thsp/events', 'https://api.github.com/users/thsp/received_events', 0); +INSERT INTO `developer` VALUES (2376, 'bastien', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bastien Vaucher', 'Zendesk', '', 'Copenhagen, Denmark', NULL, NULL, NULL, NULL, 0, 0, 26, 8, 0, 0, 0, '2008-03-06T11:20:56Z', '2024-07-30T06:30:38Z', 'https://avatars.githubusercontent.com/u/2376?v=4', 'https://api.github.com/users/bastien', 'https://github.com/bastien', 'https://api.github.com/users/bastien/followers', 'https://api.github.com/users/bastien/following', 'https://api.github.com/users/bastien/gists', 'https://api.github.com/users/bastien/starred', 'https://api.github.com/users/bastien/repos', 'https://api.github.com/users/bastien/events', 'https://api.github.com/users/bastien/received_events', 0); +INSERT INTO `developer` VALUES (2377, 'jdelStrother', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan del Strother', 'Audioboom', 'https://audioboom.com', 'London', NULL, NULL, NULL, NULL, 0, 0, 41, 1, 0, 0, 0, '2008-03-06T11:38:56Z', '2024-09-15T11:36:23Z', 'https://avatars.githubusercontent.com/u/2377?v=4', 'https://api.github.com/users/jdelStrother', 'https://github.com/jdelStrother', 'https://api.github.com/users/jdelStrother/followers', 'https://api.github.com/users/jdelStrother/following', 'https://api.github.com/users/jdelStrother/gists', 'https://api.github.com/users/jdelStrother/starred', 'https://api.github.com/users/jdelStrother/repos', 'https://api.github.com/users/jdelStrother/events', 'https://api.github.com/users/jdelStrother/received_events', 0); +INSERT INTO `developer` VALUES (2378, 'johnnyjacob', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johnny Jacob', NULL, 'http://johnnyjacob.org', 'Bangalore, India', 'johnnyjacob@gmail.com', NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2008-03-06T12:18:39Z', '2024-10-06T04:29:34Z', 'https://avatars.githubusercontent.com/u/2378?v=4', 'https://api.github.com/users/johnnyjacob', 'https://github.com/johnnyjacob', 'https://api.github.com/users/johnnyjacob/followers', 'https://api.github.com/users/johnnyjacob/following', 'https://api.github.com/users/johnnyjacob/gists', 'https://api.github.com/users/johnnyjacob/starred', 'https://api.github.com/users/johnnyjacob/repos', 'https://api.github.com/users/johnnyjacob/events', 'https://api.github.com/users/johnnyjacob/received_events', 0); +INSERT INTO `developer` VALUES (2379, 'davidwparker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Parker Parker', 'Code Name Parker LLC', 'https://www.programmingtil.com', 'Denver, CO', 'davidwparker@gmail.com', 'true', 'Learn to Code: https://www.programmingtil.com/\r\nYouTube:\r\nhttps://youtube.com/c/DavidParkerW\r\nSvelte App: https://www.listenaddict.com/\r\n', 'davidwparker', 0, 0, 127, 10, 0, 0, 0, '2008-03-06T12:26:47Z', '2024-07-24T17:20:44Z', 'https://avatars.githubusercontent.com/u/2379?v=4', 'https://api.github.com/users/davidwparker', 'https://github.com/davidwparker', 'https://api.github.com/users/davidwparker/followers', 'https://api.github.com/users/davidwparker/following', 'https://api.github.com/users/davidwparker/gists', 'https://api.github.com/users/davidwparker/starred', 'https://api.github.com/users/davidwparker/repos', 'https://api.github.com/users/davidwparker/events', 'https://api.github.com/users/davidwparker/received_events', 0); +INSERT INTO `developer` VALUES (2380, 'garyvanhoek', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-06T12:46:26Z', '2023-01-19T09:09:36Z', 'https://avatars.githubusercontent.com/u/2380?v=4', 'https://api.github.com/users/garyvanhoek', 'https://github.com/garyvanhoek', 'https://api.github.com/users/garyvanhoek/followers', 'https://api.github.com/users/garyvanhoek/following', 'https://api.github.com/users/garyvanhoek/gists', 'https://api.github.com/users/garyvanhoek/starred', 'https://api.github.com/users/garyvanhoek/repos', 'https://api.github.com/users/garyvanhoek/events', 'https://api.github.com/users/garyvanhoek/received_events', 0); +INSERT INTO `developer` VALUES (2381, 'metaskills', 'C', 1.8723241733423213, 0, 0, 0, 0, 0, 0, 'Ken Collins', '@opentorc ', '', 'Portsmouth, VA', 'ken@metaskills.net', NULL, 'Innovative & Award-Winning Leader | AWS Hero | AI Business Impact thru Strategic Tech, Product, Marketing, & Sales.', 'metaskills', 0, 0, 394, 17, 0, 0, 0, '2008-03-06T13:53:31Z', '2024-10-05T01:33:50Z', 'https://avatars.githubusercontent.com/u/2381?v=4', 'https://api.github.com/users/metaskills', 'https://github.com/metaskills', 'https://api.github.com/users/metaskills/followers', 'https://api.github.com/users/metaskills/following', 'https://api.github.com/users/metaskills/gists', 'https://api.github.com/users/metaskills/starred', 'https://api.github.com/users/metaskills/repos', 'https://api.github.com/users/metaskills/events', 'https://api.github.com/users/metaskills/received_events', 0); +INSERT INTO `developer` VALUES (2382, 'lordfenric', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-06T14:28:05Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2382?v=4', 'https://api.github.com/users/lordfenric', 'https://github.com/lordfenric', 'https://api.github.com/users/lordfenric/followers', 'https://api.github.com/users/lordfenric/following', 'https://api.github.com/users/lordfenric/gists', 'https://api.github.com/users/lordfenric/starred', 'https://api.github.com/users/lordfenric/repos', 'https://api.github.com/users/lordfenric/events', 'https://api.github.com/users/lordfenric/received_events', 0); +INSERT INTO `developer` VALUES (2383, 'aom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mika Marttila', '@AppGyver @SAP', '', 'Helsinki, Finland', NULL, NULL, NULL, NULL, 0, 0, 23, 4, 0, 0, 0, '2008-03-06T14:42:54Z', '2024-08-07T13:28:35Z', 'https://avatars.githubusercontent.com/u/2383?v=4', 'https://api.github.com/users/aom', 'https://github.com/aom', 'https://api.github.com/users/aom/followers', 'https://api.github.com/users/aom/following', 'https://api.github.com/users/aom/gists', 'https://api.github.com/users/aom/starred', 'https://api.github.com/users/aom/repos', 'https://api.github.com/users/aom/events', 'https://api.github.com/users/aom/received_events', 0); +INSERT INTO `developer` VALUES (2384, 'sherrry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sheheryar Ali', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-03-06T15:14:47Z', '2024-04-29T12:36:55Z', 'https://avatars.githubusercontent.com/u/2384?v=4', 'https://api.github.com/users/sherrry', 'https://github.com/sherrry', 'https://api.github.com/users/sherrry/followers', 'https://api.github.com/users/sherrry/following', 'https://api.github.com/users/sherrry/gists', 'https://api.github.com/users/sherrry/starred', 'https://api.github.com/users/sherrry/repos', 'https://api.github.com/users/sherrry/events', 'https://api.github.com/users/sherrry/received_events', 0); +INSERT INTO `developer` VALUES (2385, 'anthonyplanet', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-06T15:25:29Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2385?v=4', 'https://api.github.com/users/anthonyplanet', 'https://github.com/anthonyplanet', 'https://api.github.com/users/anthonyplanet/followers', 'https://api.github.com/users/anthonyplanet/following', 'https://api.github.com/users/anthonyplanet/gists', 'https://api.github.com/users/anthonyplanet/starred', 'https://api.github.com/users/anthonyplanet/repos', 'https://api.github.com/users/anthonyplanet/events', 'https://api.github.com/users/anthonyplanet/received_events', 0); +INSERT INTO `developer` VALUES (2386, 'levent', 'C', 0, 0, 0, 0, 0, 0, 0, 'Levent Ali', '@intercom ', 'http://www.leventali.com', 'London', 'levent@purebreeze.com', NULL, 'Group Engineering Manager at Intercom', 'lebreeze', 0, 0, 59, 25, 0, 0, 0, '2008-03-06T15:26:43Z', '2024-10-01T09:45:54Z', 'https://avatars.githubusercontent.com/u/2386?v=4', 'https://api.github.com/users/levent', 'https://github.com/levent', 'https://api.github.com/users/levent/followers', 'https://api.github.com/users/levent/following', 'https://api.github.com/users/levent/gists', 'https://api.github.com/users/levent/starred', 'https://api.github.com/users/levent/repos', 'https://api.github.com/users/levent/events', 'https://api.github.com/users/levent/received_events', 0); +INSERT INTO `developer` VALUES (2387, 'codyfauser', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cody Fauser', NULL, '', 'Ottawa, Canada', NULL, NULL, NULL, NULL, 0, 0, 95, 0, 0, 0, 0, '2008-03-06T15:37:46Z', '2024-04-03T00:09:45Z', 'https://avatars.githubusercontent.com/u/2387?v=4', 'https://api.github.com/users/codyfauser', 'https://github.com/codyfauser', 'https://api.github.com/users/codyfauser/followers', 'https://api.github.com/users/codyfauser/following', 'https://api.github.com/users/codyfauser/gists', 'https://api.github.com/users/codyfauser/starred', 'https://api.github.com/users/codyfauser/repos', 'https://api.github.com/users/codyfauser/events', 'https://api.github.com/users/codyfauser/received_events', 0); +INSERT INTO `developer` VALUES (2388, 'mauve928', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 1, 0, 0, 0, '2008-03-06T15:39:15Z', '2017-08-14T19:40:49Z', 'https://avatars.githubusercontent.com/u/2388?v=4', 'https://api.github.com/users/mauve928', 'https://github.com/mauve928', 'https://api.github.com/users/mauve928/followers', 'https://api.github.com/users/mauve928/following', 'https://api.github.com/users/mauve928/gists', 'https://api.github.com/users/mauve928/starred', 'https://api.github.com/users/mauve928/repos', 'https://api.github.com/users/mauve928/events', 'https://api.github.com/users/mauve928/received_events', 0); +INSERT INTO `developer` VALUES (2389, 'jstotz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jay Stotz', NULL, '', 'Medford, MA', NULL, NULL, NULL, NULL, 0, 0, 26, 11, 0, 0, 0, '2008-03-06T15:55:31Z', '2024-10-12T11:19:35Z', 'https://avatars.githubusercontent.com/u/2389?v=4', 'https://api.github.com/users/jstotz', 'https://github.com/jstotz', 'https://api.github.com/users/jstotz/followers', 'https://api.github.com/users/jstotz/following', 'https://api.github.com/users/jstotz/gists', 'https://api.github.com/users/jstotz/starred', 'https://api.github.com/users/jstotz/repos', 'https://api.github.com/users/jstotz/events', 'https://api.github.com/users/jstotz/received_events', 0); +INSERT INTO `developer` VALUES (2390, 'jonlongnecker', 'C', 0, 0, 0, 0, 0, 0, 0, 'FortySeven Media', 'FortySeven Media', 'https://fortysevenmedia.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-06T16:04:48Z', '2024-07-26T23:39:33Z', 'https://avatars.githubusercontent.com/u/2390?v=4', 'https://api.github.com/users/jonlongnecker', 'https://github.com/jonlongnecker', 'https://api.github.com/users/jonlongnecker/followers', 'https://api.github.com/users/jonlongnecker/following', 'https://api.github.com/users/jonlongnecker/gists', 'https://api.github.com/users/jonlongnecker/starred', 'https://api.github.com/users/jonlongnecker/repos', 'https://api.github.com/users/jonlongnecker/events', 'https://api.github.com/users/jonlongnecker/received_events', 0); +INSERT INTO `developer` VALUES (2391, 'jwoertink', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Woertink', '@joysticktv ', 'https://luckyframework.org/', 'Las Vegas, NV', NULL, NULL, 'Core member @luckyframework.\r\n', 'jeremywoertink', 0, 0, 206, 101, 0, 0, 0, '2008-03-06T16:06:18Z', '2024-10-30T22:46:07Z', 'https://avatars.githubusercontent.com/u/2391?v=4', 'https://api.github.com/users/jwoertink', 'https://github.com/jwoertink', 'https://api.github.com/users/jwoertink/followers', 'https://api.github.com/users/jwoertink/following', 'https://api.github.com/users/jwoertink/gists', 'https://api.github.com/users/jwoertink/starred', 'https://api.github.com/users/jwoertink/repos', 'https://api.github.com/users/jwoertink/events', 'https://api.github.com/users/jwoertink/received_events', 0); +INSERT INTO `developer` VALUES (2392, 'paradyme', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-06T16:23:11Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2392?v=4', 'https://api.github.com/users/paradyme', 'https://github.com/paradyme', 'https://api.github.com/users/paradyme/followers', 'https://api.github.com/users/paradyme/following', 'https://api.github.com/users/paradyme/gists', 'https://api.github.com/users/paradyme/starred', 'https://api.github.com/users/paradyme/repos', 'https://api.github.com/users/paradyme/events', 'https://api.github.com/users/paradyme/received_events', 0); +INSERT INTO `developer` VALUES (2393, 'rmiranda', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-06T16:24:09Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2393?v=4', 'https://api.github.com/users/rmiranda', 'https://github.com/rmiranda', 'https://api.github.com/users/rmiranda/followers', 'https://api.github.com/users/rmiranda/following', 'https://api.github.com/users/rmiranda/gists', 'https://api.github.com/users/rmiranda/starred', 'https://api.github.com/users/rmiranda/repos', 'https://api.github.com/users/rmiranda/events', 'https://api.github.com/users/rmiranda/received_events', 0); +INSERT INTO `developer` VALUES (2394, 'timshadel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Shadel', 'Day Logger, Inc.', 'http://timshadel.com', 'Rexburg, Idaho', NULL, NULL, NULL, NULL, 0, 0, 59, 23, 0, 0, 0, '2008-03-06T16:24:44Z', '2024-07-16T23:22:36Z', 'https://avatars.githubusercontent.com/u/2394?v=4', 'https://api.github.com/users/timshadel', 'https://github.com/timshadel', 'https://api.github.com/users/timshadel/followers', 'https://api.github.com/users/timshadel/following', 'https://api.github.com/users/timshadel/gists', 'https://api.github.com/users/timshadel/starred', 'https://api.github.com/users/timshadel/repos', 'https://api.github.com/users/timshadel/events', 'https://api.github.com/users/timshadel/received_events', 0); +INSERT INTO `developer` VALUES (2395, 'ecarnevale', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emanuel Carnevale', NULL, 'http://twitter.com/onigiri', 'Italy', 'emanuel.carnevale@gmail.com', NULL, NULL, NULL, 0, 0, 32, 32, 0, 0, 0, '2008-03-06T16:26:03Z', '2024-10-07T06:53:38Z', 'https://avatars.githubusercontent.com/u/2395?v=4', 'https://api.github.com/users/ecarnevale', 'https://github.com/ecarnevale', 'https://api.github.com/users/ecarnevale/followers', 'https://api.github.com/users/ecarnevale/following', 'https://api.github.com/users/ecarnevale/gists', 'https://api.github.com/users/ecarnevale/starred', 'https://api.github.com/users/ecarnevale/repos', 'https://api.github.com/users/ecarnevale/events', 'https://api.github.com/users/ecarnevale/received_events', 0); +INSERT INTO `developer` VALUES (2396, 'mars888', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcel', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 11, 0, 0, 0, '2008-03-06T16:26:46Z', '2024-09-12T09:43:28Z', 'https://avatars.githubusercontent.com/u/2396?v=4', 'https://api.github.com/users/mars888', 'https://github.com/mars888', 'https://api.github.com/users/mars888/followers', 'https://api.github.com/users/mars888/following', 'https://api.github.com/users/mars888/gists', 'https://api.github.com/users/mars888/starred', 'https://api.github.com/users/mars888/repos', 'https://api.github.com/users/mars888/events', 'https://api.github.com/users/mars888/received_events', 0); +INSERT INTO `developer` VALUES (2397, 'hb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Holger Berndt', NULL, 'http://berndth.blogspot.com/', 'Germany', 'berndth@gmx.de', NULL, NULL, NULL, 0, 0, 9, 2, 0, 0, 0, '2008-03-06T16:27:09Z', '2024-08-31T17:14:32Z', 'https://avatars.githubusercontent.com/u/2397?v=4', 'https://api.github.com/users/hb', 'https://github.com/hb', 'https://api.github.com/users/hb/followers', 'https://api.github.com/users/hb/following', 'https://api.github.com/users/hb/gists', 'https://api.github.com/users/hb/starred', 'https://api.github.com/users/hb/repos', 'https://api.github.com/users/hb/events', 'https://api.github.com/users/hb/received_events', 0); +INSERT INTO `developer` VALUES (2398, 'mugwump', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Frank', 'tesa scribos', 'http://www.vierundsechzig.de', 'Heidelberg, Germany', 's.frank@vierundsechzig.de', NULL, NULL, NULL, 0, 0, 9, 2, 0, 0, 0, '2008-03-06T16:31:13Z', '2024-09-26T09:34:28Z', 'https://avatars.githubusercontent.com/u/2398?v=4', 'https://api.github.com/users/mugwump', 'https://github.com/mugwump', 'https://api.github.com/users/mugwump/followers', 'https://api.github.com/users/mugwump/following', 'https://api.github.com/users/mugwump/gists', 'https://api.github.com/users/mugwump/starred', 'https://api.github.com/users/mugwump/repos', 'https://api.github.com/users/mugwump/events', 'https://api.github.com/users/mugwump/received_events', 0); +INSERT INTO `developer` VALUES (2399, 'cdmwebs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Moore', '@knowndecimal, @matchsense', 'https://knowndecimal.com', 'Cincinnati, OH', 'chris@knowndecimal.com', 'true', 'Computer Operator', 'cdmwebs', 0, 0, 85, 90, 0, 0, 0, '2008-03-06T16:31:15Z', '2024-10-07T09:38:40Z', 'https://avatars.githubusercontent.com/u/2399?v=4', 'https://api.github.com/users/cdmwebs', 'https://github.com/cdmwebs', 'https://api.github.com/users/cdmwebs/followers', 'https://api.github.com/users/cdmwebs/following', 'https://api.github.com/users/cdmwebs/gists', 'https://api.github.com/users/cdmwebs/starred', 'https://api.github.com/users/cdmwebs/repos', 'https://api.github.com/users/cdmwebs/events', 'https://api.github.com/users/cdmwebs/received_events', 0); +INSERT INTO `developer` VALUES (2400, 'tomtoday', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Brice', NULL, '', '未知', 'tomtoday@gmail.com', NULL, NULL, NULL, 0, 0, 28, 11, 0, 0, 0, '2008-03-06T16:32:10Z', '2024-09-10T17:34:20Z', 'https://avatars.githubusercontent.com/u/2400?v=4', 'https://api.github.com/users/tomtoday', 'https://github.com/tomtoday', 'https://api.github.com/users/tomtoday/followers', 'https://api.github.com/users/tomtoday/following', 'https://api.github.com/users/tomtoday/gists', 'https://api.github.com/users/tomtoday/starred', 'https://api.github.com/users/tomtoday/repos', 'https://api.github.com/users/tomtoday/events', 'https://api.github.com/users/tomtoday/received_events', 0); +INSERT INTO `developer` VALUES (2401, 'stevebartholomew', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen Bartholomew', NULL, 'https://beginrescue.com/', 'UK', 'sb@beginrescue.com', NULL, 'Ruby Programmer 👨🏻‍💻 | build stuff & be kind 🚀❤️\r\n', NULL, 0, 0, 26, 3, 0, 0, 0, '2008-03-06T16:34:29Z', '2024-09-30T19:22:27Z', 'https://avatars.githubusercontent.com/u/2401?v=4', 'https://api.github.com/users/stevebartholomew', 'https://github.com/stevebartholomew', 'https://api.github.com/users/stevebartholomew/followers', 'https://api.github.com/users/stevebartholomew/following', 'https://api.github.com/users/stevebartholomew/gists', 'https://api.github.com/users/stevebartholomew/starred', 'https://api.github.com/users/stevebartholomew/repos', 'https://api.github.com/users/stevebartholomew/events', 'https://api.github.com/users/stevebartholomew/received_events', 0); +INSERT INTO `developer` VALUES (2403, 'chrisjones', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Jones', NULL, '', 'Birmingham, AL USA', 'captjones@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-06T16:36:16Z', '2024-10-05T14:54:06Z', 'https://avatars.githubusercontent.com/u/2403?v=4', 'https://api.github.com/users/chrisjones', 'https://github.com/chrisjones', 'https://api.github.com/users/chrisjones/followers', 'https://api.github.com/users/chrisjones/following', 'https://api.github.com/users/chrisjones/gists', 'https://api.github.com/users/chrisjones/starred', 'https://api.github.com/users/chrisjones/repos', 'https://api.github.com/users/chrisjones/events', 'https://api.github.com/users/chrisjones/received_events', 0); +INSERT INTO `developer` VALUES (2404, 'sloan-zz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Sloan', 'Indie Rock Media', '', 'Appomattox', 'chris@indierockmedia.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-06T16:40:35Z', '2016-02-26T22:34:49Z', 'https://avatars.githubusercontent.com/u/2404?v=4', 'https://api.github.com/users/sloan-zz', 'https://github.com/sloan-zz', 'https://api.github.com/users/sloan-zz/followers', 'https://api.github.com/users/sloan-zz/following', 'https://api.github.com/users/sloan-zz/gists', 'https://api.github.com/users/sloan-zz/starred', 'https://api.github.com/users/sloan-zz/repos', 'https://api.github.com/users/sloan-zz/events', 'https://api.github.com/users/sloan-zz/received_events', 0); +INSERT INTO `developer` VALUES (2405, 'hungryblank', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paolo Negri', 'Contentful', '', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 120, 115, 0, 0, 0, '2008-03-06T16:40:45Z', '2023-03-03T08:22:51Z', 'https://avatars.githubusercontent.com/u/2405?v=4', 'https://api.github.com/users/hungryblank', 'https://github.com/hungryblank', 'https://api.github.com/users/hungryblank/followers', 'https://api.github.com/users/hungryblank/following', 'https://api.github.com/users/hungryblank/gists', 'https://api.github.com/users/hungryblank/starred', 'https://api.github.com/users/hungryblank/repos', 'https://api.github.com/users/hungryblank/events', 'https://api.github.com/users/hungryblank/received_events', 0); +INSERT INTO `developer` VALUES (2406, 'jamesarosen', 'C', 0, 0, 0, 0, 0, 0, 0, 'James A Rosen', 'Clarasight PBC', 'https://www.jamesarosen.com', 'Bay Area, CA', NULL, NULL, NULL, NULL, 0, 0, 147, 23, 0, 0, 0, '2008-03-06T16:41:08Z', '2024-08-25T21:07:37Z', 'https://avatars.githubusercontent.com/u/2406?v=4', 'https://api.github.com/users/jamesarosen', 'https://github.com/jamesarosen', 'https://api.github.com/users/jamesarosen/followers', 'https://api.github.com/users/jamesarosen/following', 'https://api.github.com/users/jamesarosen/gists', 'https://api.github.com/users/jamesarosen/starred', 'https://api.github.com/users/jamesarosen/repos', 'https://api.github.com/users/jamesarosen/events', 'https://api.github.com/users/jamesarosen/received_events', 0); +INSERT INTO `developer` VALUES (2407, 'Peeja', 'C', 0, 0, 0, 0, 0, 0, 0, 'Petra Jaros', 'Storacha', 'http://peeja.com/', 'Easthampton, MA', NULL, NULL, NULL, 'peeja', 0, 0, 65, 11, 0, 0, 0, '2008-03-06T16:43:29Z', '2024-09-23T15:56:47Z', 'https://avatars.githubusercontent.com/u/2407?v=4', 'https://api.github.com/users/Peeja', 'https://github.com/Peeja', 'https://api.github.com/users/Peeja/followers', 'https://api.github.com/users/Peeja/following', 'https://api.github.com/users/Peeja/gists', 'https://api.github.com/users/Peeja/starred', 'https://api.github.com/users/Peeja/repos', 'https://api.github.com/users/Peeja/events', 'https://api.github.com/users/Peeja/received_events', 0); +INSERT INTO `developer` VALUES (2408, 'smgt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Gate', NULL, 'http://smgt.me', 'Sweden', 'smgt@0xee.cc', NULL, NULL, NULL, 0, 0, 39, 15, 0, 0, 0, '2008-03-06T16:45:26Z', '2024-09-28T05:52:10Z', 'https://avatars.githubusercontent.com/u/2408?v=4', 'https://api.github.com/users/smgt', 'https://github.com/smgt', 'https://api.github.com/users/smgt/followers', 'https://api.github.com/users/smgt/following', 'https://api.github.com/users/smgt/gists', 'https://api.github.com/users/smgt/starred', 'https://api.github.com/users/smgt/repos', 'https://api.github.com/users/smgt/events', 'https://api.github.com/users/smgt/received_events', 0); +INSERT INTO `developer` VALUES (2409, 'rope', 'C', 0, 0, 0, 0, 0, 0, 0, 'Petar Bukvic', NULL, 'www.fuzija.com', 'Belgrade, Serbia', 'petarbukvic@gmail.com', 'true', NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2008-03-06T16:47:54Z', '2024-04-19T05:10:56Z', 'https://avatars.githubusercontent.com/u/2409?v=4', 'https://api.github.com/users/rope', 'https://github.com/rope', 'https://api.github.com/users/rope/followers', 'https://api.github.com/users/rope/following', 'https://api.github.com/users/rope/gists', 'https://api.github.com/users/rope/starred', 'https://api.github.com/users/rope/repos', 'https://api.github.com/users/rope/events', 'https://api.github.com/users/rope/received_events', 0); +INSERT INTO `developer` VALUES (2410, 'ck', 'C', 0, 0, 0, 0, 0, 0, 0, 'ck', NULL, '', 'United States', 'ckatgithub@gmail.com', NULL, NULL, NULL, 0, 0, 32, 46, 0, 0, 0, '2008-03-06T16:53:52Z', '2024-07-12T15:16:26Z', 'https://avatars.githubusercontent.com/u/2410?v=4', 'https://api.github.com/users/ck', 'https://github.com/ck', 'https://api.github.com/users/ck/followers', 'https://api.github.com/users/ck/following', 'https://api.github.com/users/ck/gists', 'https://api.github.com/users/ck/starred', 'https://api.github.com/users/ck/repos', 'https://api.github.com/users/ck/events', 'https://api.github.com/users/ck/received_events', 0); +INSERT INTO `developer` VALUES (2411, 'drone29a', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Revelle', '@kudu-dynamics', 'http://bitrit.es', 'MT', 'drone@bitrit.es', NULL, NULL, 'drone_29a', 0, 0, 75, 34, 0, 0, 0, '2008-03-06T16:53:55Z', '2024-11-04T18:51:10Z', 'https://avatars.githubusercontent.com/u/2411?v=4', 'https://api.github.com/users/drone29a', 'https://github.com/drone29a', 'https://api.github.com/users/drone29a/followers', 'https://api.github.com/users/drone29a/following', 'https://api.github.com/users/drone29a/gists', 'https://api.github.com/users/drone29a/starred', 'https://api.github.com/users/drone29a/repos', 'https://api.github.com/users/drone29a/events', 'https://api.github.com/users/drone29a/received_events', 0); +INSERT INTO `developer` VALUES (2412, 'zulak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Zulak', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 22, 8, 0, 0, 0, '2008-03-06T16:55:27Z', '2023-11-10T17:17:24Z', 'https://avatars.githubusercontent.com/u/2412?v=4', 'https://api.github.com/users/zulak', 'https://github.com/zulak', 'https://api.github.com/users/zulak/followers', 'https://api.github.com/users/zulak/following', 'https://api.github.com/users/zulak/gists', 'https://api.github.com/users/zulak/starred', 'https://api.github.com/users/zulak/repos', 'https://api.github.com/users/zulak/events', 'https://api.github.com/users/zulak/received_events', 0); +INSERT INTO `developer` VALUES (2413, 'libin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Libin Pan', 'Apple Inc.', 'http://blog.libinpan.com', 'Cupertino, CA', 'libinpan@gmail.com', NULL, NULL, NULL, 0, 0, 127, 351, 0, 0, 0, '2008-03-06T16:58:11Z', '2024-10-15T16:27:34Z', 'https://avatars.githubusercontent.com/u/2413?v=4', 'https://api.github.com/users/libin', 'https://github.com/libin', 'https://api.github.com/users/libin/followers', 'https://api.github.com/users/libin/following', 'https://api.github.com/users/libin/gists', 'https://api.github.com/users/libin/starred', 'https://api.github.com/users/libin/repos', 'https://api.github.com/users/libin/events', 'https://api.github.com/users/libin/received_events', 0); +INSERT INTO `developer` VALUES (2414, 'richievos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Richie Vos', NULL, '', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 29, 1, 0, 0, 0, '2008-03-06T17:10:36Z', '2024-10-25T04:43:27Z', 'https://avatars.githubusercontent.com/u/2414?v=4', 'https://api.github.com/users/richievos', 'https://github.com/richievos', 'https://api.github.com/users/richievos/followers', 'https://api.github.com/users/richievos/following', 'https://api.github.com/users/richievos/gists', 'https://api.github.com/users/richievos/starred', 'https://api.github.com/users/richievos/repos', 'https://api.github.com/users/richievos/events', 'https://api.github.com/users/richievos/received_events', 0); +INSERT INTO `developer` VALUES (2415, 'jasondew', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Dew', 'Catamorphic Labs, LLC', 'https://blog.jasondew.com/', 'Pamplico, SC', 'jason.dew@catamorphiclabs.com', NULL, 'Pascal → Perl → SAS → Ruby → Elixir → ?', NULL, 0, 0, 42, 0, 0, 0, 0, '2008-03-06T17:12:20Z', '2024-09-07T12:57:06Z', 'https://avatars.githubusercontent.com/u/2415?v=4', 'https://api.github.com/users/jasondew', 'https://github.com/jasondew', 'https://api.github.com/users/jasondew/followers', 'https://api.github.com/users/jasondew/following', 'https://api.github.com/users/jasondew/gists', 'https://api.github.com/users/jasondew/starred', 'https://api.github.com/users/jasondew/repos', 'https://api.github.com/users/jasondew/events', 'https://api.github.com/users/jasondew/received_events', 0); +INSERT INTO `developer` VALUES (2416, 'mikehodgson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Hodgson', NULL, 'http://www.mikehodgson.com', 'Belleville, ON, Canada', 'mhodgson@gmail.com', 'true', NULL, NULL, 0, 0, 10, 4, 0, 0, 0, '2008-03-06T17:17:34Z', '2024-10-20T11:21:02Z', 'https://avatars.githubusercontent.com/u/2416?v=4', 'https://api.github.com/users/mikehodgson', 'https://github.com/mikehodgson', 'https://api.github.com/users/mikehodgson/followers', 'https://api.github.com/users/mikehodgson/following', 'https://api.github.com/users/mikehodgson/gists', 'https://api.github.com/users/mikehodgson/starred', 'https://api.github.com/users/mikehodgson/repos', 'https://api.github.com/users/mikehodgson/events', 'https://api.github.com/users/mikehodgson/received_events', 0); +INSERT INTO `developer` VALUES (2417, 'mghaught', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marty Haught', 'Ruby Central', 'https://www.linkedin.com/in/martyhaught/', 'Longmont, Colorado', NULL, NULL, 'Engineering Leader at Ruby Central', NULL, 0, 0, 40, 0, 0, 0, 0, '2008-03-06T17:24:27Z', '2024-07-02T17:02:17Z', 'https://avatars.githubusercontent.com/u/2417?v=4', 'https://api.github.com/users/mghaught', 'https://github.com/mghaught', 'https://api.github.com/users/mghaught/followers', 'https://api.github.com/users/mghaught/following', 'https://api.github.com/users/mghaught/gists', 'https://api.github.com/users/mghaught/starred', 'https://api.github.com/users/mghaught/repos', 'https://api.github.com/users/mghaught/events', 'https://api.github.com/users/mghaught/received_events', 0); +INSERT INTO `developer` VALUES (2418, 'akappen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Kappen', NULL, '', 'Lawrence, Kansas', NULL, NULL, NULL, NULL, 0, 0, 14, 7, 0, 0, 0, '2008-03-06T17:25:37Z', '2023-09-11T19:25:46Z', 'https://avatars.githubusercontent.com/u/2418?v=4', 'https://api.github.com/users/akappen', 'https://github.com/akappen', 'https://api.github.com/users/akappen/followers', 'https://api.github.com/users/akappen/following', 'https://api.github.com/users/akappen/gists', 'https://api.github.com/users/akappen/starred', 'https://api.github.com/users/akappen/repos', 'https://api.github.com/users/akappen/events', 'https://api.github.com/users/akappen/received_events', 0); +INSERT INTO `developer` VALUES (2419, 'shuber', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean Huber', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 173, 246, 0, 0, 0, '2008-03-06T17:28:24Z', '2024-07-19T21:41:49Z', 'https://avatars.githubusercontent.com/u/2419?v=4', 'https://api.github.com/users/shuber', 'https://github.com/shuber', 'https://api.github.com/users/shuber/followers', 'https://api.github.com/users/shuber/following', 'https://api.github.com/users/shuber/gists', 'https://api.github.com/users/shuber/starred', 'https://api.github.com/users/shuber/repos', 'https://api.github.com/users/shuber/events', 'https://api.github.com/users/shuber/received_events', 0); +INSERT INTO `developer` VALUES (2420, 'billymeltdown', 'C', 0, 0, 0, 0, 0, 0, 0, 'Billy Gray', 'Zetetic, LLC', 'http://www.zetetic.net', 'Brooklyn, NY', 'wgray@zetetic.net', NULL, NULL, NULL, 0, 0, 63, 8, 0, 0, 0, '2008-03-06T17:37:10Z', '2024-10-06T21:05:18Z', 'https://avatars.githubusercontent.com/u/2420?v=4', 'https://api.github.com/users/billymeltdown', 'https://github.com/billymeltdown', 'https://api.github.com/users/billymeltdown/followers', 'https://api.github.com/users/billymeltdown/following', 'https://api.github.com/users/billymeltdown/gists', 'https://api.github.com/users/billymeltdown/starred', 'https://api.github.com/users/billymeltdown/repos', 'https://api.github.com/users/billymeltdown/events', 'https://api.github.com/users/billymeltdown/received_events', 0); +INSERT INTO `developer` VALUES (2421, 'qrprat77', 'C', 0, 0, 0, 0, 0, 0, 0, 'G Brandon Hoyt', NULL, 'skattagun.blogspot.com', 'Lakeland, FL', 'qrprat77@gmail.com', NULL, 'Just a random guy.\r\nI like Ham Radio, Birding, Archeology, and Christianity.\r\nUsually known as qrprat77, on twitter, i also go by KG4GVL, my ham radio callsign.', 'qrprat77', 0, 0, 12, 19, 0, 0, 0, '2008-03-06T17:38:24Z', '2024-09-24T04:23:43Z', 'https://avatars.githubusercontent.com/u/2421?v=4', 'https://api.github.com/users/qrprat77', 'https://github.com/qrprat77', 'https://api.github.com/users/qrprat77/followers', 'https://api.github.com/users/qrprat77/following', 'https://api.github.com/users/qrprat77/gists', 'https://api.github.com/users/qrprat77/starred', 'https://api.github.com/users/qrprat77/repos', 'https://api.github.com/users/qrprat77/events', 'https://api.github.com/users/qrprat77/received_events', 0); +INSERT INTO `developer` VALUES (2422, 'karouf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Renaud Martinet', '@doctolib', 'http://renaudmarti.net', 'France', NULL, 'true', 'That\'s my only good picture.', NULL, 0, 0, 19, 7, 0, 0, 0, '2008-03-06T17:38:28Z', '2024-10-21T13:44:36Z', 'https://avatars.githubusercontent.com/u/2422?v=4', 'https://api.github.com/users/karouf', 'https://github.com/karouf', 'https://api.github.com/users/karouf/followers', 'https://api.github.com/users/karouf/following', 'https://api.github.com/users/karouf/gists', 'https://api.github.com/users/karouf/starred', 'https://api.github.com/users/karouf/repos', 'https://api.github.com/users/karouf/events', 'https://api.github.com/users/karouf/received_events', 0); +INSERT INTO `developer` VALUES (2423, 'bdericks', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Erickson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-06T17:44:17Z', '2024-10-20T01:49:17Z', 'https://avatars.githubusercontent.com/u/2423?v=4', 'https://api.github.com/users/bdericks', 'https://github.com/bdericks', 'https://api.github.com/users/bdericks/followers', 'https://api.github.com/users/bdericks/following', 'https://api.github.com/users/bdericks/gists', 'https://api.github.com/users/bdericks/starred', 'https://api.github.com/users/bdericks/repos', 'https://api.github.com/users/bdericks/events', 'https://api.github.com/users/bdericks/received_events', 0); +INSERT INTO `developer` VALUES (2424, 'dfischer', 'C', 0, 0, 0, 0, 0, 0, 0, '0x44 0x46', NULL, '', '未知', NULL, NULL, 'fnord', NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-06T17:57:49Z', '2024-10-22T02:27:26Z', 'https://avatars.githubusercontent.com/u/2424?v=4', 'https://api.github.com/users/dfischer', 'https://github.com/dfischer', 'https://api.github.com/users/dfischer/followers', 'https://api.github.com/users/dfischer/following', 'https://api.github.com/users/dfischer/gists', 'https://api.github.com/users/dfischer/starred', 'https://api.github.com/users/dfischer/repos', 'https://api.github.com/users/dfischer/events', 'https://api.github.com/users/dfischer/received_events', 0); +INSERT INTO `developer` VALUES (2425, 'mileszs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Miles Z. Sterrett', '@mileszs', 'http://mileszs.com', 'Indianapolis', 'miles.sterrett@gmail.com', NULL, NULL, NULL, 0, 0, 183, 53, 0, 0, 0, '2008-03-06T18:04:30Z', '2024-10-15T01:51:48Z', 'https://avatars.githubusercontent.com/u/2425?v=4', 'https://api.github.com/users/mileszs', 'https://github.com/mileszs', 'https://api.github.com/users/mileszs/followers', 'https://api.github.com/users/mileszs/following', 'https://api.github.com/users/mileszs/gists', 'https://api.github.com/users/mileszs/starred', 'https://api.github.com/users/mileszs/repos', 'https://api.github.com/users/mileszs/events', 'https://api.github.com/users/mileszs/received_events', 0); +INSERT INTO `developer` VALUES (2426, 'vargthon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vargthon Kepller de Oliveira Nunes', NULL, '', 'Arapiraca, AL', 'vargthon@gmail.com', NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2008-03-06T18:06:39Z', '2024-02-09T12:50:09Z', 'https://avatars.githubusercontent.com/u/2426?v=4', 'https://api.github.com/users/vargthon', 'https://github.com/vargthon', 'https://api.github.com/users/vargthon/followers', 'https://api.github.com/users/vargthon/following', 'https://api.github.com/users/vargthon/gists', 'https://api.github.com/users/vargthon/starred', 'https://api.github.com/users/vargthon/repos', 'https://api.github.com/users/vargthon/events', 'https://api.github.com/users/vargthon/received_events', 0); +INSERT INTO `developer` VALUES (2427, 'zemariamm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ze Maria Mendonca e Moura', NULL, 'https://www.zemariamm.com', 'Porto, Portugal', 'zemariamm@gmail.com', 'true', NULL, NULL, 0, 0, 40, 32, 0, 0, 0, '2008-03-06T18:07:22Z', '2024-09-25T15:13:21Z', 'https://avatars.githubusercontent.com/u/2427?v=4', 'https://api.github.com/users/zemariamm', 'https://github.com/zemariamm', 'https://api.github.com/users/zemariamm/followers', 'https://api.github.com/users/zemariamm/following', 'https://api.github.com/users/zemariamm/gists', 'https://api.github.com/users/zemariamm/starred', 'https://api.github.com/users/zemariamm/repos', 'https://api.github.com/users/zemariamm/events', 'https://api.github.com/users/zemariamm/received_events', 0); +INSERT INTO `developer` VALUES (2428, 'sandrejev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergej Andrejev', 'EMBL', '', 'Vilnius, Lithuania', 'sandrejev@gmail.com', NULL, NULL, NULL, 0, 0, 14, 4, 0, 0, 0, '2008-03-06T18:13:01Z', '2024-10-08T02:25:30Z', 'https://avatars.githubusercontent.com/u/2428?v=4', 'https://api.github.com/users/sandrejev', 'https://github.com/sandrejev', 'https://api.github.com/users/sandrejev/followers', 'https://api.github.com/users/sandrejev/following', 'https://api.github.com/users/sandrejev/gists', 'https://api.github.com/users/sandrejev/starred', 'https://api.github.com/users/sandrejev/repos', 'https://api.github.com/users/sandrejev/events', 'https://api.github.com/users/sandrejev/received_events', 0); +INSERT INTO `developer` VALUES (2429, 'jwulff', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Wulff', NULL, 'http://www.johnwulff.com', 'Seattle, Washington', NULL, NULL, NULL, NULL, 0, 0, 22, 16, 0, 0, 0, '2008-03-06T18:16:10Z', '2024-10-07T04:18:58Z', 'https://avatars.githubusercontent.com/u/2429?v=4', 'https://api.github.com/users/jwulff', 'https://github.com/jwulff', 'https://api.github.com/users/jwulff/followers', 'https://api.github.com/users/jwulff/following', 'https://api.github.com/users/jwulff/gists', 'https://api.github.com/users/jwulff/starred', 'https://api.github.com/users/jwulff/repos', 'https://api.github.com/users/jwulff/events', 'https://api.github.com/users/jwulff/received_events', 0); +INSERT INTO `developer` VALUES (2430, 'vidar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vidar Masson', 'contentstack.com', '', 'Reykjavik', 'vidar.masson@gmail.com', NULL, NULL, NULL, 0, 0, 13, 6, 0, 0, 0, '2008-03-06T18:18:22Z', '2024-10-13T12:16:05Z', 'https://avatars.githubusercontent.com/u/2430?v=4', 'https://api.github.com/users/vidar', 'https://github.com/vidar', 'https://api.github.com/users/vidar/followers', 'https://api.github.com/users/vidar/following', 'https://api.github.com/users/vidar/gists', 'https://api.github.com/users/vidar/starred', 'https://api.github.com/users/vidar/repos', 'https://api.github.com/users/vidar/events', 'https://api.github.com/users/vidar/received_events', 0); +INSERT INTO `developer` VALUES (2431, 'cyu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Calvin Yu', '@RYLabs ', 'https://rylabs.io', 'Atlanta, GA', 'calvin@rylabs.io', NULL, 'Rails, JavaScript, Serverless\r\nPartner @ R&Y Labs', NULL, 0, 0, 83, 12, 0, 0, 0, '2008-03-06T18:28:14Z', '2024-10-21T15:20:21Z', 'https://avatars.githubusercontent.com/u/2431?v=4', 'https://api.github.com/users/cyu', 'https://github.com/cyu', 'https://api.github.com/users/cyu/followers', 'https://api.github.com/users/cyu/following', 'https://api.github.com/users/cyu/gists', 'https://api.github.com/users/cyu/starred', 'https://api.github.com/users/cyu/repos', 'https://api.github.com/users/cyu/events', 'https://api.github.com/users/cyu/received_events', 0); +INSERT INTO `developer` VALUES (2432, 'mmcgrana', 'C+', 15.179578320700438, 0, 0, 0, 0, 0, 0, 'Mark McGranaghan', NULL, 'https://markmcgranaghan.com', '未知', 'mmcgrana@gmail.com', NULL, NULL, NULL, 0, 0, 1170, 137, 0, 0, 0, '2008-03-06T18:29:50Z', '2024-09-22T16:53:40Z', 'https://avatars.githubusercontent.com/u/2432?v=4', 'https://api.github.com/users/mmcgrana', 'https://github.com/mmcgrana', 'https://api.github.com/users/mmcgrana/followers', 'https://api.github.com/users/mmcgrana/following', 'https://api.github.com/users/mmcgrana/gists', 'https://api.github.com/users/mmcgrana/starred', 'https://api.github.com/users/mmcgrana/repos', 'https://api.github.com/users/mmcgrana/events', 'https://api.github.com/users/mmcgrana/received_events', 0); +INSERT INTO `developer` VALUES (2433, 'qmclaugh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Quinn McLaughlin', 'Coincidence, Inc.', 'http://coincidence.net', 'Silicon Valley', NULL, NULL, NULL, NULL, 0, 0, 5, 2, 0, 0, 0, '2008-03-06T18:47:31Z', '2024-06-13T17:14:56Z', 'https://avatars.githubusercontent.com/u/2433?v=4', 'https://api.github.com/users/qmclaugh', 'https://github.com/qmclaugh', 'https://api.github.com/users/qmclaugh/followers', 'https://api.github.com/users/qmclaugh/following', 'https://api.github.com/users/qmclaugh/gists', 'https://api.github.com/users/qmclaugh/starred', 'https://api.github.com/users/qmclaugh/repos', 'https://api.github.com/users/qmclaugh/events', 'https://api.github.com/users/qmclaugh/received_events', 0); +INSERT INTO `developer` VALUES (2434, 'orlin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Orlin M Bozhinov', 'Astrolet', '', 'Varna, Bulgaria', 'orlin@astrolet.net', NULL, '~biszod-winner', 'orlin', 0, 0, 61, 38, 0, 0, 0, '2008-03-06T18:49:30Z', '2024-09-13T19:44:38Z', 'https://avatars.githubusercontent.com/u/2434?v=4', 'https://api.github.com/users/orlin', 'https://github.com/orlin', 'https://api.github.com/users/orlin/followers', 'https://api.github.com/users/orlin/following', 'https://api.github.com/users/orlin/gists', 'https://api.github.com/users/orlin/starred', 'https://api.github.com/users/orlin/repos', 'https://api.github.com/users/orlin/events', 'https://api.github.com/users/orlin/received_events', 0); +INSERT INTO `developer` VALUES (2435, 'rumble', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Rumble', 'Facebook, Inc.', '', 'Menlo Park, California', NULL, NULL, NULL, NULL, 0, 0, 17, 28, 0, 0, 0, '2008-03-06T18:52:59Z', '2023-05-01T16:21:38Z', 'https://avatars.githubusercontent.com/u/2435?v=4', 'https://api.github.com/users/rumble', 'https://github.com/rumble', 'https://api.github.com/users/rumble/followers', 'https://api.github.com/users/rumble/following', 'https://api.github.com/users/rumble/gists', 'https://api.github.com/users/rumble/starred', 'https://api.github.com/users/rumble/repos', 'https://api.github.com/users/rumble/events', 'https://api.github.com/users/rumble/received_events', 0); +INSERT INTO `developer` VALUES (2436, 'DraXus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Manuel Martín', 'Blink', 'https://www.draxus.org/', 'Granada, Spain', 'draxus@gmail.com', NULL, NULL, NULL, 0, 0, 42, 52, 0, 0, 0, '2008-03-06T18:53:39Z', '2024-07-02T13:14:38Z', 'https://avatars.githubusercontent.com/u/2436?v=4', 'https://api.github.com/users/DraXus', 'https://github.com/DraXus', 'https://api.github.com/users/DraXus/followers', 'https://api.github.com/users/DraXus/following', 'https://api.github.com/users/DraXus/gists', 'https://api.github.com/users/DraXus/starred', 'https://api.github.com/users/DraXus/repos', 'https://api.github.com/users/DraXus/events', 'https://api.github.com/users/DraXus/received_events', 0); +INSERT INTO `developer` VALUES (2437, 'duff', 'C', 0, 0, 0, 0, 0, 0, 0, 'Duff O\'Melia', NULL, 'http://omelia.org', 'North Carolina', 'duff@omelia.org', NULL, NULL, NULL, 0, 0, 59, 3, 0, 0, 0, '2008-03-06T18:54:19Z', '2023-09-19T15:31:13Z', 'https://avatars.githubusercontent.com/u/2437?v=4', 'https://api.github.com/users/duff', 'https://github.com/duff', 'https://api.github.com/users/duff/followers', 'https://api.github.com/users/duff/following', 'https://api.github.com/users/duff/gists', 'https://api.github.com/users/duff/starred', 'https://api.github.com/users/duff/repos', 'https://api.github.com/users/duff/events', 'https://api.github.com/users/duff/received_events', 0); +INSERT INTO `developer` VALUES (2438, 'dhess', 'C', 0, 0, 0, 0, 0, 0, 0, 'Drew Hess', '@hackworthltd', 'https://drewhess.com/', 'London, UK', NULL, NULL, 'Director of @hackworthltd.\r\n\r\nNot available for hire. Please do not contact me about job opportunities.', NULL, 0, 0, 80, 10, 0, 0, 0, '2008-03-06T19:12:52Z', '2024-10-29T14:11:57Z', 'https://avatars.githubusercontent.com/u/2438?v=4', 'https://api.github.com/users/dhess', 'https://github.com/dhess', 'https://api.github.com/users/dhess/followers', 'https://api.github.com/users/dhess/following', 'https://api.github.com/users/dhess/gists', 'https://api.github.com/users/dhess/starred', 'https://api.github.com/users/dhess/repos', 'https://api.github.com/users/dhess/events', 'https://api.github.com/users/dhess/received_events', 0); +INSERT INTO `developer` VALUES (2439, 'ouvanous', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samuel MORELLO', 'OUVANOUS', '', 'France', 'samuel.morello@ouvanous.com', NULL, NULL, NULL, 0, 0, 17, 14, 0, 0, 0, '2008-03-06T19:16:33Z', '2024-09-30T11:44:07Z', 'https://avatars.githubusercontent.com/u/2439?v=4', 'https://api.github.com/users/ouvanous', 'https://github.com/ouvanous', 'https://api.github.com/users/ouvanous/followers', 'https://api.github.com/users/ouvanous/following', 'https://api.github.com/users/ouvanous/gists', 'https://api.github.com/users/ouvanous/starred', 'https://api.github.com/users/ouvanous/repos', 'https://api.github.com/users/ouvanous/events', 'https://api.github.com/users/ouvanous/received_events', 0); +INSERT INTO `developer` VALUES (2440, 'marcopaga', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marco Paga', '@codecentric ', 'https://marco-paga.eu/', 'Düsseldorf, Germany', NULL, NULL, 'Wants to automate all the things', NULL, 0, 0, 32, 24, 0, 0, 0, '2008-03-06T19:22:48Z', '2024-10-18T11:24:28Z', 'https://avatars.githubusercontent.com/u/2440?v=4', 'https://api.github.com/users/marcopaga', 'https://github.com/marcopaga', 'https://api.github.com/users/marcopaga/followers', 'https://api.github.com/users/marcopaga/following', 'https://api.github.com/users/marcopaga/gists', 'https://api.github.com/users/marcopaga/starred', 'https://api.github.com/users/marcopaga/repos', 'https://api.github.com/users/marcopaga/events', 'https://api.github.com/users/marcopaga/received_events', 0); +INSERT INTO `developer` VALUES (2441, 'Oshuma', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dale Campbell', '@unite-us ', '', 'Greenville, SC', 'mail@dale.camp', NULL, 'I am code. I am game. I am Dale.', NULL, 0, 0, 39, 40, 0, 0, 0, '2008-03-06T19:28:35Z', '2024-10-24T02:25:28Z', 'https://avatars.githubusercontent.com/u/2441?v=4', 'https://api.github.com/users/Oshuma', 'https://github.com/Oshuma', 'https://api.github.com/users/Oshuma/followers', 'https://api.github.com/users/Oshuma/following', 'https://api.github.com/users/Oshuma/gists', 'https://api.github.com/users/Oshuma/starred', 'https://api.github.com/users/Oshuma/repos', 'https://api.github.com/users/Oshuma/events', 'https://api.github.com/users/Oshuma/received_events', 0); +INSERT INTO `developer` VALUES (2442, 'chriscorrea', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 7, 0, 0, 0, '2008-03-06T19:30:11Z', '2024-10-15T02:31:39Z', 'https://avatars.githubusercontent.com/u/2442?v=4', 'https://api.github.com/users/chriscorrea', 'https://github.com/chriscorrea', 'https://api.github.com/users/chriscorrea/followers', 'https://api.github.com/users/chriscorrea/following', 'https://api.github.com/users/chriscorrea/gists', 'https://api.github.com/users/chriscorrea/starred', 'https://api.github.com/users/chriscorrea/repos', 'https://api.github.com/users/chriscorrea/events', 'https://api.github.com/users/chriscorrea/received_events', 0); +INSERT INTO `developer` VALUES (2443, 'Valentin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-06T19:37:59Z', '2022-06-22T19:43:51Z', 'https://avatars.githubusercontent.com/u/2443?v=4', 'https://api.github.com/users/Valentin', 'https://github.com/Valentin', 'https://api.github.com/users/Valentin/followers', 'https://api.github.com/users/Valentin/following', 'https://api.github.com/users/Valentin/gists', 'https://api.github.com/users/Valentin/starred', 'https://api.github.com/users/Valentin/repos', 'https://api.github.com/users/Valentin/events', 'https://api.github.com/users/Valentin/received_events', 0); +INSERT INTO `developer` VALUES (2444, 'avodonosov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Vodonosov', NULL, '', 'Minsk, Belarus', 'avodonosov@yandex.ru', 'true', NULL, NULL, 0, 0, 83, 203, 0, 0, 0, '2008-03-06T19:47:05Z', '2024-10-10T02:28:08Z', 'https://avatars.githubusercontent.com/u/2444?v=4', 'https://api.github.com/users/avodonosov', 'https://github.com/avodonosov', 'https://api.github.com/users/avodonosov/followers', 'https://api.github.com/users/avodonosov/following', 'https://api.github.com/users/avodonosov/gists', 'https://api.github.com/users/avodonosov/starred', 'https://api.github.com/users/avodonosov/repos', 'https://api.github.com/users/avodonosov/events', 'https://api.github.com/users/avodonosov/received_events', 0); +INSERT INTO `developer` VALUES (2445, 'mocoso', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joel Chippindale', '@Monkey-s-Thumb', 'https://monkeysthumb.co.uk', 'London, UK', NULL, NULL, 'CTO Coach and Advisor', NULL, 0, 0, 27, 10, 0, 0, 0, '2008-03-06T19:57:19Z', '2024-11-03T05:00:55Z', 'https://avatars.githubusercontent.com/u/2445?v=4', 'https://api.github.com/users/mocoso', 'https://github.com/mocoso', 'https://api.github.com/users/mocoso/followers', 'https://api.github.com/users/mocoso/following', 'https://api.github.com/users/mocoso/gists', 'https://api.github.com/users/mocoso/starred', 'https://api.github.com/users/mocoso/repos', 'https://api.github.com/users/mocoso/events', 'https://api.github.com/users/mocoso/received_events', 0); +INSERT INTO `developer` VALUES (2446, 'mhorbul', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maksim Horbul', 'carbonhealth.com', 'http://gorbul.net', '未知', NULL, NULL, NULL, NULL, 0, 0, 24, 6, 0, 0, 0, '2008-03-06T19:58:09Z', '2024-09-06T19:09:24Z', 'https://avatars.githubusercontent.com/u/2446?v=4', 'https://api.github.com/users/mhorbul', 'https://github.com/mhorbul', 'https://api.github.com/users/mhorbul/followers', 'https://api.github.com/users/mhorbul/following', 'https://api.github.com/users/mhorbul/gists', 'https://api.github.com/users/mhorbul/starred', 'https://api.github.com/users/mhorbul/repos', 'https://api.github.com/users/mhorbul/events', 'https://api.github.com/users/mhorbul/received_events', 0); +INSERT INTO `developer` VALUES (2447, 'efrendiaz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Efren', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-06T20:00:41Z', '2023-03-27T15:52:55Z', 'https://avatars.githubusercontent.com/u/2447?v=4', 'https://api.github.com/users/efrendiaz', 'https://github.com/efrendiaz', 'https://api.github.com/users/efrendiaz/followers', 'https://api.github.com/users/efrendiaz/following', 'https://api.github.com/users/efrendiaz/gists', 'https://api.github.com/users/efrendiaz/starred', 'https://api.github.com/users/efrendiaz/repos', 'https://api.github.com/users/efrendiaz/events', 'https://api.github.com/users/efrendiaz/received_events', 0); +INSERT INTO `developer` VALUES (2448, 'nauj27', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Martín', NULL, 'https://nauj27.com/blog', 'Granada, Spain', 'nauj27@gmail.com', NULL, NULL, 'nauj27', 0, 0, 9, 9, 0, 0, 0, '2008-03-06T20:04:02Z', '2024-08-30T05:10:59Z', 'https://avatars.githubusercontent.com/u/2448?v=4', 'https://api.github.com/users/nauj27', 'https://github.com/nauj27', 'https://api.github.com/users/nauj27/followers', 'https://api.github.com/users/nauj27/following', 'https://api.github.com/users/nauj27/gists', 'https://api.github.com/users/nauj27/starred', 'https://api.github.com/users/nauj27/repos', 'https://api.github.com/users/nauj27/events', 'https://api.github.com/users/nauj27/received_events', 0); +INSERT INTO `developer` VALUES (2449, 'toastdriven', 'C', 11.218269418587393, 0, 0, 0, 0, 0, 0, 'Daniel Lindsley', NULL, 'http://www.toastdriven.com/', 'Lawrence, KS', 'daniel@toastdriven.com', 'true', 'I program computers, make music, play games, curate animated gifs. Allergic to seriousness. He/Him', NULL, 0, 0, 939, 77, 0, 0, 0, '2008-03-06T20:05:39Z', '2024-11-04T18:01:40Z', 'https://avatars.githubusercontent.com/u/2449?v=4', 'https://api.github.com/users/toastdriven', 'https://github.com/toastdriven', 'https://api.github.com/users/toastdriven/followers', 'https://api.github.com/users/toastdriven/following', 'https://api.github.com/users/toastdriven/gists', 'https://api.github.com/users/toastdriven/starred', 'https://api.github.com/users/toastdriven/repos', 'https://api.github.com/users/toastdriven/events', 'https://api.github.com/users/toastdriven/received_events', 0); +INSERT INTO `developer` VALUES (2450, 'fagiani', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paulo Fagiani', 'Veezor', 'http://veezor.com', 'São Paulo, Brazil', 'pfagiani@gmail.com', 'true', 'I love maintaining legacy software!', 'fagiani', 0, 0, 66, 46, 0, 0, 0, '2008-03-06T20:09:07Z', '2024-03-26T14:22:56Z', 'https://avatars.githubusercontent.com/u/2450?v=4', 'https://api.github.com/users/fagiani', 'https://github.com/fagiani', 'https://api.github.com/users/fagiani/followers', 'https://api.github.com/users/fagiani/following', 'https://api.github.com/users/fagiani/gists', 'https://api.github.com/users/fagiani/starred', 'https://api.github.com/users/fagiani/repos', 'https://api.github.com/users/fagiani/events', 'https://api.github.com/users/fagiani/received_events', 0); +INSERT INTO `developer` VALUES (2451, 'zilkey', 'C', 1.1177891443684065, 0, 0, 0, 0, 0, 0, 'Jeff Dean', NULL, '', 'Lafayette, CO', 'jeff@zilkey.com', NULL, NULL, NULL, 0, 0, 350, 1, 0, 0, 0, '2008-03-06T20:12:54Z', '2024-09-26T18:39:36Z', 'https://avatars.githubusercontent.com/u/2451?v=4', 'https://api.github.com/users/zilkey', 'https://github.com/zilkey', 'https://api.github.com/users/zilkey/followers', 'https://api.github.com/users/zilkey/following', 'https://api.github.com/users/zilkey/gists', 'https://api.github.com/users/zilkey/starred', 'https://api.github.com/users/zilkey/repos', 'https://api.github.com/users/zilkey/events', 'https://api.github.com/users/zilkey/received_events', 0); +INSERT INTO `developer` VALUES (2452, 'dandorman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Dorman', NULL, 'https://underwhelm.net/', 'Kaysville, Utah', 'dan@dorman.us', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-06T20:51:44Z', '2024-10-14T16:35:55Z', 'https://avatars.githubusercontent.com/u/2452?v=4', 'https://api.github.com/users/dandorman', 'https://github.com/dandorman', 'https://api.github.com/users/dandorman/followers', 'https://api.github.com/users/dandorman/following', 'https://api.github.com/users/dandorman/gists', 'https://api.github.com/users/dandorman/starred', 'https://api.github.com/users/dandorman/repos', 'https://api.github.com/users/dandorman/events', 'https://api.github.com/users/dandorman/received_events', 0); +INSERT INTO `developer` VALUES (2454, 'aezell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Ezell', 'Main Street Health', 'http://micro.alexezell.com', 'Owensboro, KY', NULL, NULL, NULL, NULL, 0, 0, 38, 26, 0, 0, 0, '2008-03-06T21:05:47Z', '2023-10-29T00:49:22Z', 'https://avatars.githubusercontent.com/u/2454?v=4', 'https://api.github.com/users/aezell', 'https://github.com/aezell', 'https://api.github.com/users/aezell/followers', 'https://api.github.com/users/aezell/following', 'https://api.github.com/users/aezell/gists', 'https://api.github.com/users/aezell/starred', 'https://api.github.com/users/aezell/repos', 'https://api.github.com/users/aezell/events', 'https://api.github.com/users/aezell/received_events', 0); +INSERT INTO `developer` VALUES (2455, 'dbjohnston', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Johnston', 'Children of the Nations', 'http://www.missiontomalawi.com', 'Seattle, WA', 'dbjohnston@gmail.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-06T21:18:09Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2455?v=4', 'https://api.github.com/users/dbjohnston', 'https://github.com/dbjohnston', 'https://api.github.com/users/dbjohnston/followers', 'https://api.github.com/users/dbjohnston/following', 'https://api.github.com/users/dbjohnston/gists', 'https://api.github.com/users/dbjohnston/starred', 'https://api.github.com/users/dbjohnston/repos', 'https://api.github.com/users/dbjohnston/events', 'https://api.github.com/users/dbjohnston/received_events', 0); +INSERT INTO `developer` VALUES (2456, 'pacastillo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pedro A. Castillo Valdivieso', 'Universidad de Granada', '', 'Granada (Andalucía, Spain)', NULL, NULL, NULL, NULL, 0, 0, 66, 0, 0, 0, 0, '2008-03-06T21:20:04Z', '2024-02-21T12:14:36Z', 'https://avatars.githubusercontent.com/u/2456?v=4', 'https://api.github.com/users/pacastillo', 'https://github.com/pacastillo', 'https://api.github.com/users/pacastillo/followers', 'https://api.github.com/users/pacastillo/following', 'https://api.github.com/users/pacastillo/gists', 'https://api.github.com/users/pacastillo/starred', 'https://api.github.com/users/pacastillo/repos', 'https://api.github.com/users/pacastillo/events', 'https://api.github.com/users/pacastillo/received_events', 0); +INSERT INTO `developer` VALUES (2457, 'sethbc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seth Chandler', NULL, '', 'Houston, TX', NULL, NULL, NULL, 'sethbc', 0, 0, 9, 4, 0, 0, 0, '2008-03-06T21:23:20Z', '2024-10-07T01:41:20Z', 'https://avatars.githubusercontent.com/u/2457?v=4', 'https://api.github.com/users/sethbc', 'https://github.com/sethbc', 'https://api.github.com/users/sethbc/followers', 'https://api.github.com/users/sethbc/following', 'https://api.github.com/users/sethbc/gists', 'https://api.github.com/users/sethbc/starred', 'https://api.github.com/users/sethbc/repos', 'https://api.github.com/users/sethbc/events', 'https://api.github.com/users/sethbc/received_events', 0); +INSERT INTO `developer` VALUES (2458, 'robertknight', 'C', 1.649393369327301, 0, 0, 0, 0, 0, 0, 'Robert Knight', '@hypothesis ', 'https://robertknight.me.uk', 'London, United Kingdom', 'robertknight@gmail.com', NULL, 'Lead developer at @hypothesis. Preact contributor.\r\n\r\nPrevious projects - @Mendeley\'s desktop app, Konsole terminal for KDE.', 'robknight_', 0, 0, 381, 0, 0, 0, 0, '2008-03-06T21:28:28Z', '2024-11-01T11:23:11Z', 'https://avatars.githubusercontent.com/u/2458?v=4', 'https://api.github.com/users/robertknight', 'https://github.com/robertknight', 'https://api.github.com/users/robertknight/followers', 'https://api.github.com/users/robertknight/following', 'https://api.github.com/users/robertknight/gists', 'https://api.github.com/users/robertknight/starred', 'https://api.github.com/users/robertknight/repos', 'https://api.github.com/users/robertknight/events', 'https://api.github.com/users/robertknight/received_events', 0); +INSERT INTO `developer` VALUES (2459, 'johan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johan Sundström', 'Some kind of fruit company', 'http://ecmanaut.blogspot.com/', 'Cupertino, CA, USA', NULL, NULL, NULL, NULL, 0, 0, 242, 8, 0, 0, 0, '2008-03-06T21:30:28Z', '2024-03-22T20:27:50Z', 'https://avatars.githubusercontent.com/u/2459?v=4', 'https://api.github.com/users/johan', 'https://github.com/johan', 'https://api.github.com/users/johan/followers', 'https://api.github.com/users/johan/following', 'https://api.github.com/users/johan/gists', 'https://api.github.com/users/johan/starred', 'https://api.github.com/users/johan/repos', 'https://api.github.com/users/johan/events', 'https://api.github.com/users/johan/received_events', 0); +INSERT INTO `developer` VALUES (2460, 'cmatthias', 'C', 0, 0, 0, 0, 0, 0, 0, 'Colin Matthias', '@brightsidehealth ', 'https://www.colinmatthias.com', 'Massachusetts, USA', NULL, NULL, 'I make stuff. Cloud infrastructure/full stack/data engineer with 20+ years of experience.', NULL, 0, 0, 10, 3, 0, 0, 0, '2008-03-06T21:32:40Z', '2024-06-25T00:59:51Z', 'https://avatars.githubusercontent.com/u/2460?v=4', 'https://api.github.com/users/cmatthias', 'https://github.com/cmatthias', 'https://api.github.com/users/cmatthias/followers', 'https://api.github.com/users/cmatthias/following', 'https://api.github.com/users/cmatthias/gists', 'https://api.github.com/users/cmatthias/starred', 'https://api.github.com/users/cmatthias/repos', 'https://api.github.com/users/cmatthias/events', 'https://api.github.com/users/cmatthias/received_events', 0); +INSERT INTO `developer` VALUES (2461, 'jonasb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonas Bengtsson', NULL, 'https://jonasb.github.io/', 'Malmö, Sweden', 'jonas.b@gmail.com', NULL, NULL, NULL, 0, 0, 41, 24, 0, 0, 0, '2008-03-06T21:37:47Z', '2024-11-01T12:39:14Z', 'https://avatars.githubusercontent.com/u/2461?v=4', 'https://api.github.com/users/jonasb', 'https://github.com/jonasb', 'https://api.github.com/users/jonasb/followers', 'https://api.github.com/users/jonasb/following', 'https://api.github.com/users/jonasb/gists', 'https://api.github.com/users/jonasb/starred', 'https://api.github.com/users/jonasb/repos', 'https://api.github.com/users/jonasb/events', 'https://api.github.com/users/jonasb/received_events', 0); +INSERT INTO `developer` VALUES (2462, 'ahlen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mikael Åhlén', NULL, '', 'Sweden', 'mikael.ahlen+github@gmail.com', NULL, NULL, NULL, 0, 0, 10, 7, 0, 0, 0, '2008-03-06T21:40:21Z', '2024-10-03T19:42:07Z', 'https://avatars.githubusercontent.com/u/2462?v=4', 'https://api.github.com/users/ahlen', 'https://github.com/ahlen', 'https://api.github.com/users/ahlen/followers', 'https://api.github.com/users/ahlen/following', 'https://api.github.com/users/ahlen/gists', 'https://api.github.com/users/ahlen/starred', 'https://api.github.com/users/ahlen/repos', 'https://api.github.com/users/ahlen/events', 'https://api.github.com/users/ahlen/received_events', 0); +INSERT INTO `developer` VALUES (2463, 'kael', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Paris', NULL, NULL, NULL, NULL, 0, 0, 16, 10, 0, 0, 0, '2008-03-06T21:40:22Z', '2023-02-19T10:04:38Z', 'https://avatars.githubusercontent.com/u/2463?v=4', 'https://api.github.com/users/kael', 'https://github.com/kael', 'https://api.github.com/users/kael/followers', 'https://api.github.com/users/kael/following', 'https://api.github.com/users/kael/gists', 'https://api.github.com/users/kael/starred', 'https://api.github.com/users/kael/repos', 'https://api.github.com/users/kael/events', 'https://api.github.com/users/kael/received_events', 0); +INSERT INTO `developer` VALUES (2465, 'dcparker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Parker', 'BehindLogic', 'http://blog.behindlogic.com/', 'Michigan, USA', 'dcparker@gmail.com', NULL, NULL, NULL, 0, 0, 55, 0, 0, 0, 0, '2008-03-06T21:46:14Z', '2016-02-26T22:34:49Z', 'https://avatars.githubusercontent.com/u/2465?v=4', 'https://api.github.com/users/dcparker', 'https://github.com/dcparker', 'https://api.github.com/users/dcparker/followers', 'https://api.github.com/users/dcparker/following', 'https://api.github.com/users/dcparker/gists', 'https://api.github.com/users/dcparker/starred', 'https://api.github.com/users/dcparker/repos', 'https://api.github.com/users/dcparker/events', 'https://api.github.com/users/dcparker/received_events', 0); +INSERT INTO `developer` VALUES (2466, 'ubii', 'C', 0, 0, 0, 0, 0, 0, 0, 'ubii', NULL, '', 'Classified', 'ubii@n2sg.com', NULL, NULL, NULL, 0, 0, 5, 5, 0, 0, 0, '2008-03-06T22:17:38Z', '2023-01-17T14:55:51Z', 'https://avatars.githubusercontent.com/u/2466?v=4', 'https://api.github.com/users/ubii', 'https://github.com/ubii', 'https://api.github.com/users/ubii/followers', 'https://api.github.com/users/ubii/following', 'https://api.github.com/users/ubii/gists', 'https://api.github.com/users/ubii/starred', 'https://api.github.com/users/ubii/repos', 'https://api.github.com/users/ubii/events', 'https://api.github.com/users/ubii/received_events', 0); +INSERT INTO `developer` VALUES (2467, 'fernand0', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fernando Tricas García', NULL, 'https://elmundoesimperfecto.com/', 'Huesca-Zaragoza, Spain', NULL, NULL, NULL, 'fernand0', 0, 0, 83, 67, 0, 0, 0, '2008-03-06T22:18:37Z', '2024-10-26T16:08:51Z', 'https://avatars.githubusercontent.com/u/2467?v=4', 'https://api.github.com/users/fernand0', 'https://github.com/fernand0', 'https://api.github.com/users/fernand0/followers', 'https://api.github.com/users/fernand0/following', 'https://api.github.com/users/fernand0/gists', 'https://api.github.com/users/fernand0/starred', 'https://api.github.com/users/fernand0/repos', 'https://api.github.com/users/fernand0/events', 'https://api.github.com/users/fernand0/received_events', 0); +INSERT INTO `developer` VALUES (2468, 'jeffrey', 'C', 0, 0, 0, 0, 0, 1, 0, 'Jeffrey Harris', 'Apple', 'jeffrey.skyhouseconsulting.com', 'Berkeley, CA', NULL, NULL, NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2008-03-06T22:18:58Z', '2022-09-16T17:26:35Z', 'https://avatars.githubusercontent.com/u/2468?v=4', 'https://api.github.com/users/jeffrey', 'https://github.com/jeffrey', 'https://api.github.com/users/jeffrey/followers', 'https://api.github.com/users/jeffrey/following', 'https://api.github.com/users/jeffrey/gists', 'https://api.github.com/users/jeffrey/starred', 'https://api.github.com/users/jeffrey/repos', 'https://api.github.com/users/jeffrey/events', 'https://api.github.com/users/jeffrey/received_events', 0); +INSERT INTO `developer` VALUES (2469, 'linuxfrosch', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-06T22:34:09Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2469?v=4', 'https://api.github.com/users/linuxfrosch', 'https://github.com/linuxfrosch', 'https://api.github.com/users/linuxfrosch/followers', 'https://api.github.com/users/linuxfrosch/following', 'https://api.github.com/users/linuxfrosch/gists', 'https://api.github.com/users/linuxfrosch/starred', 'https://api.github.com/users/linuxfrosch/repos', 'https://api.github.com/users/linuxfrosch/events', 'https://api.github.com/users/linuxfrosch/received_events', 0); +INSERT INTO `developer` VALUES (2470, 'criscokid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Farnell', 'Dupre Logistics', '', 'Lafayette, LA', 'rfarnell@fastmail.com', NULL, NULL, NULL, 0, 0, 13, 8, 0, 0, 0, '2008-03-06T22:37:21Z', '2024-09-18T01:24:17Z', 'https://avatars.githubusercontent.com/u/2470?v=4', 'https://api.github.com/users/criscokid', 'https://github.com/criscokid', 'https://api.github.com/users/criscokid/followers', 'https://api.github.com/users/criscokid/following', 'https://api.github.com/users/criscokid/gists', 'https://api.github.com/users/criscokid/starred', 'https://api.github.com/users/criscokid/repos', 'https://api.github.com/users/criscokid/events', 'https://api.github.com/users/criscokid/received_events', 0); +INSERT INTO `developer` VALUES (2471, 'baccigalupi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kane Baccigalupi', NULL, '', 'SF Bay Area', NULL, NULL, NULL, NULL, 0, 0, 57, 1, 0, 0, 0, '2008-03-06T22:49:16Z', '2024-09-11T02:50:31Z', 'https://avatars.githubusercontent.com/u/2471?v=4', 'https://api.github.com/users/baccigalupi', 'https://github.com/baccigalupi', 'https://api.github.com/users/baccigalupi/followers', 'https://api.github.com/users/baccigalupi/following', 'https://api.github.com/users/baccigalupi/gists', 'https://api.github.com/users/baccigalupi/starred', 'https://api.github.com/users/baccigalupi/repos', 'https://api.github.com/users/baccigalupi/events', 'https://api.github.com/users/baccigalupi/received_events', 0); +INSERT INTO `developer` VALUES (2472, 'tgittos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Gittos', '@bluetongueai ', 'http://www.timgittos.com', 'Austin, Texas', 'tim.gittos@bluetongue.ai', NULL, 'AI, ML, 3D graphics, audio synthesis, VR, fintech', NULL, 0, 0, 29, 14, 0, 0, 0, '2008-03-06T23:45:41Z', '2024-10-21T20:17:06Z', 'https://avatars.githubusercontent.com/u/2472?v=4', 'https://api.github.com/users/tgittos', 'https://github.com/tgittos', 'https://api.github.com/users/tgittos/followers', 'https://api.github.com/users/tgittos/following', 'https://api.github.com/users/tgittos/gists', 'https://api.github.com/users/tgittos/starred', 'https://api.github.com/users/tgittos/repos', 'https://api.github.com/users/tgittos/events', 'https://api.github.com/users/tgittos/received_events', 0); +INSERT INTO `developer` VALUES (2473, 'hallidave', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Halliday', NULL, '', 'Ottawa, Canada', 'hallidave@gmail.com', NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-03-06T23:52:49Z', '2024-05-29T14:49:54Z', 'https://avatars.githubusercontent.com/u/2473?v=4', 'https://api.github.com/users/hallidave', 'https://github.com/hallidave', 'https://api.github.com/users/hallidave/followers', 'https://api.github.com/users/hallidave/following', 'https://api.github.com/users/hallidave/gists', 'https://api.github.com/users/hallidave/starred', 'https://api.github.com/users/hallidave/repos', 'https://api.github.com/users/hallidave/events', 'https://api.github.com/users/hallidave/received_events', 0); +INSERT INTO `developer` VALUES (2475, 'ashri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ashley Richardson', NULL, 'http://www.threeheadedmonkey.com', 'Perth, Western Australia', 'ash@threeheadedmonkey.com', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-07T00:39:52Z', '2024-06-14T09:03:15Z', 'https://avatars.githubusercontent.com/u/2475?v=4', 'https://api.github.com/users/ashri', 'https://github.com/ashri', 'https://api.github.com/users/ashri/followers', 'https://api.github.com/users/ashri/following', 'https://api.github.com/users/ashri/gists', 'https://api.github.com/users/ashri/starred', 'https://api.github.com/users/ashri/repos', 'https://api.github.com/users/ashri/events', 'https://api.github.com/users/ashri/received_events', 0); +INSERT INTO `developer` VALUES (2476, 'victortolbert', 'C', 0, 0, 0, 0, 0, 0, 0, ' Victor', '@vticonsulting ', 'victortolbert.com', 'Atlanta, GA', NULL, 'true', NULL, 'victortolbert', 0, 0, 41, 30, 0, 0, 0, '2008-03-07T00:49:24Z', '2024-10-29T13:04:42Z', 'https://avatars.githubusercontent.com/u/2476?v=4', 'https://api.github.com/users/victortolbert', 'https://github.com/victortolbert', 'https://api.github.com/users/victortolbert/followers', 'https://api.github.com/users/victortolbert/following', 'https://api.github.com/users/victortolbert/gists', 'https://api.github.com/users/victortolbert/starred', 'https://api.github.com/users/victortolbert/repos', 'https://api.github.com/users/victortolbert/events', 'https://api.github.com/users/victortolbert/received_events', 0); +INSERT INTO `developer` VALUES (2477, 'Xilon', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-07T01:36:59Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2477?v=4', 'https://api.github.com/users/Xilon', 'https://github.com/Xilon', 'https://api.github.com/users/Xilon/followers', 'https://api.github.com/users/Xilon/following', 'https://api.github.com/users/Xilon/gists', 'https://api.github.com/users/Xilon/starred', 'https://api.github.com/users/Xilon/repos', 'https://api.github.com/users/Xilon/events', 'https://api.github.com/users/Xilon/received_events', 0); +INSERT INTO `developer` VALUES (2478, 'djones', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Jones', NULL, '', 'San Francisco', 'dgjones@gmail.com', NULL, 'Kiwi in California 🇳🇿 Leading engineering teams to ship great products.', 'd_jones', 0, 0, 103, 17, 0, 0, 0, '2008-03-07T01:40:15Z', '2024-08-11T14:46:30Z', 'https://avatars.githubusercontent.com/u/2478?v=4', 'https://api.github.com/users/djones', 'https://github.com/djones', 'https://api.github.com/users/djones/followers', 'https://api.github.com/users/djones/following', 'https://api.github.com/users/djones/gists', 'https://api.github.com/users/djones/starred', 'https://api.github.com/users/djones/repos', 'https://api.github.com/users/djones/events', 'https://api.github.com/users/djones/received_events', 0); +INSERT INTO `developer` VALUES (2479, 'jgelens', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeffrey Gelens', 'Qonvoy', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 70, 24, 0, 0, 0, '2008-03-07T02:16:49Z', '2024-07-23T15:40:00Z', 'https://avatars.githubusercontent.com/u/2479?v=4', 'https://api.github.com/users/jgelens', 'https://github.com/jgelens', 'https://api.github.com/users/jgelens/followers', 'https://api.github.com/users/jgelens/following', 'https://api.github.com/users/jgelens/gists', 'https://api.github.com/users/jgelens/starred', 'https://api.github.com/users/jgelens/repos', 'https://api.github.com/users/jgelens/events', 'https://api.github.com/users/jgelens/received_events', 0); +INSERT INTO `developer` VALUES (2480, 'Roman2K', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roman', NULL, 'https://romanlenegrate.net', '未知', 'roman@romanlenegrate.net', NULL, NULL, NULL, 0, 0, 54, 92, 0, 0, 0, '2008-03-07T02:33:30Z', '2024-10-31T16:13:38Z', 'https://avatars.githubusercontent.com/u/2480?v=4', 'https://api.github.com/users/Roman2K', 'https://github.com/Roman2K', 'https://api.github.com/users/Roman2K/followers', 'https://api.github.com/users/Roman2K/following', 'https://api.github.com/users/Roman2K/gists', 'https://api.github.com/users/Roman2K/starred', 'https://api.github.com/users/Roman2K/repos', 'https://api.github.com/users/Roman2K/events', 'https://api.github.com/users/Roman2K/received_events', 0); +INSERT INTO `developer` VALUES (2481, 'jasontorres', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Torres', '@mashupgarage ', 'https://www.jasontorres.com', 'London, UK', NULL, NULL, 'CEO of @mashupgarage \r\nCTO of Slerp\r\nFounder of Phackers.com', NULL, 0, 0, 155, 23, 0, 0, 0, '2008-03-07T02:41:44Z', '2024-09-03T08:10:57Z', 'https://avatars.githubusercontent.com/u/2481?v=4', 'https://api.github.com/users/jasontorres', 'https://github.com/jasontorres', 'https://api.github.com/users/jasontorres/followers', 'https://api.github.com/users/jasontorres/following', 'https://api.github.com/users/jasontorres/gists', 'https://api.github.com/users/jasontorres/starred', 'https://api.github.com/users/jasontorres/repos', 'https://api.github.com/users/jasontorres/events', 'https://api.github.com/users/jasontorres/received_events', 0); +INSERT INTO `developer` VALUES (2482, 'neovintage', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rimas Silkaitis', '@meroxa', 'http://neovintage.org', 'San Francisco, CA', 'neovintage@gmail.com', 'true', 'VP Product', 'neovintage', 0, 0, 46, 11, 0, 0, 0, '2008-03-07T03:22:30Z', '2024-10-23T14:26:33Z', 'https://avatars.githubusercontent.com/u/2482?v=4', 'https://api.github.com/users/neovintage', 'https://github.com/neovintage', 'https://api.github.com/users/neovintage/followers', 'https://api.github.com/users/neovintage/following', 'https://api.github.com/users/neovintage/gists', 'https://api.github.com/users/neovintage/starred', 'https://api.github.com/users/neovintage/repos', 'https://api.github.com/users/neovintage/events', 'https://api.github.com/users/neovintage/received_events', 0); +INSERT INTO `developer` VALUES (2483, 'scotthenley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Henley', 'PMG', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-07T04:00:53Z', '2024-08-26T18:37:45Z', 'https://avatars.githubusercontent.com/u/2483?v=4', 'https://api.github.com/users/scotthenley', 'https://github.com/scotthenley', 'https://api.github.com/users/scotthenley/followers', 'https://api.github.com/users/scotthenley/following', 'https://api.github.com/users/scotthenley/gists', 'https://api.github.com/users/scotthenley/starred', 'https://api.github.com/users/scotthenley/repos', 'https://api.github.com/users/scotthenley/events', 'https://api.github.com/users/scotthenley/received_events', 0); +INSERT INTO `developer` VALUES (2484, 'jugglebird', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Hunter', NULL, '', 'Austin, TX', 'chunter@wondertwinpowers.net', NULL, NULL, NULL, 0, 0, 35, 25, 0, 0, 0, '2008-03-07T04:17:45Z', '2024-10-01T22:46:06Z', 'https://avatars.githubusercontent.com/u/2484?v=4', 'https://api.github.com/users/jugglebird', 'https://github.com/jugglebird', 'https://api.github.com/users/jugglebird/followers', 'https://api.github.com/users/jugglebird/following', 'https://api.github.com/users/jugglebird/gists', 'https://api.github.com/users/jugglebird/starred', 'https://api.github.com/users/jugglebird/repos', 'https://api.github.com/users/jugglebird/events', 'https://api.github.com/users/jugglebird/received_events', 0); +INSERT INTO `developer` VALUES (2485, 'kamajii', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-07T04:23:29Z', '2016-10-05T22:18:16Z', 'https://avatars.githubusercontent.com/u/2485?v=4', 'https://api.github.com/users/kamajii', 'https://github.com/kamajii', 'https://api.github.com/users/kamajii/followers', 'https://api.github.com/users/kamajii/following', 'https://api.github.com/users/kamajii/gists', 'https://api.github.com/users/kamajii/starred', 'https://api.github.com/users/kamajii/repos', 'https://api.github.com/users/kamajii/events', 'https://api.github.com/users/kamajii/received_events', 0); +INSERT INTO `developer` VALUES (2486, 'dingyi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ding Yi', 'DEX', 'http://ding.one/', 'Remote', 'dingyimac@gmail.com', NULL, 'Independent designer & developer.', 'dingyi', 0, 0, 250, 298, 0, 0, 0, '2008-03-07T05:29:41Z', '2024-11-04T12:19:37Z', 'https://avatars.githubusercontent.com/u/2486?v=4', 'https://api.github.com/users/dingyi', 'https://github.com/dingyi', 'https://api.github.com/users/dingyi/followers', 'https://api.github.com/users/dingyi/following', 'https://api.github.com/users/dingyi/gists', 'https://api.github.com/users/dingyi/starred', 'https://api.github.com/users/dingyi/repos', 'https://api.github.com/users/dingyi/events', 'https://api.github.com/users/dingyi/received_events', 0); +INSERT INTO `developer` VALUES (2487, 'RyDawg', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-07T07:19:46Z', '2019-10-23T07:01:12Z', 'https://avatars.githubusercontent.com/u/2487?v=4', 'https://api.github.com/users/RyDawg', 'https://github.com/RyDawg', 'https://api.github.com/users/RyDawg/followers', 'https://api.github.com/users/RyDawg/following', 'https://api.github.com/users/RyDawg/gists', 'https://api.github.com/users/RyDawg/starred', 'https://api.github.com/users/RyDawg/repos', 'https://api.github.com/users/RyDawg/events', 'https://api.github.com/users/RyDawg/received_events', 0); +INSERT INTO `developer` VALUES (2488, 'nertzy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Grant Hutchins', '@srpatx, @nertzdyne ', 'https://nertzy.com', 'Austin, TX', 'github@nertzy.com', NULL, 'Author of the Ruby gems pg_search and with_model', 'nertzy', 0, 0, 152, 445, 0, 0, 0, '2008-03-07T08:13:46Z', '2024-10-27T17:52:27Z', 'https://avatars.githubusercontent.com/u/2488?v=4', 'https://api.github.com/users/nertzy', 'https://github.com/nertzy', 'https://api.github.com/users/nertzy/followers', 'https://api.github.com/users/nertzy/following', 'https://api.github.com/users/nertzy/gists', 'https://api.github.com/users/nertzy/starred', 'https://api.github.com/users/nertzy/repos', 'https://api.github.com/users/nertzy/events', 'https://api.github.com/users/nertzy/received_events', 0); +INSERT INTO `developer` VALUES (2489, 'yangzx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-07T09:55:48Z', '2019-12-22T10:36:48Z', 'https://avatars.githubusercontent.com/u/2489?v=4', 'https://api.github.com/users/yangzx', 'https://github.com/yangzx', 'https://api.github.com/users/yangzx/followers', 'https://api.github.com/users/yangzx/following', 'https://api.github.com/users/yangzx/gists', 'https://api.github.com/users/yangzx/starred', 'https://api.github.com/users/yangzx/repos', 'https://api.github.com/users/yangzx/events', 'https://api.github.com/users/yangzx/received_events', 0); +INSERT INTO `developer` VALUES (2490, 'mootoh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Motohiro Takayama', 'newmo, inc', 'http://mootoh.net', 'Tokyo', 'mootoh@gmail.com', 'true', NULL, 'mootoh', 0, 0, 217, 50, 0, 0, 0, '2008-03-07T09:57:53Z', '2024-10-02T23:41:23Z', 'https://avatars.githubusercontent.com/u/2490?v=4', 'https://api.github.com/users/mootoh', 'https://github.com/mootoh', 'https://api.github.com/users/mootoh/followers', 'https://api.github.com/users/mootoh/following', 'https://api.github.com/users/mootoh/gists', 'https://api.github.com/users/mootoh/starred', 'https://api.github.com/users/mootoh/repos', 'https://api.github.com/users/mootoh/events', 'https://api.github.com/users/mootoh/received_events', 0); +INSERT INTO `developer` VALUES (2491, 'moustaki', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yves Raimond', 'Netflix, CA', 'http://raimond.me.uk', 'San Francisco Bay Area', 'yves@dbtune.org', NULL, NULL, NULL, 0, 0, 115, 10, 0, 0, 0, '2008-03-07T11:18:30Z', '2022-02-09T19:06:29Z', 'https://avatars.githubusercontent.com/u/2491?v=4', 'https://api.github.com/users/moustaki', 'https://github.com/moustaki', 'https://api.github.com/users/moustaki/followers', 'https://api.github.com/users/moustaki/following', 'https://api.github.com/users/moustaki/gists', 'https://api.github.com/users/moustaki/starred', 'https://api.github.com/users/moustaki/repos', 'https://api.github.com/users/moustaki/events', 'https://api.github.com/users/moustaki/received_events', 0); +INSERT INTO `developer` VALUES (2492, 'Tux', 'C', 0, 0, 0, 0, 0, 0, 0, 'H.Merijn Brand', NULL, 'https://tux.nl', 'Huizen, Netherlands', 'github@tux.freedom.nl', NULL, NULL, NULL, 0, 0, 58, 2, 0, 0, 0, '2008-03-07T12:16:56Z', '2024-11-04T11:48:17Z', 'https://avatars.githubusercontent.com/u/2492?v=4', 'https://api.github.com/users/Tux', 'https://github.com/Tux', 'https://api.github.com/users/Tux/followers', 'https://api.github.com/users/Tux/following', 'https://api.github.com/users/Tux/gists', 'https://api.github.com/users/Tux/starred', 'https://api.github.com/users/Tux/repos', 'https://api.github.com/users/Tux/events', 'https://api.github.com/users/Tux/received_events', 0); +INSERT INTO `developer` VALUES (2493, 'bertoldofonseca', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bertoldo Fonseca', NULL, '', 'Brazil', NULL, NULL, 'Backend Software Engineer (Go and Java); Mobile Software Engineer (Obj-C/Swift and Flutter); also a Mountain Biker;', 'bertoldofonseca', 0, 0, 13, 12, 0, 0, 0, '2008-03-07T12:36:19Z', '2024-08-27T00:18:55Z', 'https://avatars.githubusercontent.com/u/2493?v=4', 'https://api.github.com/users/bertoldofonseca', 'https://github.com/bertoldofonseca', 'https://api.github.com/users/bertoldofonseca/followers', 'https://api.github.com/users/bertoldofonseca/following', 'https://api.github.com/users/bertoldofonseca/gists', 'https://api.github.com/users/bertoldofonseca/starred', 'https://api.github.com/users/bertoldofonseca/repos', 'https://api.github.com/users/bertoldofonseca/events', 'https://api.github.com/users/bertoldofonseca/received_events', 0); +INSERT INTO `developer` VALUES (2494, 'sturob', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stuart Robinson', NULL, 'http://sturob.com/', 'Upstate New York', NULL, 'true', NULL, NULL, 0, 0, 21, 91, 0, 0, 0, '2008-03-07T12:37:33Z', '2024-10-19T01:24:41Z', 'https://avatars.githubusercontent.com/u/2494?v=4', 'https://api.github.com/users/sturob', 'https://github.com/sturob', 'https://api.github.com/users/sturob/followers', 'https://api.github.com/users/sturob/following', 'https://api.github.com/users/sturob/gists', 'https://api.github.com/users/sturob/starred', 'https://api.github.com/users/sturob/repos', 'https://api.github.com/users/sturob/events', 'https://api.github.com/users/sturob/received_events', 0); +INSERT INTO `developer` VALUES (2495, 'daesan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dae San Hwang', 'Polle Inc.', 'https://twitter.com/daesanhwang', 'Seoul', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-07T12:43:12Z', '2024-08-14T13:10:49Z', 'https://avatars.githubusercontent.com/u/2495?v=4', 'https://api.github.com/users/daesan', 'https://github.com/daesan', 'https://api.github.com/users/daesan/followers', 'https://api.github.com/users/daesan/following', 'https://api.github.com/users/daesan/gists', 'https://api.github.com/users/daesan/starred', 'https://api.github.com/users/daesan/repos', 'https://api.github.com/users/daesan/events', 'https://api.github.com/users/daesan/received_events', 0); +INSERT INTO `developer` VALUES (2496, 'kallepersson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kalle Persson', '@Spotify', 'http://kallepersson.se', 'Stockholm', 'gh@kallepersson.se', NULL, NULL, NULL, 0, 0, 119, 28, 0, 0, 0, '2008-03-07T13:11:16Z', '2023-10-05T09:17:31Z', 'https://avatars.githubusercontent.com/u/2496?v=4', 'https://api.github.com/users/kallepersson', 'https://github.com/kallepersson', 'https://api.github.com/users/kallepersson/followers', 'https://api.github.com/users/kallepersson/following', 'https://api.github.com/users/kallepersson/gists', 'https://api.github.com/users/kallepersson/starred', 'https://api.github.com/users/kallepersson/repos', 'https://api.github.com/users/kallepersson/events', 'https://api.github.com/users/kallepersson/received_events', 0); +INSERT INTO `developer` VALUES (2497, 'filipe-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-07T13:26:31Z', '2023-11-22T14:59:44Z', 'https://avatars.githubusercontent.com/u/2497?v=4', 'https://api.github.com/users/filipe-zz', 'https://github.com/filipe-zz', 'https://api.github.com/users/filipe-zz/followers', 'https://api.github.com/users/filipe-zz/following', 'https://api.github.com/users/filipe-zz/gists', 'https://api.github.com/users/filipe-zz/starred', 'https://api.github.com/users/filipe-zz/repos', 'https://api.github.com/users/filipe-zz/events', 'https://api.github.com/users/filipe-zz/received_events', 0); +INSERT INTO `developer` VALUES (2498, 'patrickt', 'C', 1.9923638370427166, 0, 0, 0, 0, 0, 0, 'Patrick Thomson', NULL, 'http://blog.sumtypeofway.com', 'Queens, NYC', 'patrickt@github.com', NULL, 'Te occidere possunt sed te edere non possunt; nefas est.', NULL, 0, 0, 401, 43, 0, 0, 0, '2008-03-07T13:46:27Z', '2024-10-23T13:16:26Z', 'https://avatars.githubusercontent.com/u/2498?v=4', 'https://api.github.com/users/patrickt', 'https://github.com/patrickt', 'https://api.github.com/users/patrickt/followers', 'https://api.github.com/users/patrickt/following', 'https://api.github.com/users/patrickt/gists', 'https://api.github.com/users/patrickt/starred', 'https://api.github.com/users/patrickt/repos', 'https://api.github.com/users/patrickt/events', 'https://api.github.com/users/patrickt/received_events', 0); +INSERT INTO `developer` VALUES (2499, 'antonysastre', 'C', 0, 0, 0, 0, 0, 0, 0, 'Antony Sastre', 'North Collective', '', 'Sweden', NULL, NULL, NULL, NULL, 0, 0, 10, 4, 0, 0, 0, '2008-03-07T13:52:33Z', '2024-10-24T08:04:54Z', 'https://avatars.githubusercontent.com/u/2499?v=4', 'https://api.github.com/users/antonysastre', 'https://github.com/antonysastre', 'https://api.github.com/users/antonysastre/followers', 'https://api.github.com/users/antonysastre/following', 'https://api.github.com/users/antonysastre/gists', 'https://api.github.com/users/antonysastre/starred', 'https://api.github.com/users/antonysastre/repos', 'https://api.github.com/users/antonysastre/events', 'https://api.github.com/users/antonysastre/received_events', 0); +INSERT INTO `developer` VALUES (2501, 'kdaigle', 'C', 6.2794946834854075, 0, 0, 0, 0, 0, 0, 'Kyle Daigle', '@github ', 'www.kyledaigle.com', 'Tolland, CT', 'kyle.daigle@github.com', NULL, 'COO at @github ', 'kdaigle', 0, 0, 651, 11, 0, 0, 0, '2008-03-07T14:32:21Z', '2024-10-16T22:01:02Z', 'https://avatars.githubusercontent.com/u/2501?v=4', 'https://api.github.com/users/kdaigle', 'https://github.com/kdaigle', 'https://api.github.com/users/kdaigle/followers', 'https://api.github.com/users/kdaigle/following', 'https://api.github.com/users/kdaigle/gists', 'https://api.github.com/users/kdaigle/starred', 'https://api.github.com/users/kdaigle/repos', 'https://api.github.com/users/kdaigle/events', 'https://api.github.com/users/kdaigle/received_events', 0); +INSERT INTO `developer` VALUES (2502, 'juanlu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-07T14:51:32Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2502?v=4', 'https://api.github.com/users/juanlu', 'https://github.com/juanlu', 'https://api.github.com/users/juanlu/followers', 'https://api.github.com/users/juanlu/following', 'https://api.github.com/users/juanlu/gists', 'https://api.github.com/users/juanlu/starred', 'https://api.github.com/users/juanlu/repos', 'https://api.github.com/users/juanlu/events', 'https://api.github.com/users/juanlu/received_events', 0); +INSERT INTO `developer` VALUES (2503, 'rsutphin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rhett Sutphin', 'Human Practice, Inc.', '', 'Chicago, Illinois', 'rhett@detailedbalance.net', NULL, NULL, NULL, 0, 0, 109, 47, 0, 0, 0, '2008-03-07T15:24:26Z', '2017-08-14T19:39:23Z', 'https://avatars.githubusercontent.com/u/2503?v=4', 'https://api.github.com/users/rsutphin', 'https://github.com/rsutphin', 'https://api.github.com/users/rsutphin/followers', 'https://api.github.com/users/rsutphin/following', 'https://api.github.com/users/rsutphin/gists', 'https://api.github.com/users/rsutphin/starred', 'https://api.github.com/users/rsutphin/repos', 'https://api.github.com/users/rsutphin/events', 'https://api.github.com/users/rsutphin/received_events', 0); +INSERT INTO `developer` VALUES (2505, 'tobiash', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tobias Habermann', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-07T16:27:06Z', '2024-07-24T15:03:38Z', 'https://avatars.githubusercontent.com/u/2505?v=4', 'https://api.github.com/users/tobiash', 'https://github.com/tobiash', 'https://api.github.com/users/tobiash/followers', 'https://api.github.com/users/tobiash/following', 'https://api.github.com/users/tobiash/gists', 'https://api.github.com/users/tobiash/starred', 'https://api.github.com/users/tobiash/repos', 'https://api.github.com/users/tobiash/events', 'https://api.github.com/users/tobiash/received_events', 0); +INSERT INTO `developer` VALUES (2506, 'hofo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, 'Welcome to the boulevard of broken project dreams', NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-07T16:39:19Z', '2024-07-17T19:07:17Z', 'https://avatars.githubusercontent.com/u/2506?v=4', 'https://api.github.com/users/hofo', 'https://github.com/hofo', 'https://api.github.com/users/hofo/followers', 'https://api.github.com/users/hofo/following', 'https://api.github.com/users/hofo/gists', 'https://api.github.com/users/hofo/starred', 'https://api.github.com/users/hofo/repos', 'https://api.github.com/users/hofo/events', 'https://api.github.com/users/hofo/received_events', 0); +INSERT INTO `developer` VALUES (2507, 'stevepsharpe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve P. Sharpe', 'Komprihend', 'https://stevepsharpe.com', 'United Kingdom', 'steve@shar.pe', NULL, 'Sr Software Engineer - #Rails #React #Typescript #GraphQL #Shopify. Star Wars Day is my birthday. May the 4th be with you!', 'stevepsharpe', 0, 0, 23, 0, 0, 0, 0, '2008-03-07T16:39:50Z', '2024-11-04T07:45:01Z', 'https://avatars.githubusercontent.com/u/2507?v=4', 'https://api.github.com/users/stevepsharpe', 'https://github.com/stevepsharpe', 'https://api.github.com/users/stevepsharpe/followers', 'https://api.github.com/users/stevepsharpe/following', 'https://api.github.com/users/stevepsharpe/gists', 'https://api.github.com/users/stevepsharpe/starred', 'https://api.github.com/users/stevepsharpe/repos', 'https://api.github.com/users/stevepsharpe/events', 'https://api.github.com/users/stevepsharpe/received_events', 0); +INSERT INTO `developer` VALUES (2508, 'patrickxb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Crosby', '@keybase @stathat ', 'http://patrickcrosby.com', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 119, 9, 0, 0, 0, '2008-03-07T16:40:45Z', '2022-04-08T18:46:22Z', 'https://avatars.githubusercontent.com/u/2508?v=4', 'https://api.github.com/users/patrickxb', 'https://github.com/patrickxb', 'https://api.github.com/users/patrickxb/followers', 'https://api.github.com/users/patrickxb/following', 'https://api.github.com/users/patrickxb/gists', 'https://api.github.com/users/patrickxb/starred', 'https://api.github.com/users/patrickxb/repos', 'https://api.github.com/users/patrickxb/events', 'https://api.github.com/users/patrickxb/received_events', 0); +INSERT INTO `developer` VALUES (2509, 'unnature', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-07T16:40:59Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2509?v=4', 'https://api.github.com/users/unnature', 'https://github.com/unnature', 'https://api.github.com/users/unnature/followers', 'https://api.github.com/users/unnature/following', 'https://api.github.com/users/unnature/gists', 'https://api.github.com/users/unnature/starred', 'https://api.github.com/users/unnature/repos', 'https://api.github.com/users/unnature/events', 'https://api.github.com/users/unnature/received_events', 0); +INSERT INTO `developer` VALUES (2510, 'patrickdet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Detlefsen', 'Flamingo Research & Development', 'https://flmng.co', '未知', NULL, NULL, NULL, 'patrickdet', 0, 0, 61, 84, 0, 0, 0, '2008-03-07T16:41:47Z', '2024-10-21T08:28:57Z', 'https://avatars.githubusercontent.com/u/2510?v=4', 'https://api.github.com/users/patrickdet', 'https://github.com/patrickdet', 'https://api.github.com/users/patrickdet/followers', 'https://api.github.com/users/patrickdet/following', 'https://api.github.com/users/patrickdet/gists', 'https://api.github.com/users/patrickdet/starred', 'https://api.github.com/users/patrickdet/repos', 'https://api.github.com/users/patrickdet/events', 'https://api.github.com/users/patrickdet/received_events', 0); +INSERT INTO `developer` VALUES (2511, 'ramunas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ramūnas Forsberg Gutkovas', NULL, '', '未知', 'ramunasg@gmail.com', NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-07T16:45:05Z', '2023-12-27T00:23:31Z', 'https://avatars.githubusercontent.com/u/2511?v=4', 'https://api.github.com/users/ramunas', 'https://github.com/ramunas', 'https://api.github.com/users/ramunas/followers', 'https://api.github.com/users/ramunas/following', 'https://api.github.com/users/ramunas/gists', 'https://api.github.com/users/ramunas/starred', 'https://api.github.com/users/ramunas/repos', 'https://api.github.com/users/ramunas/events', 'https://api.github.com/users/ramunas/received_events', 0); +INSERT INTO `developer` VALUES (2512, 'redsquirrel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Hoover', 'Flexa, Inc.', '', 'Evanston, IL', NULL, NULL, NULL, 'davehoover', 0, 0, 241, 55, 0, 0, 0, '2008-03-07T16:45:07Z', '2024-10-24T15:35:12Z', 'https://avatars.githubusercontent.com/u/2512?v=4', 'https://api.github.com/users/redsquirrel', 'https://github.com/redsquirrel', 'https://api.github.com/users/redsquirrel/followers', 'https://api.github.com/users/redsquirrel/following', 'https://api.github.com/users/redsquirrel/gists', 'https://api.github.com/users/redsquirrel/starred', 'https://api.github.com/users/redsquirrel/repos', 'https://api.github.com/users/redsquirrel/events', 'https://api.github.com/users/redsquirrel/received_events', 0); +INSERT INTO `developer` VALUES (2513, 'jdpace', 'C', 0.3118085452371806, 0, 0, 0, 0, 0, 0, 'Jared Pace', 'GitHub', '', 'Charlotte, NC', 'jdpace@github.com', NULL, NULL, NULL, 0, 0, 303, 4, 0, 0, 0, '2008-03-07T16:45:55Z', '2024-08-16T16:49:48Z', 'https://avatars.githubusercontent.com/u/2513?v=4', 'https://api.github.com/users/jdpace', 'https://github.com/jdpace', 'https://api.github.com/users/jdpace/followers', 'https://api.github.com/users/jdpace/following', 'https://api.github.com/users/jdpace/gists', 'https://api.github.com/users/jdpace/starred', 'https://api.github.com/users/jdpace/repos', 'https://api.github.com/users/jdpace/events', 'https://api.github.com/users/jdpace/received_events', 0); +INSERT INTO `developer` VALUES (2515, 'davidmichael', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-07T16:47:18Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2515?v=4', 'https://api.github.com/users/davidmichael', 'https://github.com/davidmichael', 'https://api.github.com/users/davidmichael/followers', 'https://api.github.com/users/davidmichael/following', 'https://api.github.com/users/davidmichael/gists', 'https://api.github.com/users/davidmichael/starred', 'https://api.github.com/users/davidmichael/repos', 'https://api.github.com/users/davidmichael/events', 'https://api.github.com/users/davidmichael/received_events', 0); +INSERT INTO `developer` VALUES (2516, 'artisonian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leroy Campbell', NULL, 'https://www.leroycampbell.me', 'Bay Area, CA', 'leroy@artisonian.com', NULL, 'Senior UI Engineer', NULL, 0, 0, 26, 9, 0, 0, 0, '2008-03-07T16:49:33Z', '2024-05-30T22:49:10Z', 'https://avatars.githubusercontent.com/u/2516?v=4', 'https://api.github.com/users/artisonian', 'https://github.com/artisonian', 'https://api.github.com/users/artisonian/followers', 'https://api.github.com/users/artisonian/following', 'https://api.github.com/users/artisonian/gists', 'https://api.github.com/users/artisonian/starred', 'https://api.github.com/users/artisonian/repos', 'https://api.github.com/users/artisonian/events', 'https://api.github.com/users/artisonian/received_events', 0); +INSERT INTO `developer` VALUES (2518, 'andreas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Garnaes', 'Workday', 'andreas.github.io', 'Copenhagen', NULL, NULL, NULL, 'cuvius', 0, 0, 142, 7, 0, 0, 0, '2008-03-07T16:51:42Z', '2024-09-17T18:17:41Z', 'https://avatars.githubusercontent.com/u/2518?v=4', 'https://api.github.com/users/andreas', 'https://github.com/andreas', 'https://api.github.com/users/andreas/followers', 'https://api.github.com/users/andreas/following', 'https://api.github.com/users/andreas/gists', 'https://api.github.com/users/andreas/starred', 'https://api.github.com/users/andreas/repos', 'https://api.github.com/users/andreas/events', 'https://api.github.com/users/andreas/received_events', 0); +INSERT INTO `developer` VALUES (2519, 'fmardini', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fouad Mardini', NULL, 'twitter.com/fmardini', 'London, UK', 'f.mardini@gmail.com', 'true', NULL, NULL, 0, 0, 20, 1, 0, 0, 0, '2008-03-07T16:54:11Z', '2024-11-04T17:20:24Z', 'https://avatars.githubusercontent.com/u/2519?v=4', 'https://api.github.com/users/fmardini', 'https://github.com/fmardini', 'https://api.github.com/users/fmardini/followers', 'https://api.github.com/users/fmardini/following', 'https://api.github.com/users/fmardini/gists', 'https://api.github.com/users/fmardini/starred', 'https://api.github.com/users/fmardini/repos', 'https://api.github.com/users/fmardini/events', 'https://api.github.com/users/fmardini/received_events', 0); +INSERT INTO `developer` VALUES (2520, 'fred', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frederico Araujo', NULL, '', 'Thailand', NULL, NULL, 'SVP of IT and Security at OPN', NULL, 0, 0, 56, 60, 0, 0, 0, '2008-03-07T16:57:28Z', '2024-10-31T08:09:55Z', 'https://avatars.githubusercontent.com/u/2520?v=4', 'https://api.github.com/users/fred', 'https://github.com/fred', 'https://api.github.com/users/fred/followers', 'https://api.github.com/users/fred/following', 'https://api.github.com/users/fred/gists', 'https://api.github.com/users/fred/starred', 'https://api.github.com/users/fred/repos', 'https://api.github.com/users/fred/events', 'https://api.github.com/users/fred/received_events', 0); +INSERT INTO `developer` VALUES (2521, 'RowanH', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rowan Hick', 'GlobalWorkshop (Clever Robots Limited)', 'www.globalworkshop.com', 'Auckland, New Zealand', 'rowan.hick@gmail.com', 'true', 'Founder of GlobalWorkshop - Vehicle Build Management and Documentation', NULL, 0, 0, 17, 8, 0, 0, 0, '2008-03-07T17:02:11Z', '2024-07-09T09:47:36Z', 'https://avatars.githubusercontent.com/u/2521?v=4', 'https://api.github.com/users/RowanH', 'https://github.com/RowanH', 'https://api.github.com/users/RowanH/followers', 'https://api.github.com/users/RowanH/following', 'https://api.github.com/users/RowanH/gists', 'https://api.github.com/users/RowanH/starred', 'https://api.github.com/users/RowanH/repos', 'https://api.github.com/users/RowanH/events', 'https://api.github.com/users/RowanH/received_events', 0); +INSERT INTO `developer` VALUES (2522, 'gulopine', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ginger Hawthorne', 'Latacora', 'http://gulopine.com/', 'Bath, MI', 'gulopine@gmail.com', NULL, NULL, 'gulopine', 0, 0, 147, 23, 0, 0, 0, '2008-03-07T17:03:49Z', '2024-06-30T16:45:10Z', 'https://avatars.githubusercontent.com/u/2522?v=4', 'https://api.github.com/users/gulopine', 'https://github.com/gulopine', 'https://api.github.com/users/gulopine/followers', 'https://api.github.com/users/gulopine/following', 'https://api.github.com/users/gulopine/gists', 'https://api.github.com/users/gulopine/starred', 'https://api.github.com/users/gulopine/repos', 'https://api.github.com/users/gulopine/events', 'https://api.github.com/users/gulopine/received_events', 0); +INSERT INTO `developer` VALUES (2523, 'btedev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Barry Ezell', NULL, '', 'St. Petersburg, FL', 'barrye@gmail.com', NULL, NULL, NULL, 0, 0, 33, 1, 0, 0, 0, '2008-03-07T17:04:32Z', '2024-08-01T17:12:35Z', 'https://avatars.githubusercontent.com/u/2523?v=4', 'https://api.github.com/users/btedev', 'https://github.com/btedev', 'https://api.github.com/users/btedev/followers', 'https://api.github.com/users/btedev/following', 'https://api.github.com/users/btedev/gists', 'https://api.github.com/users/btedev/starred', 'https://api.github.com/users/btedev/repos', 'https://api.github.com/users/btedev/events', 'https://api.github.com/users/btedev/received_events', 0); +INSERT INTO `developer` VALUES (2525, 'zac', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zac White', 'Velos Mobile (@velos)', 'https://zacwhite.com/', 'San Francisco, CA', 'zac@velosmobile.com', NULL, 'Chief  Platforms Developer and Co-founder of @velos.\r\n\r\n👷‍♂️🏗📱⌚️📺💻', 'zacwhite', 0, 0, 139, 5, 0, 0, 0, '2008-03-07T17:27:27Z', '2024-09-27T23:20:36Z', 'https://avatars.githubusercontent.com/u/2525?v=4', 'https://api.github.com/users/zac', 'https://github.com/zac', 'https://api.github.com/users/zac/followers', 'https://api.github.com/users/zac/following', 'https://api.github.com/users/zac/gists', 'https://api.github.com/users/zac/starred', 'https://api.github.com/users/zac/repos', 'https://api.github.com/users/zac/events', 'https://api.github.com/users/zac/received_events', 0); +INSERT INTO `developer` VALUES (2526, 'GavinJoyce', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gavin Joyce', 'Vidu', 'vidu.io', 'Dublin, Ireland', NULL, NULL, 'Building vidu.io ✨. Previously, engineering Intercom.', 'gavinjoyce', 0, 0, 191, 8, 0, 0, 0, '2008-03-07T17:27:50Z', '2024-09-30T08:00:42Z', 'https://avatars.githubusercontent.com/u/2526?v=4', 'https://api.github.com/users/GavinJoyce', 'https://github.com/GavinJoyce', 'https://api.github.com/users/GavinJoyce/followers', 'https://api.github.com/users/GavinJoyce/following', 'https://api.github.com/users/GavinJoyce/gists', 'https://api.github.com/users/GavinJoyce/starred', 'https://api.github.com/users/GavinJoyce/repos', 'https://api.github.com/users/GavinJoyce/events', 'https://api.github.com/users/GavinJoyce/received_events', 0); +INSERT INTO `developer` VALUES (2527, 'alainravet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alain Ravet', NULL, '', 'Braine l\'Alleud, Belgium', NULL, NULL, NULL, NULL, 0, 0, 19, 3, 0, 0, 0, '2008-03-07T17:29:49Z', '2023-12-26T20:01:06Z', 'https://avatars.githubusercontent.com/u/2527?v=4', 'https://api.github.com/users/alainravet', 'https://github.com/alainravet', 'https://api.github.com/users/alainravet/followers', 'https://api.github.com/users/alainravet/following', 'https://api.github.com/users/alainravet/gists', 'https://api.github.com/users/alainravet/starred', 'https://api.github.com/users/alainravet/repos', 'https://api.github.com/users/alainravet/events', 'https://api.github.com/users/alainravet/received_events', 0); +INSERT INTO `developer` VALUES (2528, 'jcaldwell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Caldwell', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 14, 0, 0, 0, '2008-03-07T17:42:10Z', '2022-06-10T17:37:15Z', 'https://avatars.githubusercontent.com/u/2528?v=4', 'https://api.github.com/users/jcaldwell', 'https://github.com/jcaldwell', 'https://api.github.com/users/jcaldwell/followers', 'https://api.github.com/users/jcaldwell/following', 'https://api.github.com/users/jcaldwell/gists', 'https://api.github.com/users/jcaldwell/starred', 'https://api.github.com/users/jcaldwell/repos', 'https://api.github.com/users/jcaldwell/events', 'https://api.github.com/users/jcaldwell/received_events', 0); +INSERT INTO `developer` VALUES (2529, 'ryanh', 'C', 0, 0, 0, 0, 0, 0, 0, 'LightSky', 'LightSky', 'www.lightsky.com', '未知', 'info@lightsky.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-07T17:54:28Z', '2023-03-22T13:32:58Z', 'https://avatars.githubusercontent.com/u/2529?v=4', 'https://api.github.com/users/ryanh', 'https://github.com/ryanh', 'https://api.github.com/users/ryanh/followers', 'https://api.github.com/users/ryanh/following', 'https://api.github.com/users/ryanh/gists', 'https://api.github.com/users/ryanh/starred', 'https://api.github.com/users/ryanh/repos', 'https://api.github.com/users/ryanh/events', 'https://api.github.com/users/ryanh/received_events', 0); +INSERT INTO `developer` VALUES (2530, 'mbaltar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcelo Baltar', NULL, '', 'Belo Horizonte, MG, Brazil', NULL, NULL, NULL, NULL, 0, 0, 11, 6, 0, 0, 0, '2008-03-07T18:00:14Z', '2024-10-31T11:18:18Z', 'https://avatars.githubusercontent.com/u/2530?v=4', 'https://api.github.com/users/mbaltar', 'https://github.com/mbaltar', 'https://api.github.com/users/mbaltar/followers', 'https://api.github.com/users/mbaltar/following', 'https://api.github.com/users/mbaltar/gists', 'https://api.github.com/users/mbaltar/starred', 'https://api.github.com/users/mbaltar/repos', 'https://api.github.com/users/mbaltar/events', 'https://api.github.com/users/mbaltar/received_events', 0); +INSERT INTO `developer` VALUES (2531, 'lucky4me', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-07T18:01:10Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2531?v=4', 'https://api.github.com/users/lucky4me', 'https://github.com/lucky4me', 'https://api.github.com/users/lucky4me/followers', 'https://api.github.com/users/lucky4me/following', 'https://api.github.com/users/lucky4me/gists', 'https://api.github.com/users/lucky4me/starred', 'https://api.github.com/users/lucky4me/repos', 'https://api.github.com/users/lucky4me/events', 'https://api.github.com/users/lucky4me/received_events', 0); +INSERT INTO `developer` VALUES (2532, 'Aeon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Stroganov', NULL, 'https://nikatang.com', 'San Francisco, CA', 'stroganov.a@gmail.com', NULL, NULL, 'aeon', 0, 0, 52, 113, 0, 0, 0, '2008-03-07T18:30:25Z', '2024-10-21T08:08:00Z', 'https://avatars.githubusercontent.com/u/2532?v=4', 'https://api.github.com/users/Aeon', 'https://github.com/Aeon', 'https://api.github.com/users/Aeon/followers', 'https://api.github.com/users/Aeon/following', 'https://api.github.com/users/Aeon/gists', 'https://api.github.com/users/Aeon/starred', 'https://api.github.com/users/Aeon/repos', 'https://api.github.com/users/Aeon/events', 'https://api.github.com/users/Aeon/received_events', 0); +INSERT INTO `developer` VALUES (2533, 'theshortcut', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clayton Ferris', NULL, 'https://frrs.dev', 'PNW', 'cferris@gmail.com', NULL, NULL, NULL, 0, 0, 23, 6, 0, 0, 0, '2008-03-07T18:37:30Z', '2024-09-29T02:51:15Z', 'https://avatars.githubusercontent.com/u/2533?v=4', 'https://api.github.com/users/theshortcut', 'https://github.com/theshortcut', 'https://api.github.com/users/theshortcut/followers', 'https://api.github.com/users/theshortcut/following', 'https://api.github.com/users/theshortcut/gists', 'https://api.github.com/users/theshortcut/starred', 'https://api.github.com/users/theshortcut/repos', 'https://api.github.com/users/theshortcut/events', 'https://api.github.com/users/theshortcut/received_events', 0); +INSERT INTO `developer` VALUES (2534, 'type11error', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 3, 0, 0, 0, '2008-03-07T18:44:18Z', '2024-10-01T19:32:30Z', 'https://avatars.githubusercontent.com/u/2534?v=4', 'https://api.github.com/users/type11error', 'https://github.com/type11error', 'https://api.github.com/users/type11error/followers', 'https://api.github.com/users/type11error/following', 'https://api.github.com/users/type11error/gists', 'https://api.github.com/users/type11error/starred', 'https://api.github.com/users/type11error/repos', 'https://api.github.com/users/type11error/events', 'https://api.github.com/users/type11error/received_events', 0); +INSERT INTO `developer` VALUES (2535, 'brigitte', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-07T19:00:34Z', '2019-12-21T22:32:39Z', 'https://avatars.githubusercontent.com/u/2535?v=4', 'https://api.github.com/users/brigitte', 'https://github.com/brigitte', 'https://api.github.com/users/brigitte/followers', 'https://api.github.com/users/brigitte/following', 'https://api.github.com/users/brigitte/gists', 'https://api.github.com/users/brigitte/starred', 'https://api.github.com/users/brigitte/repos', 'https://api.github.com/users/brigitte/events', 'https://api.github.com/users/brigitte/received_events', 0); +INSERT INTO `developer` VALUES (2536, 'nikosd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nikos Dimitrakopoulos', NULL, '', 'Athens, Greece', 'demisone@gmail.com', NULL, NULL, NULL, 0, 0, 56, 29, 0, 0, 0, '2008-03-07T19:02:24Z', '2024-04-27T05:39:43Z', 'https://avatars.githubusercontent.com/u/2536?v=4', 'https://api.github.com/users/nikosd', 'https://github.com/nikosd', 'https://api.github.com/users/nikosd/followers', 'https://api.github.com/users/nikosd/following', 'https://api.github.com/users/nikosd/gists', 'https://api.github.com/users/nikosd/starred', 'https://api.github.com/users/nikosd/repos', 'https://api.github.com/users/nikosd/events', 'https://api.github.com/users/nikosd/received_events', 0); +INSERT INTO `developer` VALUES (2537, 'oleriesenberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ole Riesenberg', NULL, 'http://oleriesenberg.com', 'Munich, Germany', 'or@oleriesenberg.com', 'true', NULL, NULL, 0, 0, 20, 7, 0, 0, 0, '2008-03-07T19:07:29Z', '2024-08-30T10:51:13Z', 'https://avatars.githubusercontent.com/u/2537?v=4', 'https://api.github.com/users/oleriesenberg', 'https://github.com/oleriesenberg', 'https://api.github.com/users/oleriesenberg/followers', 'https://api.github.com/users/oleriesenberg/following', 'https://api.github.com/users/oleriesenberg/gists', 'https://api.github.com/users/oleriesenberg/starred', 'https://api.github.com/users/oleriesenberg/repos', 'https://api.github.com/users/oleriesenberg/events', 'https://api.github.com/users/oleriesenberg/received_events', 0); +INSERT INTO `developer` VALUES (2538, 'kevinhankinson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Hankinson', 'TicketSense', 'www.ticketsense.co.uk', 'Manchester, England', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-07T19:28:25Z', '2024-10-20T12:33:55Z', 'https://avatars.githubusercontent.com/u/2538?v=4', 'https://api.github.com/users/kevinhankinson', 'https://github.com/kevinhankinson', 'https://api.github.com/users/kevinhankinson/followers', 'https://api.github.com/users/kevinhankinson/following', 'https://api.github.com/users/kevinhankinson/gists', 'https://api.github.com/users/kevinhankinson/starred', 'https://api.github.com/users/kevinhankinson/repos', 'https://api.github.com/users/kevinhankinson/events', 'https://api.github.com/users/kevinhankinson/received_events', 0); +INSERT INTO `developer` VALUES (2539, 'danielbushman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Bushman', 'Quickbase', 'https://bushman.pro', 'Utah, USA', 'dbushman@quickbase.com', NULL, NULL, 'danielbushman', 0, 0, 16, 35, 0, 0, 0, '2008-03-07T19:28:48Z', '2024-10-31T15:02:40Z', 'https://avatars.githubusercontent.com/u/2539?v=4', 'https://api.github.com/users/danielbushman', 'https://github.com/danielbushman', 'https://api.github.com/users/danielbushman/followers', 'https://api.github.com/users/danielbushman/following', 'https://api.github.com/users/danielbushman/gists', 'https://api.github.com/users/danielbushman/starred', 'https://api.github.com/users/danielbushman/repos', 'https://api.github.com/users/danielbushman/events', 'https://api.github.com/users/danielbushman/received_events', 0); +INSERT INTO `developer` VALUES (2540, 'crayz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-07T19:31:22Z', '2019-12-19T20:29:50Z', 'https://avatars.githubusercontent.com/u/2540?v=4', 'https://api.github.com/users/crayz', 'https://github.com/crayz', 'https://api.github.com/users/crayz/followers', 'https://api.github.com/users/crayz/following', 'https://api.github.com/users/crayz/gists', 'https://api.github.com/users/crayz/starred', 'https://api.github.com/users/crayz/repos', 'https://api.github.com/users/crayz/events', 'https://api.github.com/users/crayz/received_events', 0); +INSERT INTO `developer` VALUES (2541, 'mja', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark James Adams', 'University of Edinburgh', 'http://differentialist.info', 'Edinburgh, Scotland', 'mark.adams@ed.ac.uk', NULL, 'Psychiatric and statistical genetics.', 'mja', 0, 0, 55, 14, 0, 0, 0, '2008-03-07T19:36:12Z', '2024-11-01T10:15:07Z', 'https://avatars.githubusercontent.com/u/2541?v=4', 'https://api.github.com/users/mja', 'https://github.com/mja', 'https://api.github.com/users/mja/followers', 'https://api.github.com/users/mja/following', 'https://api.github.com/users/mja/gists', 'https://api.github.com/users/mja/starred', 'https://api.github.com/users/mja/repos', 'https://api.github.com/users/mja/events', 'https://api.github.com/users/mja/received_events', 0); +INSERT INTO `developer` VALUES (2543, 'jacques', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacques Marneweck', '@siberia', 'http://www.siberia.co.za/', 'Cape Town, South Africa', 'jacques@siberia.co.za', 'true', 'PHP Developer / DevOps person in the Payments / FinTech / Transportation / Logistic space. Available for $work.', 'jacques', 0, 0, 127, 446, 0, 0, 0, '2008-03-07T19:58:02Z', '2024-10-14T11:19:33Z', 'https://avatars.githubusercontent.com/u/2543?v=4', 'https://api.github.com/users/jacques', 'https://github.com/jacques', 'https://api.github.com/users/jacques/followers', 'https://api.github.com/users/jacques/following', 'https://api.github.com/users/jacques/gists', 'https://api.github.com/users/jacques/starred', 'https://api.github.com/users/jacques/repos', 'https://api.github.com/users/jacques/events', 'https://api.github.com/users/jacques/received_events', 0); +INSERT INTO `developer` VALUES (2544, 'lukec', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Closs', NULL, 'http://luk.ec', 'Vancouver, BC', NULL, NULL, 'Juggler, Hacker, Entrepreneur. Founder of @recollect, Vancouver Hack Space and the Vancouver Juggling Club.', 'lukec', 0, 0, 127, 19, 0, 0, 0, '2008-03-07T21:06:35Z', '2024-10-31T19:42:21Z', 'https://avatars.githubusercontent.com/u/2544?v=4', 'https://api.github.com/users/lukec', 'https://github.com/lukec', 'https://api.github.com/users/lukec/followers', 'https://api.github.com/users/lukec/following', 'https://api.github.com/users/lukec/gists', 'https://api.github.com/users/lukec/starred', 'https://api.github.com/users/lukec/repos', 'https://api.github.com/users/lukec/events', 'https://api.github.com/users/lukec/received_events', 0); +INSERT INTO `developer` VALUES (2545, 'maser', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Luder', '@heyjobs ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 3, 0, 0, 0, '2008-03-07T21:22:56Z', '2024-06-06T13:16:31Z', 'https://avatars.githubusercontent.com/u/2545?v=4', 'https://api.github.com/users/maser', 'https://github.com/maser', 'https://api.github.com/users/maser/followers', 'https://api.github.com/users/maser/following', 'https://api.github.com/users/maser/gists', 'https://api.github.com/users/maser/starred', 'https://api.github.com/users/maser/repos', 'https://api.github.com/users/maser/events', 'https://api.github.com/users/maser/received_events', 0); +INSERT INTO `developer` VALUES (2546, 'skalnik', 'C', 3.5871765119193975, 0, 0, 0, 0, 0, 0, 'Mike Skalnik', 'GitHub', 'https://skalnik.com', 'San Francisco, CA', 'mike@skalnik.com', NULL, 'Everybody cat planet tonight', NULL, 0, 0, 494, 8, 0, 0, 0, '2008-03-07T21:40:04Z', '2024-10-01T21:06:23Z', 'https://avatars.githubusercontent.com/u/2546?v=4', 'https://api.github.com/users/skalnik', 'https://github.com/skalnik', 'https://api.github.com/users/skalnik/followers', 'https://api.github.com/users/skalnik/following', 'https://api.github.com/users/skalnik/gists', 'https://api.github.com/users/skalnik/starred', 'https://api.github.com/users/skalnik/repos', 'https://api.github.com/users/skalnik/events', 'https://api.github.com/users/skalnik/received_events', 0); +INSERT INTO `developer` VALUES (2547, 'BlueBassist', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Curtis', NULL, '', 'Phoenix, AZ', 'ryan@bassist.blue', 'true', NULL, NULL, 0, 0, 12, 7, 0, 0, 0, '2008-03-07T21:44:39Z', '2024-10-10T16:47:14Z', 'https://avatars.githubusercontent.com/u/2547?v=4', 'https://api.github.com/users/BlueBassist', 'https://github.com/BlueBassist', 'https://api.github.com/users/BlueBassist/followers', 'https://api.github.com/users/BlueBassist/following', 'https://api.github.com/users/BlueBassist/gists', 'https://api.github.com/users/BlueBassist/starred', 'https://api.github.com/users/BlueBassist/repos', 'https://api.github.com/users/BlueBassist/events', 'https://api.github.com/users/BlueBassist/received_events', 0); +INSERT INTO `developer` VALUES (2548, 'galaxycats', 'C', 0, 0, 0, 0, 0, 0, 0, 'Galaxy Cats', NULL, 'http://galaxycats.com', 'Cologne / Germany', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-07T22:06:10Z', '2019-06-05T02:43:27Z', 'https://avatars.githubusercontent.com/u/2548?v=4', 'https://api.github.com/users/galaxycats', 'https://github.com/galaxycats', 'https://api.github.com/users/galaxycats/followers', 'https://api.github.com/users/galaxycats/following', 'https://api.github.com/users/galaxycats/gists', 'https://api.github.com/users/galaxycats/starred', 'https://api.github.com/users/galaxycats/repos', 'https://api.github.com/users/galaxycats/events', 'https://api.github.com/users/galaxycats/received_events', 0); +INSERT INTO `developer` VALUES (2549, 'jbritten', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Britten', 'Prefinery', 'https://www.justinbritten.com/', '未知', NULL, NULL, 'Solopreneur since 2010 running Prefinery, pre-launch waiting list software for your upcoming product release.\r\n \r\n', 'jbritten', 0, 0, 29, 1, 0, 0, 0, '2008-03-07T22:18:52Z', '2024-11-01T10:09:04Z', 'https://avatars.githubusercontent.com/u/2549?v=4', 'https://api.github.com/users/jbritten', 'https://github.com/jbritten', 'https://api.github.com/users/jbritten/followers', 'https://api.github.com/users/jbritten/following', 'https://api.github.com/users/jbritten/gists', 'https://api.github.com/users/jbritten/starred', 'https://api.github.com/users/jbritten/repos', 'https://api.github.com/users/jbritten/events', 'https://api.github.com/users/jbritten/received_events', 0); +INSERT INTO `developer` VALUES (2550, 'nolan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nolan Meyers', NULL, '', 'New York, NY', 'nolanm@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-07T22:21:14Z', '2024-10-21T17:10:03Z', 'https://avatars.githubusercontent.com/u/2550?v=4', 'https://api.github.com/users/nolan', 'https://github.com/nolan', 'https://api.github.com/users/nolan/followers', 'https://api.github.com/users/nolan/following', 'https://api.github.com/users/nolan/gists', 'https://api.github.com/users/nolan/starred', 'https://api.github.com/users/nolan/repos', 'https://api.github.com/users/nolan/events', 'https://api.github.com/users/nolan/received_events', 0); +INSERT INTO `developer` VALUES (2551, 'suls', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathias Sulser', NULL, 'http://suls.org', '未知', NULL, NULL, NULL, NULL, 0, 0, 24, 15, 0, 0, 0, '2008-03-07T22:32:31Z', '2024-09-04T11:37:06Z', 'https://avatars.githubusercontent.com/u/2551?v=4', 'https://api.github.com/users/suls', 'https://github.com/suls', 'https://api.github.com/users/suls/followers', 'https://api.github.com/users/suls/following', 'https://api.github.com/users/suls/gists', 'https://api.github.com/users/suls/starred', 'https://api.github.com/users/suls/repos', 'https://api.github.com/users/suls/events', 'https://api.github.com/users/suls/received_events', 0); +INSERT INTO `developer` VALUES (2553, 'HiroProt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin May', NULL, 'http://martinmay.net', 'Denver, CO', NULL, 'true', NULL, 'hiroprot', 0, 0, 51, 33, 0, 0, 0, '2008-03-07T23:03:07Z', '2024-11-04T04:21:42Z', 'https://avatars.githubusercontent.com/u/2553?v=4', 'https://api.github.com/users/HiroProt', 'https://github.com/HiroProt', 'https://api.github.com/users/HiroProt/followers', 'https://api.github.com/users/HiroProt/following', 'https://api.github.com/users/HiroProt/gists', 'https://api.github.com/users/HiroProt/starred', 'https://api.github.com/users/HiroProt/repos', 'https://api.github.com/users/HiroProt/events', 'https://api.github.com/users/HiroProt/received_events', 0); +INSERT INTO `developer` VALUES (2554, 'thepler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Todd Hepler', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 6, 0, 0, 0, '2008-03-07T23:12:16Z', '2023-11-20T16:34:54Z', 'https://avatars.githubusercontent.com/u/2554?v=4', 'https://api.github.com/users/thepler', 'https://github.com/thepler', 'https://api.github.com/users/thepler/followers', 'https://api.github.com/users/thepler/following', 'https://api.github.com/users/thepler/gists', 'https://api.github.com/users/thepler/starred', 'https://api.github.com/users/thepler/repos', 'https://api.github.com/users/thepler/events', 'https://api.github.com/users/thepler/received_events', 0); +INSERT INTO `developer` VALUES (2555, 'mig', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Swasey', 'LivingSocial', '', 'Washington DC', 'matt.swasey@gmail.com', NULL, NULL, NULL, 0, 0, 50, 6, 0, 0, 0, '2008-03-07T23:18:16Z', '2024-02-14T19:43:27Z', 'https://avatars.githubusercontent.com/u/2555?v=4', 'https://api.github.com/users/mig', 'https://github.com/mig', 'https://api.github.com/users/mig/followers', 'https://api.github.com/users/mig/following', 'https://api.github.com/users/mig/gists', 'https://api.github.com/users/mig/starred', 'https://api.github.com/users/mig/repos', 'https://api.github.com/users/mig/events', 'https://api.github.com/users/mig/received_events', 0); +INSERT INTO `developer` VALUES (2556, 'digant', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-07T23:19:31Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2556?v=4', 'https://api.github.com/users/digant', 'https://github.com/digant', 'https://api.github.com/users/digant/followers', 'https://api.github.com/users/digant/following', 'https://api.github.com/users/digant/gists', 'https://api.github.com/users/digant/starred', 'https://api.github.com/users/digant/repos', 'https://api.github.com/users/digant/events', 'https://api.github.com/users/digant/received_events', 0); +INSERT INTO `developer` VALUES (2557, 'wotsrovert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trevor Stow', 'Goldbely', '', '未知', 'trevor@goldbely.com', NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-03-07T23:20:49Z', '2024-10-12T17:21:13Z', 'https://avatars.githubusercontent.com/u/2557?v=4', 'https://api.github.com/users/wotsrovert', 'https://github.com/wotsrovert', 'https://api.github.com/users/wotsrovert/followers', 'https://api.github.com/users/wotsrovert/following', 'https://api.github.com/users/wotsrovert/gists', 'https://api.github.com/users/wotsrovert/starred', 'https://api.github.com/users/wotsrovert/repos', 'https://api.github.com/users/wotsrovert/events', 'https://api.github.com/users/wotsrovert/received_events', 0); +INSERT INTO `developer` VALUES (2558, 'nis', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 3, 0, 0, 0, '2008-03-07T23:51:19Z', '2024-10-10T09:44:27Z', 'https://avatars.githubusercontent.com/u/2558?v=4', 'https://api.github.com/users/nis', 'https://github.com/nis', 'https://api.github.com/users/nis/followers', 'https://api.github.com/users/nis/following', 'https://api.github.com/users/nis/gists', 'https://api.github.com/users/nis/starred', 'https://api.github.com/users/nis/repos', 'https://api.github.com/users/nis/events', 'https://api.github.com/users/nis/received_events', 0); +INSERT INTO `developer` VALUES (2559, 'jipumarino', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Pumarino Rodríguez', 'Scribd', 'http://pumarino.org', 'Alameda, CA', 'jipumarino@gmail.com', NULL, NULL, NULL, 0, 0, 25, 2, 0, 0, 0, '2008-03-08T00:04:15Z', '2024-03-24T06:17:07Z', 'https://avatars.githubusercontent.com/u/2559?v=4', 'https://api.github.com/users/jipumarino', 'https://github.com/jipumarino', 'https://api.github.com/users/jipumarino/followers', 'https://api.github.com/users/jipumarino/following', 'https://api.github.com/users/jipumarino/gists', 'https://api.github.com/users/jipumarino/starred', 'https://api.github.com/users/jipumarino/repos', 'https://api.github.com/users/jipumarino/events', 'https://api.github.com/users/jipumarino/received_events', 0); +INSERT INTO `developer` VALUES (2560, 'bjeanes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bo Jeanes', '@HiveTechLabs', 'http://bjeanes.com', 'Bendigo, VIC, Australia', 'me@bjeanes.com', NULL, 'Previously @covidence, @heroku, @groupon, @obtiva, @mocra', NULL, 0, 0, 277, 162, 0, 0, 0, '2008-03-08T00:20:14Z', '2024-09-06T06:32:29Z', 'https://avatars.githubusercontent.com/u/2560?v=4', 'https://api.github.com/users/bjeanes', 'https://github.com/bjeanes', 'https://api.github.com/users/bjeanes/followers', 'https://api.github.com/users/bjeanes/following', 'https://api.github.com/users/bjeanes/gists', 'https://api.github.com/users/bjeanes/starred', 'https://api.github.com/users/bjeanes/repos', 'https://api.github.com/users/bjeanes/events', 'https://api.github.com/users/bjeanes/received_events', 0); +INSERT INTO `developer` VALUES (2561, 'netarc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Hollenbeck', 'Citrusbyte', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 22, 0, 0, 0, 0, '2008-03-08T00:24:46Z', '2024-10-24T19:06:00Z', 'https://avatars.githubusercontent.com/u/2561?v=4', 'https://api.github.com/users/netarc', 'https://github.com/netarc', 'https://api.github.com/users/netarc/followers', 'https://api.github.com/users/netarc/following', 'https://api.github.com/users/netarc/gists', 'https://api.github.com/users/netarc/starred', 'https://api.github.com/users/netarc/repos', 'https://api.github.com/users/netarc/events', 'https://api.github.com/users/netarc/received_events', 0); +INSERT INTO `developer` VALUES (2562, 'carmi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Evan Carmi', NULL, 'https://evancarmi.com', '未知', NULL, NULL, NULL, 'ehc', 0, 0, 0, 0, 0, 0, 0, '2008-03-08T00:36:50Z', '2024-10-10T22:35:59Z', 'https://avatars.githubusercontent.com/u/2562?v=4', 'https://api.github.com/users/carmi', 'https://github.com/carmi', 'https://api.github.com/users/carmi/followers', 'https://api.github.com/users/carmi/following', 'https://api.github.com/users/carmi/gists', 'https://api.github.com/users/carmi/starred', 'https://api.github.com/users/carmi/repos', 'https://api.github.com/users/carmi/events', 'https://api.github.com/users/carmi/received_events', 0); +INSERT INTO `developer` VALUES (2563, 'dwilson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Wilson', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-08T00:57:45Z', '2021-03-29T02:13:30Z', 'https://avatars.githubusercontent.com/u/2563?v=4', 'https://api.github.com/users/dwilson', 'https://github.com/dwilson', 'https://api.github.com/users/dwilson/followers', 'https://api.github.com/users/dwilson/following', 'https://api.github.com/users/dwilson/gists', 'https://api.github.com/users/dwilson/starred', 'https://api.github.com/users/dwilson/repos', 'https://api.github.com/users/dwilson/events', 'https://api.github.com/users/dwilson/received_events', 0); +INSERT INTO `developer` VALUES (2564, 'crimond', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-08T01:10:46Z', '2022-04-30T18:59:24Z', 'https://avatars.githubusercontent.com/u/2564?v=4', 'https://api.github.com/users/crimond', 'https://github.com/crimond', 'https://api.github.com/users/crimond/followers', 'https://api.github.com/users/crimond/following', 'https://api.github.com/users/crimond/gists', 'https://api.github.com/users/crimond/starred', 'https://api.github.com/users/crimond/repos', 'https://api.github.com/users/crimond/events', 'https://api.github.com/users/crimond/received_events', 0); +INSERT INTO `developer` VALUES (2565, 'mguymon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Guymon', NULL, 'https://keybase.io/mguymon', 'Providence, RI', NULL, NULL, NULL, NULL, 0, 0, 30, 12, 0, 0, 0, '2008-03-08T01:27:41Z', '2024-10-17T02:12:25Z', 'https://avatars.githubusercontent.com/u/2565?v=4', 'https://api.github.com/users/mguymon', 'https://github.com/mguymon', 'https://api.github.com/users/mguymon/followers', 'https://api.github.com/users/mguymon/following', 'https://api.github.com/users/mguymon/gists', 'https://api.github.com/users/mguymon/starred', 'https://api.github.com/users/mguymon/repos', 'https://api.github.com/users/mguymon/events', 'https://api.github.com/users/mguymon/received_events', 0); +INSERT INTO `developer` VALUES (2566, 'riaondemand', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-08T01:55:43Z', '2019-12-22T05:18:45Z', 'https://avatars.githubusercontent.com/u/2566?v=4', 'https://api.github.com/users/riaondemand', 'https://github.com/riaondemand', 'https://api.github.com/users/riaondemand/followers', 'https://api.github.com/users/riaondemand/following', 'https://api.github.com/users/riaondemand/gists', 'https://api.github.com/users/riaondemand/starred', 'https://api.github.com/users/riaondemand/repos', 'https://api.github.com/users/riaondemand/events', 'https://api.github.com/users/riaondemand/received_events', 0); +INSERT INTO `developer` VALUES (2567, 'tmm1', 'B', 39.51333300510917, 0, 0, 0, 0, 0, 0, 'Aman Karmani', NULL, '', 'California', 'aman@tmm1.net', NULL, 'building Cursor @anysphere.\r\n\r\nformerly @github, creator of the merge button.\r\n\r\nfounder @fancybits contributor to golang and ffmpeg.', 'tmm1', 0, 0, 2589, 133, 0, 0, 0, '2008-03-08T02:10:31Z', '2024-10-02T10:49:18Z', 'https://avatars.githubusercontent.com/u/2567?v=4', 'https://api.github.com/users/tmm1', 'https://github.com/tmm1', 'https://api.github.com/users/tmm1/followers', 'https://api.github.com/users/tmm1/following', 'https://api.github.com/users/tmm1/gists', 'https://api.github.com/users/tmm1/starred', 'https://api.github.com/users/tmm1/repos', 'https://api.github.com/users/tmm1/events', 'https://api.github.com/users/tmm1/received_events', 0); +INSERT INTO `developer` VALUES (2568, 'mikewadhera', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Wadhera', NULL, 'http://twitter.com/mikewadhera', 'SF', 'mikewadhera@gmail', NULL, 'skip co-founder', NULL, 0, 0, 14, 5, 0, 0, 0, '2008-03-08T02:22:40Z', '2024-10-09T20:49:13Z', 'https://avatars.githubusercontent.com/u/2568?v=4', 'https://api.github.com/users/mikewadhera', 'https://github.com/mikewadhera', 'https://api.github.com/users/mikewadhera/followers', 'https://api.github.com/users/mikewadhera/following', 'https://api.github.com/users/mikewadhera/gists', 'https://api.github.com/users/mikewadhera/starred', 'https://api.github.com/users/mikewadhera/repos', 'https://api.github.com/users/mikewadhera/events', 'https://api.github.com/users/mikewadhera/received_events', 0); +INSERT INTO `developer` VALUES (2569, 'aaronmgriffin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Griffin', NULL, '', '未知', 'aaronmgriffin@gmail.com', NULL, 'See https://phrakture.github.io', NULL, 0, 0, 85, 0, 0, 0, 0, '2008-03-08T02:28:30Z', '2023-08-14T02:32:59Z', 'https://avatars.githubusercontent.com/u/2569?v=4', 'https://api.github.com/users/aaronmgriffin', 'https://github.com/aaronmgriffin', 'https://api.github.com/users/aaronmgriffin/followers', 'https://api.github.com/users/aaronmgriffin/following', 'https://api.github.com/users/aaronmgriffin/gists', 'https://api.github.com/users/aaronmgriffin/starred', 'https://api.github.com/users/aaronmgriffin/repos', 'https://api.github.com/users/aaronmgriffin/events', 'https://api.github.com/users/aaronmgriffin/received_events', 0); +INSERT INTO `developer` VALUES (2570, 'pina', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-08T02:29:15Z', '2024-03-14T14:14:26Z', 'https://avatars.githubusercontent.com/u/2570?v=4', 'https://api.github.com/users/pina', 'https://github.com/pina', 'https://api.github.com/users/pina/followers', 'https://api.github.com/users/pina/following', 'https://api.github.com/users/pina/gists', 'https://api.github.com/users/pina/starred', 'https://api.github.com/users/pina/repos', 'https://api.github.com/users/pina/events', 'https://api.github.com/users/pina/received_events', 0); +INSERT INTO `developer` VALUES (2571, 'aiwilliams', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Williams', NULL, '', 'Cary, NC', NULL, NULL, NULL, NULL, 0, 0, 76, 23, 0, 0, 0, '2008-03-08T02:37:39Z', '2024-09-29T19:26:36Z', 'https://avatars.githubusercontent.com/u/2571?v=4', 'https://api.github.com/users/aiwilliams', 'https://github.com/aiwilliams', 'https://api.github.com/users/aiwilliams/followers', 'https://api.github.com/users/aiwilliams/following', 'https://api.github.com/users/aiwilliams/gists', 'https://api.github.com/users/aiwilliams/starred', 'https://api.github.com/users/aiwilliams/repos', 'https://api.github.com/users/aiwilliams/events', 'https://api.github.com/users/aiwilliams/received_events', 0); +INSERT INTO `developer` VALUES (2572, 'jgehtland', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Gehtland', 'Nubank', 'http://nubank.com.br', 'Chapel Hill, NC', 'justin@thinkrelevance.com', NULL, NULL, NULL, 0, 0, 32, 0, 0, 0, 0, '2008-03-08T03:07:23Z', '2024-10-04T14:14:24Z', 'https://avatars.githubusercontent.com/u/2572?v=4', 'https://api.github.com/users/jgehtland', 'https://github.com/jgehtland', 'https://api.github.com/users/jgehtland/followers', 'https://api.github.com/users/jgehtland/following', 'https://api.github.com/users/jgehtland/gists', 'https://api.github.com/users/jgehtland/starred', 'https://api.github.com/users/jgehtland/repos', 'https://api.github.com/users/jgehtland/events', 'https://api.github.com/users/jgehtland/received_events', 0); +INSERT INTO `developer` VALUES (2573, 'mackstann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Welch', NULL, 'http://incise.org', 'Portland, OR', 'mackstann@gmail.com', NULL, 'Software engineer at Boulder Care. My git repos are an archive of random projects and experiments going back to 2001.', NULL, 0, 0, 104, 0, 0, 0, 0, '2008-03-08T04:45:33Z', '2024-11-04T19:54:22Z', 'https://avatars.githubusercontent.com/u/2573?v=4', 'https://api.github.com/users/mackstann', 'https://github.com/mackstann', 'https://api.github.com/users/mackstann/followers', 'https://api.github.com/users/mackstann/following', 'https://api.github.com/users/mackstann/gists', 'https://api.github.com/users/mackstann/starred', 'https://api.github.com/users/mackstann/repos', 'https://api.github.com/users/mackstann/events', 'https://api.github.com/users/mackstann/received_events', 0); +INSERT INTO `developer` VALUES (2574, 'danielkozan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Kozan', NULL, '', '未知', 'dan@quiz.md', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-08T04:52:51Z', '2020-05-09T00:30:11Z', 'https://avatars.githubusercontent.com/u/2574?v=4', 'https://api.github.com/users/danielkozan', 'https://github.com/danielkozan', 'https://api.github.com/users/danielkozan/followers', 'https://api.github.com/users/danielkozan/following', 'https://api.github.com/users/danielkozan/gists', 'https://api.github.com/users/danielkozan/starred', 'https://api.github.com/users/danielkozan/repos', 'https://api.github.com/users/danielkozan/events', 'https://api.github.com/users/danielkozan/received_events', 0); +INSERT INTO `developer` VALUES (2575, 'NaterGator', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nate Weibley', NULL, '', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 20, 2, 0, 0, 0, '2008-03-08T05:19:44Z', '2024-10-23T16:17:18Z', 'https://avatars.githubusercontent.com/u/2575?v=4', 'https://api.github.com/users/NaterGator', 'https://github.com/NaterGator', 'https://api.github.com/users/NaterGator/followers', 'https://api.github.com/users/NaterGator/following', 'https://api.github.com/users/NaterGator/gists', 'https://api.github.com/users/NaterGator/starred', 'https://api.github.com/users/NaterGator/repos', 'https://api.github.com/users/NaterGator/events', 'https://api.github.com/users/NaterGator/received_events', 0); +INSERT INTO `developer` VALUES (2576, 'tricon', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Aaron Fendley', 'Elemental Imaging', 'triconium.com', 'Champaign, IL', NULL, 'true', NULL, NULL, 0, 0, 29, 11, 0, 0, 0, '2008-03-08T05:19:52Z', '2024-09-27T13:04:13Z', 'https://avatars.githubusercontent.com/u/2576?v=4', 'https://api.github.com/users/tricon', 'https://github.com/tricon', 'https://api.github.com/users/tricon/followers', 'https://api.github.com/users/tricon/following', 'https://api.github.com/users/tricon/gists', 'https://api.github.com/users/tricon/starred', 'https://api.github.com/users/tricon/repos', 'https://api.github.com/users/tricon/events', 'https://api.github.com/users/tricon/received_events', 0); +INSERT INTO `developer` VALUES (2577, 'nickm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Marfleet', 'Square Circle Triangle', '', 'Melbourne, Australia', 'nick@sct.com.au', NULL, NULL, NULL, 0, 0, 14, 11, 0, 0, 0, '2008-03-08T05:29:05Z', '2024-06-07T01:41:53Z', 'https://avatars.githubusercontent.com/u/2577?v=4', 'https://api.github.com/users/nickm', 'https://github.com/nickm', 'https://api.github.com/users/nickm/followers', 'https://api.github.com/users/nickm/following', 'https://api.github.com/users/nickm/gists', 'https://api.github.com/users/nickm/starred', 'https://api.github.com/users/nickm/repos', 'https://api.github.com/users/nickm/events', 'https://api.github.com/users/nickm/received_events', 0); +INSERT INTO `developer` VALUES (2578, 'martinstannard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Stannard', NULL, '', 'Sydney', NULL, NULL, NULL, NULL, 0, 0, 60, 45, 0, 0, 0, '2008-03-08T05:45:45Z', '2024-09-19T01:33:48Z', 'https://avatars.githubusercontent.com/u/2578?v=4', 'https://api.github.com/users/martinstannard', 'https://github.com/martinstannard', 'https://api.github.com/users/martinstannard/followers', 'https://api.github.com/users/martinstannard/following', 'https://api.github.com/users/martinstannard/gists', 'https://api.github.com/users/martinstannard/starred', 'https://api.github.com/users/martinstannard/repos', 'https://api.github.com/users/martinstannard/events', 'https://api.github.com/users/martinstannard/received_events', 0); +INSERT INTO `developer` VALUES (2579, 'randypuro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Randy Puro', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-08T05:53:44Z', '2023-01-01T01:27:57Z', 'https://avatars.githubusercontent.com/u/2579?v=4', 'https://api.github.com/users/randypuro', 'https://github.com/randypuro', 'https://api.github.com/users/randypuro/followers', 'https://api.github.com/users/randypuro/following', 'https://api.github.com/users/randypuro/gists', 'https://api.github.com/users/randypuro/starred', 'https://api.github.com/users/randypuro/repos', 'https://api.github.com/users/randypuro/events', 'https://api.github.com/users/randypuro/received_events', 0); +INSERT INTO `developer` VALUES (2580, 'hughevans', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hugh Evans', NULL, 'http://hughevans.net', 'Australia', NULL, NULL, NULL, NULL, 0, 0, 43, 16, 0, 0, 0, '2008-03-08T08:43:46Z', '2024-10-31T21:29:56Z', 'https://avatars.githubusercontent.com/u/2580?v=4', 'https://api.github.com/users/hughevans', 'https://github.com/hughevans', 'https://api.github.com/users/hughevans/followers', 'https://api.github.com/users/hughevans/following', 'https://api.github.com/users/hughevans/gists', 'https://api.github.com/users/hughevans/starred', 'https://api.github.com/users/hughevans/repos', 'https://api.github.com/users/hughevans/events', 'https://api.github.com/users/hughevans/received_events', 0); +INSERT INTO `developer` VALUES (2581, 'lhl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leonard', '@AUGMXNT', 'http://randomfoo.net/', 'Tokyo', NULL, NULL, 'Independent technologist', NULL, 0, 0, 216, 73, 0, 0, 0, '2008-03-08T09:29:25Z', '2024-10-16T21:44:23Z', 'https://avatars.githubusercontent.com/u/2581?v=4', 'https://api.github.com/users/lhl', 'https://github.com/lhl', 'https://api.github.com/users/lhl/followers', 'https://api.github.com/users/lhl/following', 'https://api.github.com/users/lhl/gists', 'https://api.github.com/users/lhl/starred', 'https://api.github.com/users/lhl/repos', 'https://api.github.com/users/lhl/events', 'https://api.github.com/users/lhl/received_events', 0); +INSERT INTO `developer` VALUES (2583, 'ctagg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Taggart', NULL, 'http://pushrod.wordpress.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-08T11:01:43Z', '2017-08-14T19:40:19Z', 'https://avatars.githubusercontent.com/u/2583?v=4', 'https://api.github.com/users/ctagg', 'https://github.com/ctagg', 'https://api.github.com/users/ctagg/followers', 'https://api.github.com/users/ctagg/following', 'https://api.github.com/users/ctagg/gists', 'https://api.github.com/users/ctagg/starred', 'https://api.github.com/users/ctagg/repos', 'https://api.github.com/users/ctagg/events', 'https://api.github.com/users/ctagg/received_events', 0); +INSERT INTO `developer` VALUES (2584, 'morgs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Morgan Collett', NULL, 'https://morgancollett.com', 'Johannesburg, South Africa', 'morgan@morgancollett.com', NULL, NULL, NULL, 0, 0, 27, 0, 0, 0, 0, '2008-03-08T11:40:52Z', '2024-10-16T07:15:05Z', 'https://avatars.githubusercontent.com/u/2584?v=4', 'https://api.github.com/users/morgs', 'https://github.com/morgs', 'https://api.github.com/users/morgs/followers', 'https://api.github.com/users/morgs/following', 'https://api.github.com/users/morgs/gists', 'https://api.github.com/users/morgs/starred', 'https://api.github.com/users/morgs/repos', 'https://api.github.com/users/morgs/events', 'https://api.github.com/users/morgs/received_events', 0); +INSERT INTO `developer` VALUES (2585, 'laurio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lauri Oherd', 'Wunderdog Oy', '', 'Espoo, Finland', 'lauri.oherd@gmail.com', NULL, NULL, NULL, 0, 0, 41, 29, 0, 0, 0, '2008-03-08T11:49:34Z', '2024-11-03T10:19:04Z', 'https://avatars.githubusercontent.com/u/2585?v=4', 'https://api.github.com/users/laurio', 'https://github.com/laurio', 'https://api.github.com/users/laurio/followers', 'https://api.github.com/users/laurio/following', 'https://api.github.com/users/laurio/gists', 'https://api.github.com/users/laurio/starred', 'https://api.github.com/users/laurio/repos', 'https://api.github.com/users/laurio/events', 'https://api.github.com/users/laurio/received_events', 0); +INSERT INTO `developer` VALUES (2586, 'aidid', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-08T11:52:14Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2586?v=4', 'https://api.github.com/users/aidid', 'https://github.com/aidid', 'https://api.github.com/users/aidid/followers', 'https://api.github.com/users/aidid/following', 'https://api.github.com/users/aidid/gists', 'https://api.github.com/users/aidid/starred', 'https://api.github.com/users/aidid/repos', 'https://api.github.com/users/aidid/events', 'https://api.github.com/users/aidid/received_events', 0); +INSERT INTO `developer` VALUES (2587, 'johnfuller', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Fuller', NULL, '', 'Dumaguete, Philippines', 'johnfulleralt@gmail.com', NULL, NULL, NULL, 0, 0, 18, 3, 0, 0, 0, '2008-03-08T12:10:55Z', '2024-11-03T01:15:25Z', 'https://avatars.githubusercontent.com/u/2587?v=4', 'https://api.github.com/users/johnfuller', 'https://github.com/johnfuller', 'https://api.github.com/users/johnfuller/followers', 'https://api.github.com/users/johnfuller/following', 'https://api.github.com/users/johnfuller/gists', 'https://api.github.com/users/johnfuller/starred', 'https://api.github.com/users/johnfuller/repos', 'https://api.github.com/users/johnfuller/events', 'https://api.github.com/users/johnfuller/received_events', 0); +INSERT INTO `developer` VALUES (2588, 'scvalex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexandru Scvorțov', NULL, 'https://scvalex.net/', 'Edinburgh, UK', 'github@abstractbinary.org', NULL, 'https://gitlab.com/scvalex', 'scvalex', 0, 0, 48, 23, 0, 0, 0, '2008-03-08T13:03:43Z', '2024-11-03T13:00:15Z', 'https://avatars.githubusercontent.com/u/2588?v=4', 'https://api.github.com/users/scvalex', 'https://github.com/scvalex', 'https://api.github.com/users/scvalex/followers', 'https://api.github.com/users/scvalex/following', 'https://api.github.com/users/scvalex/gists', 'https://api.github.com/users/scvalex/starred', 'https://api.github.com/users/scvalex/repos', 'https://api.github.com/users/scvalex/events', 'https://api.github.com/users/scvalex/received_events', 0); +INSERT INTO `developer` VALUES (2590, 'stuarthalloway', 'C+', 16.379974957704395, 0, 0, 0, 0, 0, 0, 'Stuart Halloway', 'Cognitect, Inc.', 'https://www.datomic.com', 'Chapel Hill, NC', NULL, NULL, NULL, NULL, 0, 0, 1240, 1, 0, 0, 0, '2008-03-08T14:11:20Z', '2024-10-25T19:55:48Z', 'https://avatars.githubusercontent.com/u/2590?v=4', 'https://api.github.com/users/stuarthalloway', 'https://github.com/stuarthalloway', 'https://api.github.com/users/stuarthalloway/followers', 'https://api.github.com/users/stuarthalloway/following', 'https://api.github.com/users/stuarthalloway/gists', 'https://api.github.com/users/stuarthalloway/starred', 'https://api.github.com/users/stuarthalloway/repos', 'https://api.github.com/users/stuarthalloway/events', 'https://api.github.com/users/stuarthalloway/received_events', 0); +INSERT INTO `developer` VALUES (2591, 'lsc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lowe Schmidt', '@imperva', 'http://www.loweschmidt.se', 'Stockholm, Sweden', 'github@loweschmidt.se', NULL, 'Wannabe Backend Engineer, Infrastructure and Platform Engineering with over 20 years of Linux experience. \r\nI like modal text editors, hoppy beer and tattoos.', 'loweschmidt', 0, 0, 38, 55, 0, 0, 0, '2008-03-08T14:52:19Z', '2024-10-30T06:49:32Z', 'https://avatars.githubusercontent.com/u/2591?v=4', 'https://api.github.com/users/lsc', 'https://github.com/lsc', 'https://api.github.com/users/lsc/followers', 'https://api.github.com/users/lsc/following', 'https://api.github.com/users/lsc/gists', 'https://api.github.com/users/lsc/starred', 'https://api.github.com/users/lsc/repos', 'https://api.github.com/users/lsc/events', 'https://api.github.com/users/lsc/received_events', 0); +INSERT INTO `developer` VALUES (2592, 'tmenick', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-08T18:14:03Z', '2024-08-30T04:47:48Z', 'https://avatars.githubusercontent.com/u/2592?v=4', 'https://api.github.com/users/tmenick', 'https://github.com/tmenick', 'https://api.github.com/users/tmenick/followers', 'https://api.github.com/users/tmenick/following', 'https://api.github.com/users/tmenick/gists', 'https://api.github.com/users/tmenick/starred', 'https://api.github.com/users/tmenick/repos', 'https://api.github.com/users/tmenick/events', 'https://api.github.com/users/tmenick/received_events', 0); +INSERT INTO `developer` VALUES (2593, 'zodttd', 'C', 0, 0, 0, 0, 0, 0, 0, 'zodttd', 'ZODTTD LLC', 'http://www.zodttd.com', 'ZodLand', 'zodttd@zodttd.com', NULL, NULL, NULL, 0, 0, 224, 3, 0, 0, 0, '2008-03-08T18:28:26Z', '2024-06-16T00:58:19Z', 'https://avatars.githubusercontent.com/u/2593?v=4', 'https://api.github.com/users/zodttd', 'https://github.com/zodttd', 'https://api.github.com/users/zodttd/followers', 'https://api.github.com/users/zodttd/following', 'https://api.github.com/users/zodttd/gists', 'https://api.github.com/users/zodttd/starred', 'https://api.github.com/users/zodttd/repos', 'https://api.github.com/users/zodttd/events', 'https://api.github.com/users/zodttd/received_events', 0); +INSERT INTO `developer` VALUES (2594, 'dscoleman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Coleman', NULL, 'dscoleman.com', 'Tulsa, OK', 'd.s.coleman@gmail.com', 'true', 'Software engineer recently relocated from Edinburgh, Scotland to Tulsa, Oklahoma, USA.', NULL, 0, 0, 17, 7, 0, 0, 0, '2008-03-08T19:01:37Z', '2024-05-21T17:04:47Z', 'https://avatars.githubusercontent.com/u/2594?v=4', 'https://api.github.com/users/dscoleman', 'https://github.com/dscoleman', 'https://api.github.com/users/dscoleman/followers', 'https://api.github.com/users/dscoleman/following', 'https://api.github.com/users/dscoleman/gists', 'https://api.github.com/users/dscoleman/starred', 'https://api.github.com/users/dscoleman/repos', 'https://api.github.com/users/dscoleman/events', 'https://api.github.com/users/dscoleman/received_events', 0); +INSERT INTO `developer` VALUES (2595, 'standout', 'C', 0, 0, 0, 0, 0, 0, 0, 'Standout AB', NULL, 'https://standout.se/', 'Sweden', 'kontakt@standout.se', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-08T19:07:29Z', '2024-09-15T07:13:33Z', 'https://avatars.githubusercontent.com/u/2595?v=4', 'https://api.github.com/users/standout', 'https://github.com/standout', 'https://api.github.com/users/standout/followers', 'https://api.github.com/users/standout/following', 'https://api.github.com/users/standout/gists', 'https://api.github.com/users/standout/starred', 'https://api.github.com/users/standout/repos', 'https://api.github.com/users/standout/events', 'https://api.github.com/users/standout/received_events', 0); +INSERT INTO `developer` VALUES (2596, 'dmcnally', 'C', 0, 0, 0, 0, 0, 0, 0, 'David McNally', NULL, '', 'Rotherham', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-08T19:17:14Z', '2024-02-27T12:44:23Z', 'https://avatars.githubusercontent.com/u/2596?v=4', 'https://api.github.com/users/dmcnally', 'https://github.com/dmcnally', 'https://api.github.com/users/dmcnally/followers', 'https://api.github.com/users/dmcnally/following', 'https://api.github.com/users/dmcnally/gists', 'https://api.github.com/users/dmcnally/starred', 'https://api.github.com/users/dmcnally/repos', 'https://api.github.com/users/dmcnally/events', 'https://api.github.com/users/dmcnally/received_events', 0); +INSERT INTO `developer` VALUES (2597, 'mediogre', 'C', 0, 0, 0, 0, 203, 35, 0, 'Ed Sinjiashvili', NULL, '', 'Balakovo, Russia', 'ed.sinjiashvili@gmail.com', 'true', NULL, NULL, 0, 0, 18, 69, 0, 0, 0, '2008-03-08T19:24:50Z', '2024-10-13T05:43:24Z', 'https://avatars.githubusercontent.com/u/2597?v=4', 'https://api.github.com/users/mediogre', 'https://github.com/mediogre', 'https://api.github.com/users/mediogre/followers', 'https://api.github.com/users/mediogre/following', 'https://api.github.com/users/mediogre/gists', 'https://api.github.com/users/mediogre/starred', 'https://api.github.com/users/mediogre/repos', 'https://api.github.com/users/mediogre/events', 'https://api.github.com/users/mediogre/received_events', 0); +INSERT INTO `developer` VALUES (2598, 'nakula', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nakul Aggarwal', NULL, 'http://www.browserstack.com', 'India', NULL, NULL, NULL, NULL, 0, 0, 18, 1, 0, 0, 0, '2008-03-08T21:20:05Z', '2024-09-24T05:46:20Z', 'https://avatars.githubusercontent.com/u/2598?v=4', 'https://api.github.com/users/nakula', 'https://github.com/nakula', 'https://api.github.com/users/nakula/followers', 'https://api.github.com/users/nakula/following', 'https://api.github.com/users/nakula/gists', 'https://api.github.com/users/nakula/starred', 'https://api.github.com/users/nakula/repos', 'https://api.github.com/users/nakula/events', 'https://api.github.com/users/nakula/received_events', 0); +INSERT INTO `developer` VALUES (2599, 'mieg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michaël van Eeden', 'MIEG', 'http://www.mieg.nl/', 'Amsterdam, The Netherlands', NULL, NULL, NULL, NULL, 0, 0, 3, 4, 0, 0, 0, '2008-03-08T21:26:48Z', '2023-11-20T09:18:37Z', 'https://avatars.githubusercontent.com/u/2599?v=4', 'https://api.github.com/users/mieg', 'https://github.com/mieg', 'https://api.github.com/users/mieg/followers', 'https://api.github.com/users/mieg/following', 'https://api.github.com/users/mieg/gists', 'https://api.github.com/users/mieg/starred', 'https://api.github.com/users/mieg/repos', 'https://api.github.com/users/mieg/events', 'https://api.github.com/users/mieg/received_events', 0); +INSERT INTO `developer` VALUES (2600, 'mrubens', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Rubens', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 11, 0, 0, 0, '2008-03-08T21:32:24Z', '2024-10-31T16:12:31Z', 'https://avatars.githubusercontent.com/u/2600?v=4', 'https://api.github.com/users/mrubens', 'https://github.com/mrubens', 'https://api.github.com/users/mrubens/followers', 'https://api.github.com/users/mrubens/following', 'https://api.github.com/users/mrubens/gists', 'https://api.github.com/users/mrubens/starred', 'https://api.github.com/users/mrubens/repos', 'https://api.github.com/users/mrubens/events', 'https://api.github.com/users/mrubens/received_events', 0); +INSERT INTO `developer` VALUES (2601, 'nickmc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-03-08T22:02:54Z', '2024-10-26T06:58:23Z', 'https://avatars.githubusercontent.com/u/2601?v=4', 'https://api.github.com/users/nickmc', 'https://github.com/nickmc', 'https://api.github.com/users/nickmc/followers', 'https://api.github.com/users/nickmc/following', 'https://api.github.com/users/nickmc/gists', 'https://api.github.com/users/nickmc/starred', 'https://api.github.com/users/nickmc/repos', 'https://api.github.com/users/nickmc/events', 'https://api.github.com/users/nickmc/received_events', 0); +INSERT INTO `developer` VALUES (2602, 'gholker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Graham Holker', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-03-08T22:14:29Z', '2024-06-06T22:02:31Z', 'https://avatars.githubusercontent.com/u/2602?v=4', 'https://api.github.com/users/gholker', 'https://github.com/gholker', 'https://api.github.com/users/gholker/followers', 'https://api.github.com/users/gholker/following', 'https://api.github.com/users/gholker/gists', 'https://api.github.com/users/gholker/starred', 'https://api.github.com/users/gholker/repos', 'https://api.github.com/users/gholker/events', 'https://api.github.com/users/gholker/received_events', 0); +INSERT INTO `developer` VALUES (2603, 'sstephenson', 'B+', 59.59425388984675, 0, 0, 0, 0, 0, 0, 'Sam Stephenson', NULL, 'https://sls.name', 'Chicago', 'sam@sls.name', NULL, NULL, NULL, 0, 0, 3760, 0, 0, 0, 0, '2008-03-08T22:17:24Z', '2024-09-28T16:33:20Z', 'https://avatars.githubusercontent.com/u/2603?v=4', 'https://api.github.com/users/sstephenson', 'https://github.com/sstephenson', 'https://api.github.com/users/sstephenson/followers', 'https://api.github.com/users/sstephenson/following', 'https://api.github.com/users/sstephenson/gists', 'https://api.github.com/users/sstephenson/starred', 'https://api.github.com/users/sstephenson/repos', 'https://api.github.com/users/sstephenson/events', 'https://api.github.com/users/sstephenson/received_events', 0); +INSERT INTO `developer` VALUES (2604, 'ricktessner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rick Tessner', 'Muddyboots', '', 'Calgary, AB', NULL, NULL, NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2008-03-08T23:20:53Z', '2024-06-07T20:57:54Z', 'https://avatars.githubusercontent.com/u/2604?v=4', 'https://api.github.com/users/ricktessner', 'https://github.com/ricktessner', 'https://api.github.com/users/ricktessner/followers', 'https://api.github.com/users/ricktessner/following', 'https://api.github.com/users/ricktessner/gists', 'https://api.github.com/users/ricktessner/starred', 'https://api.github.com/users/ricktessner/repos', 'https://api.github.com/users/ricktessner/events', 'https://api.github.com/users/ricktessner/received_events', 0); +INSERT INTO `developer` VALUES (2605, 'alistair', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alistair Bush', NULL, '', 'Auckland, New Zealand', NULL, NULL, NULL, NULL, 0, 0, 24, 14, 0, 0, 0, '2008-03-08T23:48:18Z', '2024-10-13T04:32:24Z', 'https://avatars.githubusercontent.com/u/2605?v=4', 'https://api.github.com/users/alistair', 'https://github.com/alistair', 'https://api.github.com/users/alistair/followers', 'https://api.github.com/users/alistair/following', 'https://api.github.com/users/alistair/gists', 'https://api.github.com/users/alistair/starred', 'https://api.github.com/users/alistair/repos', 'https://api.github.com/users/alistair/events', 'https://api.github.com/users/alistair/received_events', 0); +INSERT INTO `developer` VALUES (2606, 'lynnwallenstein', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lynn Wallenstein', 'CargoSense', 'www.lynn.io', 'Las Vegas, NV', 'lynnwallenstein@gmail.com', NULL, 'I do engineering leadership stuff at CargoSense .. caffeine junkie, electro music fan and web standards advocate.', 'lynnwallenstein', 0, 0, 258, 63, 0, 0, 0, '2008-03-09T00:06:28Z', '2024-09-29T22:42:52Z', 'https://avatars.githubusercontent.com/u/2606?v=4', 'https://api.github.com/users/lynnwallenstein', 'https://github.com/lynnwallenstein', 'https://api.github.com/users/lynnwallenstein/followers', 'https://api.github.com/users/lynnwallenstein/following', 'https://api.github.com/users/lynnwallenstein/gists', 'https://api.github.com/users/lynnwallenstein/starred', 'https://api.github.com/users/lynnwallenstein/repos', 'https://api.github.com/users/lynnwallenstein/events', 'https://api.github.com/users/lynnwallenstein/received_events', 0); +INSERT INTO `developer` VALUES (2607, 'gstark', 'C', 0, 0, 0, 0, 240, 2, 0, 'Gavin Stark', '@suncoast-devs ', 'http://gstark.com', 'Saint Petersburg, FL', 'gavin@gstark.com', 'true', 'Instructor and CTO at the Suncoast Developers guild', NULL, 0, 0, 162, 6, 0, 0, 0, '2008-03-09T00:14:09Z', '2024-08-21T19:49:49Z', 'https://avatars.githubusercontent.com/u/2607?v=4', 'https://api.github.com/users/gstark', 'https://github.com/gstark', 'https://api.github.com/users/gstark/followers', 'https://api.github.com/users/gstark/following', 'https://api.github.com/users/gstark/gists', 'https://api.github.com/users/gstark/starred', 'https://api.github.com/users/gstark/repos', 'https://api.github.com/users/gstark/events', 'https://api.github.com/users/gstark/received_events', 0); +INSERT INTO `developer` VALUES (2608, 'mzarra', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcus S. Zarra', NULL, 'www.cimgf.com', 'NorCal', NULL, NULL, NULL, NULL, 0, 0, 282, 5, 0, 0, 0, '2008-03-09T00:23:09Z', '2024-09-03T17:29:48Z', 'https://avatars.githubusercontent.com/u/2608?v=4', 'https://api.github.com/users/mzarra', 'https://github.com/mzarra', 'https://api.github.com/users/mzarra/followers', 'https://api.github.com/users/mzarra/following', 'https://api.github.com/users/mzarra/gists', 'https://api.github.com/users/mzarra/starred', 'https://api.github.com/users/mzarra/repos', 'https://api.github.com/users/mzarra/events', 'https://api.github.com/users/mzarra/received_events', 0); +INSERT INTO `developer` VALUES (2609, 'mchung', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Chung', 'Handshake', 'http://twitter.com/heisenthought', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 137, 50, 0, 0, 0, '2008-03-09T00:53:59Z', '2024-09-24T03:55:40Z', 'https://avatars.githubusercontent.com/u/2609?v=4', 'https://api.github.com/users/mchung', 'https://github.com/mchung', 'https://api.github.com/users/mchung/followers', 'https://api.github.com/users/mchung/following', 'https://api.github.com/users/mchung/gists', 'https://api.github.com/users/mchung/starred', 'https://api.github.com/users/mchung/repos', 'https://api.github.com/users/mchung/events', 'https://api.github.com/users/mchung/received_events', 0); +INSERT INTO `developer` VALUES (2610, 'noonat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Ostgard', 'Embrace', 'http://nathanostgard.com', 'Portland, OR', NULL, NULL, NULL, NULL, 0, 0, 79, 52, 0, 0, 0, '2008-03-09T01:06:05Z', '2024-10-21T15:35:28Z', 'https://avatars.githubusercontent.com/u/2610?v=4', 'https://api.github.com/users/noonat', 'https://github.com/noonat', 'https://api.github.com/users/noonat/followers', 'https://api.github.com/users/noonat/following', 'https://api.github.com/users/noonat/gists', 'https://api.github.com/users/noonat/starred', 'https://api.github.com/users/noonat/repos', 'https://api.github.com/users/noonat/events', 'https://api.github.com/users/noonat/received_events', 0); +INSERT INTO `developer` VALUES (2611, 'mralex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Roberts', NULL, '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 34, 18, 0, 0, 0, '2008-03-09T01:37:21Z', '2024-02-05T02:01:55Z', 'https://avatars.githubusercontent.com/u/2611?v=4', 'https://api.github.com/users/mralex', 'https://github.com/mralex', 'https://api.github.com/users/mralex/followers', 'https://api.github.com/users/mralex/following', 'https://api.github.com/users/mralex/gists', 'https://api.github.com/users/mralex/starred', 'https://api.github.com/users/mralex/repos', 'https://api.github.com/users/mralex/events', 'https://api.github.com/users/mralex/received_events', 0); +INSERT INTO `developer` VALUES (2612, 'mwest', 'C', 0, 0, 0, 0, 0, 1, 0, 'Mike West', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-03-09T01:38:29Z', '2024-08-22T02:26:40Z', 'https://avatars.githubusercontent.com/u/2612?v=4', 'https://api.github.com/users/mwest', 'https://github.com/mwest', 'https://api.github.com/users/mwest/followers', 'https://api.github.com/users/mwest/following', 'https://api.github.com/users/mwest/gists', 'https://api.github.com/users/mwest/starred', 'https://api.github.com/users/mwest/repos', 'https://api.github.com/users/mwest/events', 'https://api.github.com/users/mwest/received_events', 0); +INSERT INTO `developer` VALUES (2613, 'jeffdavis', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-09T01:41:35Z', '2023-04-17T03:26:12Z', 'https://avatars.githubusercontent.com/u/2613?v=4', 'https://api.github.com/users/jeffdavis', 'https://github.com/jeffdavis', 'https://api.github.com/users/jeffdavis/followers', 'https://api.github.com/users/jeffdavis/following', 'https://api.github.com/users/jeffdavis/gists', 'https://api.github.com/users/jeffdavis/starred', 'https://api.github.com/users/jeffdavis/repos', 'https://api.github.com/users/jeffdavis/events', 'https://api.github.com/users/jeffdavis/received_events', 0); +INSERT INTO `developer` VALUES (2614, 'strongcoffee', 'C', 0, 0, 0, 0, 0, 0, 0, 'duana saskia', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-09T01:50:20Z', '2015-01-04T11:05:17Z', 'https://avatars.githubusercontent.com/u/2614?v=4', 'https://api.github.com/users/strongcoffee', 'https://github.com/strongcoffee', 'https://api.github.com/users/strongcoffee/followers', 'https://api.github.com/users/strongcoffee/following', 'https://api.github.com/users/strongcoffee/gists', 'https://api.github.com/users/strongcoffee/starred', 'https://api.github.com/users/strongcoffee/repos', 'https://api.github.com/users/strongcoffee/events', 'https://api.github.com/users/strongcoffee/received_events', 0); +INSERT INTO `developer` VALUES (2615, 'linuxyz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Y1 Zhao', 'N/A', 'http://linuxyz.blogspot.com', 'Beijing, China', NULL, 'true', 'KISS - Keep It Simple and Stupid', 'linuxyz', 0, 0, 109, 40, 0, 0, 0, '2008-03-09T02:30:06Z', '2024-10-23T05:13:06Z', 'https://avatars.githubusercontent.com/u/2615?v=4', 'https://api.github.com/users/linuxyz', 'https://github.com/linuxyz', 'https://api.github.com/users/linuxyz/followers', 'https://api.github.com/users/linuxyz/following', 'https://api.github.com/users/linuxyz/gists', 'https://api.github.com/users/linuxyz/starred', 'https://api.github.com/users/linuxyz/repos', 'https://api.github.com/users/linuxyz/events', 'https://api.github.com/users/linuxyz/received_events', 0); +INSERT INTO `developer` VALUES (2616, 'rrichards', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Richards', 'R3 Technologies, Inc.', '', 'Oklahoma City, OK', 'ryan@r3hq.com', 'true', 'I have been involved in the tech scene for over 20 years. I love code. I love kubernetes. I love complicated things.', 'rrichards', 0, 0, 67, 79, 0, 0, 0, '2008-03-09T02:46:50Z', '2024-10-21T16:08:38Z', 'https://avatars.githubusercontent.com/u/2616?v=4', 'https://api.github.com/users/rrichards', 'https://github.com/rrichards', 'https://api.github.com/users/rrichards/followers', 'https://api.github.com/users/rrichards/following', 'https://api.github.com/users/rrichards/gists', 'https://api.github.com/users/rrichards/starred', 'https://api.github.com/users/rrichards/repos', 'https://api.github.com/users/rrichards/events', 'https://api.github.com/users/rrichards/received_events', 0); +INSERT INTO `developer` VALUES (2617, 'baron', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 52, 241, 0, 0, 0, '2008-03-09T03:20:54Z', '2023-10-17T06:31:27Z', 'https://avatars.githubusercontent.com/u/2617?v=4', 'https://api.github.com/users/baron', 'https://github.com/baron', 'https://api.github.com/users/baron/followers', 'https://api.github.com/users/baron/following', 'https://api.github.com/users/baron/gists', 'https://api.github.com/users/baron/starred', 'https://api.github.com/users/baron/repos', 'https://api.github.com/users/baron/events', 'https://api.github.com/users/baron/received_events', 0); +INSERT INTO `developer` VALUES (2618, 'Gregg', 'C+', 18.300609576910727, 0, 0, 0, 0, 0, 0, 'Gregg Pollack', NULL, 'https://www.greggpollack.com', 'Orlando, FL', 'greggpollack@gmail.com', NULL, NULL, NULL, 0, 0, 1352, 2, 0, 0, 0, '2008-03-09T03:40:13Z', '2024-07-22T02:22:44Z', 'https://avatars.githubusercontent.com/u/2618?v=4', 'https://api.github.com/users/Gregg', 'https://github.com/Gregg', 'https://api.github.com/users/Gregg/followers', 'https://api.github.com/users/Gregg/following', 'https://api.github.com/users/Gregg/gists', 'https://api.github.com/users/Gregg/starred', 'https://api.github.com/users/Gregg/repos', 'https://api.github.com/users/Gregg/events', 'https://api.github.com/users/Gregg/received_events', 0); +INSERT INTO `developer` VALUES (2619, 'dagbrown', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Brown', NULL, 'http://www.lart.ca/', 'Tokyo', NULL, 'true', 'Sysadmin and programmer with decades of experience.', NULL, 0, 0, 23, 9, 0, 0, 0, '2008-03-09T03:59:16Z', '2024-10-28T22:35:54Z', 'https://avatars.githubusercontent.com/u/2619?v=4', 'https://api.github.com/users/dagbrown', 'https://github.com/dagbrown', 'https://api.github.com/users/dagbrown/followers', 'https://api.github.com/users/dagbrown/following', 'https://api.github.com/users/dagbrown/gists', 'https://api.github.com/users/dagbrown/starred', 'https://api.github.com/users/dagbrown/repos', 'https://api.github.com/users/dagbrown/events', 'https://api.github.com/users/dagbrown/received_events', 0); +INSERT INTO `developer` VALUES (2620, 'emghufran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Muhammad Ghufran', NULL, '', '未知', 'emghufran@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-09T04:38:14Z', '2024-09-27T19:49:39Z', 'https://avatars.githubusercontent.com/u/2620?v=4', 'https://api.github.com/users/emghufran', 'https://github.com/emghufran', 'https://api.github.com/users/emghufran/followers', 'https://api.github.com/users/emghufran/following', 'https://api.github.com/users/emghufran/gists', 'https://api.github.com/users/emghufran/starred', 'https://api.github.com/users/emghufran/repos', 'https://api.github.com/users/emghufran/events', 'https://api.github.com/users/emghufran/received_events', 0); +INSERT INTO `developer` VALUES (2621, 'bradfitz', 'S', 100, 0, 0, 0, 0, 0, 0, 'Brad Fitzpatrick', 'Tailscale', 'https://bradfitz.com/', 'Seattle', 'brad@danga.com', NULL, 'LiveJournal, memcached, OpenID, @golang team (2010-2020).\r\nCurrently making WireGuard & weird network tricks easier and more magical @Tailscale.', NULL, 0, 0, 12115, 41, 0, 0, 0, '2008-03-09T05:08:14Z', '2024-10-26T23:14:39Z', 'https://avatars.githubusercontent.com/u/2621?v=4', 'https://api.github.com/users/bradfitz', 'https://github.com/bradfitz', 'https://api.github.com/users/bradfitz/followers', 'https://api.github.com/users/bradfitz/following', 'https://api.github.com/users/bradfitz/gists', 'https://api.github.com/users/bradfitz/starred', 'https://api.github.com/users/bradfitz/repos', 'https://api.github.com/users/bradfitz/events', 'https://api.github.com/users/bradfitz/received_events', 0); +INSERT INTO `developer` VALUES (2622, 'dittos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Taeho Kim', NULL, 'sapzil.org', 'Korea', 'dittos@gmail.com', NULL, NULL, NULL, 0, 0, 233, 72, 0, 0, 0, '2008-03-09T05:21:37Z', '2024-10-19T11:23:57Z', 'https://avatars.githubusercontent.com/u/2622?v=4', 'https://api.github.com/users/dittos', 'https://github.com/dittos', 'https://api.github.com/users/dittos/followers', 'https://api.github.com/users/dittos/following', 'https://api.github.com/users/dittos/gists', 'https://api.github.com/users/dittos/starred', 'https://api.github.com/users/dittos/repos', 'https://api.github.com/users/dittos/events', 'https://api.github.com/users/dittos/received_events', 0); +INSERT INTO `developer` VALUES (2623, 'copumpkin', 'C', 5.88507864561268, 0, 0, 0, 0, 0, 0, 'Daniel Peebles', NULL, 'http://twitter.com/copumpkin', 'Washington', NULL, NULL, NULL, NULL, 0, 0, 628, 141, 0, 0, 0, '2008-03-09T05:24:54Z', '2024-09-04T20:54:21Z', 'https://avatars.githubusercontent.com/u/2623?v=4', 'https://api.github.com/users/copumpkin', 'https://github.com/copumpkin', 'https://api.github.com/users/copumpkin/followers', 'https://api.github.com/users/copumpkin/following', 'https://api.github.com/users/copumpkin/gists', 'https://api.github.com/users/copumpkin/starred', 'https://api.github.com/users/copumpkin/repos', 'https://api.github.com/users/copumpkin/events', 'https://api.github.com/users/copumpkin/received_events', 0); +INSERT INTO `developer` VALUES (2624, 'bhauman', 'C', 10.446585866227705, 0, 0, 0, 0, 0, 0, 'Bruce Hauman', NULL, 'http://rigsomelight.com', '未知', NULL, NULL, NULL, 'bhauman', 0, 0, 894, 6, 0, 0, 0, '2008-03-09T05:41:38Z', '2024-06-10T17:49:23Z', 'https://avatars.githubusercontent.com/u/2624?v=4', 'https://api.github.com/users/bhauman', 'https://github.com/bhauman', 'https://api.github.com/users/bhauman/followers', 'https://api.github.com/users/bhauman/following', 'https://api.github.com/users/bhauman/gists', 'https://api.github.com/users/bhauman/starred', 'https://api.github.com/users/bhauman/repos', 'https://api.github.com/users/bhauman/events', 'https://api.github.com/users/bhauman/received_events', 0); +INSERT INTO `developer` VALUES (2625, 'momerath42', 'C', 0, 0, 0, 0, 0, 0, 0, 'M. Quinn Warnock', NULL, '', 'Milwaukee', NULL, NULL, NULL, NULL, 0, 0, 24, 16, 0, 0, 0, '2008-03-09T06:55:25Z', '2024-05-09T22:14:14Z', 'https://avatars.githubusercontent.com/u/2625?v=4', 'https://api.github.com/users/momerath42', 'https://github.com/momerath42', 'https://api.github.com/users/momerath42/followers', 'https://api.github.com/users/momerath42/following', 'https://api.github.com/users/momerath42/gists', 'https://api.github.com/users/momerath42/starred', 'https://api.github.com/users/momerath42/repos', 'https://api.github.com/users/momerath42/events', 'https://api.github.com/users/momerath42/received_events', 0); +INSERT INTO `developer` VALUES (2626, 'samzurcher', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Zurcher', NULL, '', 'Zurich', NULL, NULL, NULL, NULL, 0, 0, 12, 2, 0, 0, 0, '2008-03-09T08:21:22Z', '2024-10-21T08:58:09Z', 'https://avatars.githubusercontent.com/u/2626?v=4', 'https://api.github.com/users/samzurcher', 'https://github.com/samzurcher', 'https://api.github.com/users/samzurcher/followers', 'https://api.github.com/users/samzurcher/following', 'https://api.github.com/users/samzurcher/gists', 'https://api.github.com/users/samzurcher/starred', 'https://api.github.com/users/samzurcher/repos', 'https://api.github.com/users/samzurcher/events', 'https://api.github.com/users/samzurcher/received_events', 0); +INSERT INTO `developer` VALUES (2627, 'matthiask', 'C', 0.5861849194095129, 0, 0, 0, 0, 0, 0, 'Matthias Kestenholz', '@feinheit', 'https://406.ch', 'Zurich, Switzerland', 'mk@feinheit.ch', NULL, 'Best key: DEL', NULL, 0, 0, 319, 59, 0, 0, 0, '2008-03-09T08:55:40Z', '2024-10-31T13:23:01Z', 'https://avatars.githubusercontent.com/u/2627?v=4', 'https://api.github.com/users/matthiask', 'https://github.com/matthiask', 'https://api.github.com/users/matthiask/followers', 'https://api.github.com/users/matthiask/following', 'https://api.github.com/users/matthiask/gists', 'https://api.github.com/users/matthiask/starred', 'https://api.github.com/users/matthiask/repos', 'https://api.github.com/users/matthiask/events', 'https://api.github.com/users/matthiask/received_events', 0); +INSERT INTO `developer` VALUES (2628, 'mattfoster', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Foster', 'Netcraft', 'http://hackerific.net', 'Bath, UK', NULL, NULL, 'Security Engineering Manager', NULL, 0, 0, 40, 1, 0, 0, 0, '2008-03-09T11:42:16Z', '2024-03-23T12:47:44Z', 'https://avatars.githubusercontent.com/u/2628?v=4', 'https://api.github.com/users/mattfoster', 'https://github.com/mattfoster', 'https://api.github.com/users/mattfoster/followers', 'https://api.github.com/users/mattfoster/following', 'https://api.github.com/users/mattfoster/gists', 'https://api.github.com/users/mattfoster/starred', 'https://api.github.com/users/mattfoster/repos', 'https://api.github.com/users/mattfoster/events', 'https://api.github.com/users/mattfoster/received_events', 0); +INSERT INTO `developer` VALUES (2629, 'jaimeiniesta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jaime Iniesta', 'Freelance', 'https://jaimeiniesta.com', 'Girona, Spain', 'hola@jaimeiniesta.com', 'true', NULL, 'jaimeiniestadev', 0, 0, 220, 163, 0, 0, 0, '2008-03-09T12:08:33Z', '2024-09-04T13:18:02Z', 'https://avatars.githubusercontent.com/u/2629?v=4', 'https://api.github.com/users/jaimeiniesta', 'https://github.com/jaimeiniesta', 'https://api.github.com/users/jaimeiniesta/followers', 'https://api.github.com/users/jaimeiniesta/following', 'https://api.github.com/users/jaimeiniesta/gists', 'https://api.github.com/users/jaimeiniesta/starred', 'https://api.github.com/users/jaimeiniesta/repos', 'https://api.github.com/users/jaimeiniesta/events', 'https://api.github.com/users/jaimeiniesta/received_events', 0); +INSERT INTO `developer` VALUES (2630, 'makoto', 'C', 1.4264625653122809, 0, 0, 0, 0, 0, 0, 'Makoto Inoue', 'Matoken', 'https://medium.com/@makoto_inoue', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 368, 21, 0, 0, 0, '2008-03-09T13:56:15Z', '2024-11-04T20:39:03Z', 'https://avatars.githubusercontent.com/u/2630?v=4', 'https://api.github.com/users/makoto', 'https://github.com/makoto', 'https://api.github.com/users/makoto/followers', 'https://api.github.com/users/makoto/following', 'https://api.github.com/users/makoto/gists', 'https://api.github.com/users/makoto/starred', 'https://api.github.com/users/makoto/repos', 'https://api.github.com/users/makoto/events', 'https://api.github.com/users/makoto/received_events', 0); +INSERT INTO `developer` VALUES (2631, 'tobias', 'C', 0, 0, 0, 0, 0, 0, 0, 'Toby Crawley', '@useshortcut', 'http://tcrawley.org/', 'Asheville, NC', NULL, NULL, 'Laconic. ', NULL, 0, 0, 162, 0, 0, 0, 0, '2008-03-09T14:32:37Z', '2024-10-29T11:17:50Z', 'https://avatars.githubusercontent.com/u/2631?v=4', 'https://api.github.com/users/tobias', 'https://github.com/tobias', 'https://api.github.com/users/tobias/followers', 'https://api.github.com/users/tobias/following', 'https://api.github.com/users/tobias/gists', 'https://api.github.com/users/tobias/starred', 'https://api.github.com/users/tobias/repos', 'https://api.github.com/users/tobias/events', 'https://api.github.com/users/tobias/received_events', 0); +INSERT INTO `developer` VALUES (2632, 'tek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Torsten Schmits', '@tweag', '', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 85, 2, 0, 0, 0, '2008-03-09T14:49:09Z', '2024-10-28T11:18:33Z', 'https://avatars.githubusercontent.com/u/2632?v=4', 'https://api.github.com/users/tek', 'https://github.com/tek', 'https://api.github.com/users/tek/followers', 'https://api.github.com/users/tek/following', 'https://api.github.com/users/tek/gists', 'https://api.github.com/users/tek/starred', 'https://api.github.com/users/tek/repos', 'https://api.github.com/users/tek/events', 'https://api.github.com/users/tek/received_events', 0); +INSERT INTO `developer` VALUES (2633, 'FunkeeMonk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Goh', NULL, 'http://twitter.com/FunkeeMonk', 'Singapore', 'xorandor@gmail.com', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-09T15:00:48Z', '2018-03-14T11:25:17Z', 'https://avatars.githubusercontent.com/u/2633?v=4', 'https://api.github.com/users/FunkeeMonk', 'https://github.com/FunkeeMonk', 'https://api.github.com/users/FunkeeMonk/followers', 'https://api.github.com/users/FunkeeMonk/following', 'https://api.github.com/users/FunkeeMonk/gists', 'https://api.github.com/users/FunkeeMonk/starred', 'https://api.github.com/users/FunkeeMonk/repos', 'https://api.github.com/users/FunkeeMonk/events', 'https://api.github.com/users/FunkeeMonk/received_events', 0); +INSERT INTO `developer` VALUES (2634, 'cdwills', 'C', 0, 0, 0, 0, 0, 0, 0, 'Craig Wills', '@Tagboard ', '', 'Elgin, il', NULL, NULL, NULL, 'cdwills', 0, 0, 23, 9, 0, 0, 0, '2008-03-09T15:11:13Z', '2024-10-18T16:43:43Z', 'https://avatars.githubusercontent.com/u/2634?v=4', 'https://api.github.com/users/cdwills', 'https://github.com/cdwills', 'https://api.github.com/users/cdwills/followers', 'https://api.github.com/users/cdwills/following', 'https://api.github.com/users/cdwills/gists', 'https://api.github.com/users/cdwills/starred', 'https://api.github.com/users/cdwills/repos', 'https://api.github.com/users/cdwills/events', 'https://api.github.com/users/cdwills/received_events', 0); +INSERT INTO `developer` VALUES (2635, 'momalley', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-09T15:21:06Z', '2024-10-30T13:39:46Z', 'https://avatars.githubusercontent.com/u/2635?v=4', 'https://api.github.com/users/momalley', 'https://github.com/momalley', 'https://api.github.com/users/momalley/followers', 'https://api.github.com/users/momalley/following', 'https://api.github.com/users/momalley/gists', 'https://api.github.com/users/momalley/starred', 'https://api.github.com/users/momalley/repos', 'https://api.github.com/users/momalley/events', 'https://api.github.com/users/momalley/received_events', 0); +INSERT INTO `developer` VALUES (2636, 'jfalcon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Falcon', 'Cozy Bytes LLC', 'cozybytes.com', 'Round Rock, TX', NULL, NULL, 'I\'ve been involved with software and web development, in one form or another, since 1994.', NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-09T15:33:55Z', '2024-08-17T23:43:45Z', 'https://avatars.githubusercontent.com/u/2636?v=4', 'https://api.github.com/users/jfalcon', 'https://github.com/jfalcon', 'https://api.github.com/users/jfalcon/followers', 'https://api.github.com/users/jfalcon/following', 'https://api.github.com/users/jfalcon/gists', 'https://api.github.com/users/jfalcon/starred', 'https://api.github.com/users/jfalcon/repos', 'https://api.github.com/users/jfalcon/events', 'https://api.github.com/users/jfalcon/received_events', 0); +INSERT INTO `developer` VALUES (2637, 'themattharris', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Harris', 'ion Consulting LLC', 'themattharris.com', 'Pittsburgh', NULL, NULL, NULL, NULL, 0, 0, 200, 36, 0, 0, 0, '2008-03-09T15:59:51Z', '2024-10-04T12:18:33Z', 'https://avatars.githubusercontent.com/u/2637?v=4', 'https://api.github.com/users/themattharris', 'https://github.com/themattharris', 'https://api.github.com/users/themattharris/followers', 'https://api.github.com/users/themattharris/following', 'https://api.github.com/users/themattharris/gists', 'https://api.github.com/users/themattharris/starred', 'https://api.github.com/users/themattharris/repos', 'https://api.github.com/users/themattharris/events', 'https://api.github.com/users/themattharris/received_events', 0); +INSERT INTO `developer` VALUES (2638, 'hlopez', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-09T16:29:54Z', '2024-10-23T11:17:48Z', 'https://avatars.githubusercontent.com/u/2638?v=4', 'https://api.github.com/users/hlopez', 'https://github.com/hlopez', 'https://api.github.com/users/hlopez/followers', 'https://api.github.com/users/hlopez/following', 'https://api.github.com/users/hlopez/gists', 'https://api.github.com/users/hlopez/starred', 'https://api.github.com/users/hlopez/repos', 'https://api.github.com/users/hlopez/events', 'https://api.github.com/users/hlopez/received_events', 0); +INSERT INTO `developer` VALUES (2640, 'jonstep', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-09T19:30:35Z', '2024-10-15T09:08:12Z', 'https://avatars.githubusercontent.com/u/2640?v=4', 'https://api.github.com/users/jonstep', 'https://github.com/jonstep', 'https://api.github.com/users/jonstep/followers', 'https://api.github.com/users/jonstep/following', 'https://api.github.com/users/jonstep/gists', 'https://api.github.com/users/jonstep/starred', 'https://api.github.com/users/jonstep/repos', 'https://api.github.com/users/jonstep/events', 'https://api.github.com/users/jonstep/received_events', 0); +INSERT INTO `developer` VALUES (2641, 'hurrycane', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bogdan Gaza', 'Moonsense, Inc', 'https://www.moonsense.io', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 69, 24, 0, 0, 0, '2008-03-09T19:31:14Z', '2024-10-14T20:36:14Z', 'https://avatars.githubusercontent.com/u/2641?v=4', 'https://api.github.com/users/hurrycane', 'https://github.com/hurrycane', 'https://api.github.com/users/hurrycane/followers', 'https://api.github.com/users/hurrycane/following', 'https://api.github.com/users/hurrycane/gists', 'https://api.github.com/users/hurrycane/starred', 'https://api.github.com/users/hurrycane/repos', 'https://api.github.com/users/hurrycane/events', 'https://api.github.com/users/hurrycane/received_events', 0); +INSERT INTO `developer` VALUES (2642, 'samsouder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Souder', NULL, 'http://samsouder.com/', 'KY', 'github@samsouder.com', NULL, NULL, NULL, 0, 0, 32, 32, 0, 0, 0, '2008-03-09T19:32:52Z', '2024-10-31T18:18:32Z', 'https://avatars.githubusercontent.com/u/2642?v=4', 'https://api.github.com/users/samsouder', 'https://github.com/samsouder', 'https://api.github.com/users/samsouder/followers', 'https://api.github.com/users/samsouder/following', 'https://api.github.com/users/samsouder/gists', 'https://api.github.com/users/samsouder/starred', 'https://api.github.com/users/samsouder/repos', 'https://api.github.com/users/samsouder/events', 'https://api.github.com/users/samsouder/received_events', 0); +INSERT INTO `developer` VALUES (2643, 'neil', 'C', 0, 0, 0, 0, 0, 0, 0, 'Neil Mac', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-09T19:50:04Z', '2023-01-12T15:49:22Z', 'https://avatars.githubusercontent.com/u/2643?v=4', 'https://api.github.com/users/neil', 'https://github.com/neil', 'https://api.github.com/users/neil/followers', 'https://api.github.com/users/neil/following', 'https://api.github.com/users/neil/gists', 'https://api.github.com/users/neil/starred', 'https://api.github.com/users/neil/repos', 'https://api.github.com/users/neil/events', 'https://api.github.com/users/neil/received_events', 0); +INSERT INTO `developer` VALUES (2644, 'jd', 'C+', 15.625439928730481, 0, 0, 0, 0, 0, 0, 'Julien Danjou', '@Mergifyio', 'https://julien.danjou.info/', 'Toulouse, France', 'julien@danjou.info', NULL, 'Open Source Software Engineer 💻,\r\nRunner 🏃🏻‍♂️\r\nFoodie 🍲 \r\nFPS player 🎯', 'juldanjou', 0, 0, 1196, 74, 0, 0, 0, '2008-03-09T19:52:38Z', '2024-11-04T17:22:11Z', 'https://avatars.githubusercontent.com/u/2644?v=4', 'https://api.github.com/users/jd', 'https://github.com/jd', 'https://api.github.com/users/jd/followers', 'https://api.github.com/users/jd/following', 'https://api.github.com/users/jd/gists', 'https://api.github.com/users/jd/starred', 'https://api.github.com/users/jd/repos', 'https://api.github.com/users/jd/events', 'https://api.github.com/users/jd/received_events', 0); +INSERT INTO `developer` VALUES (2645, 'juhazi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juha Suuraho', '@AppGyver @SAP', '', 'Winland', NULL, 'true', NULL, NULL, 0, 0, 21, 7, 0, 0, 0, '2008-03-09T20:05:17Z', '2024-03-22T09:25:49Z', 'https://avatars.githubusercontent.com/u/2645?v=4', 'https://api.github.com/users/juhazi', 'https://github.com/juhazi', 'https://api.github.com/users/juhazi/followers', 'https://api.github.com/users/juhazi/following', 'https://api.github.com/users/juhazi/gists', 'https://api.github.com/users/juhazi/starred', 'https://api.github.com/users/juhazi/repos', 'https://api.github.com/users/juhazi/events', 'https://api.github.com/users/juhazi/received_events', 0); +INSERT INTO `developer` VALUES (2646, 'dshipton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Shipton', 'Make Sail, Inc.', '', 'Des Moines IA', 'dshipton@gmail.com', NULL, NULL, NULL, 0, 0, 13, 2, 0, 0, 0, '2008-03-09T20:20:04Z', '2021-05-07T17:02:11Z', 'https://avatars.githubusercontent.com/u/2646?v=4', 'https://api.github.com/users/dshipton', 'https://github.com/dshipton', 'https://api.github.com/users/dshipton/followers', 'https://api.github.com/users/dshipton/following', 'https://api.github.com/users/dshipton/gists', 'https://api.github.com/users/dshipton/starred', 'https://api.github.com/users/dshipton/repos', 'https://api.github.com/users/dshipton/events', 'https://api.github.com/users/dshipton/received_events', 0); +INSERT INTO `developer` VALUES (2647, 'mkhatib', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mohammad Khatib', '@human-tools ', '', 'Emeryville, CA', 'mkhatib727@gmail.com', NULL, 'Building next-gen Arabic storytelling platform @manshar and carbon publishing tools.\r\n\r\nPreviously a Software Engineer at Google working on @ampproject', 'mkhatib7', 0, 0, 218, 73, 0, 0, 0, '2008-03-09T20:37:17Z', '2024-08-01T19:46:53Z', 'https://avatars.githubusercontent.com/u/2647?v=4', 'https://api.github.com/users/mkhatib', 'https://github.com/mkhatib', 'https://api.github.com/users/mkhatib/followers', 'https://api.github.com/users/mkhatib/following', 'https://api.github.com/users/mkhatib/gists', 'https://api.github.com/users/mkhatib/starred', 'https://api.github.com/users/mkhatib/repos', 'https://api.github.com/users/mkhatib/events', 'https://api.github.com/users/mkhatib/received_events', 0); +INSERT INTO `developer` VALUES (2648, 'jeanlazarou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jean Lazarou', NULL, '', 'Belgium', 'jean.lazarou@gmail.com', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-09T20:48:39Z', '2024-06-13T07:23:28Z', 'https://avatars.githubusercontent.com/u/2648?v=4', 'https://api.github.com/users/jeanlazarou', 'https://github.com/jeanlazarou', 'https://api.github.com/users/jeanlazarou/followers', 'https://api.github.com/users/jeanlazarou/following', 'https://api.github.com/users/jeanlazarou/gists', 'https://api.github.com/users/jeanlazarou/starred', 'https://api.github.com/users/jeanlazarou/repos', 'https://api.github.com/users/jeanlazarou/events', 'https://api.github.com/users/jeanlazarou/received_events', 0); +INSERT INTO `developer` VALUES (2649, 'dougcole', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Cole', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 34, 4, 0, 0, 0, '2008-03-09T20:59:13Z', '2024-11-04T19:11:13Z', 'https://avatars.githubusercontent.com/u/2649?v=4', 'https://api.github.com/users/dougcole', 'https://github.com/dougcole', 'https://api.github.com/users/dougcole/followers', 'https://api.github.com/users/dougcole/following', 'https://api.github.com/users/dougcole/gists', 'https://api.github.com/users/dougcole/starred', 'https://api.github.com/users/dougcole/repos', 'https://api.github.com/users/dougcole/events', 'https://api.github.com/users/dougcole/received_events', 0); +INSERT INTO `developer` VALUES (2650, 'danidoni', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dani Donisa', NULL, '', 'Granollers, Barcelona, Spain', 'dani.doni@gmail.com', NULL, NULL, NULL, 0, 0, 22, 2, 0, 0, 0, '2008-03-09T21:09:22Z', '2024-09-23T17:12:18Z', 'https://avatars.githubusercontent.com/u/2650?v=4', 'https://api.github.com/users/danidoni', 'https://github.com/danidoni', 'https://api.github.com/users/danidoni/followers', 'https://api.github.com/users/danidoni/following', 'https://api.github.com/users/danidoni/gists', 'https://api.github.com/users/danidoni/starred', 'https://api.github.com/users/danidoni/repos', 'https://api.github.com/users/danidoni/events', 'https://api.github.com/users/danidoni/received_events', 0); +INSERT INTO `developer` VALUES (2651, 'bmaland', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bjørn Mæland', 'TV2', 'http://bmaland.com/', 'Norway', 'bjorn.maeland@gmail.com', NULL, NULL, 'bmaland', 0, 0, 56, 38, 0, 0, 0, '2008-03-09T21:12:43Z', '2023-07-24T06:20:42Z', 'https://avatars.githubusercontent.com/u/2651?v=4', 'https://api.github.com/users/bmaland', 'https://github.com/bmaland', 'https://api.github.com/users/bmaland/followers', 'https://api.github.com/users/bmaland/following', 'https://api.github.com/users/bmaland/gists', 'https://api.github.com/users/bmaland/starred', 'https://api.github.com/users/bmaland/repos', 'https://api.github.com/users/bmaland/events', 'https://api.github.com/users/bmaland/received_events', 0); +INSERT INTO `developer` VALUES (2652, 'yfactorial', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Daigle', 'Y|Factorial, LLC', 'http://yfactorial.com/index.php/blog/', 'Cary, NC', 'info@yfactorial.com', NULL, NULL, NULL, 0, 0, 128, 0, 0, 0, 0, '2008-03-09T22:04:18Z', '2020-01-25T23:31:34Z', 'https://avatars.githubusercontent.com/u/2652?v=4', 'https://api.github.com/users/yfactorial', 'https://github.com/yfactorial', 'https://api.github.com/users/yfactorial/followers', 'https://api.github.com/users/yfactorial/following', 'https://api.github.com/users/yfactorial/gists', 'https://api.github.com/users/yfactorial/starred', 'https://api.github.com/users/yfactorial/repos', 'https://api.github.com/users/yfactorial/events', 'https://api.github.com/users/yfactorial/received_events', 0); +INSERT INTO `developer` VALUES (2653, 'tjweir', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tyler Weir', 'http://www.tylerweir.com', 'http://www.tylerweir.com', 'Canada', 'tyler.weir@gmail.com', NULL, NULL, 'tylerweir', 0, 0, 141, 113, 0, 0, 0, '2008-03-09T22:19:50Z', '2024-09-02T13:29:39Z', 'https://avatars.githubusercontent.com/u/2653?v=4', 'https://api.github.com/users/tjweir', 'https://github.com/tjweir', 'https://api.github.com/users/tjweir/followers', 'https://api.github.com/users/tjweir/following', 'https://api.github.com/users/tjweir/gists', 'https://api.github.com/users/tjweir/starred', 'https://api.github.com/users/tjweir/repos', 'https://api.github.com/users/tjweir/events', 'https://api.github.com/users/tjweir/received_events', 0); +INSERT INTO `developer` VALUES (2655, 'walf443', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keiji, Yoshimi', '@pixiv ', 'http://d.hatena.ne.jp/walf443/', 'Tokyo, Japan', 'walf443 at gmail dot com', NULL, NULL, NULL, 0, 0, 227, 334, 0, 0, 0, '2008-03-09T22:42:01Z', '2024-01-27T07:09:57Z', 'https://avatars.githubusercontent.com/u/2655?v=4', 'https://api.github.com/users/walf443', 'https://github.com/walf443', 'https://api.github.com/users/walf443/followers', 'https://api.github.com/users/walf443/following', 'https://api.github.com/users/walf443/gists', 'https://api.github.com/users/walf443/starred', 'https://api.github.com/users/walf443/repos', 'https://api.github.com/users/walf443/events', 'https://api.github.com/users/walf443/received_events', 0); +INSERT INTO `developer` VALUES (2656, 'Tobu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-09T22:45:58Z', '2022-12-24T18:00:46Z', 'https://avatars.githubusercontent.com/u/2656?v=4', 'https://api.github.com/users/Tobu', 'https://github.com/Tobu', 'https://api.github.com/users/Tobu/followers', 'https://api.github.com/users/Tobu/following', 'https://api.github.com/users/Tobu/gists', 'https://api.github.com/users/Tobu/starred', 'https://api.github.com/users/Tobu/repos', 'https://api.github.com/users/Tobu/events', 'https://api.github.com/users/Tobu/received_events', 0); +INSERT INTO `developer` VALUES (2657, 'willduncanphoto', 'C', 0, 0, 0, 0, 0, 0, 0, 'William', NULL, 'https://www.willduncan.com/', 'Bellingham, WA', NULL, NULL, NULL, NULL, 0, 0, 28, 29, 0, 0, 0, '2008-03-09T23:06:18Z', '2024-10-11T01:13:44Z', 'https://avatars.githubusercontent.com/u/2657?v=4', 'https://api.github.com/users/willduncanphoto', 'https://github.com/willduncanphoto', 'https://api.github.com/users/willduncanphoto/followers', 'https://api.github.com/users/willduncanphoto/following', 'https://api.github.com/users/willduncanphoto/gists', 'https://api.github.com/users/willduncanphoto/starred', 'https://api.github.com/users/willduncanphoto/repos', 'https://api.github.com/users/willduncanphoto/events', 'https://api.github.com/users/willduncanphoto/received_events', 0); +INSERT INTO `developer` VALUES (2658, 'BlackNet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ed Street', 'Street-Tek, INC', 'www.edscolors.com', 'Columbus, GA', 'edstreet@street-tek.com', NULL, NULL, NULL, 0, 0, 11, 7, 0, 0, 0, '2008-03-09T23:28:16Z', '2024-10-29T12:30:06Z', 'https://avatars.githubusercontent.com/u/2658?v=4', 'https://api.github.com/users/BlackNet', 'https://github.com/BlackNet', 'https://api.github.com/users/BlackNet/followers', 'https://api.github.com/users/BlackNet/following', 'https://api.github.com/users/BlackNet/gists', 'https://api.github.com/users/BlackNet/starred', 'https://api.github.com/users/BlackNet/repos', 'https://api.github.com/users/BlackNet/events', 'https://api.github.com/users/BlackNet/received_events', 0); +INSERT INTO `developer` VALUES (2659, 'drazed', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 4, 0, 0, 0, '2008-03-09T23:44:23Z', '2021-07-21T06:33:38Z', 'https://avatars.githubusercontent.com/u/2659?v=4', 'https://api.github.com/users/drazed', 'https://github.com/drazed', 'https://api.github.com/users/drazed/followers', 'https://api.github.com/users/drazed/following', 'https://api.github.com/users/drazed/gists', 'https://api.github.com/users/drazed/starred', 'https://api.github.com/users/drazed/repos', 'https://api.github.com/users/drazed/events', 'https://api.github.com/users/drazed/received_events', 0); +INSERT INTO `developer` VALUES (2660, 'russell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Russell Sim', '@zendesk ', 'https://sr.ht/~rsl/', 'Copenhagen, Denmark', 'russell.sim@gmail.com', NULL, NULL, NULL, 0, 0, 74, 34, 0, 0, 0, '2008-03-09T23:44:35Z', '2024-10-20T11:21:02Z', 'https://avatars.githubusercontent.com/u/2660?v=4', 'https://api.github.com/users/russell', 'https://github.com/russell', 'https://api.github.com/users/russell/followers', 'https://api.github.com/users/russell/following', 'https://api.github.com/users/russell/gists', 'https://api.github.com/users/russell/starred', 'https://api.github.com/users/russell/repos', 'https://api.github.com/users/russell/events', 'https://api.github.com/users/russell/received_events', 0); +INSERT INTO `developer` VALUES (2661, 'chendo', 'C', 1.6322448459415302, 0, 0, 0, 0, 0, 0, 'chendo', '@assemblyfour ', 'https://chen.do/', 'Melbourne, Australia', NULL, NULL, 'Product engineer. Performance enthusiast. Creator of Shortcat.app', NULL, 0, 0, 380, 35, 0, 0, 0, '2008-03-09T23:46:01Z', '2024-09-26T01:07:07Z', 'https://avatars.githubusercontent.com/u/2661?v=4', 'https://api.github.com/users/chendo', 'https://github.com/chendo', 'https://api.github.com/users/chendo/followers', 'https://api.github.com/users/chendo/following', 'https://api.github.com/users/chendo/gists', 'https://api.github.com/users/chendo/starred', 'https://api.github.com/users/chendo/repos', 'https://api.github.com/users/chendo/events', 'https://api.github.com/users/chendo/received_events', 0); +INSERT INTO `developer` VALUES (2662, 'slime73', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sasha Szpakowski', NULL, 'https://love2d.org', 'Nova Scotia, Canada', 'slime73@gmail.com', NULL, 'Game engine and graphics programmer. LÖVE developer.', 'slime73', 0, 0, 186, 2, 0, 0, 0, '2008-03-09T23:46:14Z', '2024-01-24T13:06:08Z', 'https://avatars.githubusercontent.com/u/2662?v=4', 'https://api.github.com/users/slime73', 'https://github.com/slime73', 'https://api.github.com/users/slime73/followers', 'https://api.github.com/users/slime73/following', 'https://api.github.com/users/slime73/gists', 'https://api.github.com/users/slime73/starred', 'https://api.github.com/users/slime73/repos', 'https://api.github.com/users/slime73/events', 'https://api.github.com/users/slime73/received_events', 0); +INSERT INTO `developer` VALUES (2663, 'Miharu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-03-09T23:58:39Z', '2019-10-23T08:37:12Z', 'https://avatars.githubusercontent.com/u/2663?v=4', 'https://api.github.com/users/Miharu', 'https://github.com/Miharu', 'https://api.github.com/users/Miharu/followers', 'https://api.github.com/users/Miharu/following', 'https://api.github.com/users/Miharu/gists', 'https://api.github.com/users/Miharu/starred', 'https://api.github.com/users/Miharu/repos', 'https://api.github.com/users/Miharu/events', 'https://api.github.com/users/Miharu/received_events', 0); +INSERT INTO `developer` VALUES (2664, 'batasrki', 'C', 0, 0, 0, 0, 0, 0, 0, 'Srdjan Pejic', 'S-Squared Design & Development', '', 'Toronto, ON', 'spejic@gmail.com', NULL, NULL, NULL, 0, 0, 29, 2, 0, 0, 0, '2008-03-10T00:06:11Z', '2024-09-16T13:56:33Z', 'https://avatars.githubusercontent.com/u/2664?v=4', 'https://api.github.com/users/batasrki', 'https://github.com/batasrki', 'https://api.github.com/users/batasrki/followers', 'https://api.github.com/users/batasrki/following', 'https://api.github.com/users/batasrki/gists', 'https://api.github.com/users/batasrki/starred', 'https://api.github.com/users/batasrki/repos', 'https://api.github.com/users/batasrki/events', 'https://api.github.com/users/batasrki/received_events', 0); +INSERT INTO `developer` VALUES (2665, 'dannyamey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Danny Amey', '@deliveroo ', 'http://dannyamey.com', 'London', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-10T00:23:44Z', '2024-10-24T12:41:51Z', 'https://avatars.githubusercontent.com/u/2665?v=4', 'https://api.github.com/users/dannyamey', 'https://github.com/dannyamey', 'https://api.github.com/users/dannyamey/followers', 'https://api.github.com/users/dannyamey/following', 'https://api.github.com/users/dannyamey/gists', 'https://api.github.com/users/dannyamey/starred', 'https://api.github.com/users/dannyamey/repos', 'https://api.github.com/users/dannyamey/events', 'https://api.github.com/users/dannyamey/received_events', 0); +INSERT INTO `developer` VALUES (2666, 'darrylring', 'C', 0, 0, 0, 0, 0, 0, 0, 'Darryl Ring', 'Redlen Technologies', '', 'Sidney BC', 'darryl@daringlogic.com', NULL, NULL, NULL, 0, 0, 13, 34, 0, 0, 0, '2008-03-10T00:28:48Z', '2024-10-23T21:12:04Z', 'https://avatars.githubusercontent.com/u/2666?v=4', 'https://api.github.com/users/darrylring', 'https://github.com/darrylring', 'https://api.github.com/users/darrylring/followers', 'https://api.github.com/users/darrylring/following', 'https://api.github.com/users/darrylring/gists', 'https://api.github.com/users/darrylring/starred', 'https://api.github.com/users/darrylring/repos', 'https://api.github.com/users/darrylring/events', 'https://api.github.com/users/darrylring/received_events', 0); +INSERT INTO `developer` VALUES (2668, 'sss', 'C', 0, 0, 0, 0, 0, 0, 0, 'SASAKI Suguru', NULL, '', 'Kyoto, Japan', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-10T00:59:34Z', '2024-06-26T02:48:59Z', 'https://avatars.githubusercontent.com/u/2668?v=4', 'https://api.github.com/users/sss', 'https://github.com/sss', 'https://api.github.com/users/sss/followers', 'https://api.github.com/users/sss/following', 'https://api.github.com/users/sss/gists', 'https://api.github.com/users/sss/starred', 'https://api.github.com/users/sss/repos', 'https://api.github.com/users/sss/events', 'https://api.github.com/users/sss/received_events', 0); +INSERT INTO `developer` VALUES (2669, 'gabriel', 'C', 2.5582651087731523, 0, 0, 0, 0, 0, 0, 'Gabriel Handford', '@instacart Previous: @keybase, @yelp', 'https://prettygoodmusic.app', 'Santa Cruz, CA', NULL, 'true', 'I am a meat popsicle.', NULL, 0, 0, 434, 38, 0, 0, 0, '2008-03-10T01:39:38Z', '2024-11-03T20:18:28Z', 'https://avatars.githubusercontent.com/u/2669?v=4', 'https://api.github.com/users/gabriel', 'https://github.com/gabriel', 'https://api.github.com/users/gabriel/followers', 'https://api.github.com/users/gabriel/following', 'https://api.github.com/users/gabriel/gists', 'https://api.github.com/users/gabriel/starred', 'https://api.github.com/users/gabriel/repos', 'https://api.github.com/users/gabriel/events', 'https://api.github.com/users/gabriel/received_events', 0); +INSERT INTO `developer` VALUES (2670, 'huikau', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike McKinney', NULL, 'http://blog.huikau.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-10T01:41:30Z', '2017-05-25T03:41:27Z', 'https://avatars.githubusercontent.com/u/2670?v=4', 'https://api.github.com/users/huikau', 'https://github.com/huikau', 'https://api.github.com/users/huikau/followers', 'https://api.github.com/users/huikau/following', 'https://api.github.com/users/huikau/gists', 'https://api.github.com/users/huikau/starred', 'https://api.github.com/users/huikau/repos', 'https://api.github.com/users/huikau/events', 'https://api.github.com/users/huikau/received_events', 0); +INSERT INTO `developer` VALUES (2671, 'markng', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Ng', NULL, 'http://www.markng.co.uk/', 'Portland, OR', NULL, NULL, NULL, NULL, 0, 0, 80, 87, 0, 0, 0, '2008-03-10T02:29:25Z', '2024-10-12T06:18:52Z', 'https://avatars.githubusercontent.com/u/2671?v=4', 'https://api.github.com/users/markng', 'https://github.com/markng', 'https://api.github.com/users/markng/followers', 'https://api.github.com/users/markng/following', 'https://api.github.com/users/markng/gists', 'https://api.github.com/users/markng/starred', 'https://api.github.com/users/markng/repos', 'https://api.github.com/users/markng/events', 'https://api.github.com/users/markng/received_events', 0); +INSERT INTO `developer` VALUES (2672, 'engtech', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://InternetDuctTape.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-10T02:33:43Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2672?v=4', 'https://api.github.com/users/engtech', 'https://github.com/engtech', 'https://api.github.com/users/engtech/followers', 'https://api.github.com/users/engtech/following', 'https://api.github.com/users/engtech/gists', 'https://api.github.com/users/engtech/starred', 'https://api.github.com/users/engtech/repos', 'https://api.github.com/users/engtech/events', 'https://api.github.com/users/engtech/received_events', 0); +INSERT INTO `developer` VALUES (2673, 'jonysk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jony Kostetzer', NULL, 'https://jonysk.net', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 26, 0, 0, 0, 0, '2008-03-10T02:40:47Z', '2024-07-18T15:22:44Z', 'https://avatars.githubusercontent.com/u/2673?v=4', 'https://api.github.com/users/jonysk', 'https://github.com/jonysk', 'https://api.github.com/users/jonysk/followers', 'https://api.github.com/users/jonysk/following', 'https://api.github.com/users/jonysk/gists', 'https://api.github.com/users/jonysk/starred', 'https://api.github.com/users/jonysk/repos', 'https://api.github.com/users/jonysk/events', 'https://api.github.com/users/jonysk/received_events', 0); +INSERT INTO `developer` VALUES (2674, 'oc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ole Christian Rynning', 'UPPERCASE', '', 'Oslo, Norway', 'oc@rynning.no', NULL, NULL, NULL, 0, 0, 89, 40, 0, 0, 0, '2008-03-10T03:25:13Z', '2024-10-22T09:56:06Z', 'https://avatars.githubusercontent.com/u/2674?v=4', 'https://api.github.com/users/oc', 'https://github.com/oc', 'https://api.github.com/users/oc/followers', 'https://api.github.com/users/oc/following', 'https://api.github.com/users/oc/gists', 'https://api.github.com/users/oc/starred', 'https://api.github.com/users/oc/repos', 'https://api.github.com/users/oc/events', 'https://api.github.com/users/oc/received_events', 0); +INSERT INTO `developer` VALUES (2675, 'wudoo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcio Wu Dirickson', 'DIVX LLC', '', 'San Diego, CA', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-10T04:28:04Z', '2024-10-24T21:20:49Z', 'https://avatars.githubusercontent.com/u/2675?v=4', 'https://api.github.com/users/wudoo', 'https://github.com/wudoo', 'https://api.github.com/users/wudoo/followers', 'https://api.github.com/users/wudoo/following', 'https://api.github.com/users/wudoo/gists', 'https://api.github.com/users/wudoo/starred', 'https://api.github.com/users/wudoo/repos', 'https://api.github.com/users/wudoo/events', 'https://api.github.com/users/wudoo/received_events', 0); +INSERT INTO `developer` VALUES (2676, 'lduncan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Layton Duncan', 'Sense Medical Ltd', 'http://www.laytonduncan.com', 'Sydney, Australia', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-10T04:29:30Z', '2024-10-12T23:48:07Z', 'https://avatars.githubusercontent.com/u/2676?v=4', 'https://api.github.com/users/lduncan', 'https://github.com/lduncan', 'https://api.github.com/users/lduncan/followers', 'https://api.github.com/users/lduncan/following', 'https://api.github.com/users/lduncan/gists', 'https://api.github.com/users/lduncan/starred', 'https://api.github.com/users/lduncan/repos', 'https://api.github.com/users/lduncan/events', 'https://api.github.com/users/lduncan/received_events', 0); +INSERT INTO `developer` VALUES (2677, 'paulreimer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Reimer', 'Research in Progress', 'https://www.p-rimes.net', 'Vancouver, British Columbia', NULL, NULL, NULL, NULL, 0, 0, 55, 0, 0, 0, 0, '2008-03-10T04:35:24Z', '2024-09-29T15:37:14Z', 'https://avatars.githubusercontent.com/u/2677?v=4', 'https://api.github.com/users/paulreimer', 'https://github.com/paulreimer', 'https://api.github.com/users/paulreimer/followers', 'https://api.github.com/users/paulreimer/following', 'https://api.github.com/users/paulreimer/gists', 'https://api.github.com/users/paulreimer/starred', 'https://api.github.com/users/paulreimer/repos', 'https://api.github.com/users/paulreimer/events', 'https://api.github.com/users/paulreimer/received_events', 0); +INSERT INTO `developer` VALUES (2678, 'twleung', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ted Leung', NULL, 'http://www.sauria.com/blog', 'Bainbridge Island, WA', NULL, NULL, NULL, 'twleung', 0, 0, 70, 13, 0, 0, 0, '2008-03-10T05:54:02Z', '2024-10-18T01:22:12Z', 'https://avatars.githubusercontent.com/u/2678?v=4', 'https://api.github.com/users/twleung', 'https://github.com/twleung', 'https://api.github.com/users/twleung/followers', 'https://api.github.com/users/twleung/following', 'https://api.github.com/users/twleung/gists', 'https://api.github.com/users/twleung/starred', 'https://api.github.com/users/twleung/repos', 'https://api.github.com/users/twleung/events', 'https://api.github.com/users/twleung/received_events', 0); +INSERT INTO `developer` VALUES (2679, 'temas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Muldowney', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 51, 5, 0, 0, 0, '2008-03-10T07:19:44Z', '2024-09-20T02:46:48Z', 'https://avatars.githubusercontent.com/u/2679?v=4', 'https://api.github.com/users/temas', 'https://github.com/temas', 'https://api.github.com/users/temas/followers', 'https://api.github.com/users/temas/following', 'https://api.github.com/users/temas/gists', 'https://api.github.com/users/temas/starred', 'https://api.github.com/users/temas/repos', 'https://api.github.com/users/temas/events', 'https://api.github.com/users/temas/received_events', 0); +INSERT INTO `developer` VALUES (2680, 'davejohnson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Johnson', NULL, '', 'Vancouver', NULL, NULL, 'Previously @phonegap and @adobe. Now? ¯\\_(ツ)_/¯ ', NULL, 0, 0, 198, 33, 0, 0, 0, '2008-03-10T08:00:10Z', '2024-09-06T19:47:43Z', 'https://avatars.githubusercontent.com/u/2680?v=4', 'https://api.github.com/users/davejohnson', 'https://github.com/davejohnson', 'https://api.github.com/users/davejohnson/followers', 'https://api.github.com/users/davejohnson/following', 'https://api.github.com/users/davejohnson/gists', 'https://api.github.com/users/davejohnson/starred', 'https://api.github.com/users/davejohnson/repos', 'https://api.github.com/users/davejohnson/events', 'https://api.github.com/users/davejohnson/received_events', 0); +INSERT INTO `developer` VALUES (2682, 'janne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Andersson', '@Spotify', '', 'Stockholm, Sweden', NULL, NULL, NULL, NULL, 0, 0, 35, 4, 0, 0, 0, '2008-03-10T09:37:33Z', '2024-10-03T19:20:12Z', 'https://avatars.githubusercontent.com/u/2682?v=4', 'https://api.github.com/users/janne', 'https://github.com/janne', 'https://api.github.com/users/janne/followers', 'https://api.github.com/users/janne/following', 'https://api.github.com/users/janne/gists', 'https://api.github.com/users/janne/starred', 'https://api.github.com/users/janne/repos', 'https://api.github.com/users/janne/events', 'https://api.github.com/users/janne/received_events', 0); +INSERT INTO `developer` VALUES (2683, 'unfo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Wikholm', NULL, 'https://localhost.exposed/', 'Helsinki', 'jw@jw.fi', NULL, 'securing the world. sciencing the data. learning the machine.', NULL, 0, 0, 119, 6, 0, 0, 0, '2008-03-10T10:22:34Z', '2024-10-05T08:22:11Z', 'https://avatars.githubusercontent.com/u/2683?v=4', 'https://api.github.com/users/unfo', 'https://github.com/unfo', 'https://api.github.com/users/unfo/followers', 'https://api.github.com/users/unfo/following', 'https://api.github.com/users/unfo/gists', 'https://api.github.com/users/unfo/starred', 'https://api.github.com/users/unfo/repos', 'https://api.github.com/users/unfo/events', 'https://api.github.com/users/unfo/received_events', 0); +INSERT INTO `developer` VALUES (2684, 'ed-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T11:23:25Z', '2016-02-26T22:34:51Z', 'https://avatars.githubusercontent.com/u/2684?v=4', 'https://api.github.com/users/ed-xx', 'https://github.com/ed-xx', 'https://api.github.com/users/ed-xx/followers', 'https://api.github.com/users/ed-xx/following', 'https://api.github.com/users/ed-xx/gists', 'https://api.github.com/users/ed-xx/starred', 'https://api.github.com/users/ed-xx/repos', 'https://api.github.com/users/ed-xx/events', 'https://api.github.com/users/ed-xx/received_events', 0); +INSERT INTO `developer` VALUES (2685, 'Xenome', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pablo Alvarez Yañez', NULL, 'http://xenome.azulneon.com', 'Madrid, Spain', 'pabloay@gmail.com', NULL, NULL, NULL, 0, 0, 12, 8, 0, 0, 0, '2008-03-10T12:17:31Z', '2020-12-29T17:50:18Z', 'https://avatars.githubusercontent.com/u/2685?v=4', 'https://api.github.com/users/Xenome', 'https://github.com/Xenome', 'https://api.github.com/users/Xenome/followers', 'https://api.github.com/users/Xenome/following', 'https://api.github.com/users/Xenome/gists', 'https://api.github.com/users/Xenome/starred', 'https://api.github.com/users/Xenome/repos', 'https://api.github.com/users/Xenome/events', 'https://api.github.com/users/Xenome/received_events', 0); +INSERT INTO `developer` VALUES (2686, 'fabiano', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fabiano França', 'Algumas Idéias', 'https://fabiano.rio.br', 'Rio de Janeiro', 'fabiano.franca@gmail.com', NULL, NULL, 'fabiano', 0, 0, 25, 17, 0, 0, 0, '2008-03-10T12:54:20Z', '2024-10-24T10:48:41Z', 'https://avatars.githubusercontent.com/u/2686?v=4', 'https://api.github.com/users/fabiano', 'https://github.com/fabiano', 'https://api.github.com/users/fabiano/followers', 'https://api.github.com/users/fabiano/following', 'https://api.github.com/users/fabiano/gists', 'https://api.github.com/users/fabiano/starred', 'https://api.github.com/users/fabiano/repos', 'https://api.github.com/users/fabiano/events', 'https://api.github.com/users/fabiano/received_events', 0); +INSERT INTO `developer` VALUES (2687, 'radar', 'B-', 31.07625949930995, 0, 0, 0, 0, 0, 0, 'Ryan Bigg', NULL, 'http://ryanbigg.com', 'Warrnambool (Outer outer western Melbourne), Australia', 'me@ryanbigg.com', 'true', 'Award-winning super-hero published author with a Ruby addiction, a love for TypeScript and React, and extreme fondness for Elixir.', 'ryanbigg', 0, 0, 2097, 5, 0, 0, 0, '2008-03-10T13:28:14Z', '2024-10-22T07:40:40Z', 'https://avatars.githubusercontent.com/u/2687?v=4', 'https://api.github.com/users/radar', 'https://github.com/radar', 'https://api.github.com/users/radar/followers', 'https://api.github.com/users/radar/following', 'https://api.github.com/users/radar/gists', 'https://api.github.com/users/radar/starred', 'https://api.github.com/users/radar/repos', 'https://api.github.com/users/radar/events', 'https://api.github.com/users/radar/received_events', 0); +INSERT INTO `developer` VALUES (2688, 'brentmc79', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brent Collier', 'Google Cloud', 'www.brentmc79.com', 'Northern California', 'brentmc79@gmail.com', NULL, NULL, NULL, 0, 0, 58, 32, 0, 0, 0, '2008-03-10T13:32:43Z', '2023-07-14T16:47:32Z', 'https://avatars.githubusercontent.com/u/2688?v=4', 'https://api.github.com/users/brentmc79', 'https://github.com/brentmc79', 'https://api.github.com/users/brentmc79/followers', 'https://api.github.com/users/brentmc79/following', 'https://api.github.com/users/brentmc79/gists', 'https://api.github.com/users/brentmc79/starred', 'https://api.github.com/users/brentmc79/repos', 'https://api.github.com/users/brentmc79/events', 'https://api.github.com/users/brentmc79/received_events', 0); +INSERT INTO `developer` VALUES (2689, 'btweller', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-10T13:51:52Z', '2021-10-10T03:16:36Z', 'https://avatars.githubusercontent.com/u/2689?v=4', 'https://api.github.com/users/btweller', 'https://github.com/btweller', 'https://api.github.com/users/btweller/followers', 'https://api.github.com/users/btweller/following', 'https://api.github.com/users/btweller/gists', 'https://api.github.com/users/btweller/starred', 'https://api.github.com/users/btweller/repos', 'https://api.github.com/users/btweller/events', 'https://api.github.com/users/btweller/received_events', 0); +INSERT INTO `developer` VALUES (2690, 'NaTTs', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T13:55:21Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2690?v=4', 'https://api.github.com/users/NaTTs', 'https://github.com/NaTTs', 'https://api.github.com/users/NaTTs/followers', 'https://api.github.com/users/NaTTs/following', 'https://api.github.com/users/NaTTs/gists', 'https://api.github.com/users/NaTTs/starred', 'https://api.github.com/users/NaTTs/repos', 'https://api.github.com/users/NaTTs/events', 'https://api.github.com/users/NaTTs/received_events', 0); +INSERT INTO `developer` VALUES (2691, 'lthevenet', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T14:15:54Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2691?v=4', 'https://api.github.com/users/lthevenet', 'https://github.com/lthevenet', 'https://api.github.com/users/lthevenet/followers', 'https://api.github.com/users/lthevenet/following', 'https://api.github.com/users/lthevenet/gists', 'https://api.github.com/users/lthevenet/starred', 'https://api.github.com/users/lthevenet/repos', 'https://api.github.com/users/lthevenet/events', 'https://api.github.com/users/lthevenet/received_events', 0); +INSERT INTO `developer` VALUES (2692, 'henke', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T14:21:44Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2692?v=4', 'https://api.github.com/users/henke', 'https://github.com/henke', 'https://api.github.com/users/henke/followers', 'https://api.github.com/users/henke/following', 'https://api.github.com/users/henke/gists', 'https://api.github.com/users/henke/starred', 'https://api.github.com/users/henke/repos', 'https://api.github.com/users/henke/events', 'https://api.github.com/users/henke/received_events', 0); +INSERT INTO `developer` VALUES (2693, 'ovandommelen', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T14:40:40Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2693?v=4', 'https://api.github.com/users/ovandommelen', 'https://github.com/ovandommelen', 'https://api.github.com/users/ovandommelen/followers', 'https://api.github.com/users/ovandommelen/following', 'https://api.github.com/users/ovandommelen/gists', 'https://api.github.com/users/ovandommelen/starred', 'https://api.github.com/users/ovandommelen/repos', 'https://api.github.com/users/ovandommelen/events', 'https://api.github.com/users/ovandommelen/received_events', 0); +INSERT INTO `developer` VALUES (2694, 'theinterned', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ned Schwartz', '@github ', 'http://theinterned.net', 'Toronto', 'ned@theinterned.net', 'true', 'Web Systems @github', 'Theinterned', 0, 0, 77, 110, 0, 0, 0, '2008-03-10T14:43:43Z', '2024-05-24T20:36:04Z', 'https://avatars.githubusercontent.com/u/2694?v=4', 'https://api.github.com/users/theinterned', 'https://github.com/theinterned', 'https://api.github.com/users/theinterned/followers', 'https://api.github.com/users/theinterned/following', 'https://api.github.com/users/theinterned/gists', 'https://api.github.com/users/theinterned/starred', 'https://api.github.com/users/theinterned/repos', 'https://api.github.com/users/theinterned/events', 'https://api.github.com/users/theinterned/received_events', 0); +INSERT INTO `developer` VALUES (2695, 'jbancroft', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Bancroft', NULL, 'http://jbancroft.com', 'New Hampshire', NULL, NULL, NULL, NULL, 0, 0, 14, 6, 0, 0, 0, '2008-03-10T14:44:54Z', '2024-08-23T16:37:42Z', 'https://avatars.githubusercontent.com/u/2695?v=4', 'https://api.github.com/users/jbancroft', 'https://github.com/jbancroft', 'https://api.github.com/users/jbancroft/followers', 'https://api.github.com/users/jbancroft/following', 'https://api.github.com/users/jbancroft/gists', 'https://api.github.com/users/jbancroft/starred', 'https://api.github.com/users/jbancroft/repos', 'https://api.github.com/users/jbancroft/events', 'https://api.github.com/users/jbancroft/received_events', 0); +INSERT INTO `developer` VALUES (2697, 'usman', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-10T14:54:01Z', '2022-03-18T07:59:47Z', 'https://avatars.githubusercontent.com/u/2697?v=4', 'https://api.github.com/users/usman', 'https://github.com/usman', 'https://api.github.com/users/usman/followers', 'https://api.github.com/users/usman/following', 'https://api.github.com/users/usman/gists', 'https://api.github.com/users/usman/starred', 'https://api.github.com/users/usman/repos', 'https://api.github.com/users/usman/events', 'https://api.github.com/users/usman/received_events', 0); +INSERT INTO `developer` VALUES (2698, 'rwc9u', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Christie', 'Kajabi', 'neutronflux.net', 'Denver, CO', 'robchristie@gmail.com', NULL, NULL, NULL, 0, 0, 29, 26, 0, 0, 0, '2008-03-10T15:03:51Z', '2024-10-11T02:48:21Z', 'https://avatars.githubusercontent.com/u/2698?v=4', 'https://api.github.com/users/rwc9u', 'https://github.com/rwc9u', 'https://api.github.com/users/rwc9u/followers', 'https://api.github.com/users/rwc9u/following', 'https://api.github.com/users/rwc9u/gists', 'https://api.github.com/users/rwc9u/starred', 'https://api.github.com/users/rwc9u/repos', 'https://api.github.com/users/rwc9u/events', 'https://api.github.com/users/rwc9u/received_events', 0); +INSERT INTO `developer` VALUES (2699, 'pferreir', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pedro Ferreira', '@CERN', 'http://pferreir.github.io', 'Geneva, Switzerland', 'pedro@turbofish.cc', NULL, NULL, NULL, 0, 0, 76, 41, 0, 0, 0, '2008-03-10T15:21:16Z', '2024-08-21T10:06:01Z', 'https://avatars.githubusercontent.com/u/2699?v=4', 'https://api.github.com/users/pferreir', 'https://github.com/pferreir', 'https://api.github.com/users/pferreir/followers', 'https://api.github.com/users/pferreir/following', 'https://api.github.com/users/pferreir/gists', 'https://api.github.com/users/pferreir/starred', 'https://api.github.com/users/pferreir/repos', 'https://api.github.com/users/pferreir/events', 'https://api.github.com/users/pferreir/received_events', 0); +INSERT INTO `developer` VALUES (2700, 'ScatCamel', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T15:27:33Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2700?v=4', 'https://api.github.com/users/ScatCamel', 'https://github.com/ScatCamel', 'https://api.github.com/users/ScatCamel/followers', 'https://api.github.com/users/ScatCamel/following', 'https://api.github.com/users/ScatCamel/gists', 'https://api.github.com/users/ScatCamel/starred', 'https://api.github.com/users/ScatCamel/repos', 'https://api.github.com/users/ScatCamel/events', 'https://api.github.com/users/ScatCamel/received_events', 0); +INSERT INTO `developer` VALUES (2701, 'tangles', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-10T15:27:42Z', '2018-02-10T00:53:35Z', 'https://avatars.githubusercontent.com/u/2701?v=4', 'https://api.github.com/users/tangles', 'https://github.com/tangles', 'https://api.github.com/users/tangles/followers', 'https://api.github.com/users/tangles/following', 'https://api.github.com/users/tangles/gists', 'https://api.github.com/users/tangles/starred', 'https://api.github.com/users/tangles/repos', 'https://api.github.com/users/tangles/events', 'https://api.github.com/users/tangles/received_events', 0); +INSERT INTO `developer` VALUES (2702, 'lucasefe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lucas Florio', 'Community Phone', '', 'Buenos Aires, Argentina', NULL, NULL, NULL, 'lucasefe', 0, 0, 93, 51, 0, 0, 0, '2008-03-10T15:35:42Z', '2024-11-03T18:50:12Z', 'https://avatars.githubusercontent.com/u/2702?v=4', 'https://api.github.com/users/lucasefe', 'https://github.com/lucasefe', 'https://api.github.com/users/lucasefe/followers', 'https://api.github.com/users/lucasefe/following', 'https://api.github.com/users/lucasefe/gists', 'https://api.github.com/users/lucasefe/starred', 'https://api.github.com/users/lucasefe/repos', 'https://api.github.com/users/lucasefe/events', 'https://api.github.com/users/lucasefe/received_events', 0); +INSERT INTO `developer` VALUES (2703, 'calas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jorge Calás', 'RubiconMD Healthcare Inc.', '', 'Santiago de Compostela, A Coruña, Spain', 'calas@qvitta.net', NULL, NULL, NULL, 0, 0, 28, 2, 0, 0, 0, '2008-03-10T15:37:25Z', '2024-10-19T18:39:12Z', 'https://avatars.githubusercontent.com/u/2703?v=4', 'https://api.github.com/users/calas', 'https://github.com/calas', 'https://api.github.com/users/calas/followers', 'https://api.github.com/users/calas/following', 'https://api.github.com/users/calas/gists', 'https://api.github.com/users/calas/starred', 'https://api.github.com/users/calas/repos', 'https://api.github.com/users/calas/events', 'https://api.github.com/users/calas/received_events', 0); +INSERT INTO `developer` VALUES (2704, 'geoffgarside', 'C', 0, 0, 0, 0, 0, 0, 0, 'Geoff Garside', NULL, 'http://geoffgarside.co.uk/', 'England', NULL, NULL, NULL, NULL, 0, 0, 83, 42, 0, 0, 0, '2008-03-10T15:38:13Z', '2024-10-20T20:30:49Z', 'https://avatars.githubusercontent.com/u/2704?v=4', 'https://api.github.com/users/geoffgarside', 'https://github.com/geoffgarside', 'https://api.github.com/users/geoffgarside/followers', 'https://api.github.com/users/geoffgarside/following', 'https://api.github.com/users/geoffgarside/gists', 'https://api.github.com/users/geoffgarside/starred', 'https://api.github.com/users/geoffgarside/repos', 'https://api.github.com/users/geoffgarside/events', 'https://api.github.com/users/geoffgarside/received_events', 0); +INSERT INTO `developer` VALUES (2705, 'trabian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trabian', NULL, 'http://www.trabian.com/', 'Broad Ripple, IN', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-10T15:40:01Z', '2023-02-03T22:25:22Z', 'https://avatars.githubusercontent.com/u/2705?v=4', 'https://api.github.com/users/trabian', 'https://github.com/trabian', 'https://api.github.com/users/trabian/followers', 'https://api.github.com/users/trabian/following', 'https://api.github.com/users/trabian/gists', 'https://api.github.com/users/trabian/starred', 'https://api.github.com/users/trabian/repos', 'https://api.github.com/users/trabian/events', 'https://api.github.com/users/trabian/received_events', 0); +INSERT INTO `developer` VALUES (2706, 'jnareb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jakub Narębski', 'Nicolaus Copernicus University in Toruń', '', 'Poland', NULL, 'true', NULL, NULL, 0, 0, 261, 2, 0, 0, 0, '2008-03-10T15:40:11Z', '2024-11-04T11:26:38Z', 'https://avatars.githubusercontent.com/u/2706?v=4', 'https://api.github.com/users/jnareb', 'https://github.com/jnareb', 'https://api.github.com/users/jnareb/followers', 'https://api.github.com/users/jnareb/following', 'https://api.github.com/users/jnareb/gists', 'https://api.github.com/users/jnareb/starred', 'https://api.github.com/users/jnareb/repos', 'https://api.github.com/users/jnareb/events', 'https://api.github.com/users/jnareb/received_events', 0); +INSERT INTO `developer` VALUES (2707, 'iorum-ie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Rand', 'Iorum', '', 'Dublin, Ireland', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-03-10T15:40:14Z', '2017-08-14T19:39:27Z', 'https://avatars.githubusercontent.com/u/2707?v=4', 'https://api.github.com/users/iorum-ie', 'https://github.com/iorum-ie', 'https://api.github.com/users/iorum-ie/followers', 'https://api.github.com/users/iorum-ie/following', 'https://api.github.com/users/iorum-ie/gists', 'https://api.github.com/users/iorum-ie/starred', 'https://api.github.com/users/iorum-ie/repos', 'https://api.github.com/users/iorum-ie/events', 'https://api.github.com/users/iorum-ie/received_events', 0); +INSERT INTO `developer` VALUES (2708, 'Inviz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yaroslaff Fedin', 'Mason', '', 'Ubud, Bali', 'invizko@gmail.com', NULL, NULL, NULL, 0, 0, 110, 31, 0, 0, 0, '2008-03-10T15:41:15Z', '2024-10-29T12:55:57Z', 'https://avatars.githubusercontent.com/u/2708?v=4', 'https://api.github.com/users/Inviz', 'https://github.com/Inviz', 'https://api.github.com/users/Inviz/followers', 'https://api.github.com/users/Inviz/following', 'https://api.github.com/users/Inviz/gists', 'https://api.github.com/users/Inviz/starred', 'https://api.github.com/users/Inviz/repos', 'https://api.github.com/users/Inviz/events', 'https://api.github.com/users/Inviz/received_events', 0); +INSERT INTO `developer` VALUES (2710, 'jmorton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Morton', NULL, 'https://jonmorton.dev/', 'Washington DC', NULL, NULL, NULL, NULL, 0, 0, 32, 16, 0, 0, 0, '2008-03-10T15:42:54Z', '2024-10-20T18:24:20Z', 'https://avatars.githubusercontent.com/u/2710?v=4', 'https://api.github.com/users/jmorton', 'https://github.com/jmorton', 'https://api.github.com/users/jmorton/followers', 'https://api.github.com/users/jmorton/following', 'https://api.github.com/users/jmorton/gists', 'https://api.github.com/users/jmorton/starred', 'https://api.github.com/users/jmorton/repos', 'https://api.github.com/users/jmorton/events', 'https://api.github.com/users/jmorton/received_events', 0); +INSERT INTO `developer` VALUES (2711, 'frazerh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frazer', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-10T15:44:24Z', '2024-11-04T18:52:41Z', 'https://avatars.githubusercontent.com/u/2711?v=4', 'https://api.github.com/users/frazerh', 'https://github.com/frazerh', 'https://api.github.com/users/frazerh/followers', 'https://api.github.com/users/frazerh/following', 'https://api.github.com/users/frazerh/gists', 'https://api.github.com/users/frazerh/starred', 'https://api.github.com/users/frazerh/repos', 'https://api.github.com/users/frazerh/events', 'https://api.github.com/users/frazerh/received_events', 0); +INSERT INTO `developer` VALUES (2712, 'kevinchiu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Chiu', 'Plastachio', 'https://www.kevinchiu.org', 'Seattle, WA', NULL, 'true', NULL, 'kevingc', 0, 0, 41, 11, 0, 0, 0, '2008-03-10T15:52:32Z', '2024-11-03T02:42:46Z', 'https://avatars.githubusercontent.com/u/2712?v=4', 'https://api.github.com/users/kevinchiu', 'https://github.com/kevinchiu', 'https://api.github.com/users/kevinchiu/followers', 'https://api.github.com/users/kevinchiu/following', 'https://api.github.com/users/kevinchiu/gists', 'https://api.github.com/users/kevinchiu/starred', 'https://api.github.com/users/kevinchiu/repos', 'https://api.github.com/users/kevinchiu/events', 'https://api.github.com/users/kevinchiu/received_events', 0); +INSERT INTO `developer` VALUES (2713, 'antonmos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Mostovoy', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 2, 0, 0, 0, '2008-03-10T15:52:42Z', '2024-07-26T14:04:33Z', 'https://avatars.githubusercontent.com/u/2713?v=4', 'https://api.github.com/users/antonmos', 'https://github.com/antonmos', 'https://api.github.com/users/antonmos/followers', 'https://api.github.com/users/antonmos/following', 'https://api.github.com/users/antonmos/gists', 'https://api.github.com/users/antonmos/starred', 'https://api.github.com/users/antonmos/repos', 'https://api.github.com/users/antonmos/events', 'https://api.github.com/users/antonmos/received_events', 0); +INSERT INTO `developer` VALUES (2714, 'chapados', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Chapados', NULL, 'http://chapados.org', 'San Francisco', 'brian@chapados.org', NULL, NULL, NULL, 0, 0, 36, 9, 0, 0, 0, '2008-03-10T15:52:46Z', '2024-09-20T15:28:27Z', 'https://avatars.githubusercontent.com/u/2714?v=4', 'https://api.github.com/users/chapados', 'https://github.com/chapados', 'https://api.github.com/users/chapados/followers', 'https://api.github.com/users/chapados/following', 'https://api.github.com/users/chapados/gists', 'https://api.github.com/users/chapados/starred', 'https://api.github.com/users/chapados/repos', 'https://api.github.com/users/chapados/events', 'https://api.github.com/users/chapados/received_events', 0); +INSERT INTO `developer` VALUES (2715, 'andrewgarner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Garner', NULL, 'https://www.andrewgarner.com', 'Maidenhead, UK', 'andrew@andrewgarner.com', NULL, 'Product‑minded technical leader', NULL, 0, 0, 30, 19, 0, 0, 0, '2008-03-10T16:02:08Z', '2024-09-19T05:17:49Z', 'https://avatars.githubusercontent.com/u/2715?v=4', 'https://api.github.com/users/andrewgarner', 'https://github.com/andrewgarner', 'https://api.github.com/users/andrewgarner/followers', 'https://api.github.com/users/andrewgarner/following', 'https://api.github.com/users/andrewgarner/gists', 'https://api.github.com/users/andrewgarner/starred', 'https://api.github.com/users/andrewgarner/repos', 'https://api.github.com/users/andrewgarner/events', 'https://api.github.com/users/andrewgarner/received_events', 0); +INSERT INTO `developer` VALUES (2716, 'maryrosecook', 'B-', 31.62501224765461, 0, 0, 0, 0, 0, 0, 'Mary Rose Cook', NULL, 'https://maryrosecook.com', 'San Francisco', 'mary@maryrosecook.com', NULL, 'I live in San Francisco. I work at Void. \r\n\r\nBefore, I worked at Airtable as a staff product engineer, at Ableton and at the Recurse Center.', 'maryrosecook', 0, 0, 2129, 20, 0, 0, 0, '2008-03-10T16:04:47Z', '2024-10-31T14:17:37Z', 'https://avatars.githubusercontent.com/u/2716?v=4', 'https://api.github.com/users/maryrosecook', 'https://github.com/maryrosecook', 'https://api.github.com/users/maryrosecook/followers', 'https://api.github.com/users/maryrosecook/following', 'https://api.github.com/users/maryrosecook/gists', 'https://api.github.com/users/maryrosecook/starred', 'https://api.github.com/users/maryrosecook/repos', 'https://api.github.com/users/maryrosecook/events', 'https://api.github.com/users/maryrosecook/received_events', 0); +INSERT INTO `developer` VALUES (2717, 'zacbir', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zachery Bir', NULL, 'http://zacbir.net/', 'Richmond, VA', 'zbir@zacbir.net', NULL, 'Thinking and occasionally typing as a service.', NULL, 0, 0, 50, 32, 0, 0, 0, '2008-03-10T16:04:50Z', '2024-09-03T00:49:05Z', 'https://avatars.githubusercontent.com/u/2717?v=4', 'https://api.github.com/users/zacbir', 'https://github.com/zacbir', 'https://api.github.com/users/zacbir/followers', 'https://api.github.com/users/zacbir/following', 'https://api.github.com/users/zacbir/gists', 'https://api.github.com/users/zacbir/starred', 'https://api.github.com/users/zacbir/repos', 'https://api.github.com/users/zacbir/events', 'https://api.github.com/users/zacbir/received_events', 0); +INSERT INTO `developer` VALUES (2719, 'hugobarauna', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hugo Baraúna', '@livebook-dev ', 'https://hugobarauna.com', 'São Paulo, Brazil', 'hugo.barauna@gmail.com', NULL, 'Developer advocate @livebook-dev , founder @ Elixir Radar, (past: founder @plataformatec)', 'hugobarauna', 0, 0, 256, 20, 0, 0, 0, '2008-03-10T16:13:52Z', '2024-10-28T14:34:37Z', 'https://avatars.githubusercontent.com/u/2719?v=4', 'https://api.github.com/users/hugobarauna', 'https://github.com/hugobarauna', 'https://api.github.com/users/hugobarauna/followers', 'https://api.github.com/users/hugobarauna/following', 'https://api.github.com/users/hugobarauna/gists', 'https://api.github.com/users/hugobarauna/starred', 'https://api.github.com/users/hugobarauna/repos', 'https://api.github.com/users/hugobarauna/events', 'https://api.github.com/users/hugobarauna/received_events', 0); +INSERT INTO `developer` VALUES (2720, 'fesplugas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Francesc Esplugas', NULL, 'francescesplugas.com', 'Barcelona / Stockholm', NULL, NULL, 'Ruby on Rails enthusiast and long distance runner. Don’t ask me if I like sprinting.', 'fesplugas', 0, 0, 125, 2, 0, 0, 0, '2008-03-10T16:16:46Z', '2024-09-19T06:24:12Z', 'https://avatars.githubusercontent.com/u/2720?v=4', 'https://api.github.com/users/fesplugas', 'https://github.com/fesplugas', 'https://api.github.com/users/fesplugas/followers', 'https://api.github.com/users/fesplugas/following', 'https://api.github.com/users/fesplugas/gists', 'https://api.github.com/users/fesplugas/starred', 'https://api.github.com/users/fesplugas/repos', 'https://api.github.com/users/fesplugas/events', 'https://api.github.com/users/fesplugas/received_events', 0); +INSERT INTO `developer` VALUES (2721, 'mirven', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcus Irven', NULL, 'http://www.marcusirven.com', 'Austin, Texas', 'marcus@marcusirven.com', 'true', NULL, NULL, 0, 0, 44, 5, 0, 0, 0, '2008-03-10T16:17:19Z', '2021-06-18T15:35:01Z', 'https://avatars.githubusercontent.com/u/2721?v=4', 'https://api.github.com/users/mirven', 'https://github.com/mirven', 'https://api.github.com/users/mirven/followers', 'https://api.github.com/users/mirven/following', 'https://api.github.com/users/mirven/gists', 'https://api.github.com/users/mirven/starred', 'https://api.github.com/users/mirven/repos', 'https://api.github.com/users/mirven/events', 'https://api.github.com/users/mirven/received_events', 0); +INSERT INTO `developer` VALUES (2722, 'jakubkosinski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jakub Kosiński', '@arkency', 'https://jakubkosinski.pl/', 'Wrocław, Poland', 'jakub.kosinski@gmail.com', 'true', NULL, NULL, 0, 0, 29, 17, 0, 0, 0, '2008-03-10T16:18:19Z', '2024-08-05T08:08:56Z', 'https://avatars.githubusercontent.com/u/2722?v=4', 'https://api.github.com/users/jakubkosinski', 'https://github.com/jakubkosinski', 'https://api.github.com/users/jakubkosinski/followers', 'https://api.github.com/users/jakubkosinski/following', 'https://api.github.com/users/jakubkosinski/gists', 'https://api.github.com/users/jakubkosinski/starred', 'https://api.github.com/users/jakubkosinski/repos', 'https://api.github.com/users/jakubkosinski/events', 'https://api.github.com/users/jakubkosinski/received_events', 0); +INSERT INTO `developer` VALUES (2723, 'holman', 'S', 100, 0, 0, 0, 0, 0, 0, 'Zach Holman', '@americanoutlaws ', 'http://zachholman.com', 'San Francisco', 'zach@zachholman.com', NULL, 'Angel investor. Director of Technology at @americanoutlaws.\r\nPreviously: @github @GitLab.', 'holman', 0, 0, 6386, 83, 0, 0, 0, '2008-03-10T16:32:37Z', '2024-10-29T18:34:50Z', 'https://avatars.githubusercontent.com/u/2723?v=4', 'https://api.github.com/users/holman', 'https://github.com/holman', 'https://api.github.com/users/holman/followers', 'https://api.github.com/users/holman/following', 'https://api.github.com/users/holman/gists', 'https://api.github.com/users/holman/starred', 'https://api.github.com/users/holman/repos', 'https://api.github.com/users/holman/events', 'https://api.github.com/users/holman/received_events', 0); +INSERT INTO `developer` VALUES (2724, 'kovacs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Kovacs', NULL, '', 'San Francisco, CA', 'kovacs@gmail.com', NULL, NULL, 'mk', 0, 0, 41, 62, 0, 0, 0, '2008-03-10T16:32:58Z', '2023-10-14T20:01:28Z', 'https://avatars.githubusercontent.com/u/2724?v=4', 'https://api.github.com/users/kovacs', 'https://github.com/kovacs', 'https://api.github.com/users/kovacs/followers', 'https://api.github.com/users/kovacs/following', 'https://api.github.com/users/kovacs/gists', 'https://api.github.com/users/kovacs/starred', 'https://api.github.com/users/kovacs/repos', 'https://api.github.com/users/kovacs/events', 'https://api.github.com/users/kovacs/received_events', 0); +INSERT INTO `developer` VALUES (2725, 'Ramarren', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jakub Higersberger', NULL, '', 'Warsaw, Poland', NULL, NULL, NULL, NULL, 0, 0, 72, 1, 0, 0, 0, '2008-03-10T16:48:54Z', '2021-05-20T15:32:58Z', 'https://avatars.githubusercontent.com/u/2725?v=4', 'https://api.github.com/users/Ramarren', 'https://github.com/Ramarren', 'https://api.github.com/users/Ramarren/followers', 'https://api.github.com/users/Ramarren/following', 'https://api.github.com/users/Ramarren/gists', 'https://api.github.com/users/Ramarren/starred', 'https://api.github.com/users/Ramarren/repos', 'https://api.github.com/users/Ramarren/events', 'https://api.github.com/users/Ramarren/received_events', 0); +INSERT INTO `developer` VALUES (2726, 'mjoslyn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Joslyn', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 2, 0, 0, 0, '2008-03-10T16:51:47Z', '2024-10-30T12:57:52Z', 'https://avatars.githubusercontent.com/u/2726?v=4', 'https://api.github.com/users/mjoslyn', 'https://github.com/mjoslyn', 'https://api.github.com/users/mjoslyn/followers', 'https://api.github.com/users/mjoslyn/following', 'https://api.github.com/users/mjoslyn/gists', 'https://api.github.com/users/mjoslyn/starred', 'https://api.github.com/users/mjoslyn/repos', 'https://api.github.com/users/mjoslyn/events', 'https://api.github.com/users/mjoslyn/received_events', 0); +INSERT INTO `developer` VALUES (2727, 'invalidusrname', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt', NULL, 'http://invalid8.com', 'Rock Hill, SC', NULL, 'true', 'I write code. I do stuff outdoors', NULL, 0, 0, 37, 12, 0, 0, 0, '2008-03-10T16:52:39Z', '2024-10-21T19:35:41Z', 'https://avatars.githubusercontent.com/u/2727?v=4', 'https://api.github.com/users/invalidusrname', 'https://github.com/invalidusrname', 'https://api.github.com/users/invalidusrname/followers', 'https://api.github.com/users/invalidusrname/following', 'https://api.github.com/users/invalidusrname/gists', 'https://api.github.com/users/invalidusrname/starred', 'https://api.github.com/users/invalidusrname/repos', 'https://api.github.com/users/invalidusrname/events', 'https://api.github.com/users/invalidusrname/received_events', 0); +INSERT INTO `developer` VALUES (2728, 'bthatswho', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-10T16:53:58Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2728?v=4', 'https://api.github.com/users/bthatswho', 'https://github.com/bthatswho', 'https://api.github.com/users/bthatswho/followers', 'https://api.github.com/users/bthatswho/following', 'https://api.github.com/users/bthatswho/gists', 'https://api.github.com/users/bthatswho/starred', 'https://api.github.com/users/bthatswho/repos', 'https://api.github.com/users/bthatswho/events', 'https://api.github.com/users/bthatswho/received_events', 0); +INSERT INTO `developer` VALUES (2729, 'bickfordb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandon Bickford', NULL, '', 'Portland, OR', NULL, 'true', NULL, NULL, 0, 0, 57, 30, 0, 0, 0, '2008-03-10T16:55:17Z', '2024-10-05T12:22:34Z', 'https://avatars.githubusercontent.com/u/2729?v=4', 'https://api.github.com/users/bickfordb', 'https://github.com/bickfordb', 'https://api.github.com/users/bickfordb/followers', 'https://api.github.com/users/bickfordb/following', 'https://api.github.com/users/bickfordb/gists', 'https://api.github.com/users/bickfordb/starred', 'https://api.github.com/users/bickfordb/repos', 'https://api.github.com/users/bickfordb/events', 'https://api.github.com/users/bickfordb/received_events', 0); +INSERT INTO `developer` VALUES (2730, 'mleung', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Leung', NULL, 'http://www.michaelleung.us', 'Saugerties, NY', NULL, NULL, NULL, NULL, 0, 0, 25, 3, 0, 0, 0, '2008-03-10T16:56:28Z', '2024-04-19T17:01:12Z', 'https://avatars.githubusercontent.com/u/2730?v=4', 'https://api.github.com/users/mleung', 'https://github.com/mleung', 'https://api.github.com/users/mleung/followers', 'https://api.github.com/users/mleung/following', 'https://api.github.com/users/mleung/gists', 'https://api.github.com/users/mleung/starred', 'https://api.github.com/users/mleung/repos', 'https://api.github.com/users/mleung/events', 'https://api.github.com/users/mleung/received_events', 0); +INSERT INTO `developer` VALUES (2731, 'diasjorge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jorge Dias', 'http://intellum.com', 'http://mrdias.com', 'Barcelona', NULL, 'true', 'Father, programmer, polyglot, human', 'dias_jorge', 0, 0, 78, 29, 0, 0, 0, '2008-03-10T16:56:39Z', '2024-10-22T01:45:05Z', 'https://avatars.githubusercontent.com/u/2731?v=4', 'https://api.github.com/users/diasjorge', 'https://github.com/diasjorge', 'https://api.github.com/users/diasjorge/followers', 'https://api.github.com/users/diasjorge/following', 'https://api.github.com/users/diasjorge/gists', 'https://api.github.com/users/diasjorge/starred', 'https://api.github.com/users/diasjorge/repos', 'https://api.github.com/users/diasjorge/events', 'https://api.github.com/users/diasjorge/received_events', 0); +INSERT INTO `developer` VALUES (2732, 'ccollins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chuck Collins', 'Duco', '', 'Nashville, TN', 'chuck.collins@gmail.com', NULL, NULL, NULL, 0, 0, 50, 35, 0, 0, 0, '2008-03-10T17:03:31Z', '2024-06-17T17:40:16Z', 'https://avatars.githubusercontent.com/u/2732?v=4', 'https://api.github.com/users/ccollins', 'https://github.com/ccollins', 'https://api.github.com/users/ccollins/followers', 'https://api.github.com/users/ccollins/following', 'https://api.github.com/users/ccollins/gists', 'https://api.github.com/users/ccollins/starred', 'https://api.github.com/users/ccollins/repos', 'https://api.github.com/users/ccollins/events', 'https://api.github.com/users/ccollins/received_events', 0); +INSERT INTO `developer` VALUES (2734, 'eklitzke', 'C', 8.457357153478297, 0, 0, 0, 0, 0, 0, 'Evan Klitzke', NULL, 'https://eklitzke.org/', 'San Francisco, CA', 'evan@eklitzke.org', NULL, 'dc -e 36[d1-d0!=F+]dsFxp', NULL, 0, 0, 778, 101, 0, 0, 0, '2008-03-10T17:24:15Z', '2024-08-27T17:42:13Z', 'https://avatars.githubusercontent.com/u/2734?v=4', 'https://api.github.com/users/eklitzke', 'https://github.com/eklitzke', 'https://api.github.com/users/eklitzke/followers', 'https://api.github.com/users/eklitzke/following', 'https://api.github.com/users/eklitzke/gists', 'https://api.github.com/users/eklitzke/starred', 'https://api.github.com/users/eklitzke/repos', 'https://api.github.com/users/eklitzke/events', 'https://api.github.com/users/eklitzke/received_events', 0); +INSERT INTO `developer` VALUES (2735, 'tvongaza', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tys von Gaza', NULL, '', 'Canada', NULL, NULL, NULL, NULL, 0, 0, 14, 2, 0, 0, 0, '2008-03-10T17:29:52Z', '2024-11-02T22:57:44Z', 'https://avatars.githubusercontent.com/u/2735?v=4', 'https://api.github.com/users/tvongaza', 'https://github.com/tvongaza', 'https://api.github.com/users/tvongaza/followers', 'https://api.github.com/users/tvongaza/following', 'https://api.github.com/users/tvongaza/gists', 'https://api.github.com/users/tvongaza/starred', 'https://api.github.com/users/tvongaza/repos', 'https://api.github.com/users/tvongaza/events', 'https://api.github.com/users/tvongaza/received_events', 0); +INSERT INTO `developer` VALUES (2736, 'dewitt', 'C', 0, 0, 0, 0, 0, 0, 0, 'DeWitt Clinton', NULL, 'https://twitter.com/dewitt', 'Seattle, WA', NULL, NULL, 'Father, husband, Googler, Eph. Mostly.', NULL, 0, 0, 105, 1, 0, 0, 0, '2008-03-10T17:30:07Z', '2024-11-02T15:19:14Z', 'https://avatars.githubusercontent.com/u/2736?v=4', 'https://api.github.com/users/dewitt', 'https://github.com/dewitt', 'https://api.github.com/users/dewitt/followers', 'https://api.github.com/users/dewitt/following', 'https://api.github.com/users/dewitt/gists', 'https://api.github.com/users/dewitt/starred', 'https://api.github.com/users/dewitt/repos', 'https://api.github.com/users/dewitt/events', 'https://api.github.com/users/dewitt/received_events', 0); +INSERT INTO `developer` VALUES (2737, 'pedrosanta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pedro Machado Santa', '@Vincit', 'http://pedrosanta.com', 'Coimbra, Portugal', 'pedro.santa@gmail.com', NULL, 'Senior Software Engineer @Vincit', NULL, 0, 0, 64, 113, 0, 0, 0, '2008-03-10T17:33:08Z', '2024-10-20T10:03:52Z', 'https://avatars.githubusercontent.com/u/2737?v=4', 'https://api.github.com/users/pedrosanta', 'https://github.com/pedrosanta', 'https://api.github.com/users/pedrosanta/followers', 'https://api.github.com/users/pedrosanta/following', 'https://api.github.com/users/pedrosanta/gists', 'https://api.github.com/users/pedrosanta/starred', 'https://api.github.com/users/pedrosanta/repos', 'https://api.github.com/users/pedrosanta/events', 'https://api.github.com/users/pedrosanta/received_events', 0); +INSERT INTO `developer` VALUES (2738, 'kumekay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergei Silnov', '@espressif', 'http://kumekay.com', 'Brno, CZ', 'po@kumekay.com', NULL, 'Technology guy. \r\nCurrently, managing CI and Services team @espressif ', 'kumekay', 0, 0, 90, 34, 0, 0, 0, '2008-03-10T17:34:24Z', '2024-10-18T21:25:25Z', 'https://avatars.githubusercontent.com/u/2738?v=4', 'https://api.github.com/users/kumekay', 'https://github.com/kumekay', 'https://api.github.com/users/kumekay/followers', 'https://api.github.com/users/kumekay/following', 'https://api.github.com/users/kumekay/gists', 'https://api.github.com/users/kumekay/starred', 'https://api.github.com/users/kumekay/repos', 'https://api.github.com/users/kumekay/events', 'https://api.github.com/users/kumekay/received_events', 0); +INSERT INTO `developer` VALUES (2739, 'tarvaina', 'C', 0, 0, 0, 0, 0, 0, 0, 'Antti Tarvainen', 'IPRally', '', 'Helsinki, Finland', NULL, 'true', 'Machine learning engineer', 'tarvaina', 0, 0, 26, 0, 0, 0, 0, '2008-03-10T17:35:29Z', '2024-09-09T11:52:05Z', 'https://avatars.githubusercontent.com/u/2739?v=4', 'https://api.github.com/users/tarvaina', 'https://github.com/tarvaina', 'https://api.github.com/users/tarvaina/followers', 'https://api.github.com/users/tarvaina/following', 'https://api.github.com/users/tarvaina/gists', 'https://api.github.com/users/tarvaina/starred', 'https://api.github.com/users/tarvaina/repos', 'https://api.github.com/users/tarvaina/events', 'https://api.github.com/users/tarvaina/received_events', 0); +INSERT INTO `developer` VALUES (2740, 'pcrowder', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-10T17:49:33Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2740?v=4', 'https://api.github.com/users/pcrowder', 'https://github.com/pcrowder', 'https://api.github.com/users/pcrowder/followers', 'https://api.github.com/users/pcrowder/following', 'https://api.github.com/users/pcrowder/gists', 'https://api.github.com/users/pcrowder/starred', 'https://api.github.com/users/pcrowder/repos', 'https://api.github.com/users/pcrowder/events', 'https://api.github.com/users/pcrowder/received_events', 0); +INSERT INTO `developer` VALUES (2741, 'dhh', 'S', 100, 0, 0, 0, 0, 0, 0, 'David Heinemeier Hansson', '37signals', 'https://dhh.dk', '未知', 'dhh@hey.com', NULL, NULL, 'dhh', 0, 0, 20440, 0, 0, 0, 0, '2008-03-10T17:53:51Z', '2024-11-04T02:53:18Z', 'https://avatars.githubusercontent.com/u/2741?v=4', 'https://api.github.com/users/dhh', 'https://github.com/dhh', 'https://api.github.com/users/dhh/followers', 'https://api.github.com/users/dhh/following', 'https://api.github.com/users/dhh/gists', 'https://api.github.com/users/dhh/starred', 'https://api.github.com/users/dhh/repos', 'https://api.github.com/users/dhh/events', 'https://api.github.com/users/dhh/received_events', 0); +INSERT INTO `developer` VALUES (2742, 'ab5tract', 'C', 0, 0, 0, 0, 0, 0, 0, 'ab5tract', NULL, '', 'Amsterdam, Netherlands', NULL, NULL, NULL, NULL, 0, 0, 43, 29, 0, 0, 0, '2008-03-10T17:55:30Z', '2024-11-05T02:24:37Z', 'https://avatars.githubusercontent.com/u/2742?v=4', 'https://api.github.com/users/ab5tract', 'https://github.com/ab5tract', 'https://api.github.com/users/ab5tract/followers', 'https://api.github.com/users/ab5tract/following', 'https://api.github.com/users/ab5tract/gists', 'https://api.github.com/users/ab5tract/starred', 'https://api.github.com/users/ab5tract/repos', 'https://api.github.com/users/ab5tract/events', 'https://api.github.com/users/ab5tract/received_events', 0); +INSERT INTO `developer` VALUES (2743, 'claymccoy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clay McCoy', 'Armory', 'claymccoy.com', 'Smith Lake, AL', 'github@claymccoy.com', NULL, NULL, NULL, 0, 0, 76, 0, 0, 0, 0, '2008-03-10T17:57:07Z', '2024-07-22T16:44:12Z', 'https://avatars.githubusercontent.com/u/2743?v=4', 'https://api.github.com/users/claymccoy', 'https://github.com/claymccoy', 'https://api.github.com/users/claymccoy/followers', 'https://api.github.com/users/claymccoy/following', 'https://api.github.com/users/claymccoy/gists', 'https://api.github.com/users/claymccoy/starred', 'https://api.github.com/users/claymccoy/repos', 'https://api.github.com/users/claymccoy/events', 'https://api.github.com/users/claymccoy/received_events', 0); +INSERT INTO `developer` VALUES (2744, 'pervel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Per Velschow', NULL, '', 'Denmark', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-03-10T18:00:12Z', '2024-06-16T13:36:56Z', 'https://avatars.githubusercontent.com/u/2744?v=4', 'https://api.github.com/users/pervel', 'https://github.com/pervel', 'https://api.github.com/users/pervel/followers', 'https://api.github.com/users/pervel/following', 'https://api.github.com/users/pervel/gists', 'https://api.github.com/users/pervel/starred', 'https://api.github.com/users/pervel/repos', 'https://api.github.com/users/pervel/events', 'https://api.github.com/users/pervel/received_events', 0); +INSERT INTO `developer` VALUES (2745, 'rufo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rufo Sanchez', NULL, '', 'Minneapolis, MN', 'rufo@rufosanchez.com', NULL, NULL, NULL, 0, 0, 29, 2, 0, 0, 0, '2008-03-10T18:08:57Z', '2024-11-05T01:00:03Z', 'https://avatars.githubusercontent.com/u/2745?v=4', 'https://api.github.com/users/rufo', 'https://github.com/rufo', 'https://api.github.com/users/rufo/followers', 'https://api.github.com/users/rufo/following', 'https://api.github.com/users/rufo/gists', 'https://api.github.com/users/rufo/starred', 'https://api.github.com/users/rufo/repos', 'https://api.github.com/users/rufo/events', 'https://api.github.com/users/rufo/received_events', 0); +INSERT INTO `developer` VALUES (2746, 'dmolsen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Olsen', 'WVU University Relations - Digital Services', 'http://dmolsen.com', 'Pisgah, WV', 'dmolsen@gmail.com', NULL, NULL, NULL, 0, 0, 229, 18, 0, 0, 0, '2008-03-10T18:14:29Z', '2024-09-06T12:52:21Z', 'https://avatars.githubusercontent.com/u/2746?v=4', 'https://api.github.com/users/dmolsen', 'https://github.com/dmolsen', 'https://api.github.com/users/dmolsen/followers', 'https://api.github.com/users/dmolsen/following', 'https://api.github.com/users/dmolsen/gists', 'https://api.github.com/users/dmolsen/starred', 'https://api.github.com/users/dmolsen/repos', 'https://api.github.com/users/dmolsen/events', 'https://api.github.com/users/dmolsen/received_events', 0); +INSERT INTO `developer` VALUES (2747, 'bakineggs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Barry', 'Square', 'http://bakineggs.com', 'San Francisco, CA', 'dan@bakineggs.com', NULL, NULL, NULL, 0, 0, 25, 11, 0, 0, 0, '2008-03-10T18:15:07Z', '2024-02-19T23:59:44Z', 'https://avatars.githubusercontent.com/u/2747?v=4', 'https://api.github.com/users/bakineggs', 'https://github.com/bakineggs', 'https://api.github.com/users/bakineggs/followers', 'https://api.github.com/users/bakineggs/following', 'https://api.github.com/users/bakineggs/gists', 'https://api.github.com/users/bakineggs/starred', 'https://api.github.com/users/bakineggs/repos', 'https://api.github.com/users/bakineggs/events', 'https://api.github.com/users/bakineggs/received_events', 0); +INSERT INTO `developer` VALUES (2748, 'jmah', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathon Mah', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 33, 0, 0, 0, 0, '2008-03-10T18:18:00Z', '2024-09-18T02:18:30Z', 'https://avatars.githubusercontent.com/u/2748?v=4', 'https://api.github.com/users/jmah', 'https://github.com/jmah', 'https://api.github.com/users/jmah/followers', 'https://api.github.com/users/jmah/following', 'https://api.github.com/users/jmah/gists', 'https://api.github.com/users/jmah/starred', 'https://api.github.com/users/jmah/repos', 'https://api.github.com/users/jmah/events', 'https://api.github.com/users/jmah/received_events', 0); +INSERT INTO `developer` VALUES (2749, 'fabien', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fabien Franzen', NULL, 'http://www.atelierfabien.be/', 'Belgium', 'info@atelierfabien.be', NULL, NULL, NULL, 0, 0, 73, 21, 0, 0, 0, '2008-03-10T18:18:16Z', '2023-01-13T14:14:33Z', 'https://avatars.githubusercontent.com/u/2749?v=4', 'https://api.github.com/users/fabien', 'https://github.com/fabien', 'https://api.github.com/users/fabien/followers', 'https://api.github.com/users/fabien/following', 'https://api.github.com/users/fabien/gists', 'https://api.github.com/users/fabien/starred', 'https://api.github.com/users/fabien/repos', 'https://api.github.com/users/fabien/events', 'https://api.github.com/users/fabien/received_events', 0); +INSERT INTO `developer` VALUES (2750, 'scottschram', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Schram', 'Agile Brands, LLC', 'agilebrands.us', 'Birmingham, AL', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T18:47:30Z', '2022-09-16T01:52:35Z', 'https://avatars.githubusercontent.com/u/2750?v=4', 'https://api.github.com/users/scottschram', 'https://github.com/scottschram', 'https://api.github.com/users/scottschram/followers', 'https://api.github.com/users/scottschram/following', 'https://api.github.com/users/scottschram/gists', 'https://api.github.com/users/scottschram/starred', 'https://api.github.com/users/scottschram/repos', 'https://api.github.com/users/scottschram/events', 'https://api.github.com/users/scottschram/received_events', 0); +INSERT INTO `developer` VALUES (2751, 'stderr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh', NULL, 'http://truedat.org/', '未知', NULL, NULL, NULL, NULL, 0, 0, 35, 22, 0, 0, 0, '2008-03-10T18:48:12Z', '2021-05-28T17:39:01Z', 'https://avatars.githubusercontent.com/u/2751?v=4', 'https://api.github.com/users/stderr', 'https://github.com/stderr', 'https://api.github.com/users/stderr/followers', 'https://api.github.com/users/stderr/following', 'https://api.github.com/users/stderr/gists', 'https://api.github.com/users/stderr/starred', 'https://api.github.com/users/stderr/repos', 'https://api.github.com/users/stderr/events', 'https://api.github.com/users/stderr/received_events', 0); +INSERT INTO `developer` VALUES (2752, 'skorgu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'skorgu.net/blog/', '未知', 'skorgu@gmail.com', NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-03-10T18:48:18Z', '2024-03-06T16:35:03Z', 'https://avatars.githubusercontent.com/u/2752?v=4', 'https://api.github.com/users/skorgu', 'https://github.com/skorgu', 'https://api.github.com/users/skorgu/followers', 'https://api.github.com/users/skorgu/following', 'https://api.github.com/users/skorgu/gists', 'https://api.github.com/users/skorgu/starred', 'https://api.github.com/users/skorgu/repos', 'https://api.github.com/users/skorgu/events', 'https://api.github.com/users/skorgu/received_events', 0); +INSERT INTO `developer` VALUES (2753, 'dbeach', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel', 'SceneThink', 'http://danielbeach.com', 'Charlottesville, VA', 'email@danielbeach.com', NULL, NULL, NULL, 0, 0, 11, 4, 0, 0, 0, '2008-03-10T18:53:22Z', '2024-10-22T20:12:57Z', 'https://avatars.githubusercontent.com/u/2753?v=4', 'https://api.github.com/users/dbeach', 'https://github.com/dbeach', 'https://api.github.com/users/dbeach/followers', 'https://api.github.com/users/dbeach/following', 'https://api.github.com/users/dbeach/gists', 'https://api.github.com/users/dbeach/starred', 'https://api.github.com/users/dbeach/repos', 'https://api.github.com/users/dbeach/events', 'https://api.github.com/users/dbeach/received_events', 0); +INSERT INTO `developer` VALUES (2754, 'kolach', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nikolay Chistyakov', '6 Rivers', '', 'Playa del Carmen, Mexico', 'chikolad@gmail.com', 'true', NULL, NULL, 0, 0, 9, 2, 0, 0, 0, '2008-03-10T18:54:58Z', '2024-10-24T16:55:59Z', 'https://avatars.githubusercontent.com/u/2754?v=4', 'https://api.github.com/users/kolach', 'https://github.com/kolach', 'https://api.github.com/users/kolach/followers', 'https://api.github.com/users/kolach/following', 'https://api.github.com/users/kolach/gists', 'https://api.github.com/users/kolach/starred', 'https://api.github.com/users/kolach/repos', 'https://api.github.com/users/kolach/events', 'https://api.github.com/users/kolach/received_events', 0); +INSERT INTO `developer` VALUES (2758, 'faisal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Faisal N Jawdat', NULL, 'https://www.faisal.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 42, 36, 0, 0, 0, '2008-03-10T19:07:32Z', '2024-10-24T10:44:43Z', 'https://avatars.githubusercontent.com/u/2758?v=4', 'https://api.github.com/users/faisal', 'https://github.com/faisal', 'https://api.github.com/users/faisal/followers', 'https://api.github.com/users/faisal/following', 'https://api.github.com/users/faisal/gists', 'https://api.github.com/users/faisal/starred', 'https://api.github.com/users/faisal/repos', 'https://api.github.com/users/faisal/events', 'https://api.github.com/users/faisal/received_events', 0); +INSERT INTO `developer` VALUES (2759, 'thijsb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thijs Burema', 'Cafelinux', 'www.cafelinux.nl', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T19:15:52Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2759?v=4', 'https://api.github.com/users/thijsb', 'https://github.com/thijsb', 'https://api.github.com/users/thijsb/followers', 'https://api.github.com/users/thijsb/following', 'https://api.github.com/users/thijsb/gists', 'https://api.github.com/users/thijsb/starred', 'https://api.github.com/users/thijsb/repos', 'https://api.github.com/users/thijsb/events', 'https://api.github.com/users/thijsb/received_events', 0); +INSERT INTO `developer` VALUES (2760, 'kbarry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kyle', NULL, '', 'Gobi Desert', NULL, NULL, NULL, NULL, 0, 0, 6, 4, 0, 0, 0, '2008-03-10T19:28:51Z', '2024-05-15T16:57:03Z', 'https://avatars.githubusercontent.com/u/2760?v=4', 'https://api.github.com/users/kbarry', 'https://github.com/kbarry', 'https://api.github.com/users/kbarry/followers', 'https://api.github.com/users/kbarry/following', 'https://api.github.com/users/kbarry/gists', 'https://api.github.com/users/kbarry/starred', 'https://api.github.com/users/kbarry/repos', 'https://api.github.com/users/kbarry/events', 'https://api.github.com/users/kbarry/received_events', 0); +INSERT INTO `developer` VALUES (2761, 'joaofs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joao F Santos', NULL, 'http://jfsantos.io', 'London UK', 'hi@jfsantos.io', NULL, NULL, NULL, 0, 0, 10, 9, 0, 0, 0, '2008-03-10T19:49:55Z', '2024-10-22T10:05:59Z', 'https://avatars.githubusercontent.com/u/2761?v=4', 'https://api.github.com/users/joaofs', 'https://github.com/joaofs', 'https://api.github.com/users/joaofs/followers', 'https://api.github.com/users/joaofs/following', 'https://api.github.com/users/joaofs/gists', 'https://api.github.com/users/joaofs/starred', 'https://api.github.com/users/joaofs/repos', 'https://api.github.com/users/joaofs/events', 'https://api.github.com/users/joaofs/received_events', 0); +INSERT INTO `developer` VALUES (2762, 'asheriff', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Sheriff', NULL, 'http://aaronsheriff.com', 'Minneapolis', 'aaron.sheriff@gmail.com', NULL, NULL, NULL, 0, 0, 13, 4, 0, 0, 0, '2008-03-10T19:55:27Z', '2022-11-10T02:05:32Z', 'https://avatars.githubusercontent.com/u/2762?v=4', 'https://api.github.com/users/asheriff', 'https://github.com/asheriff', 'https://api.github.com/users/asheriff/followers', 'https://api.github.com/users/asheriff/following', 'https://api.github.com/users/asheriff/gists', 'https://api.github.com/users/asheriff/starred', 'https://api.github.com/users/asheriff/repos', 'https://api.github.com/users/asheriff/events', 'https://api.github.com/users/asheriff/received_events', 0); +INSERT INTO `developer` VALUES (2763, 'hemsheimer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harold', 'Overcommitted', 'http://overcommitted.com', 'Pismo Beach, California', 'harold@overcommittedapps.com', NULL, NULL, NULL, 0, 0, 5, 2, 0, 0, 0, '2008-03-10T20:09:26Z', '2023-02-03T18:37:15Z', 'https://avatars.githubusercontent.com/u/2763?v=4', 'https://api.github.com/users/hemsheimer', 'https://github.com/hemsheimer', 'https://api.github.com/users/hemsheimer/followers', 'https://api.github.com/users/hemsheimer/following', 'https://api.github.com/users/hemsheimer/gists', 'https://api.github.com/users/hemsheimer/starred', 'https://api.github.com/users/hemsheimer/repos', 'https://api.github.com/users/hemsheimer/events', 'https://api.github.com/users/hemsheimer/received_events', 0); +INSERT INTO `developer` VALUES (2764, 'bradland', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brad Landers', NULL, 'www.bradlanders.com', 'Vero Beach, FL', NULL, NULL, NULL, NULL, 0, 0, 7, 3, 0, 0, 0, '2008-03-10T20:27:53Z', '2024-07-15T19:06:24Z', 'https://avatars.githubusercontent.com/u/2764?v=4', 'https://api.github.com/users/bradland', 'https://github.com/bradland', 'https://api.github.com/users/bradland/followers', 'https://api.github.com/users/bradland/following', 'https://api.github.com/users/bradland/gists', 'https://api.github.com/users/bradland/starred', 'https://api.github.com/users/bradland/repos', 'https://api.github.com/users/bradland/events', 'https://api.github.com/users/bradland/received_events', 0); +INSERT INTO `developer` VALUES (2765, 'bradfordw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bradford W', NULL, '', 'Michigan', NULL, NULL, NULL, NULL, 0, 0, 48, 14, 0, 0, 0, '2008-03-10T20:32:35Z', '2024-10-04T17:40:40Z', 'https://avatars.githubusercontent.com/u/2765?v=4', 'https://api.github.com/users/bradfordw', 'https://github.com/bradfordw', 'https://api.github.com/users/bradfordw/followers', 'https://api.github.com/users/bradfordw/following', 'https://api.github.com/users/bradfordw/gists', 'https://api.github.com/users/bradfordw/starred', 'https://api.github.com/users/bradfordw/repos', 'https://api.github.com/users/bradfordw/events', 'https://api.github.com/users/bradfordw/received_events', 0); +INSERT INTO `developer` VALUES (2766, 'jonathan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Hicks', 'Salesforce', '', '未知', 'jonathan.r.hicks@gmail.com', NULL, NULL, NULL, 0, 0, 27, 8, 0, 0, 0, '2008-03-10T20:35:21Z', '2024-10-07T20:27:16Z', 'https://avatars.githubusercontent.com/u/2766?v=4', 'https://api.github.com/users/jonathan', 'https://github.com/jonathan', 'https://api.github.com/users/jonathan/followers', 'https://api.github.com/users/jonathan/following', 'https://api.github.com/users/jonathan/gists', 'https://api.github.com/users/jonathan/starred', 'https://api.github.com/users/jonathan/repos', 'https://api.github.com/users/jonathan/events', 'https://api.github.com/users/jonathan/received_events', 0); +INSERT INTO `developer` VALUES (2767, 'nono', 'C', 0.41469968555180525, 0, 0, 0, 0, 0, 0, 'Bruno Michel', 'Cozy Cloud', '', 'Paris, France', 'bruno@cozycloud.cc', NULL, NULL, NULL, 0, 0, 309, 106, 0, 0, 0, '2008-03-10T20:48:40Z', '2024-04-25T16:35:41Z', 'https://avatars.githubusercontent.com/u/2767?v=4', 'https://api.github.com/users/nono', 'https://github.com/nono', 'https://api.github.com/users/nono/followers', 'https://api.github.com/users/nono/following', 'https://api.github.com/users/nono/gists', 'https://api.github.com/users/nono/starred', 'https://api.github.com/users/nono/repos', 'https://api.github.com/users/nono/events', 'https://api.github.com/users/nono/received_events', 0); +INSERT INTO `developer` VALUES (2768, 'drw', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@WPRDC ', '', '未知', NULL, 'true', NULL, NULL, 0, 0, 16, 8, 0, 0, 0, '2008-03-10T20:58:07Z', '2024-06-21T15:01:16Z', 'https://avatars.githubusercontent.com/u/2768?v=4', 'https://api.github.com/users/drw', 'https://github.com/drw', 'https://api.github.com/users/drw/followers', 'https://api.github.com/users/drw/following', 'https://api.github.com/users/drw/gists', 'https://api.github.com/users/drw/starred', 'https://api.github.com/users/drw/repos', 'https://api.github.com/users/drw/events', 'https://api.github.com/users/drw/received_events', 0); +INSERT INTO `developer` VALUES (2769, 'freshtonic', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Sadler', NULL, '', 'Sydney, Australia', 'freshtonic@gmail.com', NULL, NULL, NULL, 0, 0, 103, 94, 0, 0, 0, '2008-03-10T21:01:27Z', '2024-10-21T11:55:26Z', 'https://avatars.githubusercontent.com/u/2769?v=4', 'https://api.github.com/users/freshtonic', 'https://github.com/freshtonic', 'https://api.github.com/users/freshtonic/followers', 'https://api.github.com/users/freshtonic/following', 'https://api.github.com/users/freshtonic/gists', 'https://api.github.com/users/freshtonic/starred', 'https://api.github.com/users/freshtonic/repos', 'https://api.github.com/users/freshtonic/events', 'https://api.github.com/users/freshtonic/received_events', 0); +INSERT INTO `developer` VALUES (2770, 'darkhorse', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-10T21:13:39Z', '2015-12-08T15:35:41Z', 'https://avatars.githubusercontent.com/u/2770?v=4', 'https://api.github.com/users/darkhorse', 'https://github.com/darkhorse', 'https://api.github.com/users/darkhorse/followers', 'https://api.github.com/users/darkhorse/following', 'https://api.github.com/users/darkhorse/gists', 'https://api.github.com/users/darkhorse/starred', 'https://api.github.com/users/darkhorse/repos', 'https://api.github.com/users/darkhorse/events', 'https://api.github.com/users/darkhorse/received_events', 0); +INSERT INTO `developer` VALUES (2771, 'andymatuschak', 'B', 48.68779301649654, 0, 0, 0, 0, 0, 0, 'Andy Matuschak', NULL, 'http://andymatuschak.org', 'San Francisco, CA', 'andy@andymatuschak.org', NULL, 'Wonder, blunder, salve, solve! \r\n\r\nWorking on tools that expand what people can think and do.\r\n\r\nPast: led R&D @khanacademy; helped build iOS @apple.', 'andy_matuschak', 0, 0, 3124, 6, 0, 0, 0, '2008-03-10T21:23:20Z', '2024-08-21T17:09:22Z', 'https://avatars.githubusercontent.com/u/2771?v=4', 'https://api.github.com/users/andymatuschak', 'https://github.com/andymatuschak', 'https://api.github.com/users/andymatuschak/followers', 'https://api.github.com/users/andymatuschak/following', 'https://api.github.com/users/andymatuschak/gists', 'https://api.github.com/users/andymatuschak/starred', 'https://api.github.com/users/andymatuschak/repos', 'https://api.github.com/users/andymatuschak/events', 'https://api.github.com/users/andymatuschak/received_events', 0); +INSERT INTO `developer` VALUES (2772, 'mayo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mayo Jordanov', NULL, 'https://oyam.ca', 'Vancouver, BC', NULL, 'true', NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-10T21:44:56Z', '2024-09-26T05:38:31Z', 'https://avatars.githubusercontent.com/u/2772?v=4', 'https://api.github.com/users/mayo', 'https://github.com/mayo', 'https://api.github.com/users/mayo/followers', 'https://api.github.com/users/mayo/following', 'https://api.github.com/users/mayo/gists', 'https://api.github.com/users/mayo/starred', 'https://api.github.com/users/mayo/repos', 'https://api.github.com/users/mayo/events', 'https://api.github.com/users/mayo/received_events', 0); +INSERT INTO `developer` VALUES (2773, 'freetwix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jochen Kramer', 'https://www.missionme.de/', '', 'Hamburg, Germany', 'freetwix@web.de', NULL, NULL, NULL, 0, 0, 34, 16, 0, 0, 0, '2008-03-10T21:59:42Z', '2024-10-15T12:27:57Z', 'https://avatars.githubusercontent.com/u/2773?v=4', 'https://api.github.com/users/freetwix', 'https://github.com/freetwix', 'https://api.github.com/users/freetwix/followers', 'https://api.github.com/users/freetwix/following', 'https://api.github.com/users/freetwix/gists', 'https://api.github.com/users/freetwix/starred', 'https://api.github.com/users/freetwix/repos', 'https://api.github.com/users/freetwix/events', 'https://api.github.com/users/freetwix/received_events', 0); +INSERT INTO `developer` VALUES (2774, 'Ninju', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex', '@uswitch ', 'http://ninju.github.io', 'London, United Kingdom', NULL, 'true', 'Polyglot engineer - started in full stack web; now mostly back-end web and data + have done native/hybrid Mobile (iOS), tvOS, games, theme park rides, and more.', NULL, 0, 0, 27, 27, 0, 0, 0, '2008-03-10T22:02:52Z', '2024-09-23T14:36:16Z', 'https://avatars.githubusercontent.com/u/2774?v=4', 'https://api.github.com/users/Ninju', 'https://github.com/Ninju', 'https://api.github.com/users/Ninju/followers', 'https://api.github.com/users/Ninju/following', 'https://api.github.com/users/Ninju/gists', 'https://api.github.com/users/Ninju/starred', 'https://api.github.com/users/Ninju/repos', 'https://api.github.com/users/Ninju/events', 'https://api.github.com/users/Ninju/received_events', 0); +INSERT INTO `developer` VALUES (2775, 'guenin', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Guenin', NULL, '', 'Portland, OR', 'john@guen.in', NULL, NULL, NULL, 0, 0, 13, 3, 0, 0, 0, '2008-03-10T22:05:24Z', '2024-09-06T05:20:47Z', 'https://avatars.githubusercontent.com/u/2775?v=4', 'https://api.github.com/users/guenin', 'https://github.com/guenin', 'https://api.github.com/users/guenin/followers', 'https://api.github.com/users/guenin/following', 'https://api.github.com/users/guenin/gists', 'https://api.github.com/users/guenin/starred', 'https://api.github.com/users/guenin/repos', 'https://api.github.com/users/guenin/events', 'https://api.github.com/users/guenin/received_events', 0); +INSERT INTO `developer` VALUES (2776, 'cool2java', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-10T22:27:39Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2776?v=4', 'https://api.github.com/users/cool2java', 'https://github.com/cool2java', 'https://api.github.com/users/cool2java/followers', 'https://api.github.com/users/cool2java/following', 'https://api.github.com/users/cool2java/gists', 'https://api.github.com/users/cool2java/starred', 'https://api.github.com/users/cool2java/repos', 'https://api.github.com/users/cool2java/events', 'https://api.github.com/users/cool2java/received_events', 0); +INSERT INTO `developer` VALUES (2777, 'cabrilo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dejan Čabrilo', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 11, 3, 0, 0, 0, '2008-03-10T22:31:26Z', '2024-08-13T11:11:06Z', 'https://avatars.githubusercontent.com/u/2777?v=4', 'https://api.github.com/users/cabrilo', 'https://github.com/cabrilo', 'https://api.github.com/users/cabrilo/followers', 'https://api.github.com/users/cabrilo/following', 'https://api.github.com/users/cabrilo/gists', 'https://api.github.com/users/cabrilo/starred', 'https://api.github.com/users/cabrilo/repos', 'https://api.github.com/users/cabrilo/events', 'https://api.github.com/users/cabrilo/received_events', 0); +INSERT INTO `developer` VALUES (2778, 'twobit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen M', NULL, '', 'Los Gatos, CA', 'stephen@hypernaut.com', NULL, 'React.js fan', NULL, 0, 0, 52, 31, 0, 0, 0, '2008-03-10T22:49:56Z', '2024-09-26T16:30:35Z', 'https://avatars.githubusercontent.com/u/2778?v=4', 'https://api.github.com/users/twobit', 'https://github.com/twobit', 'https://api.github.com/users/twobit/followers', 'https://api.github.com/users/twobit/following', 'https://api.github.com/users/twobit/gists', 'https://api.github.com/users/twobit/starred', 'https://api.github.com/users/twobit/repos', 'https://api.github.com/users/twobit/events', 'https://api.github.com/users/twobit/received_events', 0); +INSERT INTO `developer` VALUES (2779, 'agale', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-10T22:57:54Z', '2022-10-11T20:27:08Z', 'https://avatars.githubusercontent.com/u/2779?v=4', 'https://api.github.com/users/agale', 'https://github.com/agale', 'https://api.github.com/users/agale/followers', 'https://api.github.com/users/agale/following', 'https://api.github.com/users/agale/gists', 'https://api.github.com/users/agale/starred', 'https://api.github.com/users/agale/repos', 'https://api.github.com/users/agale/events', 'https://api.github.com/users/agale/received_events', 0); +INSERT INTO `developer` VALUES (2780, 'andycroll', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Croll', 'Good Scary', 'http://andycroll.com/', 'Brighton, UK', 'andy@goodscary.com', 'true', 'CTO at CoverageBook, Rubyist, Conference Organizer, Author, Speaker, Bootstrapper & Parent of Twins.', NULL, 0, 0, 120, 0, 0, 0, 0, '2008-03-10T23:58:04Z', '2024-10-16T15:51:55Z', 'https://avatars.githubusercontent.com/u/2780?v=4', 'https://api.github.com/users/andycroll', 'https://github.com/andycroll', 'https://api.github.com/users/andycroll/followers', 'https://api.github.com/users/andycroll/following', 'https://api.github.com/users/andycroll/gists', 'https://api.github.com/users/andycroll/starred', 'https://api.github.com/users/andycroll/repos', 'https://api.github.com/users/andycroll/events', 'https://api.github.com/users/andycroll/received_events', 0); +INSERT INTO `developer` VALUES (2781, 'chorrell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Horrell', 'Nymi', 'https://horrell.ca/', 'Toronto', 'christopher@horrell.ca', NULL, 'I do DevOps things 👨‍💻. Former @nylas, @joyent. Toronto.', NULL, 0, 0, 78, 21, 0, 0, 0, '2008-03-11T00:39:57Z', '2024-11-01T23:17:21Z', 'https://avatars.githubusercontent.com/u/2781?v=4', 'https://api.github.com/users/chorrell', 'https://github.com/chorrell', 'https://api.github.com/users/chorrell/followers', 'https://api.github.com/users/chorrell/following', 'https://api.github.com/users/chorrell/gists', 'https://api.github.com/users/chorrell/starred', 'https://api.github.com/users/chorrell/repos', 'https://api.github.com/users/chorrell/events', 'https://api.github.com/users/chorrell/received_events', 0); +INSERT INTO `developer` VALUES (2782, 'Grayson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Grayson Hansard', NULL, '', 'North Carolina', 'grayson.hansard@gmail.com', 'true', 'Programmer/malcontent.\r\n\r\nOld school Mac developer. Now multi-platform. Loves compiled languages.', 'Grayson', 0, 0, 39, 11, 0, 0, 0, '2008-03-11T00:54:01Z', '2024-10-02T13:07:31Z', 'https://avatars.githubusercontent.com/u/2782?v=4', 'https://api.github.com/users/Grayson', 'https://github.com/Grayson', 'https://api.github.com/users/Grayson/followers', 'https://api.github.com/users/Grayson/following', 'https://api.github.com/users/Grayson/gists', 'https://api.github.com/users/Grayson/starred', 'https://api.github.com/users/Grayson/repos', 'https://api.github.com/users/Grayson/events', 'https://api.github.com/users/Grayson/received_events', 0); +INSERT INTO `developer` VALUES (2783, 'ozeias', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ozéias Sant\'ana', NULL, 'http://ozeias.com', 'Austin, TX', 'oz.santana@gmail.com', 'true', NULL, 'ozeias', 0, 0, 81, 62, 0, 0, 0, '2008-03-11T00:55:53Z', '2024-10-13T04:10:52Z', 'https://avatars.githubusercontent.com/u/2783?v=4', 'https://api.github.com/users/ozeias', 'https://github.com/ozeias', 'https://api.github.com/users/ozeias/followers', 'https://api.github.com/users/ozeias/following', 'https://api.github.com/users/ozeias/gists', 'https://api.github.com/users/ozeias/starred', 'https://api.github.com/users/ozeias/repos', 'https://api.github.com/users/ozeias/events', 'https://api.github.com/users/ozeias/received_events', 0); +INSERT INTO `developer` VALUES (2784, 'acesuares', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ace Suares', 'Suares & Co', 'http://opencuracao.com', 'Willemstad, Netherlands Antilles', 'ace@suares.com', NULL, NULL, NULL, 0, 0, 30, 36, 0, 0, 0, '2008-03-11T01:33:20Z', '2024-11-02T00:21:56Z', 'https://avatars.githubusercontent.com/u/2784?v=4', 'https://api.github.com/users/acesuares', 'https://github.com/acesuares', 'https://api.github.com/users/acesuares/followers', 'https://api.github.com/users/acesuares/following', 'https://api.github.com/users/acesuares/gists', 'https://api.github.com/users/acesuares/starred', 'https://api.github.com/users/acesuares/repos', 'https://api.github.com/users/acesuares/events', 'https://api.github.com/users/acesuares/received_events', 0); +INSERT INTO `developer` VALUES (2785, 'tritq', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tri Tran', NULL, '', '未知', NULL, NULL, 'You can do it!', NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-11T01:44:54Z', '2024-11-05T04:06:39Z', 'https://avatars.githubusercontent.com/u/2785?v=4', 'https://api.github.com/users/tritq', 'https://github.com/tritq', 'https://api.github.com/users/tritq/followers', 'https://api.github.com/users/tritq/following', 'https://api.github.com/users/tritq/gists', 'https://api.github.com/users/tritq/starred', 'https://api.github.com/users/tritq/repos', 'https://api.github.com/users/tritq/events', 'https://api.github.com/users/tritq/received_events', 0); +INSERT INTO `developer` VALUES (2786, 'lavallee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Lavallee', 'Knight Foundation', '', 'New York, NY', 'mlavallee@gmail.com', NULL, 'Director/Journalism Technology Product and Strategy, Knight Foundation', 'lavallee', 0, 0, 107, 33, 0, 0, 0, '2008-03-11T02:13:08Z', '2024-11-01T04:48:50Z', 'https://avatars.githubusercontent.com/u/2786?v=4', 'https://api.github.com/users/lavallee', 'https://github.com/lavallee', 'https://api.github.com/users/lavallee/followers', 'https://api.github.com/users/lavallee/following', 'https://api.github.com/users/lavallee/gists', 'https://api.github.com/users/lavallee/starred', 'https://api.github.com/users/lavallee/repos', 'https://api.github.com/users/lavallee/events', 'https://api.github.com/users/lavallee/received_events', 0); +INSERT INTO `developer` VALUES (2787, 'jsallis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Sallis', NULL, '', 'Toronto, Ontario', NULL, 'true', NULL, NULL, 0, 0, 28, 0, 0, 0, 0, '2008-03-11T03:12:53Z', '2024-09-30T14:56:44Z', 'https://avatars.githubusercontent.com/u/2787?v=4', 'https://api.github.com/users/jsallis', 'https://github.com/jsallis', 'https://api.github.com/users/jsallis/followers', 'https://api.github.com/users/jsallis/following', 'https://api.github.com/users/jsallis/gists', 'https://api.github.com/users/jsallis/starred', 'https://api.github.com/users/jsallis/repos', 'https://api.github.com/users/jsallis/events', 'https://api.github.com/users/jsallis/received_events', 0); +INSERT INTO `developer` VALUES (2789, 'jawbroken', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 7, 0, 0, 0, '2008-03-11T04:11:50Z', '2024-10-15T09:38:25Z', 'https://avatars.githubusercontent.com/u/2789?v=4', 'https://api.github.com/users/jawbroken', 'https://github.com/jawbroken', 'https://api.github.com/users/jawbroken/followers', 'https://api.github.com/users/jawbroken/following', 'https://api.github.com/users/jawbroken/gists', 'https://api.github.com/users/jawbroken/starred', 'https://api.github.com/users/jawbroken/repos', 'https://api.github.com/users/jawbroken/events', 'https://api.github.com/users/jawbroken/received_events', 0); +INSERT INTO `developer` VALUES (2790, 'joshuabates', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Bates', '@opencounter ', '', 'Santa Fe, NM', 'joshuabates@gmail.com', NULL, NULL, NULL, 0, 0, 35, 25, 0, 0, 0, '2008-03-11T04:19:57Z', '2024-10-01T17:49:58Z', 'https://avatars.githubusercontent.com/u/2790?v=4', 'https://api.github.com/users/joshuabates', 'https://github.com/joshuabates', 'https://api.github.com/users/joshuabates/followers', 'https://api.github.com/users/joshuabates/following', 'https://api.github.com/users/joshuabates/gists', 'https://api.github.com/users/joshuabates/starred', 'https://api.github.com/users/joshuabates/repos', 'https://api.github.com/users/joshuabates/events', 'https://api.github.com/users/joshuabates/received_events', 0); +INSERT INTO `developer` VALUES (2791, 'bbum', 'C', 0, 0, 0, 0, 0, 0, 0, 'bbum', NULL, 'http://www.friday.com/bbum/', 'Wherever I am.', NULL, NULL, 'I do stuff with things.', NULL, 0, 0, 21, 0, 0, 0, 0, '2008-03-11T05:56:55Z', '2024-11-04T00:10:26Z', 'https://avatars.githubusercontent.com/u/2791?v=4', 'https://api.github.com/users/bbum', 'https://github.com/bbum', 'https://api.github.com/users/bbum/followers', 'https://api.github.com/users/bbum/following', 'https://api.github.com/users/bbum/gists', 'https://api.github.com/users/bbum/starred', 'https://api.github.com/users/bbum/repos', 'https://api.github.com/users/bbum/events', 'https://api.github.com/users/bbum/received_events', 0); +INSERT INTO `developer` VALUES (2792, 'deepblue', 'C', 0, 0, 0, 0, 0, 0, 0, 'Moonsik Kang', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 52, 10, 0, 0, 0, '2008-03-11T07:37:36Z', '2024-10-09T00:38:26Z', 'https://avatars.githubusercontent.com/u/2792?v=4', 'https://api.github.com/users/deepblue', 'https://github.com/deepblue', 'https://api.github.com/users/deepblue/followers', 'https://api.github.com/users/deepblue/following', 'https://api.github.com/users/deepblue/gists', 'https://api.github.com/users/deepblue/starred', 'https://api.github.com/users/deepblue/repos', 'https://api.github.com/users/deepblue/events', 'https://api.github.com/users/deepblue/received_events', 0); +INSERT INTO `developer` VALUES (2793, 'Geert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Geert', 'Newminds', 'https://agrio.software/', 'Netherlands', 'g.rozendom@newminds.nl', NULL, 'Co-founder and CTO of Newminds. Newminds: Business Administration and (Azure) infra for midsized companies. ', NULL, 0, 0, 8, 61, 0, 0, 0, '2008-03-11T07:59:45Z', '2024-09-23T06:36:29Z', 'https://avatars.githubusercontent.com/u/2793?v=4', 'https://api.github.com/users/Geert', 'https://github.com/Geert', 'https://api.github.com/users/Geert/followers', 'https://api.github.com/users/Geert/following', 'https://api.github.com/users/Geert/gists', 'https://api.github.com/users/Geert/starred', 'https://api.github.com/users/Geert/repos', 'https://api.github.com/users/Geert/events', 'https://api.github.com/users/Geert/received_events', 0); +INSERT INTO `developer` VALUES (2794, 'yannick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yannick Koechlin', 'CTO @ deeptech.capital , cwire.media and eatplanted.com', 'deeptech.capital', 'Zürich, Switzerland', NULL, NULL, 'been there done stream processing', 'yawniek', 0, 0, 48, 55, 0, 0, 0, '2008-03-11T08:15:59Z', '2024-09-24T20:38:04Z', 'https://avatars.githubusercontent.com/u/2794?v=4', 'https://api.github.com/users/yannick', 'https://github.com/yannick', 'https://api.github.com/users/yannick/followers', 'https://api.github.com/users/yannick/following', 'https://api.github.com/users/yannick/gists', 'https://api.github.com/users/yannick/starred', 'https://api.github.com/users/yannick/repos', 'https://api.github.com/users/yannick/events', 'https://api.github.com/users/yannick/received_events', 0); +INSERT INTO `developer` VALUES (2795, 'wildtangent', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joey Connor', 'Authomedia', 'http://www.authomedia.co.uk', 'Newcastle Upon Tyne', NULL, 'true', NULL, NULL, 0, 0, 11, 4, 0, 0, 0, '2008-03-11T09:17:34Z', '2024-09-20T07:07:14Z', 'https://avatars.githubusercontent.com/u/2795?v=4', 'https://api.github.com/users/wildtangent', 'https://github.com/wildtangent', 'https://api.github.com/users/wildtangent/followers', 'https://api.github.com/users/wildtangent/following', 'https://api.github.com/users/wildtangent/gists', 'https://api.github.com/users/wildtangent/starred', 'https://api.github.com/users/wildtangent/repos', 'https://api.github.com/users/wildtangent/events', 'https://api.github.com/users/wildtangent/received_events', 0); +INSERT INTO `developer` VALUES (2796, 'dlc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Darren Chamberlain', NULL, '', '未知', NULL, NULL, NULL, 'dlc', 0, 0, 52, 0, 0, 0, 0, '2008-03-11T10:50:01Z', '2024-10-27T16:34:31Z', 'https://avatars.githubusercontent.com/u/2796?v=4', 'https://api.github.com/users/dlc', 'https://github.com/dlc', 'https://api.github.com/users/dlc/followers', 'https://api.github.com/users/dlc/following', 'https://api.github.com/users/dlc/gists', 'https://api.github.com/users/dlc/starred', 'https://api.github.com/users/dlc/repos', 'https://api.github.com/users/dlc/events', 'https://api.github.com/users/dlc/received_events', 0); +INSERT INTO `developer` VALUES (2797, 'masone', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Felder', 'SMG', 'http://cfelder.com', 'Zurich, Switzerland', NULL, NULL, NULL, NULL, 0, 0, 48, 12, 0, 0, 0, '2008-03-11T11:10:56Z', '2024-07-12T12:24:34Z', 'https://avatars.githubusercontent.com/u/2797?v=4', 'https://api.github.com/users/masone', 'https://github.com/masone', 'https://api.github.com/users/masone/followers', 'https://api.github.com/users/masone/following', 'https://api.github.com/users/masone/gists', 'https://api.github.com/users/masone/starred', 'https://api.github.com/users/masone/repos', 'https://api.github.com/users/masone/events', 'https://api.github.com/users/masone/received_events', 0); +INSERT INTO `developer` VALUES (2798, 'spgarbet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shawn Garbett', 'Vanderbilt University Medical Center', 'http://garbett.org', 'Nashville, TN', 'shawn@garbett.org', NULL, 'Stochastic Walk of Life', NULL, 0, 0, 31, 5, 0, 0, 0, '2008-03-11T12:56:36Z', '2024-11-04T20:50:25Z', 'https://avatars.githubusercontent.com/u/2798?v=4', 'https://api.github.com/users/spgarbet', 'https://github.com/spgarbet', 'https://api.github.com/users/spgarbet/followers', 'https://api.github.com/users/spgarbet/following', 'https://api.github.com/users/spgarbet/gists', 'https://api.github.com/users/spgarbet/starred', 'https://api.github.com/users/spgarbet/repos', 'https://api.github.com/users/spgarbet/events', 'https://api.github.com/users/spgarbet/received_events', 0); +INSERT INTO `developer` VALUES (2799, 'vickeryj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Vickery', NULL, 'http://vickeryj.com', 'Brooklyn, NY', 'github@vickeryj.com', NULL, NULL, NULL, 0, 0, 29, 8, 0, 0, 0, '2008-03-11T13:01:16Z', '2024-10-31T16:07:55Z', 'https://avatars.githubusercontent.com/u/2799?v=4', 'https://api.github.com/users/vickeryj', 'https://github.com/vickeryj', 'https://api.github.com/users/vickeryj/followers', 'https://api.github.com/users/vickeryj/following', 'https://api.github.com/users/vickeryj/gists', 'https://api.github.com/users/vickeryj/starred', 'https://api.github.com/users/vickeryj/repos', 'https://api.github.com/users/vickeryj/events', 'https://api.github.com/users/vickeryj/received_events', 0); +INSERT INTO `developer` VALUES (2800, 'dgfitch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Fitch', 'UW-Madison', 'http://danielgfitch.com', 'Madison, WI', NULL, NULL, 'Research programmer by day, punk viz weirdo by night.', NULL, 0, 0, 15, 9, 0, 0, 0, '2008-03-11T13:37:44Z', '2024-10-28T03:05:58Z', 'https://avatars.githubusercontent.com/u/2800?v=4', 'https://api.github.com/users/dgfitch', 'https://github.com/dgfitch', 'https://api.github.com/users/dgfitch/followers', 'https://api.github.com/users/dgfitch/following', 'https://api.github.com/users/dgfitch/gists', 'https://api.github.com/users/dgfitch/starred', 'https://api.github.com/users/dgfitch/repos', 'https://api.github.com/users/dgfitch/events', 'https://api.github.com/users/dgfitch/received_events', 0); +INSERT INTO `developer` VALUES (2801, 'loke-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-11T14:22:10Z', '2016-02-26T22:34:52Z', 'https://avatars.githubusercontent.com/u/2801?v=4', 'https://api.github.com/users/loke-xx', 'https://github.com/loke-xx', 'https://api.github.com/users/loke-xx/followers', 'https://api.github.com/users/loke-xx/following', 'https://api.github.com/users/loke-xx/gists', 'https://api.github.com/users/loke-xx/starred', 'https://api.github.com/users/loke-xx/repos', 'https://api.github.com/users/loke-xx/events', 'https://api.github.com/users/loke-xx/received_events', 0); +INSERT INTO `developer` VALUES (2802, 'Jeraimee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeraimee', NULL, 'http://jeraimee.com/', 'Colorado', 'me@jeraimee.com', NULL, NULL, NULL, 0, 0, 19, 3, 0, 0, 0, '2008-03-11T15:08:33Z', '2024-03-11T06:12:54Z', 'https://avatars.githubusercontent.com/u/2802?v=4', 'https://api.github.com/users/Jeraimee', 'https://github.com/Jeraimee', 'https://api.github.com/users/Jeraimee/followers', 'https://api.github.com/users/Jeraimee/following', 'https://api.github.com/users/Jeraimee/gists', 'https://api.github.com/users/Jeraimee/starred', 'https://api.github.com/users/Jeraimee/repos', 'https://api.github.com/users/Jeraimee/events', 'https://api.github.com/users/Jeraimee/received_events', 0); +INSERT INTO `developer` VALUES (2803, 'haruska', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Haruska', 'Pinecone', 'https://haruska.com', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 50, 19, 0, 0, 0, '2008-03-11T15:24:39Z', '2024-10-21T18:32:48Z', 'https://avatars.githubusercontent.com/u/2803?v=4', 'https://api.github.com/users/haruska', 'https://github.com/haruska', 'https://api.github.com/users/haruska/followers', 'https://api.github.com/users/haruska/following', 'https://api.github.com/users/haruska/gists', 'https://api.github.com/users/haruska/starred', 'https://api.github.com/users/haruska/repos', 'https://api.github.com/users/haruska/events', 'https://api.github.com/users/haruska/received_events', 0); +INSERT INTO `developer` VALUES (2804, 'fermion', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Sterner', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 60, 19, 0, 0, 0, '2008-03-11T15:27:09Z', '2024-08-19T16:38:09Z', 'https://avatars.githubusercontent.com/u/2804?v=4', 'https://api.github.com/users/fermion', 'https://github.com/fermion', 'https://api.github.com/users/fermion/followers', 'https://api.github.com/users/fermion/following', 'https://api.github.com/users/fermion/gists', 'https://api.github.com/users/fermion/starred', 'https://api.github.com/users/fermion/repos', 'https://api.github.com/users/fermion/events', 'https://api.github.com/users/fermion/received_events', 0); +INSERT INTO `developer` VALUES (2805, 'mdarby', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Darby', NULL, 'matt-darby.com', 'Columbus, OH', 'matt@matt-darby.com', 'true', 'Programming for 25+ years; MSCS. Former CEO, CTO, Prof, speaker.\r\n', 'mattdarby', 0, 0, 103, 22, 0, 0, 0, '2008-03-11T15:27:41Z', '2024-10-15T19:59:02Z', 'https://avatars.githubusercontent.com/u/2805?v=4', 'https://api.github.com/users/mdarby', 'https://github.com/mdarby', 'https://api.github.com/users/mdarby/followers', 'https://api.github.com/users/mdarby/following', 'https://api.github.com/users/mdarby/gists', 'https://api.github.com/users/mdarby/starred', 'https://api.github.com/users/mdarby/repos', 'https://api.github.com/users/mdarby/events', 'https://api.github.com/users/mdarby/received_events', 0); +INSERT INTO `developer` VALUES (2806, 'bprater', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 1, 0, 0, 0, '2008-03-11T15:28:30Z', '2022-08-09T18:37:42Z', 'https://avatars.githubusercontent.com/u/2806?v=4', 'https://api.github.com/users/bprater', 'https://github.com/bprater', 'https://api.github.com/users/bprater/followers', 'https://api.github.com/users/bprater/following', 'https://api.github.com/users/bprater/gists', 'https://api.github.com/users/bprater/starred', 'https://api.github.com/users/bprater/repos', 'https://api.github.com/users/bprater/events', 'https://api.github.com/users/bprater/received_events', 0); +INSERT INTO `developer` VALUES (2807, 'alakra', 'C', 0, 0, 0, 0, 0, 0, 0, 'Angelo Lakra', 'Homebase', 'https://www.angelolakra.com', 'Denver, CO', NULL, NULL, 'Integer friendly, not like those float types.', NULL, 0, 0, 64, 200, 0, 0, 0, '2008-03-11T15:28:32Z', '2024-10-19T23:27:27Z', 'https://avatars.githubusercontent.com/u/2807?v=4', 'https://api.github.com/users/alakra', 'https://github.com/alakra', 'https://api.github.com/users/alakra/followers', 'https://api.github.com/users/alakra/following', 'https://api.github.com/users/alakra/gists', 'https://api.github.com/users/alakra/starred', 'https://api.github.com/users/alakra/repos', 'https://api.github.com/users/alakra/events', 'https://api.github.com/users/alakra/received_events', 0); +INSERT INTO `developer` VALUES (2808, 'comewalk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Takatsugu Shigeta', 'Six Apart Ltd.', 'https://shigeta.dev', 'Tokyo, Japan', NULL, NULL, NULL, NULL, 0, 0, 34, 12, 0, 0, 0, '2008-03-11T15:29:38Z', '2024-04-24T07:02:00Z', 'https://avatars.githubusercontent.com/u/2808?v=4', 'https://api.github.com/users/comewalk', 'https://github.com/comewalk', 'https://api.github.com/users/comewalk/followers', 'https://api.github.com/users/comewalk/following', 'https://api.github.com/users/comewalk/gists', 'https://api.github.com/users/comewalk/starred', 'https://api.github.com/users/comewalk/repos', 'https://api.github.com/users/comewalk/events', 'https://api.github.com/users/comewalk/received_events', 0); +INSERT INTO `developer` VALUES (2809, 'jcontonio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jay Contonio', '@BonkeyBong', 'http://conton.io/', 'Portland, OR', 'jay@conton.io', NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-03-11T15:30:08Z', '2024-10-16T16:40:12Z', 'https://avatars.githubusercontent.com/u/2809?v=4', 'https://api.github.com/users/jcontonio', 'https://github.com/jcontonio', 'https://api.github.com/users/jcontonio/followers', 'https://api.github.com/users/jcontonio/following', 'https://api.github.com/users/jcontonio/gists', 'https://api.github.com/users/jcontonio/starred', 'https://api.github.com/users/jcontonio/repos', 'https://api.github.com/users/jcontonio/events', 'https://api.github.com/users/jcontonio/received_events', 0); +INSERT INTO `developer` VALUES (2810, 'buggedcom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oliver Lillie', '@NewThingsCo ', '', 'Helsinki, Finland', 'oliver.lillie@newthings.co', NULL, 'I\'m an experienced full stack developer and designer.', NULL, 0, 0, 26, 1, 0, 0, 0, '2008-03-11T15:30:33Z', '2024-10-31T08:52:28Z', 'https://avatars.githubusercontent.com/u/2810?v=4', 'https://api.github.com/users/buggedcom', 'https://github.com/buggedcom', 'https://api.github.com/users/buggedcom/followers', 'https://api.github.com/users/buggedcom/following', 'https://api.github.com/users/buggedcom/gists', 'https://api.github.com/users/buggedcom/starred', 'https://api.github.com/users/buggedcom/repos', 'https://api.github.com/users/buggedcom/events', 'https://api.github.com/users/buggedcom/received_events', 0); +INSERT INTO `developer` VALUES (2811, 'cgodefroy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cyril Godefroy', 'Club Positif', 'cyrilgodefroy.com', 'Paris, France', NULL, NULL, NULL, NULL, 0, 0, 7, 4, 0, 0, 0, '2008-03-11T15:34:37Z', '2024-10-14T07:28:13Z', 'https://avatars.githubusercontent.com/u/2811?v=4', 'https://api.github.com/users/cgodefroy', 'https://github.com/cgodefroy', 'https://api.github.com/users/cgodefroy/followers', 'https://api.github.com/users/cgodefroy/following', 'https://api.github.com/users/cgodefroy/gists', 'https://api.github.com/users/cgodefroy/starred', 'https://api.github.com/users/cgodefroy/repos', 'https://api.github.com/users/cgodefroy/events', 'https://api.github.com/users/cgodefroy/received_events', 0); +INSERT INTO `developer` VALUES (2812, 'maxime', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maxime Guilbot', '@ekohe ', 'https://ekohe.com', 'Tokyo, Japan, Shanghai, China and Paris, France', 'maxime@ekohe.com', NULL, NULL, NULL, 0, 0, 84, 16, 0, 0, 0, '2008-03-11T15:36:19Z', '2024-10-26T10:41:01Z', 'https://avatars.githubusercontent.com/u/2812?v=4', 'https://api.github.com/users/maxime', 'https://github.com/maxime', 'https://api.github.com/users/maxime/followers', 'https://api.github.com/users/maxime/following', 'https://api.github.com/users/maxime/gists', 'https://api.github.com/users/maxime/starred', 'https://api.github.com/users/maxime/repos', 'https://api.github.com/users/maxime/events', 'https://api.github.com/users/maxime/received_events', 0); +INSERT INTO `developer` VALUES (2813, 'davidwoodhouse', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-11T15:37:12Z', '2016-12-17T09:13:08Z', 'https://avatars.githubusercontent.com/u/2813?v=4', 'https://api.github.com/users/davidwoodhouse', 'https://github.com/davidwoodhouse', 'https://api.github.com/users/davidwoodhouse/followers', 'https://api.github.com/users/davidwoodhouse/following', 'https://api.github.com/users/davidwoodhouse/gists', 'https://api.github.com/users/davidwoodhouse/starred', 'https://api.github.com/users/davidwoodhouse/repos', 'https://api.github.com/users/davidwoodhouse/events', 'https://api.github.com/users/davidwoodhouse/received_events', 0); +INSERT INTO `developer` VALUES (2814, 'jeffgabhart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Gabhart', NULL, '', 'South Dakota', NULL, NULL, NULL, NULL, 0, 0, 15, 16, 0, 0, 0, '2008-03-11T15:38:27Z', '2024-07-12T22:31:57Z', 'https://avatars.githubusercontent.com/u/2814?v=4', 'https://api.github.com/users/jeffgabhart', 'https://github.com/jeffgabhart', 'https://api.github.com/users/jeffgabhart/followers', 'https://api.github.com/users/jeffgabhart/following', 'https://api.github.com/users/jeffgabhart/gists', 'https://api.github.com/users/jeffgabhart/starred', 'https://api.github.com/users/jeffgabhart/repos', 'https://api.github.com/users/jeffgabhart/events', 'https://api.github.com/users/jeffgabhart/received_events', 0); +INSERT INTO `developer` VALUES (2815, 'dbalexandre', 'C', 0, 0, 0, 0, 0, 0, 0, 'Douglas Barbosa Alexandre', NULL, '', 'Lavras/MG', 'dbalexandre@gmail.com', NULL, NULL, NULL, 0, 0, 38, 4, 0, 0, 0, '2008-03-11T15:41:21Z', '2023-06-15T18:15:20Z', 'https://avatars.githubusercontent.com/u/2815?v=4', 'https://api.github.com/users/dbalexandre', 'https://github.com/dbalexandre', 'https://api.github.com/users/dbalexandre/followers', 'https://api.github.com/users/dbalexandre/following', 'https://api.github.com/users/dbalexandre/gists', 'https://api.github.com/users/dbalexandre/starred', 'https://api.github.com/users/dbalexandre/repos', 'https://api.github.com/users/dbalexandre/events', 'https://api.github.com/users/dbalexandre/received_events', 0); +INSERT INTO `developer` VALUES (2816, 'plaz', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Plassmann', NULL, '', 'Washington, DC', 'plaz42@gmail.com', NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-11T15:43:09Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2816?v=4', 'https://api.github.com/users/plaz', 'https://github.com/plaz', 'https://api.github.com/users/plaz/followers', 'https://api.github.com/users/plaz/following', 'https://api.github.com/users/plaz/gists', 'https://api.github.com/users/plaz/starred', 'https://api.github.com/users/plaz/repos', 'https://api.github.com/users/plaz/events', 'https://api.github.com/users/plaz/received_events', 0); +INSERT INTO `developer` VALUES (2817, 'euphoria', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Greene', NULL, 'https://stackoverflow.com/story/michael-greene', 'Chicago, IL', 'michael.greene@gmail.com', NULL, NULL, NULL, 0, 0, 43, 8, 0, 0, 0, '2008-03-11T15:43:35Z', '2022-01-13T17:50:34Z', 'https://avatars.githubusercontent.com/u/2817?v=4', 'https://api.github.com/users/euphoria', 'https://github.com/euphoria', 'https://api.github.com/users/euphoria/followers', 'https://api.github.com/users/euphoria/following', 'https://api.github.com/users/euphoria/gists', 'https://api.github.com/users/euphoria/starred', 'https://api.github.com/users/euphoria/repos', 'https://api.github.com/users/euphoria/events', 'https://api.github.com/users/euphoria/received_events', 0); +INSERT INTO `developer` VALUES (2819, 'mikker', 'C', 1.9752153136569455, 0, 0, 0, 0, 0, 0, 'Mikkel Malmberg', '@brnbw + @RNDMCHARACTERS', 'https://mikkelmalmberg.com/ama', 'Denmark', 'mikkel@brnbw.com', NULL, 'Top Highlight', 'mikker', 0, 0, 400, 173, 0, 0, 0, '2008-03-11T15:45:55Z', '2024-10-16T09:19:47Z', 'https://avatars.githubusercontent.com/u/2819?v=4', 'https://api.github.com/users/mikker', 'https://github.com/mikker', 'https://api.github.com/users/mikker/followers', 'https://api.github.com/users/mikker/following', 'https://api.github.com/users/mikker/gists', 'https://api.github.com/users/mikker/starred', 'https://api.github.com/users/mikker/repos', 'https://api.github.com/users/mikker/events', 'https://api.github.com/users/mikker/received_events', 0); +INSERT INTO `developer` VALUES (2820, 'octernion', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-11T15:49:36Z', '2021-01-31T09:05:13Z', 'https://avatars.githubusercontent.com/u/2820?v=4', 'https://api.github.com/users/octernion', 'https://github.com/octernion', 'https://api.github.com/users/octernion/followers', 'https://api.github.com/users/octernion/following', 'https://api.github.com/users/octernion/gists', 'https://api.github.com/users/octernion/starred', 'https://api.github.com/users/octernion/repos', 'https://api.github.com/users/octernion/events', 'https://api.github.com/users/octernion/received_events', 0); +INSERT INTO `developer` VALUES (2821, 'fluxin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bob Klosinski', NULL, '', 'Austin, TX', 'fluxin@gmail.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-11T15:50:07Z', '2024-10-06T20:55:21Z', 'https://avatars.githubusercontent.com/u/2821?v=4', 'https://api.github.com/users/fluxin', 'https://github.com/fluxin', 'https://api.github.com/users/fluxin/followers', 'https://api.github.com/users/fluxin/following', 'https://api.github.com/users/fluxin/gists', 'https://api.github.com/users/fluxin/starred', 'https://api.github.com/users/fluxin/repos', 'https://api.github.com/users/fluxin/events', 'https://api.github.com/users/fluxin/received_events', 0); +INSERT INTO `developer` VALUES (2822, 'dhowden', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Howden', '@algolia (prev @sajari)', '', 'Sydney, Australia', 'dhowden@gmail.com', NULL, NULL, NULL, 0, 0, 101, 32, 0, 0, 0, '2008-03-11T15:58:04Z', '2024-10-30T21:56:00Z', 'https://avatars.githubusercontent.com/u/2822?v=4', 'https://api.github.com/users/dhowden', 'https://github.com/dhowden', 'https://api.github.com/users/dhowden/followers', 'https://api.github.com/users/dhowden/following', 'https://api.github.com/users/dhowden/gists', 'https://api.github.com/users/dhowden/starred', 'https://api.github.com/users/dhowden/repos', 'https://api.github.com/users/dhowden/events', 'https://api.github.com/users/dhowden/received_events', 0); +INSERT INTO `developer` VALUES (2824, 'andrianm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adrian', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-11T16:06:16Z', '2024-09-11T16:59:09Z', 'https://avatars.githubusercontent.com/u/2824?v=4', 'https://api.github.com/users/andrianm', 'https://github.com/andrianm', 'https://api.github.com/users/andrianm/followers', 'https://api.github.com/users/andrianm/following', 'https://api.github.com/users/andrianm/gists', 'https://api.github.com/users/andrianm/starred', 'https://api.github.com/users/andrianm/repos', 'https://api.github.com/users/andrianm/events', 'https://api.github.com/users/andrianm/received_events', 0); +INSERT INTO `developer` VALUES (2825, 'ceejayoz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Sternal-Johnson', 'Multibrain', 'https://ceejayoz.com/', 'Pittsford, NY', 'chris@sternal-johnson.com', NULL, NULL, NULL, 0, 0, 33, 22, 0, 0, 0, '2008-03-11T16:07:08Z', '2024-08-16T12:05:34Z', 'https://avatars.githubusercontent.com/u/2825?v=4', 'https://api.github.com/users/ceejayoz', 'https://github.com/ceejayoz', 'https://api.github.com/users/ceejayoz/followers', 'https://api.github.com/users/ceejayoz/following', 'https://api.github.com/users/ceejayoz/gists', 'https://api.github.com/users/ceejayoz/starred', 'https://api.github.com/users/ceejayoz/repos', 'https://api.github.com/users/ceejayoz/events', 'https://api.github.com/users/ceejayoz/received_events', 0); +INSERT INTO `developer` VALUES (2826, 'bretthall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brett Hall', NULL, 'http://backwardsincompatibilities.wordpress.com/', 'goleta, ca', 'bretthall@speedymail.org', NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-11T16:08:15Z', '2024-10-08T23:22:35Z', 'https://avatars.githubusercontent.com/u/2826?v=4', 'https://api.github.com/users/bretthall', 'https://github.com/bretthall', 'https://api.github.com/users/bretthall/followers', 'https://api.github.com/users/bretthall/following', 'https://api.github.com/users/bretthall/gists', 'https://api.github.com/users/bretthall/starred', 'https://api.github.com/users/bretthall/repos', 'https://api.github.com/users/bretthall/events', 'https://api.github.com/users/bretthall/received_events', 0); +INSERT INTO `developer` VALUES (2827, 'prepor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Rudenko', '@LanglyProject', '', 'Berlin, Germany', 'me@prepor.dev', NULL, NULL, NULL, 0, 0, 160, 20, 0, 0, 0, '2008-03-11T16:11:10Z', '2024-10-07T06:48:13Z', 'https://avatars.githubusercontent.com/u/2827?v=4', 'https://api.github.com/users/prepor', 'https://github.com/prepor', 'https://api.github.com/users/prepor/followers', 'https://api.github.com/users/prepor/following', 'https://api.github.com/users/prepor/gists', 'https://api.github.com/users/prepor/starred', 'https://api.github.com/users/prepor/repos', 'https://api.github.com/users/prepor/events', 'https://api.github.com/users/prepor/received_events', 0); +INSERT INTO `developer` VALUES (2828, 'Ossi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-11T16:14:10Z', '2019-12-22T00:37:35Z', 'https://avatars.githubusercontent.com/u/2828?v=4', 'https://api.github.com/users/Ossi', 'https://github.com/Ossi', 'https://api.github.com/users/Ossi/followers', 'https://api.github.com/users/Ossi/following', 'https://api.github.com/users/Ossi/gists', 'https://api.github.com/users/Ossi/starred', 'https://api.github.com/users/Ossi/repos', 'https://api.github.com/users/Ossi/events', 'https://api.github.com/users/Ossi/received_events', 0); +INSERT INTO `developer` VALUES (2829, 'masukomi', 'C', 0, 0, 0, 0, 0, 0, 0, 'masukomi (a.k.a. Kay Rhodes)', NULL, 'https://masukomi.org', 'Vermont, USA', 'masukomi@masukomi.org', 'true', 'Autodidactic, Autistic, ADHD, Adventurer, and Geeky Programmer. ', NULL, 0, 0, 131, 12, 0, 0, 0, '2008-03-11T16:15:30Z', '2024-07-31T14:10:34Z', 'https://avatars.githubusercontent.com/u/2829?v=4', 'https://api.github.com/users/masukomi', 'https://github.com/masukomi', 'https://api.github.com/users/masukomi/followers', 'https://api.github.com/users/masukomi/following', 'https://api.github.com/users/masukomi/gists', 'https://api.github.com/users/masukomi/starred', 'https://api.github.com/users/masukomi/repos', 'https://api.github.com/users/masukomi/events', 'https://api.github.com/users/masukomi/received_events', 0); +INSERT INTO `developer` VALUES (2830, 'mterenzio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Terenzio', NULL, '', 'North Stamford, CT', 'mterenzio@gmail.com', NULL, NULL, NULL, 0, 0, 31, 26, 0, 0, 0, '2008-03-11T16:17:02Z', '2024-09-25T13:30:57Z', 'https://avatars.githubusercontent.com/u/2830?v=4', 'https://api.github.com/users/mterenzio', 'https://github.com/mterenzio', 'https://api.github.com/users/mterenzio/followers', 'https://api.github.com/users/mterenzio/following', 'https://api.github.com/users/mterenzio/gists', 'https://api.github.com/users/mterenzio/starred', 'https://api.github.com/users/mterenzio/repos', 'https://api.github.com/users/mterenzio/events', 'https://api.github.com/users/mterenzio/received_events', 0); +INSERT INTO `developer` VALUES (2831, 'semin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Semin Lee', 'UNIST', 'http://bme.unist.ac.kr', 'Ulsan, Korea', 'seminlee@gmail.com', NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2008-03-11T16:49:40Z', '2018-09-22T11:04:57Z', 'https://avatars.githubusercontent.com/u/2831?v=4', 'https://api.github.com/users/semin', 'https://github.com/semin', 'https://api.github.com/users/semin/followers', 'https://api.github.com/users/semin/following', 'https://api.github.com/users/semin/gists', 'https://api.github.com/users/semin/starred', 'https://api.github.com/users/semin/repos', 'https://api.github.com/users/semin/events', 'https://api.github.com/users/semin/received_events', 0); +INSERT INTO `developer` VALUES (2832, 'micah', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'micah@leap.se', NULL, NULL, NULL, 0, 0, 59, 1, 0, 0, 0, '2008-03-11T16:49:46Z', '2024-07-08T20:12:53Z', 'https://avatars.githubusercontent.com/u/2832?v=4', 'https://api.github.com/users/micah', 'https://github.com/micah', 'https://api.github.com/users/micah/followers', 'https://api.github.com/users/micah/following', 'https://api.github.com/users/micah/gists', 'https://api.github.com/users/micah/starred', 'https://api.github.com/users/micah/repos', 'https://api.github.com/users/micah/events', 'https://api.github.com/users/micah/received_events', 0); +INSERT INTO `developer` VALUES (2833, 'namelessjon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon', NULL, '', 'Manchester, UK', NULL, NULL, NULL, NULL, 0, 0, 74, 20, 0, 0, 0, '2008-03-11T16:54:30Z', '2024-10-04T17:46:22Z', 'https://avatars.githubusercontent.com/u/2833?v=4', 'https://api.github.com/users/namelessjon', 'https://github.com/namelessjon', 'https://api.github.com/users/namelessjon/followers', 'https://api.github.com/users/namelessjon/following', 'https://api.github.com/users/namelessjon/gists', 'https://api.github.com/users/namelessjon/starred', 'https://api.github.com/users/namelessjon/repos', 'https://api.github.com/users/namelessjon/events', 'https://api.github.com/users/namelessjon/received_events', 0); +INSERT INTO `developer` VALUES (2834, 'goblin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 27, 0, 0, 0, 0, '2008-03-11T16:55:41Z', '2024-04-19T09:26:48Z', 'https://avatars.githubusercontent.com/u/2834?v=4', 'https://api.github.com/users/goblin', 'https://github.com/goblin', 'https://api.github.com/users/goblin/followers', 'https://api.github.com/users/goblin/following', 'https://api.github.com/users/goblin/gists', 'https://api.github.com/users/goblin/starred', 'https://api.github.com/users/goblin/repos', 'https://api.github.com/users/goblin/events', 'https://api.github.com/users/goblin/received_events', 0); +INSERT INTO `developer` VALUES (2835, 'rand', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rand Fitzpatrick', NULL, 'cheshire.ai', 'Denver, CO', 'rand.fitzpatrick@gmail.com', NULL, 'algebraist. acrobat. archer.\r\n', 'sixwing', 0, 0, 63, 49, 0, 0, 0, '2008-03-11T16:58:14Z', '2024-11-04T18:46:32Z', 'https://avatars.githubusercontent.com/u/2835?v=4', 'https://api.github.com/users/rand', 'https://github.com/rand', 'https://api.github.com/users/rand/followers', 'https://api.github.com/users/rand/following', 'https://api.github.com/users/rand/gists', 'https://api.github.com/users/rand/starred', 'https://api.github.com/users/rand/repos', 'https://api.github.com/users/rand/events', 'https://api.github.com/users/rand/received_events', 0); +INSERT INTO `developer` VALUES (2836, 'poulikov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergey Poulikov', 'Atuko', 'http://poulikov.ru', 'Russia, Saint-Petersburg', 'sergey@poulikov.ru', 'true', NULL, NULL, 0, 0, 46, 43, 0, 0, 0, '2008-03-11T17:03:41Z', '2024-07-06T12:41:45Z', 'https://avatars.githubusercontent.com/u/2836?v=4', 'https://api.github.com/users/poulikov', 'https://github.com/poulikov', 'https://api.github.com/users/poulikov/followers', 'https://api.github.com/users/poulikov/following', 'https://api.github.com/users/poulikov/gists', 'https://api.github.com/users/poulikov/starred', 'https://api.github.com/users/poulikov/repos', 'https://api.github.com/users/poulikov/events', 'https://api.github.com/users/poulikov/received_events', 0); +INSERT INTO `developer` VALUES (2837, 'klaste', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Klasen', NULL, '', 'Berlin', 'stefan.klasen@pm.me', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-11T17:05:56Z', '2024-11-01T16:37:33Z', 'https://avatars.githubusercontent.com/u/2837?v=4', 'https://api.github.com/users/klaste', 'https://github.com/klaste', 'https://api.github.com/users/klaste/followers', 'https://api.github.com/users/klaste/following', 'https://api.github.com/users/klaste/gists', 'https://api.github.com/users/klaste/starred', 'https://api.github.com/users/klaste/repos', 'https://api.github.com/users/klaste/events', 'https://api.github.com/users/klaste/received_events', 0); +INSERT INTO `developer` VALUES (2838, 'pdamer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Damer', NULL, 'www.pauldamer.com', 'Richmond, VA', NULL, NULL, NULL, NULL, 0, 0, 10, 4, 0, 0, 0, '2008-03-11T17:11:27Z', '2024-07-26T18:49:45Z', 'https://avatars.githubusercontent.com/u/2838?v=4', 'https://api.github.com/users/pdamer', 'https://github.com/pdamer', 'https://api.github.com/users/pdamer/followers', 'https://api.github.com/users/pdamer/following', 'https://api.github.com/users/pdamer/gists', 'https://api.github.com/users/pdamer/starred', 'https://api.github.com/users/pdamer/repos', 'https://api.github.com/users/pdamer/events', 'https://api.github.com/users/pdamer/received_events', 0); +INSERT INTO `developer` VALUES (2839, 'derencius', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcus Derencius', 'canopy.is', '', 'Ubatuba, São Paulo, Brazil', NULL, NULL, 'Web Developer since 98', NULL, 0, 0, 84, 133, 0, 0, 0, '2008-03-11T17:11:27Z', '2024-10-23T17:53:35Z', 'https://avatars.githubusercontent.com/u/2839?v=4', 'https://api.github.com/users/derencius', 'https://github.com/derencius', 'https://api.github.com/users/derencius/followers', 'https://api.github.com/users/derencius/following', 'https://api.github.com/users/derencius/gists', 'https://api.github.com/users/derencius/starred', 'https://api.github.com/users/derencius/repos', 'https://api.github.com/users/derencius/events', 'https://api.github.com/users/derencius/received_events', 0); +INSERT INTO `developer` VALUES (2840, 'akitaonrails', 'S', 100, 0, 0, 0, 0, 0, 0, 'Fabio Akita', 'Codeminer 42', 'http://www.akitaonrails.com', 'Brazil', NULL, NULL, 'Codeminer 42 co-founder (offshore outsourcing). Former THECONF organizer (since 2017). Former Rubyconf Brasil Organizer (2008-2016)', 'akitaonrails', 0, 0, 10440, 4, 0, 0, 0, '2008-03-11T17:14:52Z', '2024-10-27T22:52:38Z', 'https://avatars.githubusercontent.com/u/2840?v=4', 'https://api.github.com/users/akitaonrails', 'https://github.com/akitaonrails', 'https://api.github.com/users/akitaonrails/followers', 'https://api.github.com/users/akitaonrails/following', 'https://api.github.com/users/akitaonrails/gists', 'https://api.github.com/users/akitaonrails/starred', 'https://api.github.com/users/akitaonrails/repos', 'https://api.github.com/users/akitaonrails/events', 'https://api.github.com/users/akitaonrails/received_events', 0); +INSERT INTO `developer` VALUES (2841, 'chmurph2', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher R. Murphy', '@customink ', '', 'Leesburg, VA', 'chmurph2+git@gmail.com', NULL, 'Engineering manager at Custom Ink.', NULL, 0, 0, 22, 0, 0, 0, 0, '2008-03-11T17:17:29Z', '2024-10-31T02:08:32Z', 'https://avatars.githubusercontent.com/u/2841?v=4', 'https://api.github.com/users/chmurph2', 'https://github.com/chmurph2', 'https://api.github.com/users/chmurph2/followers', 'https://api.github.com/users/chmurph2/following', 'https://api.github.com/users/chmurph2/gists', 'https://api.github.com/users/chmurph2/starred', 'https://api.github.com/users/chmurph2/repos', 'https://api.github.com/users/chmurph2/events', 'https://api.github.com/users/chmurph2/received_events', 0); +INSERT INTO `developer` VALUES (2842, 'wesabe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wesabe', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-11T17:21:50Z', '2015-10-28T22:41:15Z', 'https://avatars.githubusercontent.com/u/2842?v=4', 'https://api.github.com/users/wesabe', 'https://github.com/wesabe', 'https://api.github.com/users/wesabe/followers', 'https://api.github.com/users/wesabe/following', 'https://api.github.com/users/wesabe/gists', 'https://api.github.com/users/wesabe/starred', 'https://api.github.com/users/wesabe/repos', 'https://api.github.com/users/wesabe/events', 'https://api.github.com/users/wesabe/received_events', 0); +INSERT INTO `developer` VALUES (2843, 'tsykoduk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Nokes', NULL, 'http://greg.nokes.name', 'Washington State', 'greg@nokes.name', NULL, NULL, NULL, 0, 0, 42, 26, 0, 0, 0, '2008-03-11T17:24:04Z', '2024-08-07T19:18:34Z', 'https://avatars.githubusercontent.com/u/2843?v=4', 'https://api.github.com/users/tsykoduk', 'https://github.com/tsykoduk', 'https://api.github.com/users/tsykoduk/followers', 'https://api.github.com/users/tsykoduk/following', 'https://api.github.com/users/tsykoduk/gists', 'https://api.github.com/users/tsykoduk/starred', 'https://api.github.com/users/tsykoduk/repos', 'https://api.github.com/users/tsykoduk/events', 'https://api.github.com/users/tsykoduk/received_events', 0); +INSERT INTO `developer` VALUES (2844, 'stem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephane CRIVISIER', '@epicery ', '', 'Paris', NULL, 'true', NULL, NULL, 0, 0, 26, 1, 0, 0, 0, '2008-03-11T17:39:13Z', '2024-09-09T07:11:49Z', 'https://avatars.githubusercontent.com/u/2844?v=4', 'https://api.github.com/users/stem', 'https://github.com/stem', 'https://api.github.com/users/stem/followers', 'https://api.github.com/users/stem/following', 'https://api.github.com/users/stem/gists', 'https://api.github.com/users/stem/starred', 'https://api.github.com/users/stem/repos', 'https://api.github.com/users/stem/events', 'https://api.github.com/users/stem/received_events', 0); +INSERT INTO `developer` VALUES (2845, 'aruiz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alberto Ruiz', 'Red Hat Ltd.', 'https://siliconislandblog.wordpress.com/', 'Spain', NULL, NULL, NULL, NULL, 0, 0, 40, 2, 0, 0, 0, '2008-03-11T17:45:57Z', '2024-10-26T11:06:24Z', 'https://avatars.githubusercontent.com/u/2845?v=4', 'https://api.github.com/users/aruiz', 'https://github.com/aruiz', 'https://api.github.com/users/aruiz/followers', 'https://api.github.com/users/aruiz/following', 'https://api.github.com/users/aruiz/gists', 'https://api.github.com/users/aruiz/starred', 'https://api.github.com/users/aruiz/repos', 'https://api.github.com/users/aruiz/events', 'https://api.github.com/users/aruiz/received_events', 0); +INSERT INTO `developer` VALUES (2846, 'mudboy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lewis Jubb', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 2, 0, 0, 0, '2008-03-11T17:52:07Z', '2024-10-26T13:04:18Z', 'https://avatars.githubusercontent.com/u/2846?v=4', 'https://api.github.com/users/mudboy', 'https://github.com/mudboy', 'https://api.github.com/users/mudboy/followers', 'https://api.github.com/users/mudboy/following', 'https://api.github.com/users/mudboy/gists', 'https://api.github.com/users/mudboy/starred', 'https://api.github.com/users/mudboy/repos', 'https://api.github.com/users/mudboy/events', 'https://api.github.com/users/mudboy/received_events', 0); +INSERT INTO `developer` VALUES (2847, 'andrzejkrzywda', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrzej Krzywda', 'AndrzejKrzywda.com', 'andrzejkrzywda.com', '未知', 'andrzejkrzywda@gmail.com', NULL, NULL, NULL, 0, 0, 203, 12, 0, 0, 0, '2008-03-11T18:03:11Z', '2024-11-03T10:13:11Z', 'https://avatars.githubusercontent.com/u/2847?v=4', 'https://api.github.com/users/andrzejkrzywda', 'https://github.com/andrzejkrzywda', 'https://api.github.com/users/andrzejkrzywda/followers', 'https://api.github.com/users/andrzejkrzywda/following', 'https://api.github.com/users/andrzejkrzywda/gists', 'https://api.github.com/users/andrzejkrzywda/starred', 'https://api.github.com/users/andrzejkrzywda/repos', 'https://api.github.com/users/andrzejkrzywda/events', 'https://api.github.com/users/andrzejkrzywda/received_events', 0); +INSERT INTO `developer` VALUES (2848, 'paulgribble', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Gribble', NULL, 'https://www.gribblelab.org', 'London, Ontario, Canada', 'pgribble@uwo.ca', NULL, 'Professor, Western University, London ON, Canada', NULL, 0, 0, 76, 11, 0, 0, 0, '2008-03-11T18:07:50Z', '2024-11-03T17:18:21Z', 'https://avatars.githubusercontent.com/u/2848?v=4', 'https://api.github.com/users/paulgribble', 'https://github.com/paulgribble', 'https://api.github.com/users/paulgribble/followers', 'https://api.github.com/users/paulgribble/following', 'https://api.github.com/users/paulgribble/gists', 'https://api.github.com/users/paulgribble/starred', 'https://api.github.com/users/paulgribble/repos', 'https://api.github.com/users/paulgribble/events', 'https://api.github.com/users/paulgribble/received_events', 0); +INSERT INTO `developer` VALUES (2849, 'dringoen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Ringoen', 'quintess.com', '', 'Boulder, CO', 'email@daveringoen.com', NULL, NULL, NULL, 0, 0, 6, 6, 0, 0, 0, '2008-03-11T18:08:34Z', '2024-05-25T21:54:22Z', 'https://avatars.githubusercontent.com/u/2849?v=4', 'https://api.github.com/users/dringoen', 'https://github.com/dringoen', 'https://api.github.com/users/dringoen/followers', 'https://api.github.com/users/dringoen/following', 'https://api.github.com/users/dringoen/gists', 'https://api.github.com/users/dringoen/starred', 'https://api.github.com/users/dringoen/repos', 'https://api.github.com/users/dringoen/events', 'https://api.github.com/users/dringoen/received_events', 0); +INSERT INTO `developer` VALUES (2850, 'kip', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kip', NULL, '', '未知', NULL, NULL, 'GED or Equivalent', NULL, 0, 0, 10, 4, 0, 0, 0, '2008-03-11T18:10:07Z', '2024-02-27T07:18:06Z', 'https://avatars.githubusercontent.com/u/2850?v=4', 'https://api.github.com/users/kip', 'https://github.com/kip', 'https://api.github.com/users/kip/followers', 'https://api.github.com/users/kip/following', 'https://api.github.com/users/kip/gists', 'https://api.github.com/users/kip/starred', 'https://api.github.com/users/kip/repos', 'https://api.github.com/users/kip/events', 'https://api.github.com/users/kip/received_events', 0); +INSERT INTO `developer` VALUES (2851, 'matte', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Esterly', 'Synapsum', 'https://www.linkedin.com/in/matt-esterly/', 'PNW', NULL, NULL, 'Long term remote team leader with business focus.', NULL, 0, 0, 12, 7, 0, 0, 0, '2008-03-11T18:14:41Z', '2024-10-08T18:48:01Z', 'https://avatars.githubusercontent.com/u/2851?v=4', 'https://api.github.com/users/matte', 'https://github.com/matte', 'https://api.github.com/users/matte/followers', 'https://api.github.com/users/matte/following', 'https://api.github.com/users/matte/gists', 'https://api.github.com/users/matte/starred', 'https://api.github.com/users/matte/repos', 'https://api.github.com/users/matte/events', 'https://api.github.com/users/matte/received_events', 0); +INSERT INTO `developer` VALUES (2852, 'tene', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen Weeks', NULL, '', 'Sunnyvale, CA', 'tene@allalone.org', NULL, 'The three greatest virtues of a programmer are laziness, impatience, and hubris.', NULL, 0, 0, 41, 5, 0, 0, 0, '2008-03-11T18:32:02Z', '2024-11-04T22:44:40Z', 'https://avatars.githubusercontent.com/u/2852?v=4', 'https://api.github.com/users/tene', 'https://github.com/tene', 'https://api.github.com/users/tene/followers', 'https://api.github.com/users/tene/following', 'https://api.github.com/users/tene/gists', 'https://api.github.com/users/tene/starred', 'https://api.github.com/users/tene/repos', 'https://api.github.com/users/tene/events', 'https://api.github.com/users/tene/received_events', 0); +INSERT INTO `developer` VALUES (2854, 'aktagon', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-11T19:35:19Z', '2016-07-06T15:50:44Z', 'https://avatars.githubusercontent.com/u/2854?v=4', 'https://api.github.com/users/aktagon', 'https://github.com/aktagon', 'https://api.github.com/users/aktagon/followers', 'https://api.github.com/users/aktagon/following', 'https://api.github.com/users/aktagon/gists', 'https://api.github.com/users/aktagon/starred', 'https://api.github.com/users/aktagon/repos', 'https://api.github.com/users/aktagon/events', 'https://api.github.com/users/aktagon/received_events', 0); +INSERT INTO `developer` VALUES (2855, 'ellinghaus', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-11T19:35:43Z', '2022-12-08T10:50:34Z', 'https://avatars.githubusercontent.com/u/2855?v=4', 'https://api.github.com/users/ellinghaus', 'https://github.com/ellinghaus', 'https://api.github.com/users/ellinghaus/followers', 'https://api.github.com/users/ellinghaus/following', 'https://api.github.com/users/ellinghaus/gists', 'https://api.github.com/users/ellinghaus/starred', 'https://api.github.com/users/ellinghaus/repos', 'https://api.github.com/users/ellinghaus/events', 'https://api.github.com/users/ellinghaus/received_events', 0); +INSERT INTO `developer` VALUES (2856, 'tim', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 99, 52, 0, 0, 0, '2008-03-11T20:03:05Z', '2024-02-06T16:31:02Z', 'https://avatars.githubusercontent.com/u/2856?v=4', 'https://api.github.com/users/tim', 'https://github.com/tim', 'https://api.github.com/users/tim/followers', 'https://api.github.com/users/tim/following', 'https://api.github.com/users/tim/gists', 'https://api.github.com/users/tim/starred', 'https://api.github.com/users/tim/repos', 'https://api.github.com/users/tim/events', 'https://api.github.com/users/tim/received_events', 0); +INSERT INTO `developer` VALUES (2857, 'lackstein', 'C', 0, 0, 0, 0, 0, 0, 0, 'Noah Lackstein', '@fossas ', '', 'San Francisco', 'noah@lackstein.com', NULL, NULL, NULL, 0, 0, 25, 4, 0, 0, 0, '2008-03-11T20:04:52Z', '2024-09-25T14:51:11Z', 'https://avatars.githubusercontent.com/u/2857?v=4', 'https://api.github.com/users/lackstein', 'https://github.com/lackstein', 'https://api.github.com/users/lackstein/followers', 'https://api.github.com/users/lackstein/following', 'https://api.github.com/users/lackstein/gists', 'https://api.github.com/users/lackstein/starred', 'https://api.github.com/users/lackstein/repos', 'https://api.github.com/users/lackstein/events', 'https://api.github.com/users/lackstein/received_events', 0); +INSERT INTO `developer` VALUES (2858, 'peej', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul James', NULL, 'http://www.peej.co.uk/', 'Rotterdam', NULL, NULL, NULL, NULL, 0, 0, 112, 6, 0, 0, 0, '2008-03-11T20:10:01Z', '2023-02-03T12:34:48Z', 'https://avatars.githubusercontent.com/u/2858?v=4', 'https://api.github.com/users/peej', 'https://github.com/peej', 'https://api.github.com/users/peej/followers', 'https://api.github.com/users/peej/following', 'https://api.github.com/users/peej/gists', 'https://api.github.com/users/peej/starred', 'https://api.github.com/users/peej/repos', 'https://api.github.com/users/peej/events', 'https://api.github.com/users/peej/received_events', 0); +INSERT INTO `developer` VALUES (2859, 'rcorrear', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ricardo Correa', 'Solera', '', 'Tampa - USA', 'r.correa.r@gmail.com', NULL, NULL, NULL, 0, 0, 18, 11, 0, 0, 0, '2008-03-11T20:12:46Z', '2024-08-21T01:26:56Z', 'https://avatars.githubusercontent.com/u/2859?v=4', 'https://api.github.com/users/rcorrear', 'https://github.com/rcorrear', 'https://api.github.com/users/rcorrear/followers', 'https://api.github.com/users/rcorrear/following', 'https://api.github.com/users/rcorrear/gists', 'https://api.github.com/users/rcorrear/starred', 'https://api.github.com/users/rcorrear/repos', 'https://api.github.com/users/rcorrear/events', 'https://api.github.com/users/rcorrear/received_events', 0); +INSERT INTO `developer` VALUES (2861, 'neiled', 'C', 0, 0, 1, 0, 319, 4, 0, 'Neil Edwards', NULL, '', 'New York, NY', 'neil@plasticwater.com', 'true', NULL, 'neiled', 0, 0, 21, 1, 0, 0, 0, '2008-03-11T20:34:51Z', '2024-10-01T12:49:42Z', 'https://avatars.githubusercontent.com/u/2861?v=4', 'https://api.github.com/users/neiled', 'https://github.com/neiled', 'https://api.github.com/users/neiled/followers', 'https://api.github.com/users/neiled/following', 'https://api.github.com/users/neiled/gists', 'https://api.github.com/users/neiled/starred', 'https://api.github.com/users/neiled/repos', 'https://api.github.com/users/neiled/events', 'https://api.github.com/users/neiled/received_events', 0); +INSERT INTO `developer` VALUES (2862, 'davidmathers', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Mathers', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 18, 1, 0, 0, 0, '2008-03-11T20:38:00Z', '2024-11-04T19:08:09Z', 'https://avatars.githubusercontent.com/u/2862?v=4', 'https://api.github.com/users/davidmathers', 'https://github.com/davidmathers', 'https://api.github.com/users/davidmathers/followers', 'https://api.github.com/users/davidmathers/following', 'https://api.github.com/users/davidmathers/gists', 'https://api.github.com/users/davidmathers/starred', 'https://api.github.com/users/davidmathers/repos', 'https://api.github.com/users/davidmathers/events', 'https://api.github.com/users/davidmathers/received_events', 0); +INSERT INTO `developer` VALUES (2863, 'divoxx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rodrigo Kochenburger', 'Doximity', '', 'San Francisco, CA', 'divoxx@gmail.com', NULL, 'Principal Engineer, Director Engineering at @doximity ', NULL, 0, 0, 113, 5, 0, 0, 0, '2008-03-11T20:45:20Z', '2024-10-20T11:21:02Z', 'https://avatars.githubusercontent.com/u/2863?v=4', 'https://api.github.com/users/divoxx', 'https://github.com/divoxx', 'https://api.github.com/users/divoxx/followers', 'https://api.github.com/users/divoxx/following', 'https://api.github.com/users/divoxx/gists', 'https://api.github.com/users/divoxx/starred', 'https://api.github.com/users/divoxx/repos', 'https://api.github.com/users/divoxx/events', 'https://api.github.com/users/divoxx/received_events', 0); +INSERT INTO `developer` VALUES (2864, 'firmasaga', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 5, 0, 0, 0, '2008-03-11T21:25:19Z', '2020-11-06T06:51:34Z', 'https://avatars.githubusercontent.com/u/2864?v=4', 'https://api.github.com/users/firmasaga', 'https://github.com/firmasaga', 'https://api.github.com/users/firmasaga/followers', 'https://api.github.com/users/firmasaga/following', 'https://api.github.com/users/firmasaga/gists', 'https://api.github.com/users/firmasaga/starred', 'https://api.github.com/users/firmasaga/repos', 'https://api.github.com/users/firmasaga/events', 'https://api.github.com/users/firmasaga/received_events', 0); +INSERT INTO `developer` VALUES (2865, 'richq', 'C', 0, 0, 0, 0, 0, 0, 0, 'Richard Quirk', NULL, '', '未知', 'richard.quirk@gmail.com', NULL, NULL, NULL, 0, 0, 29, 1, 0, 0, 0, '2008-03-11T21:29:12Z', '2024-09-20T19:40:20Z', 'https://avatars.githubusercontent.com/u/2865?v=4', 'https://api.github.com/users/richq', 'https://github.com/richq', 'https://api.github.com/users/richq/followers', 'https://api.github.com/users/richq/following', 'https://api.github.com/users/richq/gists', 'https://api.github.com/users/richq/starred', 'https://api.github.com/users/richq/repos', 'https://api.github.com/users/richq/events', 'https://api.github.com/users/richq/received_events', 0); +INSERT INTO `developer` VALUES (2866, 'wakatara', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daryl Manning', 'Neosofo Pte Ltd', 'https://daryl.wakatara.com', 'z=0', NULL, 'true', 'Maker of deft geekery and well-run companies.\r\n\r\nUnrepentant travel junkie, snowboarding yeti, wildlife whisperer, submarine explorer, and aspiring astronomer.', NULL, 0, 0, 94, 53, 0, 0, 0, '2008-03-11T22:55:45Z', '2024-10-22T07:43:26Z', 'https://avatars.githubusercontent.com/u/2866?v=4', 'https://api.github.com/users/wakatara', 'https://github.com/wakatara', 'https://api.github.com/users/wakatara/followers', 'https://api.github.com/users/wakatara/following', 'https://api.github.com/users/wakatara/gists', 'https://api.github.com/users/wakatara/starred', 'https://api.github.com/users/wakatara/repos', 'https://api.github.com/users/wakatara/events', 'https://api.github.com/users/wakatara/received_events', 0); +INSERT INTO `developer` VALUES (2867, 'nutrun', 'C', 0, 0, 0, 0, 0, 0, 0, 'George Malamidis', 'loveholidays.com', 'http://nutrun.com', 'London', NULL, NULL, NULL, NULL, 0, 0, 34, 15, 0, 0, 0, '2008-03-11T23:32:09Z', '2021-04-23T18:41:47Z', 'https://avatars.githubusercontent.com/u/2867?v=4', 'https://api.github.com/users/nutrun', 'https://github.com/nutrun', 'https://api.github.com/users/nutrun/followers', 'https://api.github.com/users/nutrun/following', 'https://api.github.com/users/nutrun/gists', 'https://api.github.com/users/nutrun/starred', 'https://api.github.com/users/nutrun/repos', 'https://api.github.com/users/nutrun/events', 'https://api.github.com/users/nutrun/received_events', 0); +INSERT INTO `developer` VALUES (2868, 'mdp', 'C', 1.032046527439553, 0, 0, 0, 0, 0, 0, 'Mark Percival', NULL, 'https://mdp.github.io', 'Atlanta, GA', 'm@mdp.im', NULL, NULL, 'mdp', 0, 0, 345, 14, 0, 0, 0, '2008-03-11T23:47:31Z', '2024-10-17T14:19:23Z', 'https://avatars.githubusercontent.com/u/2868?v=4', 'https://api.github.com/users/mdp', 'https://github.com/mdp', 'https://api.github.com/users/mdp/followers', 'https://api.github.com/users/mdp/following', 'https://api.github.com/users/mdp/gists', 'https://api.github.com/users/mdp/starred', 'https://api.github.com/users/mdp/repos', 'https://api.github.com/users/mdp/events', 'https://api.github.com/users/mdp/received_events', 0); +INSERT INTO `developer` VALUES (2869, 'nigelsim', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://blog.nigelsim.org', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 6, 0, 0, 0, '2008-03-11T23:52:06Z', '2024-05-11T12:01:08Z', 'https://avatars.githubusercontent.com/u/2869?v=4', 'https://api.github.com/users/nigelsim', 'https://github.com/nigelsim', 'https://api.github.com/users/nigelsim/followers', 'https://api.github.com/users/nigelsim/following', 'https://api.github.com/users/nigelsim/gists', 'https://api.github.com/users/nigelsim/starred', 'https://api.github.com/users/nigelsim/repos', 'https://api.github.com/users/nigelsim/events', 'https://api.github.com/users/nigelsim/received_events', 0); +INSERT INTO `developer` VALUES (2870, 'rubyredrick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rick DeNatale', NULL, 'http://talklikeaduck.denhaven2.com', '未知', 'rick.denatale@gmail.com', NULL, NULL, NULL, 0, 0, 40, 5, 0, 0, 0, '2008-03-11T23:58:32Z', '2024-09-18T15:40:20Z', 'https://avatars.githubusercontent.com/u/2870?v=4', 'https://api.github.com/users/rubyredrick', 'https://github.com/rubyredrick', 'https://api.github.com/users/rubyredrick/followers', 'https://api.github.com/users/rubyredrick/following', 'https://api.github.com/users/rubyredrick/gists', 'https://api.github.com/users/rubyredrick/starred', 'https://api.github.com/users/rubyredrick/repos', 'https://api.github.com/users/rubyredrick/events', 'https://api.github.com/users/rubyredrick/received_events', 0); +INSERT INTO `developer` VALUES (2871, 'val1um', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-12T00:15:03Z', '2016-02-26T22:34:53Z', 'https://avatars.githubusercontent.com/u/2871?v=4', 'https://api.github.com/users/val1um', 'https://github.com/val1um', 'https://api.github.com/users/val1um/followers', 'https://api.github.com/users/val1um/following', 'https://api.github.com/users/val1um/gists', 'https://api.github.com/users/val1um/starred', 'https://api.github.com/users/val1um/repos', 'https://api.github.com/users/val1um/events', 'https://api.github.com/users/val1um/received_events', 0); +INSERT INTO `developer` VALUES (2872, 'dr-kd', 'C', 0, 0, 0, 0, 0, 0, 0, 'kd', NULL, '', 'Sydney', NULL, NULL, NULL, NULL, 0, 0, 27, 7, 0, 0, 0, '2008-03-12T00:21:08Z', '2024-10-16T00:10:41Z', 'https://avatars.githubusercontent.com/u/2872?v=4', 'https://api.github.com/users/dr-kd', 'https://github.com/dr-kd', 'https://api.github.com/users/dr-kd/followers', 'https://api.github.com/users/dr-kd/following', 'https://api.github.com/users/dr-kd/gists', 'https://api.github.com/users/dr-kd/starred', 'https://api.github.com/users/dr-kd/repos', 'https://api.github.com/users/dr-kd/events', 'https://api.github.com/users/dr-kd/received_events', 0); +INSERT INTO `developer` VALUES (2873, 'Cosmos95', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-12T00:51:28Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2873?v=4', 'https://api.github.com/users/Cosmos95', 'https://github.com/Cosmos95', 'https://api.github.com/users/Cosmos95/followers', 'https://api.github.com/users/Cosmos95/following', 'https://api.github.com/users/Cosmos95/gists', 'https://api.github.com/users/Cosmos95/starred', 'https://api.github.com/users/Cosmos95/repos', 'https://api.github.com/users/Cosmos95/events', 'https://api.github.com/users/Cosmos95/received_events', 0); +INSERT INTO `developer` VALUES (2874, 'precipice', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Hedlund', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 62, 19, 0, 0, 0, '2008-03-12T00:54:09Z', '2024-07-22T16:30:36Z', 'https://avatars.githubusercontent.com/u/2874?v=4', 'https://api.github.com/users/precipice', 'https://github.com/precipice', 'https://api.github.com/users/precipice/followers', 'https://api.github.com/users/precipice/following', 'https://api.github.com/users/precipice/gists', 'https://api.github.com/users/precipice/starred', 'https://api.github.com/users/precipice/repos', 'https://api.github.com/users/precipice/events', 'https://api.github.com/users/precipice/received_events', 0); +INSERT INTO `developer` VALUES (2875, 'emerose', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Quigley', 'emerose.com', 'emerose.com', 'NYC', 'quigley@emerose.com', NULL, NULL, NULL, 0, 0, 53, 41, 0, 0, 0, '2008-03-12T00:56:25Z', '2024-03-11T18:21:46Z', 'https://avatars.githubusercontent.com/u/2875?v=4', 'https://api.github.com/users/emerose', 'https://github.com/emerose', 'https://api.github.com/users/emerose/followers', 'https://api.github.com/users/emerose/following', 'https://api.github.com/users/emerose/gists', 'https://api.github.com/users/emerose/starred', 'https://api.github.com/users/emerose/repos', 'https://api.github.com/users/emerose/events', 'https://api.github.com/users/emerose/received_events', 0); +INSERT INTO `developer` VALUES (2876, 'aredridel', 'C', 7.0854752826166365, 0, 0, 0, 0, 0, 0, 'Aria Stewart', NULL, 'http://dinhe.net/~aredridel/', 'Salem, MA', 'aredridel@dinhe.net', NULL, 'I make art.\r\n\r\nHey, Github: DROP ICE.', NULL, 0, 0, 698, 109, 0, 0, 0, '2008-03-12T01:01:07Z', '2024-10-31T16:13:10Z', 'https://avatars.githubusercontent.com/u/2876?v=4', 'https://api.github.com/users/aredridel', 'https://github.com/aredridel', 'https://api.github.com/users/aredridel/followers', 'https://api.github.com/users/aredridel/following', 'https://api.github.com/users/aredridel/gists', 'https://api.github.com/users/aredridel/starred', 'https://api.github.com/users/aredridel/repos', 'https://api.github.com/users/aredridel/events', 'https://api.github.com/users/aredridel/received_events', 0); +INSERT INTO `developer` VALUES (2877, 'dennmart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dennis Martinez', NULL, 'https://dennmart.com/', 'Osaka, Japan', 'dennis@dennmart.com', NULL, 'Freelance software engineer working remotely from Osaka, Japan.\r\n\r\nI talk testing at dev-tester.com.', 'dennmart', 0, 0, 44, 11, 0, 0, 0, '2008-03-12T01:26:49Z', '2024-11-04T06:21:25Z', 'https://avatars.githubusercontent.com/u/2877?v=4', 'https://api.github.com/users/dennmart', 'https://github.com/dennmart', 'https://api.github.com/users/dennmart/followers', 'https://api.github.com/users/dennmart/following', 'https://api.github.com/users/dennmart/gists', 'https://api.github.com/users/dennmart/starred', 'https://api.github.com/users/dennmart/repos', 'https://api.github.com/users/dennmart/events', 'https://api.github.com/users/dennmart/received_events', 0); +INSERT INTO `developer` VALUES (2878, 'mrb', 'C', 1.9580667902711748, 0, 0, 0, 0, 0, 0, 'Michael Bernstein', 'Reify', 'http://reifyworks.com', 'Takoma Park, MD', 'michaelrbernstein@gmail.com', NULL, 'Actual human being.', NULL, 0, 0, 399, 65, 0, 0, 0, '2008-03-12T01:27:39Z', '2024-09-03T02:12:08Z', 'https://avatars.githubusercontent.com/u/2878?v=4', 'https://api.github.com/users/mrb', 'https://github.com/mrb', 'https://api.github.com/users/mrb/followers', 'https://api.github.com/users/mrb/following', 'https://api.github.com/users/mrb/gists', 'https://api.github.com/users/mrb/starred', 'https://api.github.com/users/mrb/repos', 'https://api.github.com/users/mrb/events', 'https://api.github.com/users/mrb/received_events', 0); +INSERT INTO `developer` VALUES (2879, 'mwrshl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Marshall', NULL, '', '未知', 'mwrshl@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-12T01:34:23Z', '2021-05-24T16:15:54Z', 'https://avatars.githubusercontent.com/u/2879?v=4', 'https://api.github.com/users/mwrshl', 'https://github.com/mwrshl', 'https://api.github.com/users/mwrshl/followers', 'https://api.github.com/users/mwrshl/following', 'https://api.github.com/users/mwrshl/gists', 'https://api.github.com/users/mwrshl/starred', 'https://api.github.com/users/mwrshl/repos', 'https://api.github.com/users/mwrshl/events', 'https://api.github.com/users/mwrshl/received_events', 0); +INSERT INTO `developer` VALUES (2880, 'pvh', 'C', 2.3181857813723608, 0, 0, 0, 0, 0, 0, 'Peter van Hardenberg', '@inkandswitch ', '', 'Victoria, BC, Canada', NULL, NULL, 'ink and switch research\r\nformerly: heroku, songbird, etc.', NULL, 0, 0, 420, 29, 0, 0, 0, '2008-03-12T02:13:13Z', '2024-10-27T19:17:49Z', 'https://avatars.githubusercontent.com/u/2880?v=4', 'https://api.github.com/users/pvh', 'https://github.com/pvh', 'https://api.github.com/users/pvh/followers', 'https://api.github.com/users/pvh/following', 'https://api.github.com/users/pvh/gists', 'https://api.github.com/users/pvh/starred', 'https://api.github.com/users/pvh/repos', 'https://api.github.com/users/pvh/events', 'https://api.github.com/users/pvh/received_events', 0); +INSERT INTO `developer` VALUES (2881, 'niick', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Sydney', NULL, NULL, NULL, NULL, 0, 0, 11, 2, 0, 0, 0, '2008-03-12T02:21:13Z', '2024-02-28T01:59:51Z', 'https://avatars.githubusercontent.com/u/2881?v=4', 'https://api.github.com/users/niick', 'https://github.com/niick', 'https://api.github.com/users/niick/followers', 'https://api.github.com/users/niick/following', 'https://api.github.com/users/niick/gists', 'https://api.github.com/users/niick/starred', 'https://api.github.com/users/niick/repos', 'https://api.github.com/users/niick/events', 'https://api.github.com/users/niick/received_events', 0); +INSERT INTO `developer` VALUES (2882, 'nikolay', 'C', 4.3417115408933125, 0, 0, 0, 0, 0, 0, 'Nikolay Kolev', '@withcodery', 'https://nikolay.com', 'Irvine, CA, US', NULL, 'true', 'A hacker, not a script kiddie. Opinions are my own. Code is all yours. 🇧🇬🇺🇸', 'nikolay', 0, 0, 538, 952, 0, 0, 0, '2008-03-12T02:45:38Z', '2024-10-10T00:19:02Z', 'https://avatars.githubusercontent.com/u/2882?v=4', 'https://api.github.com/users/nikolay', 'https://github.com/nikolay', 'https://api.github.com/users/nikolay/followers', 'https://api.github.com/users/nikolay/following', 'https://api.github.com/users/nikolay/gists', 'https://api.github.com/users/nikolay/starred', 'https://api.github.com/users/nikolay/repos', 'https://api.github.com/users/nikolay/events', 'https://api.github.com/users/nikolay/received_events', 0); +INSERT INTO `developer` VALUES (2883, 'zbender', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Haylock', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 5, 0, 0, 0, '2008-03-12T02:49:45Z', '2024-07-16T03:13:53Z', 'https://avatars.githubusercontent.com/u/2883?v=4', 'https://api.github.com/users/zbender', 'https://github.com/zbender', 'https://api.github.com/users/zbender/followers', 'https://api.github.com/users/zbender/following', 'https://api.github.com/users/zbender/gists', 'https://api.github.com/users/zbender/starred', 'https://api.github.com/users/zbender/repos', 'https://api.github.com/users/zbender/events', 'https://api.github.com/users/zbender/received_events', 0); +INSERT INTO `developer` VALUES (2884, 'anjin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lee Donahoe', 'Coveralls.io, Buck Mason, Softcover Inc, LEMUR heavy', 'https://www.coveralls.io', 'Los Angeles, CA', 'lee@coveralls.io', NULL, NULL, NULL, 0, 0, 28, 1, 0, 0, 0, '2008-03-12T02:57:48Z', '2024-10-17T23:19:57Z', 'https://avatars.githubusercontent.com/u/2884?v=4', 'https://api.github.com/users/anjin', 'https://github.com/anjin', 'https://api.github.com/users/anjin/followers', 'https://api.github.com/users/anjin/following', 'https://api.github.com/users/anjin/gists', 'https://api.github.com/users/anjin/starred', 'https://api.github.com/users/anjin/repos', 'https://api.github.com/users/anjin/events', 'https://api.github.com/users/anjin/received_events', 0); +INSERT INTO `developer` VALUES (2885, 'Pistos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pistos', 'Libertree', 'http://libertree.org', 'Canada', NULL, 'true', NULL, NULL, 0, 0, 115, 0, 0, 0, 0, '2008-03-12T03:01:20Z', '2024-04-23T04:12:26Z', 'https://avatars.githubusercontent.com/u/2885?v=4', 'https://api.github.com/users/Pistos', 'https://github.com/Pistos', 'https://api.github.com/users/Pistos/followers', 'https://api.github.com/users/Pistos/following', 'https://api.github.com/users/Pistos/gists', 'https://api.github.com/users/Pistos/starred', 'https://api.github.com/users/Pistos/repos', 'https://api.github.com/users/Pistos/events', 'https://api.github.com/users/Pistos/received_events', 0); +INSERT INTO `developer` VALUES (2886, 'dblack', 'C', 0, 0, 0, 0, 0, 0, 0, 'David A. Black', NULL, 'http://www.davidablack.net', 'New Jersey, USA', NULL, NULL, NULL, NULL, 0, 0, 43, 0, 0, 0, 0, '2008-03-12T03:15:45Z', '2024-10-18T20:39:56Z', 'https://avatars.githubusercontent.com/u/2886?v=4', 'https://api.github.com/users/dblack', 'https://github.com/dblack', 'https://api.github.com/users/dblack/followers', 'https://api.github.com/users/dblack/following', 'https://api.github.com/users/dblack/gists', 'https://api.github.com/users/dblack/starred', 'https://api.github.com/users/dblack/repos', 'https://api.github.com/users/dblack/events', 'https://api.github.com/users/dblack/received_events', 0); +INSERT INTO `developer` VALUES (2887, 'yangjindong', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jindong Yang', NULL, 'http://yangjindong.com', 'Huai\'an, China', 'yangjindong@gmail.com', NULL, NULL, NULL, 0, 0, 18, 52, 0, 0, 0, '2008-03-12T03:19:44Z', '2024-09-05T03:31:18Z', 'https://avatars.githubusercontent.com/u/2887?v=4', 'https://api.github.com/users/yangjindong', 'https://github.com/yangjindong', 'https://api.github.com/users/yangjindong/followers', 'https://api.github.com/users/yangjindong/following', 'https://api.github.com/users/yangjindong/gists', 'https://api.github.com/users/yangjindong/starred', 'https://api.github.com/users/yangjindong/repos', 'https://api.github.com/users/yangjindong/events', 'https://api.github.com/users/yangjindong/received_events', 0); +INSERT INTO `developer` VALUES (2888, 'elucid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Giancola', 'Precision Nutrition', 'https://justinappears.com', 'Toronto, ON', 'justin.giancola@gmail.com', NULL, NULL, NULL, 0, 0, 56, 11, 0, 0, 0, '2008-03-12T03:25:47Z', '2024-09-06T01:12:39Z', 'https://avatars.githubusercontent.com/u/2888?v=4', 'https://api.github.com/users/elucid', 'https://github.com/elucid', 'https://api.github.com/users/elucid/followers', 'https://api.github.com/users/elucid/following', 'https://api.github.com/users/elucid/gists', 'https://api.github.com/users/elucid/starred', 'https://api.github.com/users/elucid/repos', 'https://api.github.com/users/elucid/events', 'https://api.github.com/users/elucid/received_events', 0); +INSERT INTO `developer` VALUES (2889, 'eli', 'C', 0, 0, 0, 0, 0, 0, 0, 'emc', 'LEMUR Heavy Industries', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-12T04:14:34Z', '2017-02-22T07:00:06Z', 'https://avatars.githubusercontent.com/u/2889?v=4', 'https://api.github.com/users/eli', 'https://github.com/eli', 'https://api.github.com/users/eli/followers', 'https://api.github.com/users/eli/following', 'https://api.github.com/users/eli/gists', 'https://api.github.com/users/eli/starred', 'https://api.github.com/users/eli/repos', 'https://api.github.com/users/eli/events', 'https://api.github.com/users/eli/received_events', 0); +INSERT INTO `developer` VALUES (2890, 'jeffd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Dlouhy', 'Tamper LLC', 'http://jeffd.org', 'Paris, France', 'github@jeffd.org', NULL, NULL, NULL, 0, 0, 74, 144, 0, 0, 0, '2008-03-12T04:32:12Z', '2024-10-31T09:37:58Z', 'https://avatars.githubusercontent.com/u/2890?v=4', 'https://api.github.com/users/jeffd', 'https://github.com/jeffd', 'https://api.github.com/users/jeffd/followers', 'https://api.github.com/users/jeffd/following', 'https://api.github.com/users/jeffd/gists', 'https://api.github.com/users/jeffd/starred', 'https://api.github.com/users/jeffd/repos', 'https://api.github.com/users/jeffd/events', 'https://api.github.com/users/jeffd/received_events', 0); +INSERT INTO `developer` VALUES (2891, 'jspillers', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jarrod Spillers', 'stacktact', 'http://jarrodspillers.com', 'NYC', NULL, 'true', NULL, NULL, 0, 0, 25, 10, 0, 0, 0, '2008-03-12T04:45:28Z', '2024-06-25T19:09:01Z', 'https://avatars.githubusercontent.com/u/2891?v=4', 'https://api.github.com/users/jspillers', 'https://github.com/jspillers', 'https://api.github.com/users/jspillers/followers', 'https://api.github.com/users/jspillers/following', 'https://api.github.com/users/jspillers/gists', 'https://api.github.com/users/jspillers/starred', 'https://api.github.com/users/jspillers/repos', 'https://api.github.com/users/jspillers/events', 'https://api.github.com/users/jspillers/received_events', 0); +INSERT INTO `developer` VALUES (2892, 'shanselman', 'S', 100, 0, 0, 0, 0, 0, 0, 'Scott Hanselman', '@Microsoft ', 'https://hanselman.com', 'Portland, OR', 'scott@hanselman.com', NULL, 'Professional Enthusiast and Teacher', 'shanselman', 0, 0, 11318, 32, 0, 0, 0, '2008-03-12T04:51:33Z', '2024-11-02T19:17:23Z', 'https://avatars.githubusercontent.com/u/2892?v=4', 'https://api.github.com/users/shanselman', 'https://github.com/shanselman', 'https://api.github.com/users/shanselman/followers', 'https://api.github.com/users/shanselman/following', 'https://api.github.com/users/shanselman/gists', 'https://api.github.com/users/shanselman/starred', 'https://api.github.com/users/shanselman/repos', 'https://api.github.com/users/shanselman/events', 'https://api.github.com/users/shanselman/received_events', 0); +INSERT INTO `developer` VALUES (2893, 'twifkak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Devin Mullins', '@google', 'https://twitter.com/twifkak', '未知', NULL, NULL, 'novice PL/FP enthusiast; a fan of the web; driven by creativity, curiosity, and helping others succeed', NULL, 0, 0, 51, 5, 0, 0, 0, '2008-03-12T05:31:04Z', '2024-10-24T11:19:57Z', 'https://avatars.githubusercontent.com/u/2893?v=4', 'https://api.github.com/users/twifkak', 'https://github.com/twifkak', 'https://api.github.com/users/twifkak/followers', 'https://api.github.com/users/twifkak/following', 'https://api.github.com/users/twifkak/gists', 'https://api.github.com/users/twifkak/starred', 'https://api.github.com/users/twifkak/repos', 'https://api.github.com/users/twifkak/events', 'https://api.github.com/users/twifkak/received_events', 0); +INSERT INTO `developer` VALUES (2894, 'agebert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alfred Gebert', 'Scheer PAS Schweiz AG', 'https://scheer-pas.com', 'Basel', 'alfred.gebert@scheer-group.com', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-12T07:56:44Z', '2024-07-10T02:22:25Z', 'https://avatars.githubusercontent.com/u/2894?v=4', 'https://api.github.com/users/agebert', 'https://github.com/agebert', 'https://api.github.com/users/agebert/followers', 'https://api.github.com/users/agebert/following', 'https://api.github.com/users/agebert/gists', 'https://api.github.com/users/agebert/starred', 'https://api.github.com/users/agebert/repos', 'https://api.github.com/users/agebert/events', 'https://api.github.com/users/agebert/received_events', 0); +INSERT INTO `developer` VALUES (2895, 'aub', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aubrey Holland', 'Grayce', 'http://www.aubreyholland.com', 'Asheville, NC', 'aubreyholland@gmail.com', NULL, 'he/him', NULL, 0, 0, 41, 1, 0, 0, 0, '2008-03-12T08:13:19Z', '2024-10-17T09:46:09Z', 'https://avatars.githubusercontent.com/u/2895?v=4', 'https://api.github.com/users/aub', 'https://github.com/aub', 'https://api.github.com/users/aub/followers', 'https://api.github.com/users/aub/following', 'https://api.github.com/users/aub/gists', 'https://api.github.com/users/aub/starred', 'https://api.github.com/users/aub/repos', 'https://api.github.com/users/aub/events', 'https://api.github.com/users/aub/received_events', 0); +INSERT INTO `developer` VALUES (2896, 'maxx', 'C', 0, 0, 0, 0, 0, 0, 0, 'James', NULL, 'http://james.vautin.com', 'New York, New York', NULL, NULL, NULL, NULL, 0, 0, 11, 5, 0, 0, 0, '2008-03-12T09:04:41Z', '2024-08-25T21:38:45Z', 'https://avatars.githubusercontent.com/u/2896?v=4', 'https://api.github.com/users/maxx', 'https://github.com/maxx', 'https://api.github.com/users/maxx/followers', 'https://api.github.com/users/maxx/following', 'https://api.github.com/users/maxx/gists', 'https://api.github.com/users/maxx/starred', 'https://api.github.com/users/maxx/repos', 'https://api.github.com/users/maxx/events', 'https://api.github.com/users/maxx/received_events', 0); +INSERT INTO `developer` VALUES (2897, 'nakedjason', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Lee', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-12T10:02:17Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2897?v=4', 'https://api.github.com/users/nakedjason', 'https://github.com/nakedjason', 'https://api.github.com/users/nakedjason/followers', 'https://api.github.com/users/nakedjason/following', 'https://api.github.com/users/nakedjason/gists', 'https://api.github.com/users/nakedjason/starred', 'https://api.github.com/users/nakedjason/repos', 'https://api.github.com/users/nakedjason/events', 'https://api.github.com/users/nakedjason/received_events', 0); +INSERT INTO `developer` VALUES (2898, 'wildfalcon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Laurie Young', 'Feelance', 'www.wildfalcon.com', 'London', 'laurie@wildfalcon.com', NULL, NULL, NULL, 0, 0, 23, 5, 0, 0, 0, '2008-03-12T10:18:33Z', '2024-10-31T21:06:03Z', 'https://avatars.githubusercontent.com/u/2898?v=4', 'https://api.github.com/users/wildfalcon', 'https://github.com/wildfalcon', 'https://api.github.com/users/wildfalcon/followers', 'https://api.github.com/users/wildfalcon/following', 'https://api.github.com/users/wildfalcon/gists', 'https://api.github.com/users/wildfalcon/starred', 'https://api.github.com/users/wildfalcon/repos', 'https://api.github.com/users/wildfalcon/events', 'https://api.github.com/users/wildfalcon/received_events', 0); +INSERT INTO `developer` VALUES (2899, 'sizix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Szczepankowski', 'Buddy', 'https://buddy.works', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-12T10:53:14Z', '2024-11-02T18:47:22Z', 'https://avatars.githubusercontent.com/u/2899?v=4', 'https://api.github.com/users/sizix', 'https://github.com/sizix', 'https://api.github.com/users/sizix/followers', 'https://api.github.com/users/sizix/following', 'https://api.github.com/users/sizix/gists', 'https://api.github.com/users/sizix/starred', 'https://api.github.com/users/sizix/repos', 'https://api.github.com/users/sizix/events', 'https://api.github.com/users/sizix/received_events', 0); +INSERT INTO `developer` VALUES (2900, 'stefw', 'C', 0, 0, 0, 0, 0, 0, 0, 'stefw', 'MagicMorning', 'http://www.magicmorning.net', 'Lille', 'sw@magicmorning.net', NULL, NULL, NULL, 0, 0, 23, 12, 0, 0, 0, '2008-03-12T11:32:41Z', '2024-11-01T17:51:26Z', 'https://avatars.githubusercontent.com/u/2900?v=4', 'https://api.github.com/users/stefw', 'https://github.com/stefw', 'https://api.github.com/users/stefw/followers', 'https://api.github.com/users/stefw/following', 'https://api.github.com/users/stefw/gists', 'https://api.github.com/users/stefw/starred', 'https://api.github.com/users/stefw/repos', 'https://api.github.com/users/stefw/events', 'https://api.github.com/users/stefw/received_events', 0); +INSERT INTO `developer` VALUES (2901, 'bgreenlee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brad Greenlee', NULL, 'https://footle.org', 'Seattle, WA', 'brad@footle.org', 'true', 'Indie software engineer', NULL, 0, 0, 118, 46, 0, 0, 0, '2008-03-12T12:16:02Z', '2024-10-30T18:35:06Z', 'https://avatars.githubusercontent.com/u/2901?v=4', 'https://api.github.com/users/bgreenlee', 'https://github.com/bgreenlee', 'https://api.github.com/users/bgreenlee/followers', 'https://api.github.com/users/bgreenlee/following', 'https://api.github.com/users/bgreenlee/gists', 'https://api.github.com/users/bgreenlee/starred', 'https://api.github.com/users/bgreenlee/repos', 'https://api.github.com/users/bgreenlee/events', 'https://api.github.com/users/bgreenlee/received_events', 0); +INSERT INTO `developer` VALUES (2902, 'reagent', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Reagan', NULL, 'https://patrick-reagan.com', 'Colorado', NULL, NULL, NULL, NULL, 0, 0, 126, 76, 0, 0, 0, '2008-03-12T12:36:37Z', '2024-09-26T17:06:39Z', 'https://avatars.githubusercontent.com/u/2902?v=4', 'https://api.github.com/users/reagent', 'https://github.com/reagent', 'https://api.github.com/users/reagent/followers', 'https://api.github.com/users/reagent/following', 'https://api.github.com/users/reagent/gists', 'https://api.github.com/users/reagent/starred', 'https://api.github.com/users/reagent/repos', 'https://api.github.com/users/reagent/events', 'https://api.github.com/users/reagent/received_events', 0); +INSERT INTO `developer` VALUES (2903, 'broonie', 'C', 4.358860064279082, 0, 0, 0, 0, 0, 0, 'Mark Brown', 'Arm', 'http://www.sirena.org.uk/', 'Edinburgh, Scotland', 'broonie@kernel.org', NULL, NULL, 'broonie', 0, 0, 539, 11, 0, 0, 0, '2008-03-12T13:16:41Z', '2024-10-30T01:38:12Z', 'https://avatars.githubusercontent.com/u/2903?v=4', 'https://api.github.com/users/broonie', 'https://github.com/broonie', 'https://api.github.com/users/broonie/followers', 'https://api.github.com/users/broonie/following', 'https://api.github.com/users/broonie/gists', 'https://api.github.com/users/broonie/starred', 'https://api.github.com/users/broonie/repos', 'https://api.github.com/users/broonie/events', 'https://api.github.com/users/broonie/received_events', 0); +INSERT INTO `developer` VALUES (2904, 'jwhiteman', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'jimtron9000@gmail.com', NULL, NULL, NULL, 0, 0, 19, 4, 0, 0, 0, '2008-03-12T13:21:26Z', '2024-10-31T14:34:08Z', 'https://avatars.githubusercontent.com/u/2904?v=4', 'https://api.github.com/users/jwhiteman', 'https://github.com/jwhiteman', 'https://api.github.com/users/jwhiteman/followers', 'https://api.github.com/users/jwhiteman/following', 'https://api.github.com/users/jwhiteman/gists', 'https://api.github.com/users/jwhiteman/starred', 'https://api.github.com/users/jwhiteman/repos', 'https://api.github.com/users/jwhiteman/events', 'https://api.github.com/users/jwhiteman/received_events', 0); +INSERT INTO `developer` VALUES (2905, 'rubyconsumer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Winston Tsang', 'Radberry', 'http://radberry.com/', 'Ann Arbor, MI', NULL, 'true', NULL, NULL, 0, 0, 28, 23, 0, 0, 0, '2008-03-12T13:31:53Z', '2024-08-09T03:04:06Z', 'https://avatars.githubusercontent.com/u/2905?v=4', 'https://api.github.com/users/rubyconsumer', 'https://github.com/rubyconsumer', 'https://api.github.com/users/rubyconsumer/followers', 'https://api.github.com/users/rubyconsumer/following', 'https://api.github.com/users/rubyconsumer/gists', 'https://api.github.com/users/rubyconsumer/starred', 'https://api.github.com/users/rubyconsumer/repos', 'https://api.github.com/users/rubyconsumer/events', 'https://api.github.com/users/rubyconsumer/received_events', 0); +INSERT INTO `developer` VALUES (2906, 'apardo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Antonio Pardo', 'APS Sistemas', 'https://aps.systems/', 'Madrid, Spain', 'apardo@aps.systems', 'true', 'Systems Architect', NULL, 0, 0, 79, 53, 0, 0, 0, '2008-03-12T13:44:00Z', '2024-10-19T11:23:57Z', 'https://avatars.githubusercontent.com/u/2906?v=4', 'https://api.github.com/users/apardo', 'https://github.com/apardo', 'https://api.github.com/users/apardo/followers', 'https://api.github.com/users/apardo/following', 'https://api.github.com/users/apardo/gists', 'https://api.github.com/users/apardo/starred', 'https://api.github.com/users/apardo/repos', 'https://api.github.com/users/apardo/events', 'https://api.github.com/users/apardo/received_events', 0); +INSERT INTO `developer` VALUES (2907, 'ioptics', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Lambert', 'Global Personals', '', 'London, UK', 'inneroptics@gmail.com', NULL, NULL, NULL, 0, 0, 24, 22, 0, 0, 0, '2008-03-12T13:52:53Z', '2024-04-18T10:35:37Z', 'https://avatars.githubusercontent.com/u/2907?v=4', 'https://api.github.com/users/ioptics', 'https://github.com/ioptics', 'https://api.github.com/users/ioptics/followers', 'https://api.github.com/users/ioptics/following', 'https://api.github.com/users/ioptics/gists', 'https://api.github.com/users/ioptics/starred', 'https://api.github.com/users/ioptics/repos', 'https://api.github.com/users/ioptics/events', 'https://api.github.com/users/ioptics/received_events', 0); +INSERT INTO `developer` VALUES (2908, 'atw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Antoni Wójcik', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2008-03-12T13:55:58Z', '2024-10-12T18:42:26Z', 'https://avatars.githubusercontent.com/u/2908?v=4', 'https://api.github.com/users/atw', 'https://github.com/atw', 'https://api.github.com/users/atw/followers', 'https://api.github.com/users/atw/following', 'https://api.github.com/users/atw/gists', 'https://api.github.com/users/atw/starred', 'https://api.github.com/users/atw/repos', 'https://api.github.com/users/atw/events', 'https://api.github.com/users/atw/received_events', 0); +INSERT INTO `developer` VALUES (2909, 'jcn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesse Chan-Norris', NULL, 'https://jcn.me', 'New York, NY', NULL, NULL, NULL, 'jcn', 0, 0, 63, 5, 0, 0, 0, '2008-03-12T14:21:00Z', '2023-02-20T16:05:14Z', 'https://avatars.githubusercontent.com/u/2909?v=4', 'https://api.github.com/users/jcn', 'https://github.com/jcn', 'https://api.github.com/users/jcn/followers', 'https://api.github.com/users/jcn/following', 'https://api.github.com/users/jcn/gists', 'https://api.github.com/users/jcn/starred', 'https://api.github.com/users/jcn/repos', 'https://api.github.com/users/jcn/events', 'https://api.github.com/users/jcn/received_events', 0); +INSERT INTO `developer` VALUES (2910, 'ohammersmith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Otto Hammersmith', NULL, '', 'Cary, NC', 'otto.hammersmith@gmail.com', NULL, NULL, NULL, 0, 0, 16, 2, 0, 0, 0, '2008-03-12T14:35:22Z', '2024-03-04T19:00:53Z', 'https://avatars.githubusercontent.com/u/2910?v=4', 'https://api.github.com/users/ohammersmith', 'https://github.com/ohammersmith', 'https://api.github.com/users/ohammersmith/followers', 'https://api.github.com/users/ohammersmith/following', 'https://api.github.com/users/ohammersmith/gists', 'https://api.github.com/users/ohammersmith/starred', 'https://api.github.com/users/ohammersmith/repos', 'https://api.github.com/users/ohammersmith/events', 'https://api.github.com/users/ohammersmith/received_events', 0); +INSERT INTO `developer` VALUES (2911, 'mperham', 'B', 47.17872295854871, 0, 0, 0, 0, 0, 0, 'Mike Perham', 'Contributed Systems', 'https://www.mikeperham.com', 'Portland, OR', 'mike@perham.net', NULL, 'Author and maintainer of Sidekiq, the background job framework for Ruby, and Faktory, background jobs for all languages.', NULL, 0, 0, 3036, 15, 0, 0, 0, '2008-03-12T15:57:34Z', '2024-11-02T16:53:33Z', 'https://avatars.githubusercontent.com/u/2911?v=4', 'https://api.github.com/users/mperham', 'https://github.com/mperham', 'https://api.github.com/users/mperham/followers', 'https://api.github.com/users/mperham/following', 'https://api.github.com/users/mperham/gists', 'https://api.github.com/users/mperham/starred', 'https://api.github.com/users/mperham/repos', 'https://api.github.com/users/mperham/events', 'https://api.github.com/users/mperham/received_events', 0); +INSERT INTO `developer` VALUES (2912, 'crowbot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Louise Crow', 'mySociety', 'www.louisecrow.com', 'London', NULL, NULL, NULL, NULL, 0, 0, 76, 15, 0, 0, 0, '2008-03-12T15:58:51Z', '2024-11-02T11:18:41Z', 'https://avatars.githubusercontent.com/u/2912?v=4', 'https://api.github.com/users/crowbot', 'https://github.com/crowbot', 'https://api.github.com/users/crowbot/followers', 'https://api.github.com/users/crowbot/following', 'https://api.github.com/users/crowbot/gists', 'https://api.github.com/users/crowbot/starred', 'https://api.github.com/users/crowbot/repos', 'https://api.github.com/users/crowbot/events', 'https://api.github.com/users/crowbot/received_events', 0); +INSERT INTO `developer` VALUES (2913, 'ja', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Andrews', 'Re-Cog Ltd', '', 'UK/Italy', NULL, NULL, NULL, NULL, 0, 0, 33, 23, 0, 0, 0, '2008-03-12T16:03:30Z', '2024-10-03T11:06:47Z', 'https://avatars.githubusercontent.com/u/2913?v=4', 'https://api.github.com/users/ja', 'https://github.com/ja', 'https://api.github.com/users/ja/followers', 'https://api.github.com/users/ja/following', 'https://api.github.com/users/ja/gists', 'https://api.github.com/users/ja/starred', 'https://api.github.com/users/ja/repos', 'https://api.github.com/users/ja/events', 'https://api.github.com/users/ja/received_events', 0); +INSERT INTO `developer` VALUES (2914, 'geordan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Geordan Liban', NULL, 'https://www.linkedin.com/in/geordanliban/', '未知', NULL, 'true', 'DevSecTacoHops', NULL, 0, 0, 9, 24, 0, 0, 0, '2008-03-12T16:06:45Z', '2022-12-31T00:29:21Z', 'https://avatars.githubusercontent.com/u/2914?v=4', 'https://api.github.com/users/geordan', 'https://github.com/geordan', 'https://api.github.com/users/geordan/followers', 'https://api.github.com/users/geordan/following', 'https://api.github.com/users/geordan/gists', 'https://api.github.com/users/geordan/starred', 'https://api.github.com/users/geordan/repos', 'https://api.github.com/users/geordan/events', 'https://api.github.com/users/geordan/received_events', 0); +INSERT INTO `developer` VALUES (2915, 'hexorx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Robinson', NULL, 'www.joshrobinson.com', 'Denver, CO', NULL, NULL, 'I am a code craftsman, cryptographer, and technologist who thrives on cutting edge technology', 'JoshRobinson', 0, 0, 79, 34, 0, 0, 0, '2008-03-12T16:09:11Z', '2024-10-21T07:42:25Z', 'https://avatars.githubusercontent.com/u/2915?v=4', 'https://api.github.com/users/hexorx', 'https://github.com/hexorx', 'https://api.github.com/users/hexorx/followers', 'https://api.github.com/users/hexorx/following', 'https://api.github.com/users/hexorx/gists', 'https://api.github.com/users/hexorx/starred', 'https://api.github.com/users/hexorx/repos', 'https://api.github.com/users/hexorx/events', 'https://api.github.com/users/hexorx/received_events', 0); +INSERT INTO `developer` VALUES (2916, 'imkite', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Wilson', NULL, 'http://afrobot.com', 'Atlanta, GA', 'rnathanwilson@gmail.com', NULL, NULL, NULL, 0, 0, 10, 4, 0, 0, 0, '2008-03-12T16:09:39Z', '2020-11-06T14:34:38Z', 'https://avatars.githubusercontent.com/u/2916?v=4', 'https://api.github.com/users/imkite', 'https://github.com/imkite', 'https://api.github.com/users/imkite/followers', 'https://api.github.com/users/imkite/following', 'https://api.github.com/users/imkite/gists', 'https://api.github.com/users/imkite/starred', 'https://api.github.com/users/imkite/repos', 'https://api.github.com/users/imkite/events', 'https://api.github.com/users/imkite/received_events', 0); +INSERT INTO `developer` VALUES (2917, 'AlSquire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arnaud Lécuyer', 'Sipad', '', 'Paris', 'alsquire@gmail.com', 'true', NULL, NULL, 0, 0, 30, 40, 0, 0, 0, '2008-03-12T16:10:14Z', '2024-09-09T18:30:24Z', 'https://avatars.githubusercontent.com/u/2917?v=4', 'https://api.github.com/users/AlSquire', 'https://github.com/AlSquire', 'https://api.github.com/users/AlSquire/followers', 'https://api.github.com/users/AlSquire/following', 'https://api.github.com/users/AlSquire/gists', 'https://api.github.com/users/AlSquire/starred', 'https://api.github.com/users/AlSquire/repos', 'https://api.github.com/users/AlSquire/events', 'https://api.github.com/users/AlSquire/received_events', 0); +INSERT INTO `developer` VALUES (2918, 'elfredpagan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elfred Pagan', NULL, 'http://elfredpagan.com', 'Austin, TX', NULL, NULL, NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2008-03-12T16:10:32Z', '2024-08-30T18:35:33Z', 'https://avatars.githubusercontent.com/u/2918?v=4', 'https://api.github.com/users/elfredpagan', 'https://github.com/elfredpagan', 'https://api.github.com/users/elfredpagan/followers', 'https://api.github.com/users/elfredpagan/following', 'https://api.github.com/users/elfredpagan/gists', 'https://api.github.com/users/elfredpagan/starred', 'https://api.github.com/users/elfredpagan/repos', 'https://api.github.com/users/elfredpagan/events', 'https://api.github.com/users/elfredpagan/received_events', 0); +INSERT INTO `developer` VALUES (2919, 'fearmediocrity', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-12T16:32:11Z', '2016-11-09T18:57:14Z', 'https://avatars.githubusercontent.com/u/2919?v=4', 'https://api.github.com/users/fearmediocrity', 'https://github.com/fearmediocrity', 'https://api.github.com/users/fearmediocrity/followers', 'https://api.github.com/users/fearmediocrity/following', 'https://api.github.com/users/fearmediocrity/gists', 'https://api.github.com/users/fearmediocrity/starred', 'https://api.github.com/users/fearmediocrity/repos', 'https://api.github.com/users/fearmediocrity/events', 'https://api.github.com/users/fearmediocrity/received_events', 0); +INSERT INTO `developer` VALUES (2921, 'david-harkness', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Harkness', NULL, 'https://david-harkness.github.io/en/', 'Atlanta, GA', NULL, NULL, 'Ruby on Rails and Angular Developer', NULL, 0, 0, 15, 1, 0, 0, 0, '2008-03-12T16:40:08Z', '2024-10-22T17:45:27Z', 'https://avatars.githubusercontent.com/u/2921?v=4', 'https://api.github.com/users/david-harkness', 'https://github.com/david-harkness', 'https://api.github.com/users/david-harkness/followers', 'https://api.github.com/users/david-harkness/following', 'https://api.github.com/users/david-harkness/gists', 'https://api.github.com/users/david-harkness/starred', 'https://api.github.com/users/david-harkness/repos', 'https://api.github.com/users/david-harkness/events', 'https://api.github.com/users/david-harkness/received_events', 0); +INSERT INTO `developer` VALUES (2922, 'clarabstract', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clara', 'Klei Entertainment', '', 'Vancouver, BC', 'ruyasan@gmail.com', NULL, 'Literally just an abstraction', NULL, 0, 0, 20, 3, 0, 0, 0, '2008-03-12T16:42:05Z', '2023-09-08T21:46:55Z', 'https://avatars.githubusercontent.com/u/2922?v=4', 'https://api.github.com/users/clarabstract', 'https://github.com/clarabstract', 'https://api.github.com/users/clarabstract/followers', 'https://api.github.com/users/clarabstract/following', 'https://api.github.com/users/clarabstract/gists', 'https://api.github.com/users/clarabstract/starred', 'https://api.github.com/users/clarabstract/repos', 'https://api.github.com/users/clarabstract/events', 'https://api.github.com/users/clarabstract/received_events', 0); +INSERT INTO `developer` VALUES (2923, 'Soleone', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sole One', 'Shopify', 'http://www.twitter.com/Soleone', '未知', 'dev@soleone.xyz', NULL, NULL, NULL, 0, 0, 91, 6, 0, 0, 0, '2008-03-12T16:49:39Z', '2024-07-19T17:39:55Z', 'https://avatars.githubusercontent.com/u/2923?v=4', 'https://api.github.com/users/Soleone', 'https://github.com/Soleone', 'https://api.github.com/users/Soleone/followers', 'https://api.github.com/users/Soleone/following', 'https://api.github.com/users/Soleone/gists', 'https://api.github.com/users/Soleone/starred', 'https://api.github.com/users/Soleone/repos', 'https://api.github.com/users/Soleone/events', 'https://api.github.com/users/Soleone/received_events', 0); +INSERT INTO `developer` VALUES (2924, 'albertito', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alberto Bertogli', NULL, 'https://blitiri.com.ar/', 'Pinamar, Buenos Aires, Argentina', 'albertito@blitiri.com.ar', 'true', NULL, NULL, 0, 0, 49, 3, 0, 0, 0, '2008-03-12T16:58:33Z', '2024-11-03T17:14:18Z', 'https://avatars.githubusercontent.com/u/2924?v=4', 'https://api.github.com/users/albertito', 'https://github.com/albertito', 'https://api.github.com/users/albertito/followers', 'https://api.github.com/users/albertito/following', 'https://api.github.com/users/albertito/gists', 'https://api.github.com/users/albertito/starred', 'https://api.github.com/users/albertito/repos', 'https://api.github.com/users/albertito/events', 'https://api.github.com/users/albertito/received_events', 0); +INSERT INTO `developer` VALUES (2926, 'madmatah', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthieu Huguet', NULL, '', 'France', NULL, 'true', NULL, NULL, 0, 0, 26, 8, 0, 0, 0, '2008-03-12T17:04:32Z', '2024-03-20T22:28:45Z', 'https://avatars.githubusercontent.com/u/2926?v=4', 'https://api.github.com/users/madmatah', 'https://github.com/madmatah', 'https://api.github.com/users/madmatah/followers', 'https://api.github.com/users/madmatah/following', 'https://api.github.com/users/madmatah/gists', 'https://api.github.com/users/madmatah/starred', 'https://api.github.com/users/madmatah/repos', 'https://api.github.com/users/madmatah/events', 'https://api.github.com/users/madmatah/received_events', 0); +INSERT INTO `developer` VALUES (2927, 'matthewcarriere', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Carriere', 'Blackninja', 'https://blackninjasoft.com', 'Vancouver, BC', 'matthew@blackninjasoftware.com', NULL, 'Founder and CTO', NULL, 0, 0, 22, 4, 0, 0, 0, '2008-03-12T17:09:13Z', '2024-11-04T19:45:33Z', 'https://avatars.githubusercontent.com/u/2927?v=4', 'https://api.github.com/users/matthewcarriere', 'https://github.com/matthewcarriere', 'https://api.github.com/users/matthewcarriere/followers', 'https://api.github.com/users/matthewcarriere/following', 'https://api.github.com/users/matthewcarriere/gists', 'https://api.github.com/users/matthewcarriere/starred', 'https://api.github.com/users/matthewcarriere/repos', 'https://api.github.com/users/matthewcarriere/events', 'https://api.github.com/users/matthewcarriere/received_events', 0); +INSERT INTO `developer` VALUES (2928, 'sonny', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-12T17:30:47Z', '2018-01-25T17:07:10Z', 'https://avatars.githubusercontent.com/u/2928?v=4', 'https://api.github.com/users/sonny', 'https://github.com/sonny', 'https://api.github.com/users/sonny/followers', 'https://api.github.com/users/sonny/following', 'https://api.github.com/users/sonny/gists', 'https://api.github.com/users/sonny/starred', 'https://api.github.com/users/sonny/repos', 'https://api.github.com/users/sonny/events', 'https://api.github.com/users/sonny/received_events', 0); +INSERT INTO `developer` VALUES (2929, 'georgeguimaraes', 'C', 6.09086092624193, 0, 0, 0, 0, 0, 0, 'George Guimarães', NULL, 'https://georgeguimaraes.com', 'São Paulo, Brazil', 'george.guimaraes@gmail.com', NULL, 'Chaos Promoter at @cloudwalk, bringing https://jim.com to 🇺🇸.\r\n\r\nPreviously co-founder @sourcelevel and @plataformatec, the company behind @elixir-lang', 'georgeguimaraes', 0, 0, 640, 181, 0, 0, 0, '2008-03-12T17:41:20Z', '2024-10-28T21:47:47Z', 'https://avatars.githubusercontent.com/u/2929?v=4', 'https://api.github.com/users/georgeguimaraes', 'https://github.com/georgeguimaraes', 'https://api.github.com/users/georgeguimaraes/followers', 'https://api.github.com/users/georgeguimaraes/following', 'https://api.github.com/users/georgeguimaraes/gists', 'https://api.github.com/users/georgeguimaraes/starred', 'https://api.github.com/users/georgeguimaraes/repos', 'https://api.github.com/users/georgeguimaraes/events', 'https://api.github.com/users/georgeguimaraes/received_events', 0); +INSERT INTO `developer` VALUES (2930, 'austinfromboston', 'C', 0, 0, 0, 0, 0, 0, 0, 'Austin Putman', 'Omada Health', 'http://rawfingertips.org', '未知', NULL, NULL, NULL, NULL, 0, 0, 29, 1, 0, 0, 0, '2008-03-12T17:46:55Z', '2024-03-18T17:32:43Z', 'https://avatars.githubusercontent.com/u/2930?v=4', 'https://api.github.com/users/austinfromboston', 'https://github.com/austinfromboston', 'https://api.github.com/users/austinfromboston/followers', 'https://api.github.com/users/austinfromboston/following', 'https://api.github.com/users/austinfromboston/gists', 'https://api.github.com/users/austinfromboston/starred', 'https://api.github.com/users/austinfromboston/repos', 'https://api.github.com/users/austinfromboston/events', 'https://api.github.com/users/austinfromboston/received_events', 0); +INSERT INTO `developer` VALUES (2931, 'michael', 'C', 8.028644068834028, 0, 0, 0, 0, 0, 0, 'Michael Aufreiter', 'Ken', 'letsken.com', 'Linz, Austria', 'michael@letsken.com', NULL, NULL, '_mql', 0, 0, 753, 187, 0, 0, 0, '2008-03-12T18:01:13Z', '2024-10-29T19:39:42Z', 'https://avatars.githubusercontent.com/u/2931?v=4', 'https://api.github.com/users/michael', 'https://github.com/michael', 'https://api.github.com/users/michael/followers', 'https://api.github.com/users/michael/following', 'https://api.github.com/users/michael/gists', 'https://api.github.com/users/michael/starred', 'https://api.github.com/users/michael/repos', 'https://api.github.com/users/michael/events', 'https://api.github.com/users/michael/received_events', 0); +INSERT INTO `developer` VALUES (2932, 'wjs-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-12T18:09:41Z', '2020-04-20T03:20:48Z', 'https://avatars.githubusercontent.com/u/2932?v=4', 'https://api.github.com/users/wjs-zz', 'https://github.com/wjs-zz', 'https://api.github.com/users/wjs-zz/followers', 'https://api.github.com/users/wjs-zz/following', 'https://api.github.com/users/wjs-zz/gists', 'https://api.github.com/users/wjs-zz/starred', 'https://api.github.com/users/wjs-zz/repos', 'https://api.github.com/users/wjs-zz/events', 'https://api.github.com/users/wjs-zz/received_events', 0); +INSERT INTO `developer` VALUES (2933, 'adamstac', 'C', 9.17759513568067, 0, 0, 0, 0, 0, 0, 'Adam Stacoviak', '@thechangelog', 'https://changelog.com', 'Austin, TX', 'adam@changelog.com', NULL, 'Founder & Editor-in-Chief of Changelog.com', 'adamstac', 0, 0, 820, 103, 0, 0, 0, '2008-03-12T18:11:06Z', '2024-04-27T02:19:42Z', 'https://avatars.githubusercontent.com/u/2933?v=4', 'https://api.github.com/users/adamstac', 'https://github.com/adamstac', 'https://api.github.com/users/adamstac/followers', 'https://api.github.com/users/adamstac/following', 'https://api.github.com/users/adamstac/gists', 'https://api.github.com/users/adamstac/starred', 'https://api.github.com/users/adamstac/repos', 'https://api.github.com/users/adamstac/events', 'https://api.github.com/users/adamstac/received_events', 0); +INSERT INTO `developer` VALUES (2934, 'alexk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Koff', NULL, '', 'San Francisco, CA', 'abkoff@gmail.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-12T18:15:33Z', '2022-02-09T08:05:49Z', 'https://avatars.githubusercontent.com/u/2934?v=4', 'https://api.github.com/users/alexk', 'https://github.com/alexk', 'https://api.github.com/users/alexk/followers', 'https://api.github.com/users/alexk/following', 'https://api.github.com/users/alexk/gists', 'https://api.github.com/users/alexk/starred', 'https://api.github.com/users/alexk/repos', 'https://api.github.com/users/alexk/events', 'https://api.github.com/users/alexk/received_events', 0); +INSERT INTO `developer` VALUES (2935, 'stuartsaunders', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stuart Saunders', 'Glider Capital', 'glider.capital', 'Honolulu, HI', NULL, NULL, '🏗️ Tech Leader 🚀 Startup Founder 😇 Angel Investor, previously Mobile Defense (acq. NYSE: AIZ)', 'stuartsaunders', 0, 0, 21, 8, 0, 0, 0, '2008-03-12T18:24:40Z', '2024-10-28T02:22:05Z', 'https://avatars.githubusercontent.com/u/2935?v=4', 'https://api.github.com/users/stuartsaunders', 'https://github.com/stuartsaunders', 'https://api.github.com/users/stuartsaunders/followers', 'https://api.github.com/users/stuartsaunders/following', 'https://api.github.com/users/stuartsaunders/gists', 'https://api.github.com/users/stuartsaunders/starred', 'https://api.github.com/users/stuartsaunders/repos', 'https://api.github.com/users/stuartsaunders/events', 'https://api.github.com/users/stuartsaunders/received_events', 0); +INSERT INTO `developer` VALUES (2936, 'jw-00000', 'C', 0, 0, 0, 0, 0, 0, 0, 'JW', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-12T18:37:35Z', '2024-09-06T21:57:51Z', 'https://avatars.githubusercontent.com/u/2936?v=4', 'https://api.github.com/users/jw-00000', 'https://github.com/jw-00000', 'https://api.github.com/users/jw-00000/followers', 'https://api.github.com/users/jw-00000/following', 'https://api.github.com/users/jw-00000/gists', 'https://api.github.com/users/jw-00000/starred', 'https://api.github.com/users/jw-00000/repos', 'https://api.github.com/users/jw-00000/events', 'https://api.github.com/users/jw-00000/received_events', 0); +INSERT INTO `developer` VALUES (2937, 'ajmorris', 'C', 0, 0, 0, 0, 0, 0, 0, 'AJ Morris', NULL, 'http://ajmorris.me', 'DeWitt, MI', NULL, 'true', NULL, 'ajmorris', 0, 0, 39, 10, 0, 0, 0, '2008-03-12T18:44:36Z', '2024-08-01T07:01:41Z', 'https://avatars.githubusercontent.com/u/2937?v=4', 'https://api.github.com/users/ajmorris', 'https://github.com/ajmorris', 'https://api.github.com/users/ajmorris/followers', 'https://api.github.com/users/ajmorris/following', 'https://api.github.com/users/ajmorris/gists', 'https://api.github.com/users/ajmorris/starred', 'https://api.github.com/users/ajmorris/repos', 'https://api.github.com/users/ajmorris/events', 'https://api.github.com/users/ajmorris/received_events', 0); +INSERT INTO `developer` VALUES (2938, 'ningerso', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Ingersoll', NULL, 'http://ningerso.blogspot.com', 'Chicago, IL', 'ningerso@gmail.com', NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-03-12T18:44:58Z', '2022-11-30T17:33:19Z', 'https://avatars.githubusercontent.com/u/2938?v=4', 'https://api.github.com/users/ningerso', 'https://github.com/ningerso', 'https://api.github.com/users/ningerso/followers', 'https://api.github.com/users/ningerso/following', 'https://api.github.com/users/ningerso/gists', 'https://api.github.com/users/ningerso/starred', 'https://api.github.com/users/ningerso/repos', 'https://api.github.com/users/ningerso/events', 'https://api.github.com/users/ningerso/received_events', 0); +INSERT INTO `developer` VALUES (2939, 'courtenay', 'C', 0, 0, 0, 0, 0, 0, 0, 'C o u r t e n a y', 'ENTP', 'http://Don\'t send me recruiter spam, fuckface', 'Mars', NULL, NULL, NULL, NULL, 0, 0, 195, 12, 0, 0, 0, '2008-03-12T18:49:11Z', '2024-09-11T03:20:15Z', 'https://avatars.githubusercontent.com/u/2939?v=4', 'https://api.github.com/users/courtenay', 'https://github.com/courtenay', 'https://api.github.com/users/courtenay/followers', 'https://api.github.com/users/courtenay/following', 'https://api.github.com/users/courtenay/gists', 'https://api.github.com/users/courtenay/starred', 'https://api.github.com/users/courtenay/repos', 'https://api.github.com/users/courtenay/events', 'https://api.github.com/users/courtenay/received_events', 0); +INSERT INTO `developer` VALUES (2940, 'nope', 'C', 0, 0, 0, 0, 0, 0, 0, 'luca sabato', 'Moka Design UK', 'https://mokadesignuk.com', 'Manchester, United Kingdom', NULL, NULL, 'I\'m a WordPress Web Designer and Developer.', NULL, 0, 0, 16, 14, 0, 0, 0, '2008-03-12T18:52:29Z', '2021-07-07T10:39:55Z', 'https://avatars.githubusercontent.com/u/2940?v=4', 'https://api.github.com/users/nope', 'https://github.com/nope', 'https://api.github.com/users/nope/followers', 'https://api.github.com/users/nope/following', 'https://api.github.com/users/nope/gists', 'https://api.github.com/users/nope/starred', 'https://api.github.com/users/nope/repos', 'https://api.github.com/users/nope/events', 'https://api.github.com/users/nope/received_events', 0); +INSERT INTO `developer` VALUES (2941, 'pope', 'C', 0, 0, 0, 0, 0, 0, 0, 'K. Adam Christensen', NULL, 'http://shifteleven.com', 'San Jose, CA', 'pope@shifteleven.com', NULL, NULL, NULL, 0, 0, 46, 17, 0, 0, 0, '2008-03-12T18:54:43Z', '2024-09-14T21:08:06Z', 'https://avatars.githubusercontent.com/u/2941?v=4', 'https://api.github.com/users/pope', 'https://github.com/pope', 'https://api.github.com/users/pope/followers', 'https://api.github.com/users/pope/following', 'https://api.github.com/users/pope/gists', 'https://api.github.com/users/pope/starred', 'https://api.github.com/users/pope/repos', 'https://api.github.com/users/pope/events', 'https://api.github.com/users/pope/received_events', 0); +INSERT INTO `developer` VALUES (2942, 'osake', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua French', NULL, 'http://osake.wordpress.com', 'Broomfield, CO', 'osakenoyojimbo@gmail.com', NULL, 'I love all the parts of the video game development pipeline. I put together tools and like to contribute back to the open source community.', NULL, 0, 0, 11, 8, 0, 0, 0, '2008-03-12T18:55:34Z', '2023-11-30T00:23:11Z', 'https://avatars.githubusercontent.com/u/2942?v=4', 'https://api.github.com/users/osake', 'https://github.com/osake', 'https://api.github.com/users/osake/followers', 'https://api.github.com/users/osake/following', 'https://api.github.com/users/osake/gists', 'https://api.github.com/users/osake/starred', 'https://api.github.com/users/osake/repos', 'https://api.github.com/users/osake/events', 'https://api.github.com/users/osake/received_events', 0); +INSERT INTO `developer` VALUES (2944, 'lagartoflojo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hernán Schmidt', '@SUSE', '', 'Nürnberg, Deutschland', NULL, NULL, NULL, NULL, 0, 0, 40, 6, 0, 0, 0, '2008-03-12T18:57:43Z', '2024-10-20T11:21:02Z', 'https://avatars.githubusercontent.com/u/2944?v=4', 'https://api.github.com/users/lagartoflojo', 'https://github.com/lagartoflojo', 'https://api.github.com/users/lagartoflojo/followers', 'https://api.github.com/users/lagartoflojo/following', 'https://api.github.com/users/lagartoflojo/gists', 'https://api.github.com/users/lagartoflojo/starred', 'https://api.github.com/users/lagartoflojo/repos', 'https://api.github.com/users/lagartoflojo/events', 'https://api.github.com/users/lagartoflojo/received_events', 0); +INSERT INTO `developer` VALUES (2946, 'chl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Langreiter', 'synerge development services', 'http://www.langreiter.com', 'Austria', 'chris@langreiter.com', NULL, NULL, NULL, 0, 0, 74, 240, 0, 0, 0, '2008-03-12T19:19:56Z', '2024-08-01T14:26:24Z', 'https://avatars.githubusercontent.com/u/2946?v=4', 'https://api.github.com/users/chl', 'https://github.com/chl', 'https://api.github.com/users/chl/followers', 'https://api.github.com/users/chl/following', 'https://api.github.com/users/chl/gists', 'https://api.github.com/users/chl/starred', 'https://api.github.com/users/chl/repos', 'https://api.github.com/users/chl/events', 'https://api.github.com/users/chl/received_events', 0); +INSERT INTO `developer` VALUES (2947, 'gen2002', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gennady Archanogorodsky', 'MyPermissions', '', '未知', NULL, NULL, 'Intrepid Developer , mainly in scala,java and some Python, erlang , and C', NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-12T19:40:09Z', '2024-07-01T08:50:22Z', 'https://avatars.githubusercontent.com/u/2947?v=4', 'https://api.github.com/users/gen2002', 'https://github.com/gen2002', 'https://api.github.com/users/gen2002/followers', 'https://api.github.com/users/gen2002/following', 'https://api.github.com/users/gen2002/gists', 'https://api.github.com/users/gen2002/starred', 'https://api.github.com/users/gen2002/repos', 'https://api.github.com/users/gen2002/events', 'https://api.github.com/users/gen2002/received_events', 0); +INSERT INTO `developer` VALUES (2948, 'rwjc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rick Chen', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 29, 6, 0, 0, 0, '2008-03-12T19:41:05Z', '2024-11-02T01:35:16Z', 'https://avatars.githubusercontent.com/u/2948?v=4', 'https://api.github.com/users/rwjc', 'https://github.com/rwjc', 'https://api.github.com/users/rwjc/followers', 'https://api.github.com/users/rwjc/following', 'https://api.github.com/users/rwjc/gists', 'https://api.github.com/users/rwjc/starred', 'https://api.github.com/users/rwjc/repos', 'https://api.github.com/users/rwjc/events', 'https://api.github.com/users/rwjc/received_events', 0); +INSERT INTO `developer` VALUES (2949, 'quickredfox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Francois Lafortune', NULL, 'http://quickredfox.at', 'Montreal', 'code@quickredfox.at', NULL, NULL, NULL, 0, 0, 39, 28, 0, 0, 0, '2008-03-12T20:42:00Z', '2016-02-26T22:34:53Z', 'https://avatars.githubusercontent.com/u/2949?v=4', 'https://api.github.com/users/quickredfox', 'https://github.com/quickredfox', 'https://api.github.com/users/quickredfox/followers', 'https://api.github.com/users/quickredfox/following', 'https://api.github.com/users/quickredfox/gists', 'https://api.github.com/users/quickredfox/starred', 'https://api.github.com/users/quickredfox/repos', 'https://api.github.com/users/quickredfox/events', 'https://api.github.com/users/quickredfox/received_events', 0); +INSERT INTO `developer` VALUES (2950, 'gavin', 'C', 0, 0, 0, 0, 0, 0, 0, 'gavin mcgovern', NULL, 'http://www.machinelake.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2008-03-12T21:08:49Z', '2024-11-02T21:26:34Z', 'https://avatars.githubusercontent.com/u/2950?v=4', 'https://api.github.com/users/gavin', 'https://github.com/gavin', 'https://api.github.com/users/gavin/followers', 'https://api.github.com/users/gavin/following', 'https://api.github.com/users/gavin/gists', 'https://api.github.com/users/gavin/starred', 'https://api.github.com/users/gavin/repos', 'https://api.github.com/users/gavin/events', 'https://api.github.com/users/gavin/received_events', 0); +INSERT INTO `developer` VALUES (2951, 'thedavidprice', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Price', NULL, 'http://thedavidprice.com', 'northern Northern California', 'thedavid@thedavidprice.com', NULL, NULL, NULL, 0, 0, 168, 22, 0, 0, 0, '2008-03-12T21:27:11Z', '2024-10-22T05:18:34Z', 'https://avatars.githubusercontent.com/u/2951?v=4', 'https://api.github.com/users/thedavidprice', 'https://github.com/thedavidprice', 'https://api.github.com/users/thedavidprice/followers', 'https://api.github.com/users/thedavidprice/following', 'https://api.github.com/users/thedavidprice/gists', 'https://api.github.com/users/thedavidprice/starred', 'https://api.github.com/users/thedavidprice/repos', 'https://api.github.com/users/thedavidprice/events', 'https://api.github.com/users/thedavidprice/received_events', 0); +INSERT INTO `developer` VALUES (2952, 'lgarcia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lucas García', 'Socialmood', 'http://www.socialmood.com', 'Madrid, Spain', 'lucas@socialmood.com', NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-12T21:31:03Z', '2022-10-28T19:30:44Z', 'https://avatars.githubusercontent.com/u/2952?v=4', 'https://api.github.com/users/lgarcia', 'https://github.com/lgarcia', 'https://api.github.com/users/lgarcia/followers', 'https://api.github.com/users/lgarcia/following', 'https://api.github.com/users/lgarcia/gists', 'https://api.github.com/users/lgarcia/starred', 'https://api.github.com/users/lgarcia/repos', 'https://api.github.com/users/lgarcia/events', 'https://api.github.com/users/lgarcia/received_events', 0); +INSERT INTO `developer` VALUES (2953, 'soylentfoo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-12T21:31:28Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2953?v=4', 'https://api.github.com/users/soylentfoo', 'https://github.com/soylentfoo', 'https://api.github.com/users/soylentfoo/followers', 'https://api.github.com/users/soylentfoo/following', 'https://api.github.com/users/soylentfoo/gists', 'https://api.github.com/users/soylentfoo/starred', 'https://api.github.com/users/soylentfoo/repos', 'https://api.github.com/users/soylentfoo/events', 'https://api.github.com/users/soylentfoo/received_events', 0); +INSERT INTO `developer` VALUES (2954, 'chrisortman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Ortman', 'University of Iowa', 'http://chrisortman.com', 'Iowa, USA', NULL, NULL, NULL, NULL, 0, 0, 32, 36, 0, 0, 0, '2008-03-12T21:34:32Z', '2024-08-17T13:23:01Z', 'https://avatars.githubusercontent.com/u/2954?v=4', 'https://api.github.com/users/chrisortman', 'https://github.com/chrisortman', 'https://api.github.com/users/chrisortman/followers', 'https://api.github.com/users/chrisortman/following', 'https://api.github.com/users/chrisortman/gists', 'https://api.github.com/users/chrisortman/starred', 'https://api.github.com/users/chrisortman/repos', 'https://api.github.com/users/chrisortman/events', 'https://api.github.com/users/chrisortman/received_events', 0); +INSERT INTO `developer` VALUES (2955, 'cscotta', 'C', 0, 0, 0, 0, 0, 0, 0, 'C. Scott Andreas', NULL, 'http://www.twitter.com/cscotta', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 86, 8, 0, 0, 0, '2008-03-12T21:46:38Z', '2024-10-15T22:24:43Z', 'https://avatars.githubusercontent.com/u/2955?v=4', 'https://api.github.com/users/cscotta', 'https://github.com/cscotta', 'https://api.github.com/users/cscotta/followers', 'https://api.github.com/users/cscotta/following', 'https://api.github.com/users/cscotta/gists', 'https://api.github.com/users/cscotta/starred', 'https://api.github.com/users/cscotta/repos', 'https://api.github.com/users/cscotta/events', 'https://api.github.com/users/cscotta/received_events', 0); +INSERT INTO `developer` VALUES (2956, 'ventoneicapelli', 'C', 0, 0, 0, 0, 0, 0, 0, 'ventoneicapelli', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-12T22:53:37Z', '2021-02-19T11:52:32Z', 'https://avatars.githubusercontent.com/u/2956?v=4', 'https://api.github.com/users/ventoneicapelli', 'https://github.com/ventoneicapelli', 'https://api.github.com/users/ventoneicapelli/followers', 'https://api.github.com/users/ventoneicapelli/following', 'https://api.github.com/users/ventoneicapelli/gists', 'https://api.github.com/users/ventoneicapelli/starred', 'https://api.github.com/users/ventoneicapelli/repos', 'https://api.github.com/users/ventoneicapelli/events', 'https://api.github.com/users/ventoneicapelli/received_events', 0); +INSERT INTO `developer` VALUES (2957, 'itsmattking', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt King', NULL, '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 25, 0, 0, 0, 0, '2008-03-12T23:19:13Z', '2024-10-18T11:29:26Z', 'https://avatars.githubusercontent.com/u/2957?v=4', 'https://api.github.com/users/itsmattking', 'https://github.com/itsmattking', 'https://api.github.com/users/itsmattking/followers', 'https://api.github.com/users/itsmattking/following', 'https://api.github.com/users/itsmattking/gists', 'https://api.github.com/users/itsmattking/starred', 'https://api.github.com/users/itsmattking/repos', 'https://api.github.com/users/itsmattking/events', 'https://api.github.com/users/itsmattking/received_events', 0); +INSERT INTO `developer` VALUES (2958, 'pieter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pieter de Bie', NULL, 'http://www.frim.nl', '未知', 'frimmirf+gitx@gmail.com', 'true', NULL, NULL, 0, 0, 122, 3, 0, 0, 0, '2008-03-12T23:38:38Z', '2024-06-12T09:36:22Z', 'https://avatars.githubusercontent.com/u/2958?v=4', 'https://api.github.com/users/pieter', 'https://github.com/pieter', 'https://api.github.com/users/pieter/followers', 'https://api.github.com/users/pieter/following', 'https://api.github.com/users/pieter/gists', 'https://api.github.com/users/pieter/starred', 'https://api.github.com/users/pieter/repos', 'https://api.github.com/users/pieter/events', 'https://api.github.com/users/pieter/received_events', 0); +INSERT INTO `developer` VALUES (2959, 'ammar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ammar Ali', NULL, '', 'Ramallah, Palestine', 'ammar@syntax.ps', NULL, NULL, NULL, 0, 0, 27, 5, 0, 0, 0, '2008-03-13T00:24:05Z', '2024-10-24T11:58:42Z', 'https://avatars.githubusercontent.com/u/2959?v=4', 'https://api.github.com/users/ammar', 'https://github.com/ammar', 'https://api.github.com/users/ammar/followers', 'https://api.github.com/users/ammar/following', 'https://api.github.com/users/ammar/gists', 'https://api.github.com/users/ammar/starred', 'https://api.github.com/users/ammar/repos', 'https://api.github.com/users/ammar/events', 'https://api.github.com/users/ammar/received_events', 0); +INSERT INTO `developer` VALUES (2960, 'ewagoner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Wagoner', 'LocallyGrown.net', 'https://about.me/ewagoner', 'Athens, GA', 'eric@ericwagoner.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-13T00:45:30Z', '2023-12-12T21:49:55Z', 'https://avatars.githubusercontent.com/u/2960?v=4', 'https://api.github.com/users/ewagoner', 'https://github.com/ewagoner', 'https://api.github.com/users/ewagoner/followers', 'https://api.github.com/users/ewagoner/following', 'https://api.github.com/users/ewagoner/gists', 'https://api.github.com/users/ewagoner/starred', 'https://api.github.com/users/ewagoner/repos', 'https://api.github.com/users/ewagoner/events', 'https://api.github.com/users/ewagoner/received_events', 0); +INSERT INTO `developer` VALUES (2961, 'dennisc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dennis C', NULL, '', 'Australia', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-13T00:58:54Z', '2016-02-26T22:34:54Z', 'https://avatars.githubusercontent.com/u/2961?v=4', 'https://api.github.com/users/dennisc', 'https://github.com/dennisc', 'https://api.github.com/users/dennisc/followers', 'https://api.github.com/users/dennisc/following', 'https://api.github.com/users/dennisc/gists', 'https://api.github.com/users/dennisc/starred', 'https://api.github.com/users/dennisc/repos', 'https://api.github.com/users/dennisc/events', 'https://api.github.com/users/dennisc/received_events', 0); +INSERT INTO `developer` VALUES (2962, 'Tunsworthy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom', NULL, 'tomunsworth.net', 'Australia', 'mail@tomunsworth.net', NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-13T01:20:34Z', '2023-07-02T08:19:24Z', 'https://avatars.githubusercontent.com/u/2962?v=4', 'https://api.github.com/users/Tunsworthy', 'https://github.com/Tunsworthy', 'https://api.github.com/users/Tunsworthy/followers', 'https://api.github.com/users/Tunsworthy/following', 'https://api.github.com/users/Tunsworthy/gists', 'https://api.github.com/users/Tunsworthy/starred', 'https://api.github.com/users/Tunsworthy/repos', 'https://api.github.com/users/Tunsworthy/events', 'https://api.github.com/users/Tunsworthy/received_events', 0); +INSERT INTO `developer` VALUES (2963, 'Machx', 'C', 1.1863832379114898, 0, 0, 0, 0, 0, 0, 'Colin Wheeler', NULL, 'www.cocoasamurai.com', 'Lafayette, CA', 'cocoasamurai@gmail.com', NULL, 'Senior iOS & macOS Engineer in the Bay Area', 'CocoaSamurai', 0, 0, 354, 85, 0, 0, 0, '2008-03-13T01:33:54Z', '2024-09-24T06:42:47Z', 'https://avatars.githubusercontent.com/u/2963?v=4', 'https://api.github.com/users/Machx', 'https://github.com/Machx', 'https://api.github.com/users/Machx/followers', 'https://api.github.com/users/Machx/following', 'https://api.github.com/users/Machx/gists', 'https://api.github.com/users/Machx/starred', 'https://api.github.com/users/Machx/repos', 'https://api.github.com/users/Machx/events', 'https://api.github.com/users/Machx/received_events', 0); +INSERT INTO `developer` VALUES (2964, 'mczepiel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Czepiel', NULL, 'mike.czepiel.net', '未知', 'mike@czepiel.net', NULL, NULL, NULL, 0, 0, 25, 1, 0, 0, 0, '2008-03-13T01:36:50Z', '2024-06-29T16:28:56Z', 'https://avatars.githubusercontent.com/u/2964?v=4', 'https://api.github.com/users/mczepiel', 'https://github.com/mczepiel', 'https://api.github.com/users/mczepiel/followers', 'https://api.github.com/users/mczepiel/following', 'https://api.github.com/users/mczepiel/gists', 'https://api.github.com/users/mczepiel/starred', 'https://api.github.com/users/mczepiel/repos', 'https://api.github.com/users/mczepiel/events', 'https://api.github.com/users/mczepiel/received_events', 0); +INSERT INTO `developer` VALUES (2965, 'mattknox', 'C', 0, 0, 0, 0, 0, 0, 0, 'matt knox', '@reddit', 'mattknox.com', 'san francisco, ca', 'matthewknox@gmail.com', NULL, 'asker of first questions, ender of awkward pauses.\r\n', NULL, 0, 0, 199, 30, 0, 0, 0, '2008-03-13T01:51:23Z', '2024-07-16T20:37:05Z', 'https://avatars.githubusercontent.com/u/2965?v=4', 'https://api.github.com/users/mattknox', 'https://github.com/mattknox', 'https://api.github.com/users/mattknox/followers', 'https://api.github.com/users/mattknox/following', 'https://api.github.com/users/mattknox/gists', 'https://api.github.com/users/mattknox/starred', 'https://api.github.com/users/mattknox/repos', 'https://api.github.com/users/mattknox/events', 'https://api.github.com/users/mattknox/received_events', 0); +INSERT INTO `developer` VALUES (2966, 'kenderson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ken Henderson', NULL, 'http://www.kenhenderson.me', 'Virginia', NULL, NULL, NULL, NULL, 0, 0, 16, 2, 0, 0, 0, '2008-03-13T02:10:28Z', '2023-08-12T14:34:40Z', 'https://avatars.githubusercontent.com/u/2966?v=4', 'https://api.github.com/users/kenderson', 'https://github.com/kenderson', 'https://api.github.com/users/kenderson/followers', 'https://api.github.com/users/kenderson/following', 'https://api.github.com/users/kenderson/gists', 'https://api.github.com/users/kenderson/starred', 'https://api.github.com/users/kenderson/repos', 'https://api.github.com/users/kenderson/events', 'https://api.github.com/users/kenderson/received_events', 0); +INSERT INTO `developer` VALUES (2967, 'scottwhite', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott White', '3rd Arm Technologies, Inc.', 'www.3rdarm.com', 'severna park, md', 'scott@3rdarm.com', NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-13T02:29:08Z', '2024-10-12T15:05:32Z', 'https://avatars.githubusercontent.com/u/2967?v=4', 'https://api.github.com/users/scottwhite', 'https://github.com/scottwhite', 'https://api.github.com/users/scottwhite/followers', 'https://api.github.com/users/scottwhite/following', 'https://api.github.com/users/scottwhite/gists', 'https://api.github.com/users/scottwhite/starred', 'https://api.github.com/users/scottwhite/repos', 'https://api.github.com/users/scottwhite/events', 'https://api.github.com/users/scottwhite/received_events', 0); +INSERT INTO `developer` VALUES (2968, 'erikmack', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Mackdanz', NULL, '', 'Austin, Texas, USA', NULL, NULL, NULL, NULL, 0, 0, 10, 2, 0, 0, 0, '2008-03-13T03:29:33Z', '2024-10-30T20:47:44Z', 'https://avatars.githubusercontent.com/u/2968?v=4', 'https://api.github.com/users/erikmack', 'https://github.com/erikmack', 'https://api.github.com/users/erikmack/followers', 'https://api.github.com/users/erikmack/following', 'https://api.github.com/users/erikmack/gists', 'https://api.github.com/users/erikmack/starred', 'https://api.github.com/users/erikmack/repos', 'https://api.github.com/users/erikmack/events', 'https://api.github.com/users/erikmack/received_events', 0); +INSERT INTO `developer` VALUES (2969, 'skiz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Martin', 'Samsung Ads', 'http://bash.org/?668964', 'San Jose, CA', 'github@webwideconsulting.com', NULL, NULL, NULL, 0, 0, 40, 30, 0, 0, 0, '2008-03-13T03:48:36Z', '2024-11-04T21:41:11Z', 'https://avatars.githubusercontent.com/u/2969?v=4', 'https://api.github.com/users/skiz', 'https://github.com/skiz', 'https://api.github.com/users/skiz/followers', 'https://api.github.com/users/skiz/following', 'https://api.github.com/users/skiz/gists', 'https://api.github.com/users/skiz/starred', 'https://api.github.com/users/skiz/repos', 'https://api.github.com/users/skiz/events', 'https://api.github.com/users/skiz/received_events', 0); +INSERT INTO `developer` VALUES (2970, 'andrewmaier', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Maier', 'User Friendliest', '', 'Kingston, Ontario', NULL, NULL, 'Privacy-minded designer', NULL, 0, 0, 80, 155, 0, 0, 0, '2008-03-13T04:00:16Z', '2024-10-31T16:09:21Z', 'https://avatars.githubusercontent.com/u/2970?v=4', 'https://api.github.com/users/andrewmaier', 'https://github.com/andrewmaier', 'https://api.github.com/users/andrewmaier/followers', 'https://api.github.com/users/andrewmaier/following', 'https://api.github.com/users/andrewmaier/gists', 'https://api.github.com/users/andrewmaier/starred', 'https://api.github.com/users/andrewmaier/repos', 'https://api.github.com/users/andrewmaier/events', 'https://api.github.com/users/andrewmaier/received_events', 0); +INSERT INTO `developer` VALUES (2971, 'rentzsch', 'C+', 15.899816302902817, 0, 0, 0, 0, 0, 0, 'Wolf Rentzsch', NULL, 'http://rentzsch.com', 'Chicago', NULL, NULL, NULL, NULL, 0, 0, 1212, 2, 0, 0, 0, '2008-03-13T04:23:19Z', '2024-10-29T23:23:04Z', 'https://avatars.githubusercontent.com/u/2971?v=4', 'https://api.github.com/users/rentzsch', 'https://github.com/rentzsch', 'https://api.github.com/users/rentzsch/followers', 'https://api.github.com/users/rentzsch/following', 'https://api.github.com/users/rentzsch/gists', 'https://api.github.com/users/rentzsch/starred', 'https://api.github.com/users/rentzsch/repos', 'https://api.github.com/users/rentzsch/events', 'https://api.github.com/users/rentzsch/received_events', 0); +INSERT INTO `developer` VALUES (2972, 'ivansviatenko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ivan Sviatenko', NULL, 'sviatenko.org', 'Kyiv, Ukraine', 'ifs@sviatenko.org', NULL, 'Philosopher', NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-13T06:07:12Z', '2024-11-05T10:06:49Z', 'https://avatars.githubusercontent.com/u/2972?v=4', 'https://api.github.com/users/ivansviatenko', 'https://github.com/ivansviatenko', 'https://api.github.com/users/ivansviatenko/followers', 'https://api.github.com/users/ivansviatenko/following', 'https://api.github.com/users/ivansviatenko/gists', 'https://api.github.com/users/ivansviatenko/starred', 'https://api.github.com/users/ivansviatenko/repos', 'https://api.github.com/users/ivansviatenko/events', 'https://api.github.com/users/ivansviatenko/received_events', 0); +INSERT INTO `developer` VALUES (2973, 'adakkak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Abdulmajed Dakkak', NULL, 'eng.utoledo.edu/~adakkak', '未知', 'adakkak@eng.utoledo.edu', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-13T06:11:54Z', '2016-06-16T02:09:48Z', 'https://avatars.githubusercontent.com/u/2973?v=4', 'https://api.github.com/users/adakkak', 'https://github.com/adakkak', 'https://api.github.com/users/adakkak/followers', 'https://api.github.com/users/adakkak/following', 'https://api.github.com/users/adakkak/gists', 'https://api.github.com/users/adakkak/starred', 'https://api.github.com/users/adakkak/repos', 'https://api.github.com/users/adakkak/events', 'https://api.github.com/users/adakkak/received_events', 0); +INSERT INTO `developer` VALUES (2974, 'tapz901', 'C', 0, 0, 0, 0, 0, 0, 0, 'hihack', NULL, '', 'World', NULL, NULL, NULL, NULL, 0, 0, 6, 8, 0, 0, 0, '2008-03-13T08:12:19Z', '2024-10-27T11:19:14Z', 'https://avatars.githubusercontent.com/u/2974?v=4', 'https://api.github.com/users/tapz901', 'https://github.com/tapz901', 'https://api.github.com/users/tapz901/followers', 'https://api.github.com/users/tapz901/following', 'https://api.github.com/users/tapz901/gists', 'https://api.github.com/users/tapz901/starred', 'https://api.github.com/users/tapz901/repos', 'https://api.github.com/users/tapz901/events', 'https://api.github.com/users/tapz901/received_events', 0); +INSERT INTO `developer` VALUES (2975, 'khigia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ludo', NULL, '', 'Singapore', NULL, NULL, NULL, NULL, 0, 0, 20, 11, 0, 0, 0, '2008-03-13T09:47:58Z', '2024-09-28T10:19:35Z', 'https://avatars.githubusercontent.com/u/2975?v=4', 'https://api.github.com/users/khigia', 'https://github.com/khigia', 'https://api.github.com/users/khigia/followers', 'https://api.github.com/users/khigia/following', 'https://api.github.com/users/khigia/gists', 'https://api.github.com/users/khigia/starred', 'https://api.github.com/users/khigia/repos', 'https://api.github.com/users/khigia/events', 'https://api.github.com/users/khigia/received_events', 0); +INSERT INTO `developer` VALUES (2976, 'JonathanTron', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Tron', 'Openhood ', 'http://jonathan.tron.name', 'France / Luxembourg', 'jonathan@tron.name', 'true', NULL, 'JonathanTron', 0, 0, 36, 3, 0, 0, 0, '2008-03-13T10:03:52Z', '2024-11-02T10:44:11Z', 'https://avatars.githubusercontent.com/u/2976?v=4', 'https://api.github.com/users/JonathanTron', 'https://github.com/JonathanTron', 'https://api.github.com/users/JonathanTron/followers', 'https://api.github.com/users/JonathanTron/following', 'https://api.github.com/users/JonathanTron/gists', 'https://api.github.com/users/JonathanTron/starred', 'https://api.github.com/users/JonathanTron/repos', 'https://api.github.com/users/JonathanTron/events', 'https://api.github.com/users/JonathanTron/received_events', 0); +INSERT INTO `developer` VALUES (2977, 'adhusson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adrien Husson', NULL, 'https://blog.adhusson.com/', '未知', NULL, NULL, NULL, 'pngl', 0, 0, 33, 4, 0, 0, 0, '2008-03-13T10:16:17Z', '2024-10-11T08:12:00Z', 'https://avatars.githubusercontent.com/u/2977?v=4', 'https://api.github.com/users/adhusson', 'https://github.com/adhusson', 'https://api.github.com/users/adhusson/followers', 'https://api.github.com/users/adhusson/following', 'https://api.github.com/users/adhusson/gists', 'https://api.github.com/users/adhusson/starred', 'https://api.github.com/users/adhusson/repos', 'https://api.github.com/users/adhusson/events', 'https://api.github.com/users/adhusson/received_events', 0); +INSERT INTO `developer` VALUES (2978, 'webicus', 'C', 0, 0, 0, 0, 0, 0, 0, 'webicus', 'webicus, llc', 'http://webicus.com', 'Atlanta, GA', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-13T11:34:35Z', '2022-05-01T15:43:23Z', 'https://avatars.githubusercontent.com/u/2978?v=4', 'https://api.github.com/users/webicus', 'https://github.com/webicus', 'https://api.github.com/users/webicus/followers', 'https://api.github.com/users/webicus/following', 'https://api.github.com/users/webicus/gists', 'https://api.github.com/users/webicus/starred', 'https://api.github.com/users/webicus/repos', 'https://api.github.com/users/webicus/events', 'https://api.github.com/users/webicus/received_events', 0); +INSERT INTO `developer` VALUES (2979, 'Karimbou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karim Bouchouchi', 'Netzwiese', '', 'Berlin', 'karimbou200@gmail.com', NULL, NULL, NULL, 0, 0, 5, 6, 0, 0, 0, '2008-03-13T11:50:04Z', '2024-09-10T11:51:50Z', 'https://avatars.githubusercontent.com/u/2979?v=4', 'https://api.github.com/users/Karimbou', 'https://github.com/Karimbou', 'https://api.github.com/users/Karimbou/followers', 'https://api.github.com/users/Karimbou/following', 'https://api.github.com/users/Karimbou/gists', 'https://api.github.com/users/Karimbou/starred', 'https://api.github.com/users/Karimbou/repos', 'https://api.github.com/users/Karimbou/events', 'https://api.github.com/users/Karimbou/received_events', 0); +INSERT INTO `developer` VALUES (2980, 'jgarlick', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Garlick', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-13T12:21:33Z', '2024-05-13T11:01:15Z', 'https://avatars.githubusercontent.com/u/2980?v=4', 'https://api.github.com/users/jgarlick', 'https://github.com/jgarlick', 'https://api.github.com/users/jgarlick/followers', 'https://api.github.com/users/jgarlick/following', 'https://api.github.com/users/jgarlick/gists', 'https://api.github.com/users/jgarlick/starred', 'https://api.github.com/users/jgarlick/repos', 'https://api.github.com/users/jgarlick/events', 'https://api.github.com/users/jgarlick/received_events', 0); +INSERT INTO `developer` VALUES (2981, 'karnowski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Larry Karnowski', NULL, '', 'Durham, NC', NULL, NULL, 'Engineering, Product, and Entrepreneurship', NULL, 0, 0, 70, 74, 0, 0, 0, '2008-03-13T12:39:50Z', '2024-10-28T21:34:12Z', 'https://avatars.githubusercontent.com/u/2981?v=4', 'https://api.github.com/users/karnowski', 'https://github.com/karnowski', 'https://api.github.com/users/karnowski/followers', 'https://api.github.com/users/karnowski/following', 'https://api.github.com/users/karnowski/gists', 'https://api.github.com/users/karnowski/starred', 'https://api.github.com/users/karnowski/repos', 'https://api.github.com/users/karnowski/events', 'https://api.github.com/users/karnowski/received_events', 0); +INSERT INTO `developer` VALUES (2982, 'johan--', 'C', 0, 0, 0, 0, 0, 0, 0, 'johan pretorius', 'next step design', 'https://about.me/johanpretorius', 'south africa', NULL, 'true', NULL, NULL, 0, 0, 34, 162, 0, 0, 0, '2008-03-13T13:02:19Z', '2024-10-29T07:40:37Z', 'https://avatars.githubusercontent.com/u/2982?v=4', 'https://api.github.com/users/johan--', 'https://github.com/johan--', 'https://api.github.com/users/johan--/followers', 'https://api.github.com/users/johan--/following', 'https://api.github.com/users/johan--/gists', 'https://api.github.com/users/johan--/starred', 'https://api.github.com/users/johan--/repos', 'https://api.github.com/users/johan--/events', 'https://api.github.com/users/johan--/received_events', 0); +INSERT INTO `developer` VALUES (2983, 'schmurfy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julien Ammous', NULL, '', 'Paris, France', 'schmurfy@gmail.com', NULL, NULL, NULL, 0, 0, 57, 24, 0, 0, 0, '2008-03-13T14:22:08Z', '2024-05-04T13:38:36Z', 'https://avatars.githubusercontent.com/u/2983?v=4', 'https://api.github.com/users/schmurfy', 'https://github.com/schmurfy', 'https://api.github.com/users/schmurfy/followers', 'https://api.github.com/users/schmurfy/following', 'https://api.github.com/users/schmurfy/gists', 'https://api.github.com/users/schmurfy/starred', 'https://api.github.com/users/schmurfy/repos', 'https://api.github.com/users/schmurfy/events', 'https://api.github.com/users/schmurfy/received_events', 0); +INSERT INTO `developer` VALUES (2984, 'zzgavin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gavin Bell', NULL, 'http://gavinbell.com', 'London', NULL, NULL, NULL, 'zzgavin', 0, 0, 17, 19, 0, 0, 0, '2008-03-13T14:32:27Z', '2024-10-08T19:19:59Z', 'https://avatars.githubusercontent.com/u/2984?v=4', 'https://api.github.com/users/zzgavin', 'https://github.com/zzgavin', 'https://api.github.com/users/zzgavin/followers', 'https://api.github.com/users/zzgavin/following', 'https://api.github.com/users/zzgavin/gists', 'https://api.github.com/users/zzgavin/starred', 'https://api.github.com/users/zzgavin/repos', 'https://api.github.com/users/zzgavin/events', 'https://api.github.com/users/zzgavin/received_events', 0); +INSERT INTO `developer` VALUES (2985, 'Xuerian', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-13T14:38:54Z', '2024-07-26T19:17:43Z', 'https://avatars.githubusercontent.com/u/2985?v=4', 'https://api.github.com/users/Xuerian', 'https://github.com/Xuerian', 'https://api.github.com/users/Xuerian/followers', 'https://api.github.com/users/Xuerian/following', 'https://api.github.com/users/Xuerian/gists', 'https://api.github.com/users/Xuerian/starred', 'https://api.github.com/users/Xuerian/repos', 'https://api.github.com/users/Xuerian/events', 'https://api.github.com/users/Xuerian/received_events', 0); +INSERT INTO `developer` VALUES (2986, 'paulanthonywilson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Wilson', 'Cultivate', 'https://merecomplexities.com', 'Edinburgh', NULL, NULL, NULL, 'paulanthonywils', 0, 0, 51, 3, 0, 0, 0, '2008-03-13T14:40:03Z', '2024-10-25T15:46:44Z', 'https://avatars.githubusercontent.com/u/2986?v=4', 'https://api.github.com/users/paulanthonywilson', 'https://github.com/paulanthonywilson', 'https://api.github.com/users/paulanthonywilson/followers', 'https://api.github.com/users/paulanthonywilson/following', 'https://api.github.com/users/paulanthonywilson/gists', 'https://api.github.com/users/paulanthonywilson/starred', 'https://api.github.com/users/paulanthonywilson/repos', 'https://api.github.com/users/paulanthonywilson/events', 'https://api.github.com/users/paulanthonywilson/received_events', 0); +INSERT INTO `developer` VALUES (2987, 'ideaoforder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Dickson', 'Sitesteaders Developement', '', '未知', 'mark@sitesteaders.com', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-03-13T14:54:04Z', '2024-08-28T13:20:46Z', 'https://avatars.githubusercontent.com/u/2987?v=4', 'https://api.github.com/users/ideaoforder', 'https://github.com/ideaoforder', 'https://api.github.com/users/ideaoforder/followers', 'https://api.github.com/users/ideaoforder/following', 'https://api.github.com/users/ideaoforder/gists', 'https://api.github.com/users/ideaoforder/starred', 'https://api.github.com/users/ideaoforder/repos', 'https://api.github.com/users/ideaoforder/events', 'https://api.github.com/users/ideaoforder/received_events', 0); +INSERT INTO `developer` VALUES (2988, 'jasonrudolph', 'C', 5.524959654511496, 0, 0, 0, 0, 0, 0, 'Jason Rudolph', NULL, 'jasonrudolph.com', 'Durham, NC', NULL, NULL, 'Funemployed 🤿🧘‍♂️🏝️\r\nPreviously: Creator of @buildpulse, Staff Engineer at @GitHub, Partner at @Relevance.', 'jasonrudolph', 0, 0, 607, 0, 0, 0, 0, '2008-03-13T15:02:53Z', '2024-10-26T21:04:42Z', 'https://avatars.githubusercontent.com/u/2988?v=4', 'https://api.github.com/users/jasonrudolph', 'https://github.com/jasonrudolph', 'https://api.github.com/users/jasonrudolph/followers', 'https://api.github.com/users/jasonrudolph/following', 'https://api.github.com/users/jasonrudolph/gists', 'https://api.github.com/users/jasonrudolph/starred', 'https://api.github.com/users/jasonrudolph/repos', 'https://api.github.com/users/jasonrudolph/events', 'https://api.github.com/users/jasonrudolph/received_events', 0); +INSERT INTO `developer` VALUES (2989, 'summerville', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tony Summerville', NULL, '', 'Birmingham, AL', NULL, NULL, NULL, NULL, 0, 0, 17, 4, 0, 0, 0, '2008-03-13T15:41:26Z', '2024-10-03T14:34:55Z', 'https://avatars.githubusercontent.com/u/2989?v=4', 'https://api.github.com/users/summerville', 'https://github.com/summerville', 'https://api.github.com/users/summerville/followers', 'https://api.github.com/users/summerville/following', 'https://api.github.com/users/summerville/gists', 'https://api.github.com/users/summerville/starred', 'https://api.github.com/users/summerville/repos', 'https://api.github.com/users/summerville/events', 'https://api.github.com/users/summerville/received_events', 0); +INSERT INTO `developer` VALUES (2990, 'dweinand', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Weinand', NULL, '', 'Minneapolis, MN, USA', 'dweinand@gmail.com', 'true', NULL, NULL, 0, 0, 33, 33, 0, 0, 0, '2008-03-13T15:41:29Z', '2024-10-02T01:16:23Z', 'https://avatars.githubusercontent.com/u/2990?v=4', 'https://api.github.com/users/dweinand', 'https://github.com/dweinand', 'https://api.github.com/users/dweinand/followers', 'https://api.github.com/users/dweinand/following', 'https://api.github.com/users/dweinand/gists', 'https://api.github.com/users/dweinand/starred', 'https://api.github.com/users/dweinand/repos', 'https://api.github.com/users/dweinand/events', 'https://api.github.com/users/dweinand/received_events', 0); +INSERT INTO `developer` VALUES (2991, 'kschiess', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kaspar Schiess', NULL, 'absurd.li', 'Bern, Switzerland', NULL, NULL, 'code, i write code', NULL, 0, 0, 81, 9, 0, 0, 0, '2008-03-13T15:42:47Z', '2022-12-04T08:42:01Z', 'https://avatars.githubusercontent.com/u/2991?v=4', 'https://api.github.com/users/kschiess', 'https://github.com/kschiess', 'https://api.github.com/users/kschiess/followers', 'https://api.github.com/users/kschiess/following', 'https://api.github.com/users/kschiess/gists', 'https://api.github.com/users/kschiess/starred', 'https://api.github.com/users/kschiess/repos', 'https://api.github.com/users/kschiess/events', 'https://api.github.com/users/kschiess/received_events', 0); +INSERT INTO `developer` VALUES (2992, 'arthurgeek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arthur Zapparoli', 'Scout24', '', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 115, 33, 0, 0, 0, '2008-03-13T15:44:36Z', '2024-10-29T10:45:34Z', 'https://avatars.githubusercontent.com/u/2992?v=4', 'https://api.github.com/users/arthurgeek', 'https://github.com/arthurgeek', 'https://api.github.com/users/arthurgeek/followers', 'https://api.github.com/users/arthurgeek/following', 'https://api.github.com/users/arthurgeek/gists', 'https://api.github.com/users/arthurgeek/starred', 'https://api.github.com/users/arthurgeek/repos', 'https://api.github.com/users/arthurgeek/events', 'https://api.github.com/users/arthurgeek/received_events', 0); +INSERT INTO `developer` VALUES (2993, 'luniki', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 25, 30, 0, 0, 0, '2008-03-13T15:44:40Z', '2024-11-05T06:52:59Z', 'https://avatars.githubusercontent.com/u/2993?v=4', 'https://api.github.com/users/luniki', 'https://github.com/luniki', 'https://api.github.com/users/luniki/followers', 'https://api.github.com/users/luniki/following', 'https://api.github.com/users/luniki/gists', 'https://api.github.com/users/luniki/starred', 'https://api.github.com/users/luniki/repos', 'https://api.github.com/users/luniki/events', 'https://api.github.com/users/luniki/received_events', 0); +INSERT INTO `developer` VALUES (2994, 'ssax', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-13T15:44:49Z', '2023-05-04T16:32:11Z', 'https://avatars.githubusercontent.com/u/2994?v=4', 'https://api.github.com/users/ssax', 'https://github.com/ssax', 'https://api.github.com/users/ssax/followers', 'https://api.github.com/users/ssax/following', 'https://api.github.com/users/ssax/gists', 'https://api.github.com/users/ssax/starred', 'https://api.github.com/users/ssax/repos', 'https://api.github.com/users/ssax/events', 'https://api.github.com/users/ssax/received_events', 0); +INSERT INTO `developer` VALUES (2995, 'mat3001', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-13T15:45:47Z', '2015-04-09T19:38:45Z', 'https://avatars.githubusercontent.com/u/2995?v=4', 'https://api.github.com/users/mat3001', 'https://github.com/mat3001', 'https://api.github.com/users/mat3001/followers', 'https://api.github.com/users/mat3001/following', 'https://api.github.com/users/mat3001/gists', 'https://api.github.com/users/mat3001/starred', 'https://api.github.com/users/mat3001/repos', 'https://api.github.com/users/mat3001/events', 'https://api.github.com/users/mat3001/received_events', 0); +INSERT INTO `developer` VALUES (2997, 'mdillon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Dillon', 'PhoneTag', '', 'NYC', 'mdillon@phonetag.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-13T15:48:28Z', '2016-02-26T22:34:54Z', 'https://avatars.githubusercontent.com/u/2997?v=4', 'https://api.github.com/users/mdillon', 'https://github.com/mdillon', 'https://api.github.com/users/mdillon/followers', 'https://api.github.com/users/mdillon/following', 'https://api.github.com/users/mdillon/gists', 'https://api.github.com/users/mdillon/starred', 'https://api.github.com/users/mdillon/repos', 'https://api.github.com/users/mdillon/events', 'https://api.github.com/users/mdillon/received_events', 0); +INSERT INTO `developer` VALUES (2999, 'Gori', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oskar Sundberg', 'Act Normal', 'http://actnormal.co', 'Stockholm', NULL, 'true', 'JUST ACT NORMAL OK', NULL, 0, 0, 13, 11, 0, 0, 0, '2008-03-13T15:51:21Z', '2024-09-23T07:06:10Z', 'https://avatars.githubusercontent.com/u/2999?v=4', 'https://api.github.com/users/Gori', 'https://github.com/Gori', 'https://api.github.com/users/Gori/followers', 'https://api.github.com/users/Gori/following', 'https://api.github.com/users/Gori/gists', 'https://api.github.com/users/Gori/starred', 'https://api.github.com/users/Gori/repos', 'https://api.github.com/users/Gori/events', 'https://api.github.com/users/Gori/received_events', 0); +INSERT INTO `developer` VALUES (3000, 'stinie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christine Fürst', 'Stinie', 'http://twitter.com/#!/stinie', 'Rotterdam', 'stinie@stinie.nl', NULL, NULL, NULL, 0, 0, 65, 258, 0, 0, 0, '2008-03-13T15:52:59Z', '2023-12-21T20:37:50Z', 'https://avatars.githubusercontent.com/u/3000?v=4', 'https://api.github.com/users/stinie', 'https://github.com/stinie', 'https://api.github.com/users/stinie/followers', 'https://api.github.com/users/stinie/following', 'https://api.github.com/users/stinie/gists', 'https://api.github.com/users/stinie/starred', 'https://api.github.com/users/stinie/repos', 'https://api.github.com/users/stinie/events', 'https://api.github.com/users/stinie/received_events', 0); +INSERT INTO `developer` VALUES (3001, 'jfchevrette', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jean-Francois Chevrette', 'Red Hat, Inc.', '', 'Montreal, Canada', 'jfchevrette@gmail.com', NULL, NULL, NULL, 0, 0, 48, 88, 0, 0, 0, '2008-03-13T15:58:46Z', '2024-10-21T18:42:44Z', 'https://avatars.githubusercontent.com/u/3001?v=4', 'https://api.github.com/users/jfchevrette', 'https://github.com/jfchevrette', 'https://api.github.com/users/jfchevrette/followers', 'https://api.github.com/users/jfchevrette/following', 'https://api.github.com/users/jfchevrette/gists', 'https://api.github.com/users/jfchevrette/starred', 'https://api.github.com/users/jfchevrette/repos', 'https://api.github.com/users/jfchevrette/events', 'https://api.github.com/users/jfchevrette/received_events', 0); +INSERT INTO `developer` VALUES (3002, 'reddavis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Red Davis', 'Numan', 'http://red.to', 'Bath, England', 'me@red.to', 'true', 'iOS @ Numan', 'reddavis', 0, 0, 179, 103, 0, 0, 0, '2008-03-13T15:59:16Z', '2024-07-24T18:21:30Z', 'https://avatars.githubusercontent.com/u/3002?v=4', 'https://api.github.com/users/reddavis', 'https://github.com/reddavis', 'https://api.github.com/users/reddavis/followers', 'https://api.github.com/users/reddavis/following', 'https://api.github.com/users/reddavis/gists', 'https://api.github.com/users/reddavis/starred', 'https://api.github.com/users/reddavis/repos', 'https://api.github.com/users/reddavis/events', 'https://api.github.com/users/reddavis/received_events', 0); +INSERT INTO `developer` VALUES (3003, 'mdiedric', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marco Diedrich', NULL, '', 'Dortmund', 'marco.diedrich@gmail.com', NULL, NULL, NULL, 0, 0, 13, 37, 0, 0, 0, '2008-03-13T16:00:22Z', '2024-10-24T07:27:54Z', 'https://avatars.githubusercontent.com/u/3003?v=4', 'https://api.github.com/users/mdiedric', 'https://github.com/mdiedric', 'https://api.github.com/users/mdiedric/followers', 'https://api.github.com/users/mdiedric/following', 'https://api.github.com/users/mdiedric/gists', 'https://api.github.com/users/mdiedric/starred', 'https://api.github.com/users/mdiedric/repos', 'https://api.github.com/users/mdiedric/events', 'https://api.github.com/users/mdiedric/received_events', 0); +INSERT INTO `developer` VALUES (3004, 'greenstem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Olsen', 'Greenstem', 'http://chrisolsen.org', 'Edmonton, AB', 'chris@greenstem.ca', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-13T16:08:00Z', '2020-01-25T23:31:35Z', 'https://avatars.githubusercontent.com/u/3004?v=4', 'https://api.github.com/users/greenstem', 'https://github.com/greenstem', 'https://api.github.com/users/greenstem/followers', 'https://api.github.com/users/greenstem/following', 'https://api.github.com/users/greenstem/gists', 'https://api.github.com/users/greenstem/starred', 'https://api.github.com/users/greenstem/repos', 'https://api.github.com/users/greenstem/events', 'https://api.github.com/users/greenstem/received_events', 0); +INSERT INTO `developer` VALUES (3005, 'powerchurch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Taylor', 'PowerChurch Software', '', 'Asheville, NC ', 'dan@powerchurch.com', NULL, NULL, NULL, 0, 0, 9, 2, 0, 0, 0, '2008-03-13T16:11:41Z', '2021-10-18T15:40:32Z', 'https://avatars.githubusercontent.com/u/3005?v=4', 'https://api.github.com/users/powerchurch', 'https://github.com/powerchurch', 'https://api.github.com/users/powerchurch/followers', 'https://api.github.com/users/powerchurch/following', 'https://api.github.com/users/powerchurch/gists', 'https://api.github.com/users/powerchurch/starred', 'https://api.github.com/users/powerchurch/repos', 'https://api.github.com/users/powerchurch/events', 'https://api.github.com/users/powerchurch/received_events', 0); +INSERT INTO `developer` VALUES (3006, 'tarasis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert McGovern', NULL, 'https://tarasis.net', 'Northern Ireland', 'rob@tarasis.net', 'true', NULL, 'tarasis', 0, 0, 63, 75, 0, 0, 0, '2008-03-13T16:12:38Z', '2024-10-12T12:38:05Z', 'https://avatars.githubusercontent.com/u/3006?v=4', 'https://api.github.com/users/tarasis', 'https://github.com/tarasis', 'https://api.github.com/users/tarasis/followers', 'https://api.github.com/users/tarasis/following', 'https://api.github.com/users/tarasis/gists', 'https://api.github.com/users/tarasis/starred', 'https://api.github.com/users/tarasis/repos', 'https://api.github.com/users/tarasis/events', 'https://api.github.com/users/tarasis/received_events', 0); +INSERT INTO `developer` VALUES (3007, 'edruder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ed Ruder', '@squareup', 'https://edruder.com', 'Chicago, IL', 'ed@ruders.org', NULL, NULL, 'edruder', 0, 0, 63, 19, 0, 0, 0, '2008-03-13T16:14:28Z', '2024-03-13T02:09:35Z', 'https://avatars.githubusercontent.com/u/3007?v=4', 'https://api.github.com/users/edruder', 'https://github.com/edruder', 'https://api.github.com/users/edruder/followers', 'https://api.github.com/users/edruder/following', 'https://api.github.com/users/edruder/gists', 'https://api.github.com/users/edruder/starred', 'https://api.github.com/users/edruder/repos', 'https://api.github.com/users/edruder/events', 'https://api.github.com/users/edruder/received_events', 0); +INSERT INTO `developer` VALUES (3008, 'cbernardi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Bernardi', 'simplyand', 'http://www.simplyand.com', 'Sudbury, MA', 'chris@simplyand.com', 'true', NULL, NULL, 0, 0, 10, 19, 0, 0, 0, '2008-03-13T16:14:44Z', '2024-09-29T21:32:50Z', 'https://avatars.githubusercontent.com/u/3008?v=4', 'https://api.github.com/users/cbernardi', 'https://github.com/cbernardi', 'https://api.github.com/users/cbernardi/followers', 'https://api.github.com/users/cbernardi/following', 'https://api.github.com/users/cbernardi/gists', 'https://api.github.com/users/cbernardi/starred', 'https://api.github.com/users/cbernardi/repos', 'https://api.github.com/users/cbernardi/events', 'https://api.github.com/users/cbernardi/received_events', 0); +INSERT INTO `developer` VALUES (3009, 'fnando', 'B-', 28.263901664043544, 0, 0, 0, 0, 0, 0, 'Nando Vieira', '@stellar', 'https://nandovieira.com', 'Vancouver, Canada', NULL, NULL, 'Father, husband, software developer, 🇧🇷🇨🇦, he/him/ele, punk rocker, amateur guitar/bass player. Everything is fine.🔥', NULL, 0, 0, 1933, 0, 0, 0, 0, '2008-03-13T16:15:49Z', '2024-10-25T00:22:00Z', 'https://avatars.githubusercontent.com/u/3009?v=4', 'https://api.github.com/users/fnando', 'https://github.com/fnando', 'https://api.github.com/users/fnando/followers', 'https://api.github.com/users/fnando/following', 'https://api.github.com/users/fnando/gists', 'https://api.github.com/users/fnando/starred', 'https://api.github.com/users/fnando/repos', 'https://api.github.com/users/fnando/events', 'https://api.github.com/users/fnando/received_events', 0); +INSERT INTO `developer` VALUES (3010, 'subblue', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Beddard', '@kpv-lab, HyperDigital Ltd', 'http://sub.blue', 'Edinburgh, UK', 'tom@subblue.com', NULL, 'Director of KPV LAB Edinburgh (formerly HyperDigital), part of the KPV Group in Munich', NULL, 0, 0, 141, 5, 0, 0, 0, '2008-03-13T16:16:24Z', '2024-10-17T05:46:55Z', 'https://avatars.githubusercontent.com/u/3010?v=4', 'https://api.github.com/users/subblue', 'https://github.com/subblue', 'https://api.github.com/users/subblue/followers', 'https://api.github.com/users/subblue/following', 'https://api.github.com/users/subblue/gists', 'https://api.github.com/users/subblue/starred', 'https://api.github.com/users/subblue/repos', 'https://api.github.com/users/subblue/events', 'https://api.github.com/users/subblue/received_events', 0); +INSERT INTO `developer` VALUES (3011, 'youngbrioche', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Glaser', '@innoq ', 'http://twitter.com/youngbrioche', '未知', NULL, NULL, NULL, NULL, 0, 0, 20, 7, 0, 0, 0, '2008-03-13T16:17:57Z', '2024-11-01T20:22:16Z', 'https://avatars.githubusercontent.com/u/3011?v=4', 'https://api.github.com/users/youngbrioche', 'https://github.com/youngbrioche', 'https://api.github.com/users/youngbrioche/followers', 'https://api.github.com/users/youngbrioche/following', 'https://api.github.com/users/youngbrioche/gists', 'https://api.github.com/users/youngbrioche/starred', 'https://api.github.com/users/youngbrioche/repos', 'https://api.github.com/users/youngbrioche/events', 'https://api.github.com/users/youngbrioche/received_events', 0); +INSERT INTO `developer` VALUES (3012, 'mroch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marshall Roch', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 123, 5, 0, 0, 0, '2008-03-13T16:29:01Z', '2024-10-23T12:57:26Z', 'https://avatars.githubusercontent.com/u/3012?v=4', 'https://api.github.com/users/mroch', 'https://github.com/mroch', 'https://api.github.com/users/mroch/followers', 'https://api.github.com/users/mroch/following', 'https://api.github.com/users/mroch/gists', 'https://api.github.com/users/mroch/starred', 'https://api.github.com/users/mroch/repos', 'https://api.github.com/users/mroch/events', 'https://api.github.com/users/mroch/received_events', 0); +INSERT INTO `developer` VALUES (3013, 'gustavocardoso', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gustavo Cardoso', 'Big Room Creative', 'https://gustavocardoso.me/', 'Richmond, Canada', 'gustavocardoso@gmail.com', 'true', 'Front-end developer at Big Room Creative (Vancouver - Canada)', 'gustavocardoso', 0, 0, 49, 61, 0, 0, 0, '2008-03-13T16:30:38Z', '2024-10-16T18:25:30Z', 'https://avatars.githubusercontent.com/u/3013?v=4', 'https://api.github.com/users/gustavocardoso', 'https://github.com/gustavocardoso', 'https://api.github.com/users/gustavocardoso/followers', 'https://api.github.com/users/gustavocardoso/following', 'https://api.github.com/users/gustavocardoso/gists', 'https://api.github.com/users/gustavocardoso/starred', 'https://api.github.com/users/gustavocardoso/repos', 'https://api.github.com/users/gustavocardoso/events', 'https://api.github.com/users/gustavocardoso/received_events', 0); +INSERT INTO `developer` VALUES (3014, 'thiagoarrais', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thiago Arrais', NULL, 'http://blog.thiagoarrais.com', 'Recife - Brazil', 'thiago.arrais@gmail.com', NULL, NULL, NULL, 0, 0, 48, 116, 0, 0, 0, '2008-03-13T16:39:45Z', '2024-10-19T11:23:57Z', 'https://avatars.githubusercontent.com/u/3014?v=4', 'https://api.github.com/users/thiagoarrais', 'https://github.com/thiagoarrais', 'https://api.github.com/users/thiagoarrais/followers', 'https://api.github.com/users/thiagoarrais/following', 'https://api.github.com/users/thiagoarrais/gists', 'https://api.github.com/users/thiagoarrais/starred', 'https://api.github.com/users/thiagoarrais/repos', 'https://api.github.com/users/thiagoarrais/events', 'https://api.github.com/users/thiagoarrais/received_events', 0); +INSERT INTO `developer` VALUES (3015, 'rwanderley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rodrigo Steinmüller Wanderley', 'Supercabo Natal', 'http://rsw.digi.com.br', 'Natal/RN Brazil', 'rodrigoswanderley@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-13T16:46:30Z', '2020-11-06T03:48:02Z', 'https://avatars.githubusercontent.com/u/3015?v=4', 'https://api.github.com/users/rwanderley', 'https://github.com/rwanderley', 'https://api.github.com/users/rwanderley/followers', 'https://api.github.com/users/rwanderley/following', 'https://api.github.com/users/rwanderley/gists', 'https://api.github.com/users/rwanderley/starred', 'https://api.github.com/users/rwanderley/repos', 'https://api.github.com/users/rwanderley/events', 'https://api.github.com/users/rwanderley/received_events', 0); +INSERT INTO `developer` VALUES (3017, 'ufef', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yousef Salimpour', NULL, 'http://www.yfolio.com', '未知', 'yousef@yfolio.com', NULL, NULL, NULL, 0, 0, 6, 5, 0, 0, 0, '2008-03-13T17:01:28Z', '2024-07-02T17:55:21Z', 'https://avatars.githubusercontent.com/u/3017?v=4', 'https://api.github.com/users/ufef', 'https://github.com/ufef', 'https://api.github.com/users/ufef/followers', 'https://api.github.com/users/ufef/following', 'https://api.github.com/users/ufef/gists', 'https://api.github.com/users/ufef/starred', 'https://api.github.com/users/ufef/repos', 'https://api.github.com/users/ufef/events', 'https://api.github.com/users/ufef/received_events', 0); +INSERT INTO `developer` VALUES (3018, 'ebryn', 'C', 4.8733157658522055, 0, 0, 0, 0, 0, 0, 'Erik Bryn', NULL, 'http://www.prototypal.io', '未知', NULL, 'true', NULL, NULL, 0, 0, 569, 5, 0, 0, 0, '2008-03-13T17:01:28Z', '2024-10-22T15:51:03Z', 'https://avatars.githubusercontent.com/u/3018?v=4', 'https://api.github.com/users/ebryn', 'https://github.com/ebryn', 'https://api.github.com/users/ebryn/followers', 'https://api.github.com/users/ebryn/following', 'https://api.github.com/users/ebryn/gists', 'https://api.github.com/users/ebryn/starred', 'https://api.github.com/users/ebryn/repos', 'https://api.github.com/users/ebryn/events', 'https://api.github.com/users/ebryn/received_events', 0); +INSERT INTO `developer` VALUES (3019, 'cbarrett', 'C', 0, 0, 0, 0, 0, 0, 0, 'Colin Barrett', 'Springs & Struts', 'http://springsandstruts.com', 'Brooklyn, NY', NULL, NULL, NULL, NULL, 0, 0, 94, 124, 0, 0, 0, '2008-03-13T17:04:29Z', '2024-10-13T22:56:51Z', 'https://avatars.githubusercontent.com/u/3019?v=4', 'https://api.github.com/users/cbarrett', 'https://github.com/cbarrett', 'https://api.github.com/users/cbarrett/followers', 'https://api.github.com/users/cbarrett/following', 'https://api.github.com/users/cbarrett/gists', 'https://api.github.com/users/cbarrett/starred', 'https://api.github.com/users/cbarrett/repos', 'https://api.github.com/users/cbarrett/events', 'https://api.github.com/users/cbarrett/received_events', 0); +INSERT INTO `developer` VALUES (3020, 'purplefoot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Webb', 'Modular Reality', '', 'London, UK', 'ian@funkyfrog.net', NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-03-13T17:07:05Z', '2024-06-02T13:53:51Z', 'https://avatars.githubusercontent.com/u/3020?v=4', 'https://api.github.com/users/purplefoot', 'https://github.com/purplefoot', 'https://api.github.com/users/purplefoot/followers', 'https://api.github.com/users/purplefoot/following', 'https://api.github.com/users/purplefoot/gists', 'https://api.github.com/users/purplefoot/starred', 'https://api.github.com/users/purplefoot/repos', 'https://api.github.com/users/purplefoot/events', 'https://api.github.com/users/purplefoot/received_events', 0); +INSERT INTO `developer` VALUES (3021, 'terrells', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-13T17:15:17Z', '2023-07-16T13:42:16Z', 'https://avatars.githubusercontent.com/u/3021?v=4', 'https://api.github.com/users/terrells', 'https://github.com/terrells', 'https://api.github.com/users/terrells/followers', 'https://api.github.com/users/terrells/following', 'https://api.github.com/users/terrells/gists', 'https://api.github.com/users/terrells/starred', 'https://api.github.com/users/terrells/repos', 'https://api.github.com/users/terrells/events', 'https://api.github.com/users/terrells/received_events', 0); +INSERT INTO `developer` VALUES (3022, 'floere', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian R. Hanke', 'Sakura Engineering GmbH', 'http://florianhanke.com/blog/', 'Zürich', NULL, NULL, NULL, NULL, 0, 0, 177, 36, 0, 0, 0, '2008-03-13T17:18:59Z', '2024-09-25T16:02:15Z', 'https://avatars.githubusercontent.com/u/3022?v=4', 'https://api.github.com/users/floere', 'https://github.com/floere', 'https://api.github.com/users/floere/followers', 'https://api.github.com/users/floere/following', 'https://api.github.com/users/floere/gists', 'https://api.github.com/users/floere/starred', 'https://api.github.com/users/floere/repos', 'https://api.github.com/users/floere/events', 'https://api.github.com/users/floere/received_events', 0); +INSERT INTO `developer` VALUES (3023, 'messer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-13T17:19:37Z', '2024-10-16T14:56:46Z', 'https://avatars.githubusercontent.com/u/3023?v=4', 'https://api.github.com/users/messer', 'https://github.com/messer', 'https://api.github.com/users/messer/followers', 'https://api.github.com/users/messer/following', 'https://api.github.com/users/messer/gists', 'https://api.github.com/users/messer/starred', 'https://api.github.com/users/messer/repos', 'https://api.github.com/users/messer/events', 'https://api.github.com/users/messer/received_events', 0); +INSERT INTO `developer` VALUES (3024, 'zsombor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dee Zsombor', NULL, '', '未知', NULL, NULL, 'mise en place', NULL, 0, 0, 14, 1, 0, 0, 0, '2008-03-13T17:31:33Z', '2023-05-11T21:27:02Z', 'https://avatars.githubusercontent.com/u/3024?v=4', 'https://api.github.com/users/zsombor', 'https://github.com/zsombor', 'https://api.github.com/users/zsombor/followers', 'https://api.github.com/users/zsombor/following', 'https://api.github.com/users/zsombor/gists', 'https://api.github.com/users/zsombor/starred', 'https://api.github.com/users/zsombor/repos', 'https://api.github.com/users/zsombor/events', 'https://api.github.com/users/zsombor/received_events', 0); +INSERT INTO `developer` VALUES (3025, 'kernow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jamie Dyer', 'Kernowsoul Ltd', 'http://kernowsoul.com', 'Devon, UK', 'jamie@kernowsoul.com', 'true', NULL, NULL, 0, 0, 32, 7, 0, 0, 0, '2008-03-13T17:33:56Z', '2024-05-28T16:19:32Z', 'https://avatars.githubusercontent.com/u/3025?v=4', 'https://api.github.com/users/kernow', 'https://github.com/kernow', 'https://api.github.com/users/kernow/followers', 'https://api.github.com/users/kernow/following', 'https://api.github.com/users/kernow/gists', 'https://api.github.com/users/kernow/starred', 'https://api.github.com/users/kernow/repos', 'https://api.github.com/users/kernow/events', 'https://api.github.com/users/kernow/received_events', 0); +INSERT INTO `developer` VALUES (3026, 'math0ne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aidan McQuay', NULL, 'https://aidan.codes', 'Vancouver, BC, Canada', 'math0ne@gmail.com', NULL, 'Developer and general enthusiast', 'math0ne', 0, 0, 46, 59, 0, 0, 0, '2008-03-13T17:45:21Z', '2024-02-07T07:07:50Z', 'https://avatars.githubusercontent.com/u/3026?v=4', 'https://api.github.com/users/math0ne', 'https://github.com/math0ne', 'https://api.github.com/users/math0ne/followers', 'https://api.github.com/users/math0ne/following', 'https://api.github.com/users/math0ne/gists', 'https://api.github.com/users/math0ne/starred', 'https://api.github.com/users/math0ne/repos', 'https://api.github.com/users/math0ne/events', 'https://api.github.com/users/math0ne/received_events', 0); +INSERT INTO `developer` VALUES (3027, 'objectfox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jennifer Kramer', '@SwiftlyInc', 'http://www.jenniferkramer.org/', 'Austin, Tx', NULL, NULL, 'Vintage computers, tech art, bots, and stories.', 'objectfox', 0, 0, 30, 4, 0, 0, 0, '2008-03-13T17:48:40Z', '2024-10-21T11:19:08Z', 'https://avatars.githubusercontent.com/u/3027?v=4', 'https://api.github.com/users/objectfox', 'https://github.com/objectfox', 'https://api.github.com/users/objectfox/followers', 'https://api.github.com/users/objectfox/following', 'https://api.github.com/users/objectfox/gists', 'https://api.github.com/users/objectfox/starred', 'https://api.github.com/users/objectfox/repos', 'https://api.github.com/users/objectfox/events', 'https://api.github.com/users/objectfox/received_events', 0); +INSERT INTO `developer` VALUES (3028, 'eparreno', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emili Parreno', NULL, '', 'Girona', 'emili@eparreno.com', NULL, NULL, 'eparreno', 0, 0, 77, 27, 0, 0, 0, '2008-03-13T18:09:13Z', '2024-10-11T09:48:36Z', 'https://avatars.githubusercontent.com/u/3028?v=4', 'https://api.github.com/users/eparreno', 'https://github.com/eparreno', 'https://api.github.com/users/eparreno/followers', 'https://api.github.com/users/eparreno/following', 'https://api.github.com/users/eparreno/gists', 'https://api.github.com/users/eparreno/starred', 'https://api.github.com/users/eparreno/repos', 'https://api.github.com/users/eparreno/events', 'https://api.github.com/users/eparreno/received_events', 0); +INSERT INTO `developer` VALUES (3029, 'robrasmussen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Rasmussen', 'nope', '', '未知', 'rob.rasmussen@gmail.com', NULL, NULL, NULL, 0, 0, 31, 4, 0, 0, 0, '2008-03-13T18:15:21Z', '2017-08-14T19:40:56Z', 'https://avatars.githubusercontent.com/u/3029?v=4', 'https://api.github.com/users/robrasmussen', 'https://github.com/robrasmussen', 'https://api.github.com/users/robrasmussen/followers', 'https://api.github.com/users/robrasmussen/following', 'https://api.github.com/users/robrasmussen/gists', 'https://api.github.com/users/robrasmussen/starred', 'https://api.github.com/users/robrasmussen/repos', 'https://api.github.com/users/robrasmussen/events', 'https://api.github.com/users/robrasmussen/received_events', 0); +INSERT INTO `developer` VALUES (3030, 'keeruline', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dmitri Zutskov', NULL, '', 'Tallinn', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-13T18:24:49Z', '2024-08-19T14:11:38Z', 'https://avatars.githubusercontent.com/u/3030?v=4', 'https://api.github.com/users/keeruline', 'https://github.com/keeruline', 'https://api.github.com/users/keeruline/followers', 'https://api.github.com/users/keeruline/following', 'https://api.github.com/users/keeruline/gists', 'https://api.github.com/users/keeruline/starred', 'https://api.github.com/users/keeruline/repos', 'https://api.github.com/users/keeruline/events', 'https://api.github.com/users/keeruline/received_events', 0); +INSERT INTO `developer` VALUES (3031, 'eah', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Hinzpeter', NULL, 'ehinzpeter.com', 'SF, CA', NULL, 'true', 'Add a bio', NULL, 0, 0, 8, 7, 0, 0, 0, '2008-03-13T18:25:43Z', '2018-12-11T19:42:35Z', 'https://avatars.githubusercontent.com/u/3031?v=4', 'https://api.github.com/users/eah', 'https://github.com/eah', 'https://api.github.com/users/eah/followers', 'https://api.github.com/users/eah/following', 'https://api.github.com/users/eah/gists', 'https://api.github.com/users/eah/starred', 'https://api.github.com/users/eah/repos', 'https://api.github.com/users/eah/events', 'https://api.github.com/users/eah/received_events', 0); +INSERT INTO `developer` VALUES (3032, 'mattkanwisher', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Campbell', 'http://www.hyperworks.nu', 'http://www.kanwisher.com', 'New york, NY', 'hyper@hyperworks.nu', NULL, NULL, NULL, 0, 0, 193, 81, 0, 0, 0, '2008-03-13T18:32:44Z', '2024-10-22T07:26:00Z', 'https://avatars.githubusercontent.com/u/3032?v=4', 'https://api.github.com/users/mattkanwisher', 'https://github.com/mattkanwisher', 'https://api.github.com/users/mattkanwisher/followers', 'https://api.github.com/users/mattkanwisher/following', 'https://api.github.com/users/mattkanwisher/gists', 'https://api.github.com/users/mattkanwisher/starred', 'https://api.github.com/users/mattkanwisher/repos', 'https://api.github.com/users/mattkanwisher/events', 'https://api.github.com/users/mattkanwisher/received_events', 0); +INSERT INTO `developer` VALUES (3033, 'okiess', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oliver Kiessler', NULL, 'https://oliver-kiessler.de/en/index.html', 'Cologne, Germany', 'kiessl-github.06ldz@passmail.net', 'true', 'Fullstack developer (Node/Angular/AWS)', 'okiess', 0, 0, 172, 269, 0, 0, 0, '2008-03-13T18:49:54Z', '2024-10-06T14:35:58Z', 'https://avatars.githubusercontent.com/u/3033?v=4', 'https://api.github.com/users/okiess', 'https://github.com/okiess', 'https://api.github.com/users/okiess/followers', 'https://api.github.com/users/okiess/following', 'https://api.github.com/users/okiess/gists', 'https://api.github.com/users/okiess/starred', 'https://api.github.com/users/okiess/repos', 'https://api.github.com/users/okiess/events', 'https://api.github.com/users/okiess/received_events', 0); +INSERT INTO `developer` VALUES (3034, 'markdillon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Dillon', 'Backlight', '', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 14, 9, 0, 0, 0, '2008-03-13T19:09:07Z', '2024-09-04T21:13:46Z', 'https://avatars.githubusercontent.com/u/3034?v=4', 'https://api.github.com/users/markdillon', 'https://github.com/markdillon', 'https://api.github.com/users/markdillon/followers', 'https://api.github.com/users/markdillon/following', 'https://api.github.com/users/markdillon/gists', 'https://api.github.com/users/markdillon/starred', 'https://api.github.com/users/markdillon/repos', 'https://api.github.com/users/markdillon/events', 'https://api.github.com/users/markdillon/received_events', 0); +INSERT INTO `developer` VALUES (3036, 'eltiare', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Nicoll', NULL, '', 'Greenville, SC', NULL, 'true', NULL, NULL, 0, 0, 12, 5, 0, 0, 0, '2008-03-13T19:41:54Z', '2024-10-07T18:08:44Z', 'https://avatars.githubusercontent.com/u/3036?v=4', 'https://api.github.com/users/eltiare', 'https://github.com/eltiare', 'https://api.github.com/users/eltiare/followers', 'https://api.github.com/users/eltiare/following', 'https://api.github.com/users/eltiare/gists', 'https://api.github.com/users/eltiare/starred', 'https://api.github.com/users/eltiare/repos', 'https://api.github.com/users/eltiare/events', 'https://api.github.com/users/eltiare/received_events', 0); +INSERT INTO `developer` VALUES (3037, 'esteil', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-13T19:43:09Z', '2024-08-21T15:08:32Z', 'https://avatars.githubusercontent.com/u/3037?v=4', 'https://api.github.com/users/esteil', 'https://github.com/esteil', 'https://api.github.com/users/esteil/followers', 'https://api.github.com/users/esteil/following', 'https://api.github.com/users/esteil/gists', 'https://api.github.com/users/esteil/starred', 'https://api.github.com/users/esteil/repos', 'https://api.github.com/users/esteil/events', 'https://api.github.com/users/esteil/received_events', 0); +INSERT INTO `developer` VALUES (3038, 'harper', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harper Trow', NULL, '', 'Richmond, VA', 'harper.trow@gmail.com', NULL, NULL, NULL, 0, 0, 24, 42, 0, 0, 0, '2008-03-13T19:54:59Z', '2024-04-13T14:54:49Z', 'https://avatars.githubusercontent.com/u/3038?v=4', 'https://api.github.com/users/harper', 'https://github.com/harper', 'https://api.github.com/users/harper/followers', 'https://api.github.com/users/harper/following', 'https://api.github.com/users/harper/gists', 'https://api.github.com/users/harper/starred', 'https://api.github.com/users/harper/repos', 'https://api.github.com/users/harper/events', 'https://api.github.com/users/harper/received_events', 0); +INSERT INTO `developer` VALUES (3039, 'brendanjerwin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brendan Erwin', NULL, '', 'Atlanta, GA', NULL, NULL, NULL, NULL, 0, 0, 31, 10, 0, 0, 0, '2008-03-13T20:05:39Z', '2024-08-15T22:10:44Z', 'https://avatars.githubusercontent.com/u/3039?v=4', 'https://api.github.com/users/brendanjerwin', 'https://github.com/brendanjerwin', 'https://api.github.com/users/brendanjerwin/followers', 'https://api.github.com/users/brendanjerwin/following', 'https://api.github.com/users/brendanjerwin/gists', 'https://api.github.com/users/brendanjerwin/starred', 'https://api.github.com/users/brendanjerwin/repos', 'https://api.github.com/users/brendanjerwin/events', 'https://api.github.com/users/brendanjerwin/received_events', 0); +INSERT INTO `developer` VALUES (3040, 'sarchertech', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seth Archer Brown', 'Stord', '', 'Chattanooga, TN', 'learc83@gmail.com', 'true', NULL, NULL, 0, 0, 15, 2, 0, 0, 0, '2008-03-13T20:06:54Z', '2024-10-16T17:26:17Z', 'https://avatars.githubusercontent.com/u/3040?v=4', 'https://api.github.com/users/sarchertech', 'https://github.com/sarchertech', 'https://api.github.com/users/sarchertech/followers', 'https://api.github.com/users/sarchertech/following', 'https://api.github.com/users/sarchertech/gists', 'https://api.github.com/users/sarchertech/starred', 'https://api.github.com/users/sarchertech/repos', 'https://api.github.com/users/sarchertech/events', 'https://api.github.com/users/sarchertech/received_events', 0); +INSERT INTO `developer` VALUES (3041, 'strykstaguy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cody Benner', NULL, '', 'Little Rock, AR', 'strykstaguy@gmail.com', NULL, NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2008-03-13T20:16:11Z', '2024-08-12T19:21:39Z', 'https://avatars.githubusercontent.com/u/3041?v=4', 'https://api.github.com/users/strykstaguy', 'https://github.com/strykstaguy', 'https://api.github.com/users/strykstaguy/followers', 'https://api.github.com/users/strykstaguy/following', 'https://api.github.com/users/strykstaguy/gists', 'https://api.github.com/users/strykstaguy/starred', 'https://api.github.com/users/strykstaguy/repos', 'https://api.github.com/users/strykstaguy/events', 'https://api.github.com/users/strykstaguy/received_events', 0); +INSERT INTO `developer` VALUES (3042, 'segfault', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Guzman', 'mksys llc', 'https://hasno.info', 'Woodbridge, CT', 'segfault+github@hasno.info', NULL, NULL, 'segy', 0, 0, 48, 17, 0, 0, 0, '2008-03-13T20:25:19Z', '2024-08-27T19:14:41Z', 'https://avatars.githubusercontent.com/u/3042?v=4', 'https://api.github.com/users/segfault', 'https://github.com/segfault', 'https://api.github.com/users/segfault/followers', 'https://api.github.com/users/segfault/following', 'https://api.github.com/users/segfault/gists', 'https://api.github.com/users/segfault/starred', 'https://api.github.com/users/segfault/repos', 'https://api.github.com/users/segfault/events', 'https://api.github.com/users/segfault/received_events', 0); +INSERT INTO `developer` VALUES (3043, 'UntoThisLast', 'C', 0, 0, 0, 0, 0, 0, 0, 'Unto This Last', NULL, 'http://www.untothislast.co.uk/', 'London', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-13T20:29:10Z', '2022-07-12T16:26:46Z', 'https://avatars.githubusercontent.com/u/3043?v=4', 'https://api.github.com/users/UntoThisLast', 'https://github.com/UntoThisLast', 'https://api.github.com/users/UntoThisLast/followers', 'https://api.github.com/users/UntoThisLast/following', 'https://api.github.com/users/UntoThisLast/gists', 'https://api.github.com/users/UntoThisLast/starred', 'https://api.github.com/users/UntoThisLast/repos', 'https://api.github.com/users/UntoThisLast/events', 'https://api.github.com/users/UntoThisLast/received_events', 0); +INSERT INTO `developer` VALUES (3044, 'jgm', 'B', 43.81761237493763, 0, 0, 0, 0, 0, 0, 'John MacFarlane', NULL, '', 'Berkeley, CA', NULL, NULL, NULL, NULL, 0, 0, 2840, 0, 0, 0, 0, '2008-03-13T21:28:32Z', '2024-10-22T11:18:22Z', 'https://avatars.githubusercontent.com/u/3044?v=4', 'https://api.github.com/users/jgm', 'https://github.com/jgm', 'https://api.github.com/users/jgm/followers', 'https://api.github.com/users/jgm/following', 'https://api.github.com/users/jgm/gists', 'https://api.github.com/users/jgm/starred', 'https://api.github.com/users/jgm/repos', 'https://api.github.com/users/jgm/events', 'https://api.github.com/users/jgm/received_events', 0); +INSERT INTO `developer` VALUES (3045, 'joonathan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joonathan Mägi', '@klausapp', '', 'Tallinn, Estonia', 'joonathan@gmail.com', NULL, 'CTO at @klausapp - We\'re hiring!', NULL, 0, 0, 40, 29, 0, 0, 0, '2008-03-13T21:38:06Z', '2024-10-22T08:04:48Z', 'https://avatars.githubusercontent.com/u/3045?v=4', 'https://api.github.com/users/joonathan', 'https://github.com/joonathan', 'https://api.github.com/users/joonathan/followers', 'https://api.github.com/users/joonathan/following', 'https://api.github.com/users/joonathan/gists', 'https://api.github.com/users/joonathan/starred', 'https://api.github.com/users/joonathan/repos', 'https://api.github.com/users/joonathan/events', 'https://api.github.com/users/joonathan/received_events', 0); +INSERT INTO `developer` VALUES (3047, 'fitz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-13T21:43:23Z', '2023-11-12T02:09:49Z', 'https://avatars.githubusercontent.com/u/3047?v=4', 'https://api.github.com/users/fitz', 'https://github.com/fitz', 'https://api.github.com/users/fitz/followers', 'https://api.github.com/users/fitz/following', 'https://api.github.com/users/fitz/gists', 'https://api.github.com/users/fitz/starred', 'https://api.github.com/users/fitz/repos', 'https://api.github.com/users/fitz/events', 'https://api.github.com/users/fitz/received_events', 0); +INSERT INTO `developer` VALUES (3048, 'chilts', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Chilton', '@AppsAttic : Apps Attic Ltd', 'https://chilts.org', 'Palmerston North, New Zealand', 'andychilton@gmail.com', 'true', 'Doing Node.js/ReactJS/CSS in Palmerston North, NZ. Founder @appsattic - all open source web apps. Alumni of @mozilla, @catalyst, @wetadigital & @esa.', 'andychilton', 0, 0, 199, 25, 0, 0, 0, '2008-03-13T21:45:13Z', '2024-09-10T23:06:57Z', 'https://avatars.githubusercontent.com/u/3048?v=4', 'https://api.github.com/users/chilts', 'https://github.com/chilts', 'https://api.github.com/users/chilts/followers', 'https://api.github.com/users/chilts/following', 'https://api.github.com/users/chilts/gists', 'https://api.github.com/users/chilts/starred', 'https://api.github.com/users/chilts/repos', 'https://api.github.com/users/chilts/events', 'https://api.github.com/users/chilts/received_events', 0); +INSERT INTO `developer` VALUES (3049, 'azapparoli', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-13T21:48:18Z', '2019-12-13T06:32:42Z', 'https://avatars.githubusercontent.com/u/3049?v=4', 'https://api.github.com/users/azapparoli', 'https://github.com/azapparoli', 'https://api.github.com/users/azapparoli/followers', 'https://api.github.com/users/azapparoli/following', 'https://api.github.com/users/azapparoli/gists', 'https://api.github.com/users/azapparoli/starred', 'https://api.github.com/users/azapparoli/repos', 'https://api.github.com/users/azapparoli/events', 'https://api.github.com/users/azapparoli/received_events', 0); +INSERT INTO `developer` VALUES (3050, 'microslave', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-13T21:52:12Z', '2019-12-16T15:46:20Z', 'https://avatars.githubusercontent.com/u/3050?v=4', 'https://api.github.com/users/microslave', 'https://github.com/microslave', 'https://api.github.com/users/microslave/followers', 'https://api.github.com/users/microslave/following', 'https://api.github.com/users/microslave/gists', 'https://api.github.com/users/microslave/starred', 'https://api.github.com/users/microslave/repos', 'https://api.github.com/users/microslave/events', 'https://api.github.com/users/microslave/received_events', 0); +INSERT INTO `developer` VALUES (3051, 'pakenhamboy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-13T21:58:51Z', '2016-07-06T16:04:23Z', 'https://avatars.githubusercontent.com/u/3051?v=4', 'https://api.github.com/users/pakenhamboy', 'https://github.com/pakenhamboy', 'https://api.github.com/users/pakenhamboy/followers', 'https://api.github.com/users/pakenhamboy/following', 'https://api.github.com/users/pakenhamboy/gists', 'https://api.github.com/users/pakenhamboy/starred', 'https://api.github.com/users/pakenhamboy/repos', 'https://api.github.com/users/pakenhamboy/events', 'https://api.github.com/users/pakenhamboy/received_events', 0); +INSERT INTO `developer` VALUES (3052, 'squadette', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexey Makhotkin', NULL, '', 'Amsterdam, Netherlands', NULL, NULL, NULL, NULL, 0, 0, 57, 0, 0, 0, 0, '2008-03-13T21:59:52Z', '2023-07-02T09:00:10Z', 'https://avatars.githubusercontent.com/u/3052?v=4', 'https://api.github.com/users/squadette', 'https://github.com/squadette', 'https://api.github.com/users/squadette/followers', 'https://api.github.com/users/squadette/following', 'https://api.github.com/users/squadette/gists', 'https://api.github.com/users/squadette/starred', 'https://api.github.com/users/squadette/repos', 'https://api.github.com/users/squadette/events', 'https://api.github.com/users/squadette/received_events', 0); +INSERT INTO `developer` VALUES (3053, 'igowen', 'C', 0, 0, 0, 0, 0, 0, 0, 'igowen', '@google ', 'http://ian.gowen.cc', 'Pittsburgh', 'ian@gowen.cc', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-13T22:24:29Z', '2024-10-03T01:07:31Z', 'https://avatars.githubusercontent.com/u/3053?v=4', 'https://api.github.com/users/igowen', 'https://github.com/igowen', 'https://api.github.com/users/igowen/followers', 'https://api.github.com/users/igowen/following', 'https://api.github.com/users/igowen/gists', 'https://api.github.com/users/igowen/starred', 'https://api.github.com/users/igowen/repos', 'https://api.github.com/users/igowen/events', 'https://api.github.com/users/igowen/received_events', 0); +INSERT INTO `developer` VALUES (3054, 'nipuL', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lucas Hazel', 'Digit Illogic', 'die.net.au', 'Armidale, NSW', 'lucas@die.net.au', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-13T22:31:14Z', '2016-07-01T03:27:32Z', 'https://avatars.githubusercontent.com/u/3054?v=4', 'https://api.github.com/users/nipuL', 'https://github.com/nipuL', 'https://api.github.com/users/nipuL/followers', 'https://api.github.com/users/nipuL/following', 'https://api.github.com/users/nipuL/gists', 'https://api.github.com/users/nipuL/starred', 'https://api.github.com/users/nipuL/repos', 'https://api.github.com/users/nipuL/events', 'https://api.github.com/users/nipuL/received_events', 0); +INSERT INTO `developer` VALUES (3055, 'atennis', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-13T23:10:05Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3055?v=4', 'https://api.github.com/users/atennis', 'https://github.com/atennis', 'https://api.github.com/users/atennis/followers', 'https://api.github.com/users/atennis/following', 'https://api.github.com/users/atennis/gists', 'https://api.github.com/users/atennis/starred', 'https://api.github.com/users/atennis/repos', 'https://api.github.com/users/atennis/events', 'https://api.github.com/users/atennis/received_events', 0); +INSERT INTO `developer` VALUES (3056, 'metade', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Sinclair', '@Streetbees', 'http://www.metade.org/', 'Lisbon, Portugal', NULL, NULL, 'Senior Full Stack Engineer at Streetbees', 'metade', 0, 0, 63, 11, 0, 0, 0, '2008-03-13T23:34:24Z', '2024-07-23T09:21:51Z', 'https://avatars.githubusercontent.com/u/3056?v=4', 'https://api.github.com/users/metade', 'https://github.com/metade', 'https://api.github.com/users/metade/followers', 'https://api.github.com/users/metade/following', 'https://api.github.com/users/metade/gists', 'https://api.github.com/users/metade/starred', 'https://api.github.com/users/metade/repos', 'https://api.github.com/users/metade/events', 'https://api.github.com/users/metade/received_events', 0); +INSERT INTO `developer` VALUES (3057, 'sebug', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastian Gfeller', NULL, 'https://hachyderm.io/@sebug', '未知', NULL, NULL, 'Software Aficionado', NULL, 0, 0, 13, 15, 0, 0, 0, '2008-03-13T23:36:58Z', '2024-10-31T17:09:53Z', 'https://avatars.githubusercontent.com/u/3057?v=4', 'https://api.github.com/users/sebug', 'https://github.com/sebug', 'https://api.github.com/users/sebug/followers', 'https://api.github.com/users/sebug/following', 'https://api.github.com/users/sebug/gists', 'https://api.github.com/users/sebug/starred', 'https://api.github.com/users/sebug/repos', 'https://api.github.com/users/sebug/events', 'https://api.github.com/users/sebug/received_events', 0); +INSERT INTO `developer` VALUES (3058, 'patricklai', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Lai', NULL, '', '未知', 'patrickclai@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-13T23:38:13Z', '2023-06-13T16:39:49Z', 'https://avatars.githubusercontent.com/u/3058?v=4', 'https://api.github.com/users/patricklai', 'https://github.com/patricklai', 'https://api.github.com/users/patricklai/followers', 'https://api.github.com/users/patricklai/following', 'https://api.github.com/users/patricklai/gists', 'https://api.github.com/users/patricklai/starred', 'https://api.github.com/users/patricklai/repos', 'https://api.github.com/users/patricklai/events', 'https://api.github.com/users/patricklai/received_events', 0); +INSERT INTO `developer` VALUES (3060, 'KennethDalgleish', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kenneth Dalgleish', NULL, '', 'Norway', 'kd@mediachaser.net', NULL, NULL, NULL, 0, 0, 11, 9, 0, 0, 0, '2008-03-13T23:59:16Z', '2024-10-26T12:53:47Z', 'https://avatars.githubusercontent.com/u/3060?v=4', 'https://api.github.com/users/KennethDalgleish', 'https://github.com/KennethDalgleish', 'https://api.github.com/users/KennethDalgleish/followers', 'https://api.github.com/users/KennethDalgleish/following', 'https://api.github.com/users/KennethDalgleish/gists', 'https://api.github.com/users/KennethDalgleish/starred', 'https://api.github.com/users/KennethDalgleish/repos', 'https://api.github.com/users/KennethDalgleish/events', 'https://api.github.com/users/KennethDalgleish/received_events', 0); +INSERT INTO `developer` VALUES (3061, 'difro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jihoon Chung', 'Naver Corp.', '', 'Seoul', 'jihoon@gmail.com', 'true', NULL, NULL, 0, 0, 34, 13, 0, 0, 0, '2008-03-14T00:40:40Z', '2024-06-23T10:22:40Z', 'https://avatars.githubusercontent.com/u/3061?v=4', 'https://api.github.com/users/difro', 'https://github.com/difro', 'https://api.github.com/users/difro/followers', 'https://api.github.com/users/difro/following', 'https://api.github.com/users/difro/gists', 'https://api.github.com/users/difro/starred', 'https://api.github.com/users/difro/repos', 'https://api.github.com/users/difro/events', 'https://api.github.com/users/difro/received_events', 0); +INSERT INTO `developer` VALUES (3062, 'fireeagle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fire Eagle', NULL, '', '未知', 'fireeagle-feedback@yahoo-inc.com', NULL, NULL, NULL, 0, 0, 29, 0, 0, 0, 0, '2008-03-14T00:55:23Z', '2017-08-14T19:40:37Z', 'https://avatars.githubusercontent.com/u/3062?v=4', 'https://api.github.com/users/fireeagle', 'https://github.com/fireeagle', 'https://api.github.com/users/fireeagle/followers', 'https://api.github.com/users/fireeagle/following', 'https://api.github.com/users/fireeagle/gists', 'https://api.github.com/users/fireeagle/starred', 'https://api.github.com/users/fireeagle/repos', 'https://api.github.com/users/fireeagle/events', 'https://api.github.com/users/fireeagle/received_events', 0); +INSERT INTO `developer` VALUES (3063, 'byllc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Chapman', '28Protons LLC', 'billchapman.net', 'Buffalo NY', NULL, NULL, 'Bill leads teams that do cool stuff with technology, travels anywhere and often, plays piano and ukulele badly, and sings in the shower loudly. ', NULL, 0, 0, 19, 3, 0, 0, 0, '2008-03-14T02:09:51Z', '2024-10-19T23:38:15Z', 'https://avatars.githubusercontent.com/u/3063?v=4', 'https://api.github.com/users/byllc', 'https://github.com/byllc', 'https://api.github.com/users/byllc/followers', 'https://api.github.com/users/byllc/following', 'https://api.github.com/users/byllc/gists', 'https://api.github.com/users/byllc/starred', 'https://api.github.com/users/byllc/repos', 'https://api.github.com/users/byllc/events', 'https://api.github.com/users/byllc/received_events', 0); +INSERT INTO `developer` VALUES (3064, 'lexluthor', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-14T03:22:47Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3064?v=4', 'https://api.github.com/users/lexluthor', 'https://github.com/lexluthor', 'https://api.github.com/users/lexluthor/followers', 'https://api.github.com/users/lexluthor/following', 'https://api.github.com/users/lexluthor/gists', 'https://api.github.com/users/lexluthor/starred', 'https://api.github.com/users/lexluthor/repos', 'https://api.github.com/users/lexluthor/events', 'https://api.github.com/users/lexluthor/received_events', 0); +INSERT INTO `developer` VALUES (3065, 'shodZ', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-14T03:48:12Z', '2024-09-03T16:50:31Z', 'https://avatars.githubusercontent.com/u/3065?v=4', 'https://api.github.com/users/shodZ', 'https://github.com/shodZ', 'https://api.github.com/users/shodZ/followers', 'https://api.github.com/users/shodZ/following', 'https://api.github.com/users/shodZ/gists', 'https://api.github.com/users/shodZ/starred', 'https://api.github.com/users/shodZ/repos', 'https://api.github.com/users/shodZ/events', 'https://api.github.com/users/shodZ/received_events', 0); +INSERT INTO `developer` VALUES (3066, 'bluemarvin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Randall E. Barker', NULL, '', '未知', 'simstorm@mac.com', NULL, NULL, NULL, 0, 0, 31, 2, 0, 0, 0, '2008-03-14T03:56:02Z', '2024-09-27T20:12:12Z', 'https://avatars.githubusercontent.com/u/3066?v=4', 'https://api.github.com/users/bluemarvin', 'https://github.com/bluemarvin', 'https://api.github.com/users/bluemarvin/followers', 'https://api.github.com/users/bluemarvin/following', 'https://api.github.com/users/bluemarvin/gists', 'https://api.github.com/users/bluemarvin/starred', 'https://api.github.com/users/bluemarvin/repos', 'https://api.github.com/users/bluemarvin/events', 'https://api.github.com/users/bluemarvin/received_events', 0); +INSERT INTO `developer` VALUES (3067, 'tropicalchick', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-14T04:23:01Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3067?v=4', 'https://api.github.com/users/tropicalchick', 'https://github.com/tropicalchick', 'https://api.github.com/users/tropicalchick/followers', 'https://api.github.com/users/tropicalchick/following', 'https://api.github.com/users/tropicalchick/gists', 'https://api.github.com/users/tropicalchick/starred', 'https://api.github.com/users/tropicalchick/repos', 'https://api.github.com/users/tropicalchick/events', 'https://api.github.com/users/tropicalchick/received_events', 0); +INSERT INTO `developer` VALUES (3068, 'boohay', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-14T04:46:44Z', '2020-03-08T07:00:02Z', 'https://avatars.githubusercontent.com/u/3068?v=4', 'https://api.github.com/users/boohay', 'https://github.com/boohay', 'https://api.github.com/users/boohay/followers', 'https://api.github.com/users/boohay/following', 'https://api.github.com/users/boohay/gists', 'https://api.github.com/users/boohay/starred', 'https://api.github.com/users/boohay/repos', 'https://api.github.com/users/boohay/events', 'https://api.github.com/users/boohay/received_events', 0); +INSERT INTO `developer` VALUES (3069, 'command-tab', 'C', 0, 0, 0, 0, 0, 0, 0, 'Collin Allen', NULL, 'https://command-tab.com', 'Novato, CA', 'collin@command-tab.com', NULL, NULL, NULL, 0, 0, 86, 35, 0, 0, 0, '2008-03-14T05:04:59Z', '2024-11-01T22:07:33Z', 'https://avatars.githubusercontent.com/u/3069?v=4', 'https://api.github.com/users/command-tab', 'https://github.com/command-tab', 'https://api.github.com/users/command-tab/followers', 'https://api.github.com/users/command-tab/following', 'https://api.github.com/users/command-tab/gists', 'https://api.github.com/users/command-tab/starred', 'https://api.github.com/users/command-tab/repos', 'https://api.github.com/users/command-tab/events', 'https://api.github.com/users/command-tab/received_events', 0); +INSERT INTO `developer` VALUES (3070, 'Kyonko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tyler Gibbons', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2008-03-14T05:47:32Z', '2021-03-09T20:42:02Z', 'https://avatars.githubusercontent.com/u/3070?v=4', 'https://api.github.com/users/Kyonko', 'https://github.com/Kyonko', 'https://api.github.com/users/Kyonko/followers', 'https://api.github.com/users/Kyonko/following', 'https://api.github.com/users/Kyonko/gists', 'https://api.github.com/users/Kyonko/starred', 'https://api.github.com/users/Kyonko/repos', 'https://api.github.com/users/Kyonko/events', 'https://api.github.com/users/Kyonko/received_events', 0); +INSERT INTO `developer` VALUES (3071, 'jimjimovich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Mendenhall', NULL, 'http://www.starryhope.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-14T05:54:29Z', '2024-10-17T18:26:09Z', 'https://avatars.githubusercontent.com/u/3071?v=4', 'https://api.github.com/users/jimjimovich', 'https://github.com/jimjimovich', 'https://api.github.com/users/jimjimovich/followers', 'https://api.github.com/users/jimjimovich/following', 'https://api.github.com/users/jimjimovich/gists', 'https://api.github.com/users/jimjimovich/starred', 'https://api.github.com/users/jimjimovich/repos', 'https://api.github.com/users/jimjimovich/events', 'https://api.github.com/users/jimjimovich/received_events', 0); +INSERT INTO `developer` VALUES (3072, 'bdecrem', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'bdecrem@gmail.com', NULL, NULL, NULL, 0, 0, 12, 2, 0, 0, 0, '2008-03-14T06:45:10Z', '2024-08-14T18:12:30Z', 'https://avatars.githubusercontent.com/u/3072?v=4', 'https://api.github.com/users/bdecrem', 'https://github.com/bdecrem', 'https://api.github.com/users/bdecrem/followers', 'https://api.github.com/users/bdecrem/following', 'https://api.github.com/users/bdecrem/gists', 'https://api.github.com/users/bdecrem/starred', 'https://api.github.com/users/bdecrem/repos', 'https://api.github.com/users/bdecrem/events', 'https://api.github.com/users/bdecrem/received_events', 0); +INSERT INTO `developer` VALUES (3073, 'jonsgreen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan', 'Flagrant', 'https://beflagrant.com', 'Black Mountain, NC', 'jonathan.s.greenberg@gmail.com', NULL, NULL, NULL, 0, 0, 23, 0, 0, 0, 0, '2008-03-14T07:13:21Z', '2024-10-15T09:37:17Z', 'https://avatars.githubusercontent.com/u/3073?v=4', 'https://api.github.com/users/jonsgreen', 'https://github.com/jonsgreen', 'https://api.github.com/users/jonsgreen/followers', 'https://api.github.com/users/jonsgreen/following', 'https://api.github.com/users/jonsgreen/gists', 'https://api.github.com/users/jonsgreen/starred', 'https://api.github.com/users/jonsgreen/repos', 'https://api.github.com/users/jonsgreen/events', 'https://api.github.com/users/jonsgreen/received_events', 0); +INSERT INTO `developer` VALUES (3074, 'stroft', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-14T07:19:32Z', '2019-01-30T09:03:53Z', 'https://avatars.githubusercontent.com/u/3074?v=4', 'https://api.github.com/users/stroft', 'https://github.com/stroft', 'https://api.github.com/users/stroft/followers', 'https://api.github.com/users/stroft/following', 'https://api.github.com/users/stroft/gists', 'https://api.github.com/users/stroft/starred', 'https://api.github.com/users/stroft/repos', 'https://api.github.com/users/stroft/events', 'https://api.github.com/users/stroft/received_events', 0); +INSERT INTO `developer` VALUES (3075, 'niko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Niko Dittmann', 'laut.fm', 'http://ende42.tumblr.com/', 'Konstanz, Germany', 'mail+git@niko-dittmann.com', NULL, NULL, NULL, 0, 0, 38, 19, 0, 0, 0, '2008-03-14T08:19:00Z', '2024-09-20T11:42:31Z', 'https://avatars.githubusercontent.com/u/3075?v=4', 'https://api.github.com/users/niko', 'https://github.com/niko', 'https://api.github.com/users/niko/followers', 'https://api.github.com/users/niko/following', 'https://api.github.com/users/niko/gists', 'https://api.github.com/users/niko/starred', 'https://api.github.com/users/niko/repos', 'https://api.github.com/users/niko/events', 'https://api.github.com/users/niko/received_events', 0); +INSERT INTO `developer` VALUES (3076, 'franco', 'C', 0, 0, 0, 0, 0, 0, 0, 'Franco Sebregondi', NULL, '', 'Switzerland', NULL, NULL, NULL, NULL, 0, 0, 21, 4, 0, 0, 0, '2008-03-14T08:19:40Z', '2024-10-30T08:14:22Z', 'https://avatars.githubusercontent.com/u/3076?v=4', 'https://api.github.com/users/franco', 'https://github.com/franco', 'https://api.github.com/users/franco/followers', 'https://api.github.com/users/franco/following', 'https://api.github.com/users/franco/gists', 'https://api.github.com/users/franco/starred', 'https://api.github.com/users/franco/repos', 'https://api.github.com/users/franco/events', 'https://api.github.com/users/franco/received_events', 0); +INSERT INTO `developer` VALUES (3077, 'severin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Severin Schoepke', NULL, '', 'Zürich, Switzerland', NULL, NULL, NULL, NULL, 0, 0, 29, 19, 0, 0, 0, '2008-03-14T08:26:44Z', '2024-04-10T08:31:13Z', 'https://avatars.githubusercontent.com/u/3077?v=4', 'https://api.github.com/users/severin', 'https://github.com/severin', 'https://api.github.com/users/severin/followers', 'https://api.github.com/users/severin/following', 'https://api.github.com/users/severin/gists', 'https://api.github.com/users/severin/starred', 'https://api.github.com/users/severin/repos', 'https://api.github.com/users/severin/events', 'https://api.github.com/users/severin/received_events', 0); +INSERT INTO `developer` VALUES (3079, 'ariekeren', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arie Kusuma Atmaja', 'Happiness Inside', 'http://bit.ly/Oue4s', 'Milky Way Galaxy', 'ariekusumaatmaja@gmail.com', NULL, NULL, NULL, 0, 0, 17, 25, 0, 0, 0, '2008-03-14T09:28:50Z', '2019-10-23T06:23:43Z', 'https://avatars.githubusercontent.com/u/3079?v=4', 'https://api.github.com/users/ariekeren', 'https://github.com/ariekeren', 'https://api.github.com/users/ariekeren/followers', 'https://api.github.com/users/ariekeren/following', 'https://api.github.com/users/ariekeren/gists', 'https://api.github.com/users/ariekeren/starred', 'https://api.github.com/users/ariekeren/repos', 'https://api.github.com/users/ariekeren/events', 'https://api.github.com/users/ariekeren/received_events', 0); +INSERT INTO `developer` VALUES (3081, 'rmorrell', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-14T09:53:09Z', '2021-05-25T21:43:08Z', 'https://avatars.githubusercontent.com/u/3081?v=4', 'https://api.github.com/users/rmorrell', 'https://github.com/rmorrell', 'https://api.github.com/users/rmorrell/followers', 'https://api.github.com/users/rmorrell/following', 'https://api.github.com/users/rmorrell/gists', 'https://api.github.com/users/rmorrell/starred', 'https://api.github.com/users/rmorrell/repos', 'https://api.github.com/users/rmorrell/events', 'https://api.github.com/users/rmorrell/received_events', 0); +INSERT INTO `developer` VALUES (3082, 'joekhoobyar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Khoobyar', 'Spotter', '', 'Avon, NY', NULL, NULL, 'Architect | Polyglot Engineer | Technologist | Mentor | Engineering Leader', NULL, 0, 0, 38, 22, 0, 0, 0, '2008-03-14T10:23:08Z', '2024-10-21T02:24:50Z', 'https://avatars.githubusercontent.com/u/3082?v=4', 'https://api.github.com/users/joekhoobyar', 'https://github.com/joekhoobyar', 'https://api.github.com/users/joekhoobyar/followers', 'https://api.github.com/users/joekhoobyar/following', 'https://api.github.com/users/joekhoobyar/gists', 'https://api.github.com/users/joekhoobyar/starred', 'https://api.github.com/users/joekhoobyar/repos', 'https://api.github.com/users/joekhoobyar/events', 'https://api.github.com/users/joekhoobyar/received_events', 0); +INSERT INTO `developer` VALUES (3083, 'wpdavenport', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Davenport', NULL, 'wpdavenport.com', 'Washington D.C. area', NULL, NULL, NULL, NULL, 0, 0, 12, 3, 0, 0, 0, '2008-03-14T12:23:43Z', '2024-01-20T01:03:02Z', 'https://avatars.githubusercontent.com/u/3083?v=4', 'https://api.github.com/users/wpdavenport', 'https://github.com/wpdavenport', 'https://api.github.com/users/wpdavenport/followers', 'https://api.github.com/users/wpdavenport/following', 'https://api.github.com/users/wpdavenport/gists', 'https://api.github.com/users/wpdavenport/starred', 'https://api.github.com/users/wpdavenport/repos', 'https://api.github.com/users/wpdavenport/events', 'https://api.github.com/users/wpdavenport/received_events', 0); +INSERT INTO `developer` VALUES (3084, 'Jabbslad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jamie Atkinson', NULL, '', 'London, UK', NULL, 'true', 'Avid coder and tech geek!', NULL, 0, 0, 30, 41, 0, 0, 0, '2008-03-14T13:55:13Z', '2024-11-05T00:06:20Z', 'https://avatars.githubusercontent.com/u/3084?v=4', 'https://api.github.com/users/Jabbslad', 'https://github.com/Jabbslad', 'https://api.github.com/users/Jabbslad/followers', 'https://api.github.com/users/Jabbslad/following', 'https://api.github.com/users/Jabbslad/gists', 'https://api.github.com/users/Jabbslad/starred', 'https://api.github.com/users/Jabbslad/repos', 'https://api.github.com/users/Jabbslad/events', 'https://api.github.com/users/Jabbslad/received_events', 0); +INSERT INTO `developer` VALUES (3085, 'Dr4k3-M0nt4g', 'C', 0, 0, 0, 0, 0, 0, 0, 'Drake Montag', 'I\'m in the business of mechs!', '', 'Meanwhile', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-14T14:09:45Z', '2016-02-26T22:34:55Z', 'https://avatars.githubusercontent.com/u/3085?v=4', 'https://api.github.com/users/Dr4k3-M0nt4g', 'https://github.com/Dr4k3-M0nt4g', 'https://api.github.com/users/Dr4k3-M0nt4g/followers', 'https://api.github.com/users/Dr4k3-M0nt4g/following', 'https://api.github.com/users/Dr4k3-M0nt4g/gists', 'https://api.github.com/users/Dr4k3-M0nt4g/starred', 'https://api.github.com/users/Dr4k3-M0nt4g/repos', 'https://api.github.com/users/Dr4k3-M0nt4g/events', 'https://api.github.com/users/Dr4k3-M0nt4g/received_events', 0); +INSERT INTO `developer` VALUES (3086, 'woods', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Woods', 'West Arete', 'https://westarete.com', 'State College, PA, USA', 'scott@westarete.com', NULL, 'CEO of @westarete. Background in high-performance computing, security, and devops. <3 TDD.', NULL, 0, 0, 30, 18, 0, 0, 0, '2008-03-14T14:16:49Z', '2024-07-10T19:21:50Z', 'https://avatars.githubusercontent.com/u/3086?v=4', 'https://api.github.com/users/woods', 'https://github.com/woods', 'https://api.github.com/users/woods/followers', 'https://api.github.com/users/woods/following', 'https://api.github.com/users/woods/gists', 'https://api.github.com/users/woods/starred', 'https://api.github.com/users/woods/repos', 'https://api.github.com/users/woods/events', 'https://api.github.com/users/woods/received_events', 0); +INSERT INTO `developer` VALUES (3087, 'AlanLeffingwell', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-14T14:23:59Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3087?v=4', 'https://api.github.com/users/AlanLeffingwell', 'https://github.com/AlanLeffingwell', 'https://api.github.com/users/AlanLeffingwell/followers', 'https://api.github.com/users/AlanLeffingwell/following', 'https://api.github.com/users/AlanLeffingwell/gists', 'https://api.github.com/users/AlanLeffingwell/starred', 'https://api.github.com/users/AlanLeffingwell/repos', 'https://api.github.com/users/AlanLeffingwell/events', 'https://api.github.com/users/AlanLeffingwell/received_events', 0); +INSERT INTO `developer` VALUES (3088, 'jcfischer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jens-Christian Fischer', 'SWITCH', 'https://invisible.ch', 'Zürich, Switzerland', 'jens-christian@invisible.ch', NULL, NULL, NULL, 0, 0, 56, 16, 0, 0, 0, '2008-03-14T14:28:11Z', '2024-06-17T11:44:13Z', 'https://avatars.githubusercontent.com/u/3088?v=4', 'https://api.github.com/users/jcfischer', 'https://github.com/jcfischer', 'https://api.github.com/users/jcfischer/followers', 'https://api.github.com/users/jcfischer/following', 'https://api.github.com/users/jcfischer/gists', 'https://api.github.com/users/jcfischer/starred', 'https://api.github.com/users/jcfischer/repos', 'https://api.github.com/users/jcfischer/events', 'https://api.github.com/users/jcfischer/received_events', 0); +INSERT INTO `developer` VALUES (3090, 'marcus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcus Vorwaller', 'Avalara', 'http://marcus.pictures', 'Seattle, Washington', 'marcus@vorwaller.net', NULL, NULL, NULL, 0, 0, 35, 12, 0, 0, 0, '2008-03-14T14:33:29Z', '2024-10-22T16:09:21Z', 'https://avatars.githubusercontent.com/u/3090?v=4', 'https://api.github.com/users/marcus', 'https://github.com/marcus', 'https://api.github.com/users/marcus/followers', 'https://api.github.com/users/marcus/following', 'https://api.github.com/users/marcus/gists', 'https://api.github.com/users/marcus/starred', 'https://api.github.com/users/marcus/repos', 'https://api.github.com/users/marcus/events', 'https://api.github.com/users/marcus/received_events', 0); +INSERT INTO `developer` VALUES (3091, 'kbingman', 'C', 7.574306904743702, 0, 7, 172, 154, 0, 0, 'Keith Bingman', NULL, '', 'Vancouver, BC Canada', 'kbingman@gmail.com', NULL, NULL, NULL, 0, 0, 43, 0, 0, 0, 0, '2008-03-14T14:52:33Z', '2024-10-16T14:52:09Z', 'https://avatars.githubusercontent.com/u/3091?v=4', 'https://api.github.com/users/kbingman', 'https://github.com/kbingman', 'https://api.github.com/users/kbingman/followers', 'https://api.github.com/users/kbingman/following', 'https://api.github.com/users/kbingman/gists', 'https://api.github.com/users/kbingman/starred', 'https://api.github.com/users/kbingman/repos', 'https://api.github.com/users/kbingman/events', 'https://api.github.com/users/kbingman/received_events', 0); +INSERT INTO `developer` VALUES (3092, 'cho45', 'C', 5.473514084354184, 0, 0, 0, 0, 0, 0, 'Satoh, Hiroh', NULL, 'https://www.lowreal.net/', 'Japan', 'cho45@lowreal.net', NULL, 'Software (Server-side) Programmer', NULL, 0, 0, 604, 271, 0, 0, 0, '2008-03-14T15:46:27Z', '2024-10-15T12:21:36Z', 'https://avatars.githubusercontent.com/u/3092?v=4', 'https://api.github.com/users/cho45', 'https://github.com/cho45', 'https://api.github.com/users/cho45/followers', 'https://api.github.com/users/cho45/following', 'https://api.github.com/users/cho45/gists', 'https://api.github.com/users/cho45/starred', 'https://api.github.com/users/cho45/repos', 'https://api.github.com/users/cho45/events', 'https://api.github.com/users/cho45/received_events', 0); +INSERT INTO `developer` VALUES (3093, 'evansims', 'C', 0, 0, 0, 0, 0, 0, 0, 'Evan Sims', '@OpenFGA', 'evansims.com', 'Urbana-Champaign, Illinois', 'hello@evansims.com', NULL, 'Engineer @Okta building @OpenFGA. Passionate about FOSS and helping developers build more secure software. Mindfulness, minimalism, and metal 🤘', NULL, 0, 0, 135, 11, 0, 0, 0, '2008-03-14T15:47:57Z', '2024-11-04T23:23:32Z', 'https://avatars.githubusercontent.com/u/3093?v=4', 'https://api.github.com/users/evansims', 'https://github.com/evansims', 'https://api.github.com/users/evansims/followers', 'https://api.github.com/users/evansims/following', 'https://api.github.com/users/evansims/gists', 'https://api.github.com/users/evansims/starred', 'https://api.github.com/users/evansims/repos', 'https://api.github.com/users/evansims/events', 'https://api.github.com/users/evansims/received_events', 0); +INSERT INTO `developer` VALUES (3094, 'djwonk', 'C', 0, 0, 0, 0, 0, 0, 0, 'D. James', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 10, 0, 0, 0, '2008-03-14T15:48:15Z', '2016-04-01T19:55:23Z', 'https://avatars.githubusercontent.com/u/3094?v=4', 'https://api.github.com/users/djwonk', 'https://github.com/djwonk', 'https://api.github.com/users/djwonk/followers', 'https://api.github.com/users/djwonk/following', 'https://api.github.com/users/djwonk/gists', 'https://api.github.com/users/djwonk/starred', 'https://api.github.com/users/djwonk/repos', 'https://api.github.com/users/djwonk/events', 'https://api.github.com/users/djwonk/received_events', 0); +INSERT INTO `developer` VALUES (3095, 'nchapman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Chapman', NULL, '', 'Lafayette, CA', NULL, NULL, 'Building AI products at Mozilla.\r\n\r\nPreviously: CPO at Tempest, VP of Product at Pocket, Lead Product Manager on Firefox', 'nchapman', 0, 0, 74, 15, 0, 0, 0, '2008-03-14T15:48:57Z', '2024-10-21T16:02:06Z', 'https://avatars.githubusercontent.com/u/3095?v=4', 'https://api.github.com/users/nchapman', 'https://github.com/nchapman', 'https://api.github.com/users/nchapman/followers', 'https://api.github.com/users/nchapman/following', 'https://api.github.com/users/nchapman/gists', 'https://api.github.com/users/nchapman/starred', 'https://api.github.com/users/nchapman/repos', 'https://api.github.com/users/nchapman/events', 'https://api.github.com/users/nchapman/received_events', 0); +INSERT INTO `developer` VALUES (3096, 'mletterle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Letterle', NULL, 'https://www.prokrams.com', 'Greater Cleveland, Ohio', 'michael.letterle@gmail.com', 'true', NULL, 'mletterle', 0, 0, 74, 145, 0, 0, 0, '2008-03-14T15:49:00Z', '2024-10-23T15:45:47Z', 'https://avatars.githubusercontent.com/u/3096?v=4', 'https://api.github.com/users/mletterle', 'https://github.com/mletterle', 'https://api.github.com/users/mletterle/followers', 'https://api.github.com/users/mletterle/following', 'https://api.github.com/users/mletterle/gists', 'https://api.github.com/users/mletterle/starred', 'https://api.github.com/users/mletterle/repos', 'https://api.github.com/users/mletterle/events', 'https://api.github.com/users/mletterle/received_events', 0); +INSERT INTO `developer` VALUES (3097, 'eyowell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Yowell', NULL, '', 'Durham, NC', NULL, NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-14T15:49:15Z', '2024-08-04T17:14:25Z', 'https://avatars.githubusercontent.com/u/3097?v=4', 'https://api.github.com/users/eyowell', 'https://github.com/eyowell', 'https://api.github.com/users/eyowell/followers', 'https://api.github.com/users/eyowell/following', 'https://api.github.com/users/eyowell/gists', 'https://api.github.com/users/eyowell/starred', 'https://api.github.com/users/eyowell/repos', 'https://api.github.com/users/eyowell/events', 'https://api.github.com/users/eyowell/received_events', 0); +INSERT INTO `developer` VALUES (3098, 'SRabbelier', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sverre Rabbelier', NULL, 'http://www.sverre.rabbelier.com', 'United States', 'srabbelier@gmail.com', NULL, NULL, NULL, 0, 0, 41, 0, 0, 0, 0, '2008-03-14T15:51:17Z', '2024-10-11T01:13:31Z', 'https://avatars.githubusercontent.com/u/3098?v=4', 'https://api.github.com/users/SRabbelier', 'https://github.com/SRabbelier', 'https://api.github.com/users/SRabbelier/followers', 'https://api.github.com/users/SRabbelier/following', 'https://api.github.com/users/SRabbelier/gists', 'https://api.github.com/users/SRabbelier/starred', 'https://api.github.com/users/SRabbelier/repos', 'https://api.github.com/users/SRabbelier/events', 'https://api.github.com/users/SRabbelier/received_events', 0); +INSERT INTO `developer` VALUES (3099, 'eng', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Eng', 'Bluebuzzard', 'http://brianeng.com', 'Chicago, IL', 'brian@brianeng.com', NULL, NULL, NULL, 0, 0, 47, 2, 0, 0, 0, '2008-03-14T15:51:18Z', '2024-10-24T15:51:46Z', 'https://avatars.githubusercontent.com/u/3099?v=4', 'https://api.github.com/users/eng', 'https://github.com/eng', 'https://api.github.com/users/eng/followers', 'https://api.github.com/users/eng/following', 'https://api.github.com/users/eng/gists', 'https://api.github.com/users/eng/starred', 'https://api.github.com/users/eng/repos', 'https://api.github.com/users/eng/events', 'https://api.github.com/users/eng/received_events', 0); +INSERT INTO `developer` VALUES (3102, 'pvelder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter De Velder', 'Atexis BVBA', '', 'Stekene, Belgium', NULL, NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-14T16:00:25Z', '2019-09-19T12:37:07Z', 'https://avatars.githubusercontent.com/u/3102?v=4', 'https://api.github.com/users/pvelder', 'https://github.com/pvelder', 'https://api.github.com/users/pvelder/followers', 'https://api.github.com/users/pvelder/following', 'https://api.github.com/users/pvelder/gists', 'https://api.github.com/users/pvelder/starred', 'https://api.github.com/users/pvelder/repos', 'https://api.github.com/users/pvelder/events', 'https://api.github.com/users/pvelder/received_events', 0); +INSERT INTO `developer` VALUES (3103, 'Andrea', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrea', '@Andrea', 'http://roundcrisis.com', 'Ireland and UK', NULL, 'true', 'F#, Scala and otters ', NULL, 0, 0, 185, 114, 0, 0, 0, '2008-03-14T16:00:31Z', '2024-10-05T22:19:54Z', 'https://avatars.githubusercontent.com/u/3103?v=4', 'https://api.github.com/users/Andrea', 'https://github.com/Andrea', 'https://api.github.com/users/Andrea/followers', 'https://api.github.com/users/Andrea/following', 'https://api.github.com/users/Andrea/gists', 'https://api.github.com/users/Andrea/starred', 'https://api.github.com/users/Andrea/repos', 'https://api.github.com/users/Andrea/events', 'https://api.github.com/users/Andrea/received_events', 0); +INSERT INTO `developer` VALUES (3104, 'notlaforge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jordi Bunster', NULL, '', 'Seattle, WA', 'jordi@bunster.org', NULL, NULL, NULL, 0, 0, 46, 0, 0, 0, 0, '2008-03-14T16:00:52Z', '2022-11-03T23:24:22Z', 'https://avatars.githubusercontent.com/u/3104?v=4', 'https://api.github.com/users/notlaforge', 'https://github.com/notlaforge', 'https://api.github.com/users/notlaforge/followers', 'https://api.github.com/users/notlaforge/following', 'https://api.github.com/users/notlaforge/gists', 'https://api.github.com/users/notlaforge/starred', 'https://api.github.com/users/notlaforge/repos', 'https://api.github.com/users/notlaforge/events', 'https://api.github.com/users/notlaforge/received_events', 0); +INSERT INTO `developer` VALUES (3106, 'spurton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Burton', 'Salesforce', '', 'Bakersfield CA', 'sburton@salesforce.com', NULL, 'ReactJS and ReactNative dev living in Sunny CA.', 'spburton', 0, 0, 31, 3, 0, 0, 0, '2008-03-14T16:09:21Z', '2024-07-03T22:38:15Z', 'https://avatars.githubusercontent.com/u/3106?v=4', 'https://api.github.com/users/spurton', 'https://github.com/spurton', 'https://api.github.com/users/spurton/followers', 'https://api.github.com/users/spurton/following', 'https://api.github.com/users/spurton/gists', 'https://api.github.com/users/spurton/starred', 'https://api.github.com/users/spurton/repos', 'https://api.github.com/users/spurton/events', 'https://api.github.com/users/spurton/received_events', 0); +INSERT INTO `developer` VALUES (3107, 'mlynn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Lynn', 'Sabado Technologies', '', 'Freehold, NJ', 'mark@sabado.com', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-14T16:12:51Z', '2023-04-30T16:55:48Z', 'https://avatars.githubusercontent.com/u/3107?v=4', 'https://api.github.com/users/mlynn', 'https://github.com/mlynn', 'https://api.github.com/users/mlynn/followers', 'https://api.github.com/users/mlynn/following', 'https://api.github.com/users/mlynn/gists', 'https://api.github.com/users/mlynn/starred', 'https://api.github.com/users/mlynn/repos', 'https://api.github.com/users/mlynn/events', 'https://api.github.com/users/mlynn/received_events', 0); +INSERT INTO `developer` VALUES (3108, 'tijs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tijs Teulings', '@automatique', 'http://tijs.org', 'Den Haag, NL', NULL, 'true', 'Mobile Technologist at Automatique', NULL, 0, 0, 56, 101, 0, 0, 0, '2008-03-14T16:20:23Z', '2024-11-02T08:12:16Z', 'https://avatars.githubusercontent.com/u/3108?v=4', 'https://api.github.com/users/tijs', 'https://github.com/tijs', 'https://api.github.com/users/tijs/followers', 'https://api.github.com/users/tijs/following', 'https://api.github.com/users/tijs/gists', 'https://api.github.com/users/tijs/starred', 'https://api.github.com/users/tijs/repos', 'https://api.github.com/users/tijs/events', 'https://api.github.com/users/tijs/received_events', 0); +INSERT INTO `developer` VALUES (3109, 'nacs', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-14T16:21:11Z', '2016-02-26T22:34:55Z', 'https://avatars.githubusercontent.com/u/3109?v=4', 'https://api.github.com/users/nacs', 'https://github.com/nacs', 'https://api.github.com/users/nacs/followers', 'https://api.github.com/users/nacs/following', 'https://api.github.com/users/nacs/gists', 'https://api.github.com/users/nacs/starred', 'https://api.github.com/users/nacs/repos', 'https://api.github.com/users/nacs/events', 'https://api.github.com/users/nacs/received_events', 0); +INSERT INTO `developer` VALUES (3110, 'Zenithar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thibault NORMAND', '@DataDog', 'zenithar.org', 'Toulouse, France', NULL, NULL, 'Passionated cyber security engineer, actor in free software world.', NULL, 0, 0, 117, 81, 0, 0, 0, '2008-03-14T16:37:48Z', '2024-05-31T07:22:23Z', 'https://avatars.githubusercontent.com/u/3110?v=4', 'https://api.github.com/users/Zenithar', 'https://github.com/Zenithar', 'https://api.github.com/users/Zenithar/followers', 'https://api.github.com/users/Zenithar/following', 'https://api.github.com/users/Zenithar/gists', 'https://api.github.com/users/Zenithar/starred', 'https://api.github.com/users/Zenithar/repos', 'https://api.github.com/users/Zenithar/events', 'https://api.github.com/users/Zenithar/received_events', 0); +INSERT INTO `developer` VALUES (3112, 'bbuckley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian K. Buckley', NULL, '', 'Hampton, NH', 'briankbuckley@gmail.com', NULL, NULL, NULL, 0, 0, 7, 18, 0, 0, 0, '2008-03-14T17:00:30Z', '2023-11-29T23:01:29Z', 'https://avatars.githubusercontent.com/u/3112?v=4', 'https://api.github.com/users/bbuckley', 'https://github.com/bbuckley', 'https://api.github.com/users/bbuckley/followers', 'https://api.github.com/users/bbuckley/following', 'https://api.github.com/users/bbuckley/gists', 'https://api.github.com/users/bbuckley/starred', 'https://api.github.com/users/bbuckley/repos', 'https://api.github.com/users/bbuckley/events', 'https://api.github.com/users/bbuckley/received_events', 0); +INSERT INTO `developer` VALUES (3113, 'rgiard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Remy Giard', NULL, '', 'Montreal', NULL, NULL, NULL, NULL, 0, 0, 23, 10, 0, 0, 0, '2008-03-14T17:21:51Z', '2024-10-23T12:45:05Z', 'https://avatars.githubusercontent.com/u/3113?v=4', 'https://api.github.com/users/rgiard', 'https://github.com/rgiard', 'https://api.github.com/users/rgiard/followers', 'https://api.github.com/users/rgiard/following', 'https://api.github.com/users/rgiard/gists', 'https://api.github.com/users/rgiard/starred', 'https://api.github.com/users/rgiard/repos', 'https://api.github.com/users/rgiard/events', 'https://api.github.com/users/rgiard/received_events', 0); +INSERT INTO `developer` VALUES (3114, 'frantk', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-14T17:50:28Z', '2018-06-11T20:52:53Z', 'https://avatars.githubusercontent.com/u/3114?v=4', 'https://api.github.com/users/frantk', 'https://github.com/frantk', 'https://api.github.com/users/frantk/followers', 'https://api.github.com/users/frantk/following', 'https://api.github.com/users/frantk/gists', 'https://api.github.com/users/frantk/starred', 'https://api.github.com/users/frantk/repos', 'https://api.github.com/users/frantk/events', 'https://api.github.com/users/frantk/received_events', 0); +INSERT INTO `developer` VALUES (3115, 'mml', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Liggett', NULL, '', 'Santa Rosa Plain, California Floristic Province', NULL, NULL, 'a bio', NULL, 0, 0, 46, 20, 0, 0, 0, '2008-03-14T17:53:30Z', '2024-07-10T22:46:23Z', 'https://avatars.githubusercontent.com/u/3115?v=4', 'https://api.github.com/users/mml', 'https://github.com/mml', 'https://api.github.com/users/mml/followers', 'https://api.github.com/users/mml/following', 'https://api.github.com/users/mml/gists', 'https://api.github.com/users/mml/starred', 'https://api.github.com/users/mml/repos', 'https://api.github.com/users/mml/events', 'https://api.github.com/users/mml/received_events', 0); +INSERT INTO `developer` VALUES (3116, 'ronier', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ronier Lopez', NULL, '', 'Mexico', NULL, 'true', NULL, NULL, 0, 0, 12, 5, 0, 0, 0, '2008-03-14T17:56:35Z', '2024-07-24T02:40:28Z', 'https://avatars.githubusercontent.com/u/3116?v=4', 'https://api.github.com/users/ronier', 'https://github.com/ronier', 'https://api.github.com/users/ronier/followers', 'https://api.github.com/users/ronier/following', 'https://api.github.com/users/ronier/gists', 'https://api.github.com/users/ronier/starred', 'https://api.github.com/users/ronier/repos', 'https://api.github.com/users/ronier/events', 'https://api.github.com/users/ronier/received_events', 0); +INSERT INTO `developer` VALUES (3117, 'jbarnette', 'C', 9.966427211426126, 0, 0, 0, 0, 0, 0, 'John Barnette', NULL, 'http://github.com/jbarnette', 'Denver', 'john@jbarnette.com', NULL, 'Former webmaster of this very website.', NULL, 0, 0, 866, 78, 0, 0, 0, '2008-03-14T19:14:15Z', '2024-10-01T22:10:18Z', 'https://avatars.githubusercontent.com/u/3117?v=4', 'https://api.github.com/users/jbarnette', 'https://github.com/jbarnette', 'https://api.github.com/users/jbarnette/followers', 'https://api.github.com/users/jbarnette/following', 'https://api.github.com/users/jbarnette/gists', 'https://api.github.com/users/jbarnette/starred', 'https://api.github.com/users/jbarnette/repos', 'https://api.github.com/users/jbarnette/events', 'https://api.github.com/users/jbarnette/received_events', 0); +INSERT INTO `developer` VALUES (3119, 'mqjjb30e', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-14T19:23:17Z', '2014-07-11T18:51:13Z', 'https://avatars.githubusercontent.com/u/3119?v=4', 'https://api.github.com/users/mqjjb30e', 'https://github.com/mqjjb30e', 'https://api.github.com/users/mqjjb30e/followers', 'https://api.github.com/users/mqjjb30e/following', 'https://api.github.com/users/mqjjb30e/gists', 'https://api.github.com/users/mqjjb30e/starred', 'https://api.github.com/users/mqjjb30e/repos', 'https://api.github.com/users/mqjjb30e/events', 'https://api.github.com/users/mqjjb30e/received_events', 0); +INSERT INTO `developer` VALUES (3120, 'darshan-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-14T19:28:52Z', '2019-09-10T08:18:41Z', 'https://avatars.githubusercontent.com/u/3120?v=4', 'https://api.github.com/users/darshan-zz', 'https://github.com/darshan-zz', 'https://api.github.com/users/darshan-zz/followers', 'https://api.github.com/users/darshan-zz/following', 'https://api.github.com/users/darshan-zz/gists', 'https://api.github.com/users/darshan-zz/starred', 'https://api.github.com/users/darshan-zz/repos', 'https://api.github.com/users/darshan-zz/events', 'https://api.github.com/users/darshan-zz/received_events', 0); +INSERT INTO `developer` VALUES (3121, 'jacob', 'C', 0, 0, 0, 0, 0, 0, 0, 'jacob robbins', NULL, '', 'new york', NULL, NULL, NULL, NULL, 0, 0, 31, 2, 0, 0, 0, '2008-03-14T19:32:45Z', '2024-08-22T17:26:12Z', 'https://avatars.githubusercontent.com/u/3121?v=4', 'https://api.github.com/users/jacob', 'https://github.com/jacob', 'https://api.github.com/users/jacob/followers', 'https://api.github.com/users/jacob/following', 'https://api.github.com/users/jacob/gists', 'https://api.github.com/users/jacob/starred', 'https://api.github.com/users/jacob/repos', 'https://api.github.com/users/jacob/events', 'https://api.github.com/users/jacob/received_events', 0); +INSERT INTO `developer` VALUES (3122, 'brianjlandau', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Landau', NULL, '', 'Walnut Creek, CA', 'brianjlandau@gmail.com', NULL, NULL, NULL, 0, 0, 62, 12, 0, 0, 0, '2008-03-14T19:50:37Z', '2024-09-02T09:05:21Z', 'https://avatars.githubusercontent.com/u/3122?v=4', 'https://api.github.com/users/brianjlandau', 'https://github.com/brianjlandau', 'https://api.github.com/users/brianjlandau/followers', 'https://api.github.com/users/brianjlandau/following', 'https://api.github.com/users/brianjlandau/gists', 'https://api.github.com/users/brianjlandau/starred', 'https://api.github.com/users/brianjlandau/repos', 'https://api.github.com/users/brianjlandau/events', 'https://api.github.com/users/brianjlandau/received_events', 0); +INSERT INTO `developer` VALUES (3123, 'mineiro', 'C', 0, 0, 0, 0, 0, 0, 0, 'José Netto', 'Itaú Unibanco S/A', 'https://mineiro.io', 'São Paulo, Brazil', 'jnetto@mineiro.io', NULL, 'Mineiro lost on Rio without polvilho and fubá. Found by paulistas and brought to the concrete jungle.', 'jribeironetto', 0, 0, 55, 165, 0, 0, 0, '2008-03-14T19:54:52Z', '2024-11-02T14:47:13Z', 'https://avatars.githubusercontent.com/u/3123?v=4', 'https://api.github.com/users/mineiro', 'https://github.com/mineiro', 'https://api.github.com/users/mineiro/followers', 'https://api.github.com/users/mineiro/following', 'https://api.github.com/users/mineiro/gists', 'https://api.github.com/users/mineiro/starred', 'https://api.github.com/users/mineiro/repos', 'https://api.github.com/users/mineiro/events', 'https://api.github.com/users/mineiro/received_events', 0); +INSERT INTO `developer` VALUES (3124, 'tenderlove', 'S', 100, 0, 0, 0, 0, 0, 0, 'Aaron Patterson', '@Shopify', 'https://tenderlovemaking.com/', 'Seattle', NULL, NULL, '💘💙💜💗💚❤💓💛💚💗', 'tenderlove', 0, 0, 9452, 27, 0, 0, 0, '2008-03-14T20:04:17Z', '2024-11-01T03:05:45Z', 'https://avatars.githubusercontent.com/u/3124?v=4', 'https://api.github.com/users/tenderlove', 'https://github.com/tenderlove', 'https://api.github.com/users/tenderlove/followers', 'https://api.github.com/users/tenderlove/following', 'https://api.github.com/users/tenderlove/gists', 'https://api.github.com/users/tenderlove/starred', 'https://api.github.com/users/tenderlove/repos', 'https://api.github.com/users/tenderlove/events', 'https://api.github.com/users/tenderlove/received_events', 0); +INSERT INTO `developer` VALUES (3125, 'bmelts', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Meltsner', NULL, 'http://www.meltsner.com', 'San Francisco, CA', 'bill@meltsner.com', NULL, NULL, NULL, 0, 0, 57, 5, 0, 0, 0, '2008-03-14T21:31:17Z', '2024-09-26T10:01:06Z', 'https://avatars.githubusercontent.com/u/3125?v=4', 'https://api.github.com/users/bmelts', 'https://github.com/bmelts', 'https://api.github.com/users/bmelts/followers', 'https://api.github.com/users/bmelts/following', 'https://api.github.com/users/bmelts/gists', 'https://api.github.com/users/bmelts/starred', 'https://api.github.com/users/bmelts/repos', 'https://api.github.com/users/bmelts/events', 'https://api.github.com/users/bmelts/received_events', 0); +INSERT INTO `developer` VALUES (3126, 'felixclack', 'C', 0, 0, 0, 0, 0, 0, 0, 'Felix Clack', 'The Good Stack Ltd', 'https://felixclack.com', 'United Kingdom', NULL, 'true', NULL, 'felixclack', 0, 0, 0, 0, 0, 0, 0, '2008-03-14T21:41:35Z', '2024-09-27T14:21:10Z', 'https://avatars.githubusercontent.com/u/3126?v=4', 'https://api.github.com/users/felixclack', 'https://github.com/felixclack', 'https://api.github.com/users/felixclack/followers', 'https://api.github.com/users/felixclack/following', 'https://api.github.com/users/felixclack/gists', 'https://api.github.com/users/felixclack/starred', 'https://api.github.com/users/felixclack/repos', 'https://api.github.com/users/felixclack/events', 'https://api.github.com/users/felixclack/received_events', 0); +INSERT INTO `developer` VALUES (3127, 'mrgood', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jake Good', 'drop.io', '', 'Fort Worth, TX', 'jake@wherever.com', NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-03-14T22:03:18Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3127?v=4', 'https://api.github.com/users/mrgood', 'https://github.com/mrgood', 'https://api.github.com/users/mrgood/followers', 'https://api.github.com/users/mrgood/following', 'https://api.github.com/users/mrgood/gists', 'https://api.github.com/users/mrgood/starred', 'https://api.github.com/users/mrgood/repos', 'https://api.github.com/users/mrgood/events', 'https://api.github.com/users/mrgood/received_events', 0); +INSERT INTO `developer` VALUES (3128, 'maccheck', 'C', 0, 0, 0, 0, 0, 0, 0, 'Markus Hardt', NULL, '', 'Germany', 'maccheck@googlemail.com', NULL, NULL, NULL, 0, 0, 12, 4, 0, 0, 0, '2008-03-14T22:09:47Z', '2024-07-30T11:37:04Z', 'https://avatars.githubusercontent.com/u/3128?v=4', 'https://api.github.com/users/maccheck', 'https://github.com/maccheck', 'https://api.github.com/users/maccheck/followers', 'https://api.github.com/users/maccheck/following', 'https://api.github.com/users/maccheck/gists', 'https://api.github.com/users/maccheck/starred', 'https://api.github.com/users/maccheck/repos', 'https://api.github.com/users/maccheck/events', 'https://api.github.com/users/maccheck/received_events', 0); +INSERT INTO `developer` VALUES (3129, 'elliottslaughter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elliott Slaughter', NULL, 'https://elliottslaughter.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 77, 0, 0, 0, 0, '2008-03-14T23:11:47Z', '2024-10-20T11:21:02Z', 'https://avatars.githubusercontent.com/u/3129?v=4', 'https://api.github.com/users/elliottslaughter', 'https://github.com/elliottslaughter', 'https://api.github.com/users/elliottslaughter/followers', 'https://api.github.com/users/elliottslaughter/following', 'https://api.github.com/users/elliottslaughter/gists', 'https://api.github.com/users/elliottslaughter/starred', 'https://api.github.com/users/elliottslaughter/repos', 'https://api.github.com/users/elliottslaughter/events', 'https://api.github.com/users/elliottslaughter/received_events', 0); +INSERT INTO `developer` VALUES (3130, 'Cale', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cale Mooth', NULL, 'https://calemooth.com/', 'Murfreesboro, TN', 'cmooth@gmail.com', NULL, NULL, NULL, 0, 0, 31, 26, 0, 0, 0, '2008-03-14T23:25:36Z', '2023-05-16T00:43:04Z', 'https://avatars.githubusercontent.com/u/3130?v=4', 'https://api.github.com/users/Cale', 'https://github.com/Cale', 'https://api.github.com/users/Cale/followers', 'https://api.github.com/users/Cale/following', 'https://api.github.com/users/Cale/gists', 'https://api.github.com/users/Cale/starred', 'https://api.github.com/users/Cale/repos', 'https://api.github.com/users/Cale/events', 'https://api.github.com/users/Cale/received_events', 0); +INSERT INTO `developer` VALUES (3131, 'sloser', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-15T00:09:05Z', '2024-10-08T07:50:51Z', 'https://avatars.githubusercontent.com/u/3131?v=4', 'https://api.github.com/users/sloser', 'https://github.com/sloser', 'https://api.github.com/users/sloser/followers', 'https://api.github.com/users/sloser/following', 'https://api.github.com/users/sloser/gists', 'https://api.github.com/users/sloser/starred', 'https://api.github.com/users/sloser/repos', 'https://api.github.com/users/sloser/events', 'https://api.github.com/users/sloser/received_events', 0); +INSERT INTO `developer` VALUES (3132, 'andreastextor', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-15T00:19:40Z', '2019-12-29T19:36:57Z', 'https://avatars.githubusercontent.com/u/3132?v=4', 'https://api.github.com/users/andreastextor', 'https://github.com/andreastextor', 'https://api.github.com/users/andreastextor/followers', 'https://api.github.com/users/andreastextor/following', 'https://api.github.com/users/andreastextor/gists', 'https://api.github.com/users/andreastextor/starred', 'https://api.github.com/users/andreastextor/repos', 'https://api.github.com/users/andreastextor/events', 'https://api.github.com/users/andreastextor/received_events', 0); +INSERT INTO `developer` VALUES (3133, 'don', 'C', 5.010503952938372, 0, 0, 0, 0, 0, 0, 'Don Coleman', 'Chariot Solutions', 'http://twitter.com/doncoleman', 'Philadelphia, PA', 'don.coleman@gmail.com', 'true', NULL, NULL, 0, 0, 577, 34, 0, 0, 0, '2008-03-15T04:07:50Z', '2024-10-25T19:05:38Z', 'https://avatars.githubusercontent.com/u/3133?v=4', 'https://api.github.com/users/don', 'https://github.com/don', 'https://api.github.com/users/don/followers', 'https://api.github.com/users/don/following', 'https://api.github.com/users/don/gists', 'https://api.github.com/users/don/starred', 'https://api.github.com/users/don/repos', 'https://api.github.com/users/don/events', 'https://api.github.com/users/don/received_events', 0); +INSERT INTO `developer` VALUES (3134, 'timriley', 'C', 4.204523353807145, 0, 0, 0, 0, 0, 0, 'Tim Riley', '@buildkite', 'https://timriley.info', 'Canberra, Australia', 'tim@riley.id.au', NULL, 'Rubyist. Core team at @hanami, @dry-rb, @rom-rb. Principal Engineer at @buildkite.', NULL, 0, 0, 530, 98, 0, 0, 0, '2008-03-15T04:47:05Z', '2024-10-19T12:02:47Z', 'https://avatars.githubusercontent.com/u/3134?v=4', 'https://api.github.com/users/timriley', 'https://github.com/timriley', 'https://api.github.com/users/timriley/followers', 'https://api.github.com/users/timriley/following', 'https://api.github.com/users/timriley/gists', 'https://api.github.com/users/timriley/starred', 'https://api.github.com/users/timriley/repos', 'https://api.github.com/users/timriley/events', 'https://api.github.com/users/timriley/received_events', 0); +INSERT INTO `developer` VALUES (3135, 'neilmcg', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-15T05:44:37Z', '2024-02-22T01:38:50Z', 'https://avatars.githubusercontent.com/u/3135?v=4', 'https://api.github.com/users/neilmcg', 'https://github.com/neilmcg', 'https://api.github.com/users/neilmcg/followers', 'https://api.github.com/users/neilmcg/following', 'https://api.github.com/users/neilmcg/gists', 'https://api.github.com/users/neilmcg/starred', 'https://api.github.com/users/neilmcg/repos', 'https://api.github.com/users/neilmcg/events', 'https://api.github.com/users/neilmcg/received_events', 0); +INSERT INTO `developer` VALUES (3136, 'dpb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Bainton', NULL, '', 'Finland', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-15T09:31:27Z', '2019-02-03T18:50:14Z', 'https://avatars.githubusercontent.com/u/3136?v=4', 'https://api.github.com/users/dpb', 'https://github.com/dpb', 'https://api.github.com/users/dpb/followers', 'https://api.github.com/users/dpb/following', 'https://api.github.com/users/dpb/gists', 'https://api.github.com/users/dpb/starred', 'https://api.github.com/users/dpb/repos', 'https://api.github.com/users/dpb/events', 'https://api.github.com/users/dpb/received_events', 0); +INSERT INTO `developer` VALUES (3137, 'hknylmzx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-15T09:57:11Z', '2020-04-24T23:56:28Z', 'https://avatars.githubusercontent.com/u/3137?v=4', 'https://api.github.com/users/hknylmzx', 'https://github.com/hknylmzx', 'https://api.github.com/users/hknylmzx/followers', 'https://api.github.com/users/hknylmzx/following', 'https://api.github.com/users/hknylmzx/gists', 'https://api.github.com/users/hknylmzx/starred', 'https://api.github.com/users/hknylmzx/repos', 'https://api.github.com/users/hknylmzx/events', 'https://api.github.com/users/hknylmzx/received_events', 0); +INSERT INTO `developer` VALUES (3138, 'ryuji', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryuji Matsumura', 'MGIKEN LLC', 'https://www.mgiken.com/', 'Tokyo, Japan', 'rm@mgiken.com', NULL, NULL, 'mgiken', 0, 0, 17, 0, 0, 0, 0, '2008-03-15T10:55:10Z', '2024-05-31T07:42:02Z', 'https://avatars.githubusercontent.com/u/3138?v=4', 'https://api.github.com/users/ryuji', 'https://github.com/ryuji', 'https://api.github.com/users/ryuji/followers', 'https://api.github.com/users/ryuji/following', 'https://api.github.com/users/ryuji/gists', 'https://api.github.com/users/ryuji/starred', 'https://api.github.com/users/ryuji/repos', 'https://api.github.com/users/ryuji/events', 'https://api.github.com/users/ryuji/received_events', 0); +INSERT INTO `developer` VALUES (3139, 'hdiogenes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Humberto Diógenes', 'GetStream.io', '', 'Natal, RN - Brazil', 'hdiogenes@gmail.com', 'true', 'Python developer since 2003.\r\nCo-founder @EvoluxBR', 'hdiogenes', 0, 0, 49, 22, 0, 0, 0, '2008-03-15T13:03:46Z', '2024-10-18T11:24:29Z', 'https://avatars.githubusercontent.com/u/3139?v=4', 'https://api.github.com/users/hdiogenes', 'https://github.com/hdiogenes', 'https://api.github.com/users/hdiogenes/followers', 'https://api.github.com/users/hdiogenes/following', 'https://api.github.com/users/hdiogenes/gists', 'https://api.github.com/users/hdiogenes/starred', 'https://api.github.com/users/hdiogenes/repos', 'https://api.github.com/users/hdiogenes/events', 'https://api.github.com/users/hdiogenes/received_events', 0); +INSERT INTO `developer` VALUES (3140, 'AmkG', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alan Manuel K. Gloria', NULL, '', '未知', 'almkglor@gmail.com', NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2008-03-15T13:19:48Z', '2021-03-09T13:49:41Z', 'https://avatars.githubusercontent.com/u/3140?v=4', 'https://api.github.com/users/AmkG', 'https://github.com/AmkG', 'https://api.github.com/users/AmkG/followers', 'https://api.github.com/users/AmkG/following', 'https://api.github.com/users/AmkG/gists', 'https://api.github.com/users/AmkG/starred', 'https://api.github.com/users/AmkG/repos', 'https://api.github.com/users/AmkG/events', 'https://api.github.com/users/AmkG/received_events', 0); +INSERT INTO `developer` VALUES (3141, 'crybaby-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-15T14:16:07Z', '2020-10-27T01:45:40Z', 'https://avatars.githubusercontent.com/u/3141?v=4', 'https://api.github.com/users/crybaby-zz', 'https://github.com/crybaby-zz', 'https://api.github.com/users/crybaby-zz/followers', 'https://api.github.com/users/crybaby-zz/following', 'https://api.github.com/users/crybaby-zz/gists', 'https://api.github.com/users/crybaby-zz/starred', 'https://api.github.com/users/crybaby-zz/repos', 'https://api.github.com/users/crybaby-zz/events', 'https://api.github.com/users/crybaby-zz/received_events', 0); +INSERT INTO `developer` VALUES (3142, 'jlsync', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Lee', 'Rotaville.com', 'https://workroster.com/', 'London, UK', NULL, NULL, '@Rotaville @WorkRoster @ShiftApp-com ', 'jlsync', 0, 0, 37, 19, 0, 0, 0, '2008-03-15T15:37:38Z', '2024-04-30T18:47:13Z', 'https://avatars.githubusercontent.com/u/3142?v=4', 'https://api.github.com/users/jlsync', 'https://github.com/jlsync', 'https://api.github.com/users/jlsync/followers', 'https://api.github.com/users/jlsync/following', 'https://api.github.com/users/jlsync/gists', 'https://api.github.com/users/jlsync/starred', 'https://api.github.com/users/jlsync/repos', 'https://api.github.com/users/jlsync/events', 'https://api.github.com/users/jlsync/received_events', 0); +INSERT INTO `developer` VALUES (3143, 'problem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Grayson Stebbins', NULL, 'metricinsights.com', 'Southern Oregon', NULL, NULL, NULL, NULL, 0, 0, 20, 25, 0, 0, 0, '2008-03-15T16:15:39Z', '2024-07-29T02:24:42Z', 'https://avatars.githubusercontent.com/u/3143?v=4', 'https://api.github.com/users/problem', 'https://github.com/problem', 'https://api.github.com/users/problem/followers', 'https://api.github.com/users/problem/following', 'https://api.github.com/users/problem/gists', 'https://api.github.com/users/problem/starred', 'https://api.github.com/users/problem/repos', 'https://api.github.com/users/problem/events', 'https://api.github.com/users/problem/received_events', 0); +INSERT INTO `developer` VALUES (3145, 'offby1', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Hanchrow', NULL, '', 'Seattle, WA', 'eric.hanchrow@gmail.com', NULL, NULL, NULL, 0, 0, 76, 45, 0, 0, 0, '2008-03-15T16:50:10Z', '2024-09-29T14:00:58Z', 'https://avatars.githubusercontent.com/u/3145?v=4', 'https://api.github.com/users/offby1', 'https://github.com/offby1', 'https://api.github.com/users/offby1/followers', 'https://api.github.com/users/offby1/following', 'https://api.github.com/users/offby1/gists', 'https://api.github.com/users/offby1/starred', 'https://api.github.com/users/offby1/repos', 'https://api.github.com/users/offby1/events', 'https://api.github.com/users/offby1/received_events', 0); +INSERT INTO `developer` VALUES (3146, 'michaelmistretta', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-15T16:57:05Z', '2022-03-14T17:47:02Z', 'https://avatars.githubusercontent.com/u/3146?v=4', 'https://api.github.com/users/michaelmistretta', 'https://github.com/michaelmistretta', 'https://api.github.com/users/michaelmistretta/followers', 'https://api.github.com/users/michaelmistretta/following', 'https://api.github.com/users/michaelmistretta/gists', 'https://api.github.com/users/michaelmistretta/starred', 'https://api.github.com/users/michaelmistretta/repos', 'https://api.github.com/users/michaelmistretta/events', 'https://api.github.com/users/michaelmistretta/received_events', 0); +INSERT INTO `developer` VALUES (3147, 'psychs', 'C', 3.278503090975523, 0, 0, 0, 0, 0, 0, 'Satoshi Nakagawa', NULL, 'http://limechat.net/psychs', 'San Francisco Bay Area', 'psychs@limechat.net', 'true', NULL, NULL, 0, 0, 476, 50, 0, 0, 0, '2008-03-15T17:01:59Z', '2024-09-04T07:54:04Z', 'https://avatars.githubusercontent.com/u/3147?v=4', 'https://api.github.com/users/psychs', 'https://github.com/psychs', 'https://api.github.com/users/psychs/followers', 'https://api.github.com/users/psychs/following', 'https://api.github.com/users/psychs/gists', 'https://api.github.com/users/psychs/starred', 'https://api.github.com/users/psychs/repos', 'https://api.github.com/users/psychs/events', 'https://api.github.com/users/psychs/received_events', 0); +INSERT INTO `developer` VALUES (3148, 'kostas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kostas', NULL, '', 'Canada', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-15T17:20:48Z', '2024-09-24T22:33:09Z', 'https://avatars.githubusercontent.com/u/3148?v=4', 'https://api.github.com/users/kostas', 'https://github.com/kostas', 'https://api.github.com/users/kostas/followers', 'https://api.github.com/users/kostas/following', 'https://api.github.com/users/kostas/gists', 'https://api.github.com/users/kostas/starred', 'https://api.github.com/users/kostas/repos', 'https://api.github.com/users/kostas/events', 'https://api.github.com/users/kostas/received_events', 0); +INSERT INTO `developer` VALUES (3149, 'absz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-15T17:47:06Z', '2016-02-26T22:34:55Z', 'https://avatars.githubusercontent.com/u/3149?v=4', 'https://api.github.com/users/absz', 'https://github.com/absz', 'https://api.github.com/users/absz/followers', 'https://api.github.com/users/absz/following', 'https://api.github.com/users/absz/gists', 'https://api.github.com/users/absz/starred', 'https://api.github.com/users/absz/repos', 'https://api.github.com/users/absz/events', 'https://api.github.com/users/absz/received_events', 0); +INSERT INTO `developer` VALUES (3150, 'shlomif', 'C', 1.323571424997656, 0, 0, 0, 0, 0, 0, 'Shlomi Fish', NULL, 'http://www.shlomifish.org/', 'Tel Aviv, Israel', 'shlomif@shlomifish.org', 'true', 'I\'m an Israeli software developer, writer and humorist. You can learn more about me from the pages of my home site (link below).', 'shlomif', 0, 0, 362, 68, 0, 0, 0, '2008-03-15T18:36:33Z', '2024-05-13T19:57:07Z', 'https://avatars.githubusercontent.com/u/3150?v=4', 'https://api.github.com/users/shlomif', 'https://github.com/shlomif', 'https://api.github.com/users/shlomif/followers', 'https://api.github.com/users/shlomif/following', 'https://api.github.com/users/shlomif/gists', 'https://api.github.com/users/shlomif/starred', 'https://api.github.com/users/shlomif/repos', 'https://api.github.com/users/shlomif/events', 'https://api.github.com/users/shlomif/received_events', 0); +INSERT INTO `developer` VALUES (3152, 'jasonmccay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason McCay', '@enveloophq ', 'http://www.jasonmccay.com', 'The South', 'jason.mccay@gmail.com', NULL, 'Former founder of Compose (now an IBM company). YC 2011. Made databases fun to scale. Now doing some other things. Did I mention I have 5 kids?', 'jasonmccay', 0, 0, 14, 7, 0, 0, 0, '2008-03-15T19:27:05Z', '2024-10-04T22:47:11Z', 'https://avatars.githubusercontent.com/u/3152?v=4', 'https://api.github.com/users/jasonmccay', 'https://github.com/jasonmccay', 'https://api.github.com/users/jasonmccay/followers', 'https://api.github.com/users/jasonmccay/following', 'https://api.github.com/users/jasonmccay/gists', 'https://api.github.com/users/jasonmccay/starred', 'https://api.github.com/users/jasonmccay/repos', 'https://api.github.com/users/jasonmccay/events', 'https://api.github.com/users/jasonmccay/received_events', 0); +INSERT INTO `developer` VALUES (3153, 'BenWard', 'C', 0.1574718347652434, 0, 0, 0, 0, 0, 0, 'Ben Ward', 'Caire', 'http://benward.uk', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 294, 89, 0, 0, 0, '2008-03-15T21:40:05Z', '2024-07-16T03:38:54Z', 'https://avatars.githubusercontent.com/u/3153?v=4', 'https://api.github.com/users/BenWard', 'https://github.com/BenWard', 'https://api.github.com/users/BenWard/followers', 'https://api.github.com/users/BenWard/following', 'https://api.github.com/users/BenWard/gists', 'https://api.github.com/users/BenWard/starred', 'https://api.github.com/users/BenWard/repos', 'https://api.github.com/users/BenWard/events', 'https://api.github.com/users/BenWard/received_events', 0); +INSERT INTO `developer` VALUES (3154, 'johnd', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Daniels', NULL, 'http://semantici.st', 'Edinburgh, Scotland', NULL, 'true', NULL, NULL, 0, 0, 36, 4, 0, 0, 0, '2008-03-15T22:04:07Z', '2024-10-23T17:03:43Z', 'https://avatars.githubusercontent.com/u/3154?v=4', 'https://api.github.com/users/johnd', 'https://github.com/johnd', 'https://api.github.com/users/johnd/followers', 'https://api.github.com/users/johnd/following', 'https://api.github.com/users/johnd/gists', 'https://api.github.com/users/johnd/starred', 'https://api.github.com/users/johnd/repos', 'https://api.github.com/users/johnd/events', 'https://api.github.com/users/johnd/received_events', 0); +INSERT INTO `developer` VALUES (3155, 'pudney', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean Pudney', NULL, '', 'San Francisco, CA', 'pudney@gmail.com', NULL, NULL, NULL, 0, 0, 11, 3, 0, 0, 0, '2008-03-15T22:12:44Z', '2019-12-19T23:19:35Z', 'https://avatars.githubusercontent.com/u/3155?v=4', 'https://api.github.com/users/pudney', 'https://github.com/pudney', 'https://api.github.com/users/pudney/followers', 'https://api.github.com/users/pudney/following', 'https://api.github.com/users/pudney/gists', 'https://api.github.com/users/pudney/starred', 'https://api.github.com/users/pudney/repos', 'https://api.github.com/users/pudney/events', 'https://api.github.com/users/pudney/received_events', 0); +INSERT INTO `developer` VALUES (3156, 'ajz', 'C', 0, 0, 0, 0, 0, 0, 0, 'AJ Zmudosky', NULL, '', 'San Francisco Bay Area', NULL, NULL, NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2008-03-16T00:11:06Z', '2024-11-03T12:19:30Z', 'https://avatars.githubusercontent.com/u/3156?v=4', 'https://api.github.com/users/ajz', 'https://github.com/ajz', 'https://api.github.com/users/ajz/followers', 'https://api.github.com/users/ajz/following', 'https://api.github.com/users/ajz/gists', 'https://api.github.com/users/ajz/starred', 'https://api.github.com/users/ajz/repos', 'https://api.github.com/users/ajz/events', 'https://api.github.com/users/ajz/received_events', 0); +INSERT INTO `developer` VALUES (3157, 'mikepence', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Pence', NULL, '', 'Florida', NULL, NULL, NULL, NULL, 0, 0, 30, 52, 0, 0, 0, '2008-03-16T03:20:36Z', '2024-10-17T15:13:31Z', 'https://avatars.githubusercontent.com/u/3157?v=4', 'https://api.github.com/users/mikepence', 'https://github.com/mikepence', 'https://api.github.com/users/mikepence/followers', 'https://api.github.com/users/mikepence/following', 'https://api.github.com/users/mikepence/gists', 'https://api.github.com/users/mikepence/starred', 'https://api.github.com/users/mikepence/repos', 'https://api.github.com/users/mikepence/events', 'https://api.github.com/users/mikepence/received_events', 0); +INSERT INTO `developer` VALUES (3158, 'threeve', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Foreman', NULL, '', 'Chicago', NULL, NULL, NULL, NULL, 0, 0, 26, 22, 0, 0, 0, '2008-03-16T04:57:44Z', '2024-04-13T04:04:14Z', 'https://avatars.githubusercontent.com/u/3158?v=4', 'https://api.github.com/users/threeve', 'https://github.com/threeve', 'https://api.github.com/users/threeve/followers', 'https://api.github.com/users/threeve/following', 'https://api.github.com/users/threeve/gists', 'https://api.github.com/users/threeve/starred', 'https://api.github.com/users/threeve/repos', 'https://api.github.com/users/threeve/events', 'https://api.github.com/users/threeve/received_events', 0); +INSERT INTO `developer` VALUES (3159, 'bugQ', 'C', 0, 0, 0, 0, 0, 0, 0, 'bug Q', NULL, 'https://windlestraw.productions', '未知', 'bug@windlestraw.productions', 'true', NULL, 'bugQ', 0, 0, 11, 8, 0, 0, 0, '2008-03-16T05:17:38Z', '2024-11-03T06:15:32Z', 'https://avatars.githubusercontent.com/u/3159?v=4', 'https://api.github.com/users/bugQ', 'https://github.com/bugQ', 'https://api.github.com/users/bugQ/followers', 'https://api.github.com/users/bugQ/following', 'https://api.github.com/users/bugQ/gists', 'https://api.github.com/users/bugQ/starred', 'https://api.github.com/users/bugQ/repos', 'https://api.github.com/users/bugQ/events', 'https://api.github.com/users/bugQ/received_events', 0); +INSERT INTO `developer` VALUES (3160, 'deancameron', 'C', 0, 0, 0, 0, 0, 0, 0, 'dean cameron', 'deancameron.com', 'deancameron.com', 'node 666', 'dean@mightycheese.com', 'true', 'i hate you and programming and this is death to me.', NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-16T05:34:57Z', '2020-05-19T19:21:10Z', 'https://avatars.githubusercontent.com/u/3160?v=4', 'https://api.github.com/users/deancameron', 'https://github.com/deancameron', 'https://api.github.com/users/deancameron/followers', 'https://api.github.com/users/deancameron/following', 'https://api.github.com/users/deancameron/gists', 'https://api.github.com/users/deancameron/starred', 'https://api.github.com/users/deancameron/repos', 'https://api.github.com/users/deancameron/events', 'https://api.github.com/users/deancameron/received_events', 0); +INSERT INTO `developer` VALUES (3161, 'akkartik', 'C', 1.5636507523984469, 0, 0, 0, 0, 0, 0, 'Kartik Agaram', NULL, 'akkartik.name/about', 'San Francisco', NULL, NULL, 'Building simple, low-maintenance programs that reward curiosity about their internals.', NULL, 0, 0, 376, 1, 0, 0, 0, '2008-03-16T08:46:53Z', '2024-09-23T13:26:46Z', 'https://avatars.githubusercontent.com/u/3161?v=4', 'https://api.github.com/users/akkartik', 'https://github.com/akkartik', 'https://api.github.com/users/akkartik/followers', 'https://api.github.com/users/akkartik/following', 'https://api.github.com/users/akkartik/gists', 'https://api.github.com/users/akkartik/starred', 'https://api.github.com/users/akkartik/repos', 'https://api.github.com/users/akkartik/events', 'https://api.github.com/users/akkartik/received_events', 0); +INSERT INTO `developer` VALUES (3162, 'nicoulaj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julien Nicoulaud', 'Ledger', 'https://linkedin.com/in/nicoulaj', 'France', NULL, 'true', NULL, NULL, 0, 0, 154, 58, 0, 0, 0, '2008-03-16T10:26:59Z', '2024-10-20T11:21:02Z', 'https://avatars.githubusercontent.com/u/3162?v=4', 'https://api.github.com/users/nicoulaj', 'https://github.com/nicoulaj', 'https://api.github.com/users/nicoulaj/followers', 'https://api.github.com/users/nicoulaj/following', 'https://api.github.com/users/nicoulaj/gists', 'https://api.github.com/users/nicoulaj/starred', 'https://api.github.com/users/nicoulaj/repos', 'https://api.github.com/users/nicoulaj/events', 'https://api.github.com/users/nicoulaj/received_events', 0); +INSERT INTO `developer` VALUES (3163, 'darksiren', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dark Siren Sally', NULL, '', 'The Tower Between Worlds', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-16T11:09:21Z', '2021-01-10T00:21:32Z', 'https://avatars.githubusercontent.com/u/3163?v=4', 'https://api.github.com/users/darksiren', 'https://github.com/darksiren', 'https://api.github.com/users/darksiren/followers', 'https://api.github.com/users/darksiren/following', 'https://api.github.com/users/darksiren/gists', 'https://api.github.com/users/darksiren/starred', 'https://api.github.com/users/darksiren/repos', 'https://api.github.com/users/darksiren/events', 'https://api.github.com/users/darksiren/received_events', 0); +INSERT INTO `developer` VALUES (3164, 'moraes', 'C', 0, 0, 0, 0, 0, 0, 0, 'rodrigo moraes', NULL, '', 'Brazil', NULL, NULL, NULL, NULL, 0, 0, 268, 10, 0, 0, 0, '2008-03-16T14:36:44Z', '2017-08-14T19:39:08Z', 'https://avatars.githubusercontent.com/u/3164?v=4', 'https://api.github.com/users/moraes', 'https://github.com/moraes', 'https://api.github.com/users/moraes/followers', 'https://api.github.com/users/moraes/following', 'https://api.github.com/users/moraes/gists', 'https://api.github.com/users/moraes/starred', 'https://api.github.com/users/moraes/repos', 'https://api.github.com/users/moraes/events', 'https://api.github.com/users/moraes/received_events', 0); +INSERT INTO `developer` VALUES (3165, 'pwkoolj', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-16T15:27:55Z', '2022-01-28T20:08:16Z', 'https://avatars.githubusercontent.com/u/3165?v=4', 'https://api.github.com/users/pwkoolj', 'https://github.com/pwkoolj', 'https://api.github.com/users/pwkoolj/followers', 'https://api.github.com/users/pwkoolj/following', 'https://api.github.com/users/pwkoolj/gists', 'https://api.github.com/users/pwkoolj/starred', 'https://api.github.com/users/pwkoolj/repos', 'https://api.github.com/users/pwkoolj/events', 'https://api.github.com/users/pwkoolj/received_events', 0); +INSERT INTO `developer` VALUES (3166, 'leeky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leeky', '@CitizensAdvice', 'https://leeky.uk', 'Stowmarket, UK', NULL, NULL, NULL, NULL, 0, 0, 41, 11, 0, 0, 0, '2008-03-16T16:07:20Z', '2024-09-27T08:43:56Z', 'https://avatars.githubusercontent.com/u/3166?v=4', 'https://api.github.com/users/leeky', 'https://github.com/leeky', 'https://api.github.com/users/leeky/followers', 'https://api.github.com/users/leeky/following', 'https://api.github.com/users/leeky/gists', 'https://api.github.com/users/leeky/starred', 'https://api.github.com/users/leeky/repos', 'https://api.github.com/users/leeky/events', 'https://api.github.com/users/leeky/received_events', 0); +INSERT INTO `developer` VALUES (3167, 'slashdotdash', 'C', 1.9237697434996333, 0, 0, 0, 0, 0, 0, 'Ben Smith', 'Binary Consulting ', 'http://10consulting.com/', 'UK', NULL, 'true', '\r\n Creator of @commanded CQRS/ES for Elixir.\r\n', 'slashdotdash', 0, 0, 397, 135, 0, 0, 0, '2008-03-16T18:06:10Z', '2024-10-31T07:04:17Z', 'https://avatars.githubusercontent.com/u/3167?v=4', 'https://api.github.com/users/slashdotdash', 'https://github.com/slashdotdash', 'https://api.github.com/users/slashdotdash/followers', 'https://api.github.com/users/slashdotdash/following', 'https://api.github.com/users/slashdotdash/gists', 'https://api.github.com/users/slashdotdash/starred', 'https://api.github.com/users/slashdotdash/repos', 'https://api.github.com/users/slashdotdash/events', 'https://api.github.com/users/slashdotdash/received_events', 0); +INSERT INTO `developer` VALUES (3168, 'riggasconi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 39, 0, 0, 0, '2008-03-16T18:33:13Z', '2022-06-21T15:23:49Z', 'https://avatars.githubusercontent.com/u/3168?v=4', 'https://api.github.com/users/riggasconi', 'https://github.com/riggasconi', 'https://api.github.com/users/riggasconi/followers', 'https://api.github.com/users/riggasconi/following', 'https://api.github.com/users/riggasconi/gists', 'https://api.github.com/users/riggasconi/starred', 'https://api.github.com/users/riggasconi/repos', 'https://api.github.com/users/riggasconi/events', 'https://api.github.com/users/riggasconi/received_events', 0); +INSERT INTO `developer` VALUES (3169, 'floehopper', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Mead', '@freerange', 'https://jamesmead.org/', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 79, 40, 0, 0, 0, '2008-03-16T18:37:19Z', '2024-10-24T11:19:57Z', 'https://avatars.githubusercontent.com/u/3169?v=4', 'https://api.github.com/users/floehopper', 'https://github.com/floehopper', 'https://api.github.com/users/floehopper/followers', 'https://api.github.com/users/floehopper/following', 'https://api.github.com/users/floehopper/gists', 'https://api.github.com/users/floehopper/starred', 'https://api.github.com/users/floehopper/repos', 'https://api.github.com/users/floehopper/events', 'https://api.github.com/users/floehopper/received_events', 0); +INSERT INTO `developer` VALUES (3170, 'hpopp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Henry Popp', 'Codedge', 'https://codedge.io', 'Dallas, TX', NULL, NULL, 'Multi-purpose developer that can build for iOS, Android, and Web. I spend my free time doing crazy things like exploring storm drains and spinning fire.', 'henry_popp', 0, 0, 60, 36, 0, 0, 0, '2008-03-16T18:40:08Z', '2024-10-16T12:34:17Z', 'https://avatars.githubusercontent.com/u/3170?v=4', 'https://api.github.com/users/hpopp', 'https://github.com/hpopp', 'https://api.github.com/users/hpopp/followers', 'https://api.github.com/users/hpopp/following', 'https://api.github.com/users/hpopp/gists', 'https://api.github.com/users/hpopp/starred', 'https://api.github.com/users/hpopp/repos', 'https://api.github.com/users/hpopp/events', 'https://api.github.com/users/hpopp/received_events', 0); +INSERT INTO `developer` VALUES (3171, 'zilionis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vaidas Žilionis', 'Surfshark', '', 'Vilnius, Lithuania', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-03-16T18:55:14Z', '2024-09-24T18:22:31Z', 'https://avatars.githubusercontent.com/u/3171?v=4', 'https://api.github.com/users/zilionis', 'https://github.com/zilionis', 'https://api.github.com/users/zilionis/followers', 'https://api.github.com/users/zilionis/following', 'https://api.github.com/users/zilionis/gists', 'https://api.github.com/users/zilionis/starred', 'https://api.github.com/users/zilionis/repos', 'https://api.github.com/users/zilionis/events', 'https://api.github.com/users/zilionis/received_events', 0); +INSERT INTO `developer` VALUES (3172, 'jfernandez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jose Fernandez', 'Netflix', '', 'Denver, CO', NULL, NULL, 'Software Engineer at Netflix', 'jrfernandez', 0, 0, 103, 12, 0, 0, 0, '2008-03-16T19:57:41Z', '2024-08-29T15:08:28Z', 'https://avatars.githubusercontent.com/u/3172?v=4', 'https://api.github.com/users/jfernandez', 'https://github.com/jfernandez', 'https://api.github.com/users/jfernandez/followers', 'https://api.github.com/users/jfernandez/following', 'https://api.github.com/users/jfernandez/gists', 'https://api.github.com/users/jfernandez/starred', 'https://api.github.com/users/jfernandez/repos', 'https://api.github.com/users/jfernandez/events', 'https://api.github.com/users/jfernandez/received_events', 0); +INSERT INTO `developer` VALUES (3173, 'markofkin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-16T20:51:56Z', '2023-11-14T19:13:45Z', 'https://avatars.githubusercontent.com/u/3173?v=4', 'https://api.github.com/users/markofkin', 'https://github.com/markofkin', 'https://api.github.com/users/markofkin/followers', 'https://api.github.com/users/markofkin/following', 'https://api.github.com/users/markofkin/gists', 'https://api.github.com/users/markofkin/starred', 'https://api.github.com/users/markofkin/repos', 'https://api.github.com/users/markofkin/events', 'https://api.github.com/users/markofkin/received_events', 0); +INSERT INTO `developer` VALUES (3174, 'AlexFarran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Farran', 'Freelance', 'www.alexfarran.com', 'Lewes, East Sussex, UK', 'alex@alexfarran.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-16T21:17:16Z', '2022-05-20T13:41:48Z', 'https://avatars.githubusercontent.com/u/3174?v=4', 'https://api.github.com/users/AlexFarran', 'https://github.com/AlexFarran', 'https://api.github.com/users/AlexFarran/followers', 'https://api.github.com/users/AlexFarran/following', 'https://api.github.com/users/AlexFarran/gists', 'https://api.github.com/users/AlexFarran/starred', 'https://api.github.com/users/AlexFarran/repos', 'https://api.github.com/users/AlexFarran/events', 'https://api.github.com/users/AlexFarran/received_events', 0); +INSERT INTO `developer` VALUES (3175, 'melfar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vsevolod Buzinov', NULL, 'http://melfar.wordpress.com/', 'St. Petersburg, Russia', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-16T22:07:40Z', '2023-12-26T18:56:47Z', 'https://avatars.githubusercontent.com/u/3175?v=4', 'https://api.github.com/users/melfar', 'https://github.com/melfar', 'https://api.github.com/users/melfar/followers', 'https://api.github.com/users/melfar/following', 'https://api.github.com/users/melfar/gists', 'https://api.github.com/users/melfar/starred', 'https://api.github.com/users/melfar/repos', 'https://api.github.com/users/melfar/events', 'https://api.github.com/users/melfar/received_events', 0); +INSERT INTO `developer` VALUES (3176, 'dsabados', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Sabados', 'ServiceSeeking.com.au', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-16T23:02:06Z', '2024-09-30T23:13:24Z', 'https://avatars.githubusercontent.com/u/3176?v=4', 'https://api.github.com/users/dsabados', 'https://github.com/dsabados', 'https://api.github.com/users/dsabados/followers', 'https://api.github.com/users/dsabados/following', 'https://api.github.com/users/dsabados/gists', 'https://api.github.com/users/dsabados/starred', 'https://api.github.com/users/dsabados/repos', 'https://api.github.com/users/dsabados/events', 'https://api.github.com/users/dsabados/received_events', 0); +INSERT INTO `developer` VALUES (3177, 'teeter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Teeter', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-16T23:12:24Z', '2020-04-16T23:11:53Z', 'https://avatars.githubusercontent.com/u/3177?v=4', 'https://api.github.com/users/teeter', 'https://github.com/teeter', 'https://api.github.com/users/teeter/followers', 'https://api.github.com/users/teeter/following', 'https://api.github.com/users/teeter/gists', 'https://api.github.com/users/teeter/starred', 'https://api.github.com/users/teeter/repos', 'https://api.github.com/users/teeter/events', 'https://api.github.com/users/teeter/received_events', 0); +INSERT INTO `developer` VALUES (3178, 'invalidrecord', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fares Donaldson', NULL, 'http://e-ninja.co.uk', 'London', 'fares.donaldson@gmail.com', NULL, NULL, NULL, 0, 0, 11, 4, 0, 0, 0, '2008-03-16T23:48:38Z', '2020-11-09T17:15:15Z', 'https://avatars.githubusercontent.com/u/3178?v=4', 'https://api.github.com/users/invalidrecord', 'https://github.com/invalidrecord', 'https://api.github.com/users/invalidrecord/followers', 'https://api.github.com/users/invalidrecord/following', 'https://api.github.com/users/invalidrecord/gists', 'https://api.github.com/users/invalidrecord/starred', 'https://api.github.com/users/invalidrecord/repos', 'https://api.github.com/users/invalidrecord/events', 'https://api.github.com/users/invalidrecord/received_events', 0); +INSERT INTO `developer` VALUES (3179, 'captblanket', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-17T00:16:44Z', '2020-11-06T14:48:47Z', 'https://avatars.githubusercontent.com/u/3179?v=4', 'https://api.github.com/users/captblanket', 'https://github.com/captblanket', 'https://api.github.com/users/captblanket/followers', 'https://api.github.com/users/captblanket/following', 'https://api.github.com/users/captblanket/gists', 'https://api.github.com/users/captblanket/starred', 'https://api.github.com/users/captblanket/repos', 'https://api.github.com/users/captblanket/events', 'https://api.github.com/users/captblanket/received_events', 0); +INSERT INTO `developer` VALUES (3180, 'tastapod', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Terhorst-North', 'Dan North & Associates', 'https://dannorth.net/blog', 'London, UK', NULL, NULL, NULL, 'tastapod', 0, 0, 175, 3, 0, 0, 0, '2008-03-17T01:24:51Z', '2024-10-22T14:50:28Z', 'https://avatars.githubusercontent.com/u/3180?v=4', 'https://api.github.com/users/tastapod', 'https://github.com/tastapod', 'https://api.github.com/users/tastapod/followers', 'https://api.github.com/users/tastapod/following', 'https://api.github.com/users/tastapod/gists', 'https://api.github.com/users/tastapod/starred', 'https://api.github.com/users/tastapod/repos', 'https://api.github.com/users/tastapod/events', 'https://api.github.com/users/tastapod/received_events', 0); +INSERT INTO `developer` VALUES (3181, 'rjs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Singer', NULL, 'feltpresence.com', '未知', 'rjs@hey.com', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-17T01:35:35Z', '2024-10-29T22:50:16Z', 'https://avatars.githubusercontent.com/u/3181?v=4', 'https://api.github.com/users/rjs', 'https://github.com/rjs', 'https://api.github.com/users/rjs/followers', 'https://api.github.com/users/rjs/following', 'https://api.github.com/users/rjs/gists', 'https://api.github.com/users/rjs/starred', 'https://api.github.com/users/rjs/repos', 'https://api.github.com/users/rjs/events', 'https://api.github.com/users/rjs/received_events', 0); +INSERT INTO `developer` VALUES (3182, 'pyodor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Diosdado D. Campo', NULL, '', 'Pale Blue Dot', 'csicebu@gmail.com', 'true', 'Code smithy\r\n', NULL, 0, 0, 12, 1, 0, 0, 0, '2008-03-17T01:37:25Z', '2024-09-09T17:51:24Z', 'https://avatars.githubusercontent.com/u/3182?v=4', 'https://api.github.com/users/pyodor', 'https://github.com/pyodor', 'https://api.github.com/users/pyodor/followers', 'https://api.github.com/users/pyodor/following', 'https://api.github.com/users/pyodor/gists', 'https://api.github.com/users/pyodor/starred', 'https://api.github.com/users/pyodor/repos', 'https://api.github.com/users/pyodor/events', 'https://api.github.com/users/pyodor/received_events', 0); +INSERT INTO `developer` VALUES (3185, 'hemer', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Hemer', 'University of Adelaide', '', 'Adelaide, South Australia', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-03-17T04:12:41Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3185?v=4', 'https://api.github.com/users/hemer', 'https://github.com/hemer', 'https://api.github.com/users/hemer/followers', 'https://api.github.com/users/hemer/following', 'https://api.github.com/users/hemer/gists', 'https://api.github.com/users/hemer/starred', 'https://api.github.com/users/hemer/repos', 'https://api.github.com/users/hemer/events', 'https://api.github.com/users/hemer/received_events', 0); +INSERT INTO `developer` VALUES (3187, 'caleon', 'C', 0, 0, 0, 0, 0, 0, 0, 'caleon', 'Tenjin', '', 'CA', NULL, NULL, NULL, NULL, 0, 0, 20, 18, 0, 0, 0, '2008-03-17T07:07:57Z', '2024-11-04T23:42:34Z', 'https://avatars.githubusercontent.com/u/3187?v=4', 'https://api.github.com/users/caleon', 'https://github.com/caleon', 'https://api.github.com/users/caleon/followers', 'https://api.github.com/users/caleon/following', 'https://api.github.com/users/caleon/gists', 'https://api.github.com/users/caleon/starred', 'https://api.github.com/users/caleon/repos', 'https://api.github.com/users/caleon/events', 'https://api.github.com/users/caleon/received_events', 0); +INSERT INTO `developer` VALUES (3188, 'is', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yu Xin', NULL, '', 'Beijing, China', 'scaner@gmail.com', NULL, NULL, NULL, 0, 0, 47, 51, 0, 0, 0, '2008-03-17T07:17:53Z', '2024-10-21T15:46:49Z', 'https://avatars.githubusercontent.com/u/3188?v=4', 'https://api.github.com/users/is', 'https://github.com/is', 'https://api.github.com/users/is/followers', 'https://api.github.com/users/is/following', 'https://api.github.com/users/is/gists', 'https://api.github.com/users/is/starred', 'https://api.github.com/users/is/repos', 'https://api.github.com/users/is/events', 'https://api.github.com/users/is/received_events', 0); +INSERT INTO `developer` VALUES (3189, 'muonoum', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Stensrud', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 9, 0, 0, 0, '2008-03-17T08:47:09Z', '2024-10-21T06:22:13Z', 'https://avatars.githubusercontent.com/u/3189?v=4', 'https://api.github.com/users/muonoum', 'https://github.com/muonoum', 'https://api.github.com/users/muonoum/followers', 'https://api.github.com/users/muonoum/following', 'https://api.github.com/users/muonoum/gists', 'https://api.github.com/users/muonoum/starred', 'https://api.github.com/users/muonoum/repos', 'https://api.github.com/users/muonoum/events', 'https://api.github.com/users/muonoum/received_events', 0); +INSERT INTO `developer` VALUES (3190, 'rutger-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-17T08:56:36Z', '2016-12-14T20:37:24Z', 'https://avatars.githubusercontent.com/u/3190?v=4', 'https://api.github.com/users/rutger-zz', 'https://github.com/rutger-zz', 'https://api.github.com/users/rutger-zz/followers', 'https://api.github.com/users/rutger-zz/following', 'https://api.github.com/users/rutger-zz/gists', 'https://api.github.com/users/rutger-zz/starred', 'https://api.github.com/users/rutger-zz/repos', 'https://api.github.com/users/rutger-zz/events', 'https://api.github.com/users/rutger-zz/received_events', 0); +INSERT INTO `developer` VALUES (3191, 'xh-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-17T09:15:13Z', '2019-09-18T07:30:45Z', 'https://avatars.githubusercontent.com/u/3191?v=4', 'https://api.github.com/users/xh-zz', 'https://github.com/xh-zz', 'https://api.github.com/users/xh-zz/followers', 'https://api.github.com/users/xh-zz/following', 'https://api.github.com/users/xh-zz/gists', 'https://api.github.com/users/xh-zz/starred', 'https://api.github.com/users/xh-zz/repos', 'https://api.github.com/users/xh-zz/events', 'https://api.github.com/users/xh-zz/received_events', 0); +INSERT INTO `developer` VALUES (3192, 'tomstuart', 'C', 4.10163221349252, 0, 0, 0, 0, 0, 0, 'Tom Stuart', NULL, 'https://tomstu.art/', 'London', 'hi@tomstu.art', NULL, NULL, 'tomstuart', 0, 0, 524, 4, 0, 0, 0, '2008-03-17T09:15:49Z', '2024-10-24T04:51:32Z', 'https://avatars.githubusercontent.com/u/3192?v=4', 'https://api.github.com/users/tomstuart', 'https://github.com/tomstuart', 'https://api.github.com/users/tomstuart/followers', 'https://api.github.com/users/tomstuart/following', 'https://api.github.com/users/tomstuart/gists', 'https://api.github.com/users/tomstuart/starred', 'https://api.github.com/users/tomstuart/repos', 'https://api.github.com/users/tomstuart/events', 'https://api.github.com/users/tomstuart/received_events', 0); +INSERT INTO `developer` VALUES (3193, 'sacado', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'sacado.sacado@gmail.com', NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-17T09:17:46Z', '2017-09-21T12:16:24Z', 'https://avatars.githubusercontent.com/u/3193?v=4', 'https://api.github.com/users/sacado', 'https://github.com/sacado', 'https://api.github.com/users/sacado/followers', 'https://api.github.com/users/sacado/following', 'https://api.github.com/users/sacado/gists', 'https://api.github.com/users/sacado/starred', 'https://api.github.com/users/sacado/repos', 'https://api.github.com/users/sacado/events', 'https://api.github.com/users/sacado/received_events', 0); +INSERT INTO `developer` VALUES (3194, 'keeny', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-17T10:31:52Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3194?v=4', 'https://api.github.com/users/keeny', 'https://github.com/keeny', 'https://api.github.com/users/keeny/followers', 'https://api.github.com/users/keeny/following', 'https://api.github.com/users/keeny/gists', 'https://api.github.com/users/keeny/starred', 'https://api.github.com/users/keeny/repos', 'https://api.github.com/users/keeny/events', 'https://api.github.com/users/keeny/received_events', 0); +INSERT INTO `developer` VALUES (3195, 'mitblan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mitchell Blankenship', NULL, '', 'Middlebury, IN', 'mitblan@gmail.com', NULL, NULL, NULL, 0, 0, 17, 10, 0, 0, 0, '2008-03-17T10:32:07Z', '2024-09-03T22:13:33Z', 'https://avatars.githubusercontent.com/u/3195?v=4', 'https://api.github.com/users/mitblan', 'https://github.com/mitblan', 'https://api.github.com/users/mitblan/followers', 'https://api.github.com/users/mitblan/following', 'https://api.github.com/users/mitblan/gists', 'https://api.github.com/users/mitblan/starred', 'https://api.github.com/users/mitblan/repos', 'https://api.github.com/users/mitblan/events', 'https://api.github.com/users/mitblan/received_events', 0); +INSERT INTO `developer` VALUES (3196, 'newbamboo', 'C', 0, 0, 0, 0, 0, 0, 0, 'New Bamboo', 'http://new-bamboo.co.uk/', 'http://blog.new-bamboo.co.uk/', 'London', 'info@new-bamboo.co.uk', NULL, NULL, NULL, 0, 0, 103, 0, 0, 0, 0, '2008-03-17T11:04:08Z', '2016-02-26T22:34:56Z', 'https://avatars.githubusercontent.com/u/3196?v=4', 'https://api.github.com/users/newbamboo', 'https://github.com/newbamboo', 'https://api.github.com/users/newbamboo/followers', 'https://api.github.com/users/newbamboo/following', 'https://api.github.com/users/newbamboo/gists', 'https://api.github.com/users/newbamboo/starred', 'https://api.github.com/users/newbamboo/repos', 'https://api.github.com/users/newbamboo/events', 'https://api.github.com/users/newbamboo/received_events', 0); +INSERT INTO `developer` VALUES (3197, 'arete', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gerardo Di Iorio', NULL, 'http://gerardodiiorio.blogspot.com/', 'Avellino', 'arete74@gmail.com', 'true', NULL, NULL, 0, 0, 11, 14, 0, 0, 0, '2008-03-17T11:06:41Z', '2024-09-04T13:22:10Z', 'https://avatars.githubusercontent.com/u/3197?v=4', 'https://api.github.com/users/arete', 'https://github.com/arete', 'https://api.github.com/users/arete/followers', 'https://api.github.com/users/arete/following', 'https://api.github.com/users/arete/gists', 'https://api.github.com/users/arete/starred', 'https://api.github.com/users/arete/repos', 'https://api.github.com/users/arete/events', 'https://api.github.com/users/arete/received_events', 0); +INSERT INTO `developer` VALUES (3198, 'cptfinch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Finch', NULL, '', 'Newcastle-upon-Tyne, UK', NULL, NULL, NULL, NULL, 0, 0, 12, 10, 0, 0, 0, '2008-03-17T11:29:04Z', '2024-08-29T16:13:29Z', 'https://avatars.githubusercontent.com/u/3198?v=4', 'https://api.github.com/users/cptfinch', 'https://github.com/cptfinch', 'https://api.github.com/users/cptfinch/followers', 'https://api.github.com/users/cptfinch/following', 'https://api.github.com/users/cptfinch/gists', 'https://api.github.com/users/cptfinch/starred', 'https://api.github.com/users/cptfinch/repos', 'https://api.github.com/users/cptfinch/events', 'https://api.github.com/users/cptfinch/received_events', 0); +INSERT INTO `developer` VALUES (3199, 'davidnarayan', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Narayan', '@homedepot ', '', '未知', 'david_narayan@homedepot.com', NULL, NULL, NULL, 0, 0, 28, 3, 0, 0, 0, '2008-03-17T12:21:24Z', '2024-10-09T21:42:45Z', 'https://avatars.githubusercontent.com/u/3199?v=4', 'https://api.github.com/users/davidnarayan', 'https://github.com/davidnarayan', 'https://api.github.com/users/davidnarayan/followers', 'https://api.github.com/users/davidnarayan/following', 'https://api.github.com/users/davidnarayan/gists', 'https://api.github.com/users/davidnarayan/starred', 'https://api.github.com/users/davidnarayan/repos', 'https://api.github.com/users/davidnarayan/events', 'https://api.github.com/users/davidnarayan/received_events', 0); +INSERT INTO `developer` VALUES (3200, 'rubystream', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dejan Dimic', 'rubystream', '', 'Barcelona, Spain', 'dejan.dimic@gmail.com', 'true', 'Senior Software Hacker with more then 20 years of experience creating amazing stuff.\r\nIf you would need more info go to https://rs.linkedin.com/in/dejandimic ', 'dejan_dimic', 0, 0, 65, 12, 0, 0, 0, '2008-03-17T13:11:46Z', '2024-06-13T22:24:06Z', 'https://avatars.githubusercontent.com/u/3200?v=4', 'https://api.github.com/users/rubystream', 'https://github.com/rubystream', 'https://api.github.com/users/rubystream/followers', 'https://api.github.com/users/rubystream/following', 'https://api.github.com/users/rubystream/gists', 'https://api.github.com/users/rubystream/starred', 'https://api.github.com/users/rubystream/repos', 'https://api.github.com/users/rubystream/events', 'https://api.github.com/users/rubystream/received_events', 0); +INSERT INTO `developer` VALUES (3201, 'nbarthelemy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Barthelemy', 'Siquora, Inc.', 'https://www.linkedin.com/in/nbarthelemy/', 'Minneapolis, MN', NULL, 'true', 'Full Stack Ruby on Rails Developer / Architect with 22+ Years of Experience. Strong personal interests include: AR / VR development.', NULL, 0, 0, 15, 1, 0, 0, 0, '2008-03-17T13:16:43Z', '2024-10-16T15:17:30Z', 'https://avatars.githubusercontent.com/u/3201?v=4', 'https://api.github.com/users/nbarthelemy', 'https://github.com/nbarthelemy', 'https://api.github.com/users/nbarthelemy/followers', 'https://api.github.com/users/nbarthelemy/following', 'https://api.github.com/users/nbarthelemy/gists', 'https://api.github.com/users/nbarthelemy/starred', 'https://api.github.com/users/nbarthelemy/repos', 'https://api.github.com/users/nbarthelemy/events', 'https://api.github.com/users/nbarthelemy/received_events', 0); +INSERT INTO `developer` VALUES (3202, 'aziz', 'C', 2.7126018192450885, 0, 0, 0, 0, 0, 0, 'Allen Bargi', NULL, '', 'Gothenburg, Sweden', NULL, 'true', NULL, NULL, 0, 0, 443, 147, 0, 0, 0, '2008-03-17T13:44:13Z', '2024-10-19T10:15:24Z', 'https://avatars.githubusercontent.com/u/3202?v=4', 'https://api.github.com/users/aziz', 'https://github.com/aziz', 'https://api.github.com/users/aziz/followers', 'https://api.github.com/users/aziz/following', 'https://api.github.com/users/aziz/gists', 'https://api.github.com/users/aziz/starred', 'https://api.github.com/users/aziz/repos', 'https://api.github.com/users/aziz/events', 'https://api.github.com/users/aziz/received_events', 0); +INSERT INTO `developer` VALUES (3203, 'troels', 'C', 0, 0, 0, 0, 0, 0, 0, 'Troels Nielsen', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 14, 0, 0, 0, '2008-03-17T14:06:33Z', '2024-10-14T15:18:00Z', 'https://avatars.githubusercontent.com/u/3203?v=4', 'https://api.github.com/users/troels', 'https://github.com/troels', 'https://api.github.com/users/troels/followers', 'https://api.github.com/users/troels/following', 'https://api.github.com/users/troels/gists', 'https://api.github.com/users/troels/starred', 'https://api.github.com/users/troels/repos', 'https://api.github.com/users/troels/events', 'https://api.github.com/users/troels/received_events', 0); +INSERT INTO `developer` VALUES (3204, 'pepe', 'C', 0.7576701532672206, 0, 0, 0, 0, 0, 0, 'Josef Pospíšil', 'LastStar.eu', 'pan.earth', 'Liberec, Czech Republic', 'josef.pospisil@laststar.eu', 'true', 'Janet\r\n💙💛', 'damnpepe', 0, 0, 329, 140, 0, 0, 0, '2008-03-17T14:13:12Z', '2024-10-30T08:28:00Z', 'https://avatars.githubusercontent.com/u/3204?v=4', 'https://api.github.com/users/pepe', 'https://github.com/pepe', 'https://api.github.com/users/pepe/followers', 'https://api.github.com/users/pepe/following', 'https://api.github.com/users/pepe/gists', 'https://api.github.com/users/pepe/starred', 'https://api.github.com/users/pepe/repos', 'https://api.github.com/users/pepe/events', 'https://api.github.com/users/pepe/received_events', 0); +INSERT INTO `developer` VALUES (3205, 'anjo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 0, 0, 0, 0, '2008-03-17T14:48:37Z', '2019-02-20T19:26:39Z', 'https://avatars.githubusercontent.com/u/3205?v=4', 'https://api.github.com/users/anjo', 'https://github.com/anjo', 'https://api.github.com/users/anjo/followers', 'https://api.github.com/users/anjo/following', 'https://api.github.com/users/anjo/gists', 'https://api.github.com/users/anjo/starred', 'https://api.github.com/users/anjo/repos', 'https://api.github.com/users/anjo/events', 'https://api.github.com/users/anjo/received_events', 0); +INSERT INTO `developer` VALUES (3206, 'gsiener', 'C', 0, 0, 0, 0, 0, 0, 0, 'Graham Siener', NULL, '', 'Brooklyn, NY', 'siener@gmail.com', NULL, NULL, NULL, 0, 0, 50, 133, 0, 0, 0, '2008-03-17T14:48:40Z', '2024-09-22T12:14:28Z', 'https://avatars.githubusercontent.com/u/3206?v=4', 'https://api.github.com/users/gsiener', 'https://github.com/gsiener', 'https://api.github.com/users/gsiener/followers', 'https://api.github.com/users/gsiener/following', 'https://api.github.com/users/gsiener/gists', 'https://api.github.com/users/gsiener/starred', 'https://api.github.com/users/gsiener/repos', 'https://api.github.com/users/gsiener/events', 'https://api.github.com/users/gsiener/received_events', 0); +INSERT INTO `developer` VALUES (3207, 'seanmurph', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean Patrick Murphy', '@element84', 'http://seanmurph.com', 'Nova Scotia, Canada', NULL, 'true', NULL, NULL, 0, 0, 13, 7, 0, 0, 0, '2008-03-17T15:11:48Z', '2024-11-04T18:16:53Z', 'https://avatars.githubusercontent.com/u/3207?v=4', 'https://api.github.com/users/seanmurph', 'https://github.com/seanmurph', 'https://api.github.com/users/seanmurph/followers', 'https://api.github.com/users/seanmurph/following', 'https://api.github.com/users/seanmurph/gists', 'https://api.github.com/users/seanmurph/starred', 'https://api.github.com/users/seanmurph/repos', 'https://api.github.com/users/seanmurph/events', 'https://api.github.com/users/seanmurph/received_events', 0); +INSERT INTO `developer` VALUES (3208, 'tkhozein', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-17T15:32:37Z', '2019-12-21T16:42:52Z', 'https://avatars.githubusercontent.com/u/3208?v=4', 'https://api.github.com/users/tkhozein', 'https://github.com/tkhozein', 'https://api.github.com/users/tkhozein/followers', 'https://api.github.com/users/tkhozein/following', 'https://api.github.com/users/tkhozein/gists', 'https://api.github.com/users/tkhozein/starred', 'https://api.github.com/users/tkhozein/repos', 'https://api.github.com/users/tkhozein/events', 'https://api.github.com/users/tkhozein/received_events', 0); +INSERT INTO `developer` VALUES (3209, 'alto', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thorsten Böttger', NULL, 'http://mt7.de/blog', 'Wellington, New Zealand', 'github@mt7.de', NULL, NULL, NULL, 0, 0, 95, 60, 0, 0, 0, '2008-03-17T15:34:47Z', '2024-10-13T22:35:57Z', 'https://avatars.githubusercontent.com/u/3209?v=4', 'https://api.github.com/users/alto', 'https://github.com/alto', 'https://api.github.com/users/alto/followers', 'https://api.github.com/users/alto/following', 'https://api.github.com/users/alto/gists', 'https://api.github.com/users/alto/starred', 'https://api.github.com/users/alto/repos', 'https://api.github.com/users/alto/events', 'https://api.github.com/users/alto/received_events', 0); +INSERT INTO `developer` VALUES (3210, 'kaipr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kai Pruess', NULL, '', 'Hamburg, Germany', 'kai@shipcloud.io', NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2008-03-17T15:37:35Z', '2024-08-19T07:11:27Z', 'https://avatars.githubusercontent.com/u/3210?v=4', 'https://api.github.com/users/kaipr', 'https://github.com/kaipr', 'https://api.github.com/users/kaipr/followers', 'https://api.github.com/users/kaipr/following', 'https://api.github.com/users/kaipr/gists', 'https://api.github.com/users/kaipr/starred', 'https://api.github.com/users/kaipr/repos', 'https://api.github.com/users/kaipr/events', 'https://api.github.com/users/kaipr/received_events', 0); +INSERT INTO `developer` VALUES (3211, 'gaffers', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Gaffney', 'Crayon Interface', '', 'Michigan', 'gaffneyc@gmail.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-17T15:48:29Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3211?v=4', 'https://api.github.com/users/gaffers', 'https://github.com/gaffers', 'https://api.github.com/users/gaffers/followers', 'https://api.github.com/users/gaffers/following', 'https://api.github.com/users/gaffers/gists', 'https://api.github.com/users/gaffers/starred', 'https://api.github.com/users/gaffers/repos', 'https://api.github.com/users/gaffers/events', 'https://api.github.com/users/gaffers/received_events', 0); +INSERT INTO `developer` VALUES (3212, 'spiegela', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Spiegel', 'Wheels Up', '', 'Kansas City, MO', 'spiegela@gmail.com', NULL, NULL, 'spiegela', 0, 0, 36, 3, 0, 0, 0, '2008-03-17T15:49:34Z', '2024-08-29T18:16:04Z', 'https://avatars.githubusercontent.com/u/3212?v=4', 'https://api.github.com/users/spiegela', 'https://github.com/spiegela', 'https://api.github.com/users/spiegela/followers', 'https://api.github.com/users/spiegela/following', 'https://api.github.com/users/spiegela/gists', 'https://api.github.com/users/spiegela/starred', 'https://api.github.com/users/spiegela/repos', 'https://api.github.com/users/spiegela/events', 'https://api.github.com/users/spiegela/received_events', 0); +INSERT INTO `developer` VALUES (3213, 'steveodom', 'C', 0, 0, 0, 0, 79, 0, 0, 'Steve Odom', 'Simile', 'http://simile.co', 'Austin, TX', 'steve.odom@gmail.com', NULL, NULL, NULL, 0, 0, 29, 6, 0, 0, 0, '2008-03-17T15:50:44Z', '2024-09-15T21:10:15Z', 'https://avatars.githubusercontent.com/u/3213?v=4', 'https://api.github.com/users/steveodom', 'https://github.com/steveodom', 'https://api.github.com/users/steveodom/followers', 'https://api.github.com/users/steveodom/following', 'https://api.github.com/users/steveodom/gists', 'https://api.github.com/users/steveodom/starred', 'https://api.github.com/users/steveodom/repos', 'https://api.github.com/users/steveodom/events', 'https://api.github.com/users/steveodom/received_events', 0); +INSERT INTO `developer` VALUES (3214, 'patmcnally', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pat McNally', NULL, 'patmcnally.com', 'Saint Louis', 'pat.mcnally@gmail.com', 'true', NULL, NULL, 0, 0, 16, 9, 0, 0, 0, '2008-03-17T15:51:03Z', '2024-10-16T23:40:25Z', 'https://avatars.githubusercontent.com/u/3214?v=4', 'https://api.github.com/users/patmcnally', 'https://github.com/patmcnally', 'https://api.github.com/users/patmcnally/followers', 'https://api.github.com/users/patmcnally/following', 'https://api.github.com/users/patmcnally/gists', 'https://api.github.com/users/patmcnally/starred', 'https://api.github.com/users/patmcnally/repos', 'https://api.github.com/users/patmcnally/events', 'https://api.github.com/users/patmcnally/received_events', 0); +INSERT INTO `developer` VALUES (3215, 'tpikonen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Teemu Ikonen', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-03-17T15:52:10Z', '2023-01-04T20:12:41Z', 'https://avatars.githubusercontent.com/u/3215?v=4', 'https://api.github.com/users/tpikonen', 'https://github.com/tpikonen', 'https://api.github.com/users/tpikonen/followers', 'https://api.github.com/users/tpikonen/following', 'https://api.github.com/users/tpikonen/gists', 'https://api.github.com/users/tpikonen/starred', 'https://api.github.com/users/tpikonen/repos', 'https://api.github.com/users/tpikonen/events', 'https://api.github.com/users/tpikonen/received_events', 0); +INSERT INTO `developer` VALUES (3216, 'jaz303', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Frame', NULL, 'http://jasonfra.me', 'Glasgow, Scotland, UK', NULL, NULL, 'Yarr!', 'jaz303', 0, 0, 231, 10, 0, 0, 0, '2008-03-17T15:52:28Z', '2024-10-25T08:49:52Z', 'https://avatars.githubusercontent.com/u/3216?v=4', 'https://api.github.com/users/jaz303', 'https://github.com/jaz303', 'https://api.github.com/users/jaz303/followers', 'https://api.github.com/users/jaz303/following', 'https://api.github.com/users/jaz303/gists', 'https://api.github.com/users/jaz303/starred', 'https://api.github.com/users/jaz303/repos', 'https://api.github.com/users/jaz303/events', 'https://api.github.com/users/jaz303/received_events', 0); +INSERT INTO `developer` VALUES (3217, 'tmarkiewicz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Markiewicz', NULL, 'https://tmarkiewicz.com', 'Ogden, Utah', NULL, NULL, NULL, 'tmarkiewicz', 0, 0, 20, 15, 0, 0, 0, '2008-03-17T15:53:01Z', '2024-03-09T19:14:27Z', 'https://avatars.githubusercontent.com/u/3217?v=4', 'https://api.github.com/users/tmarkiewicz', 'https://github.com/tmarkiewicz', 'https://api.github.com/users/tmarkiewicz/followers', 'https://api.github.com/users/tmarkiewicz/following', 'https://api.github.com/users/tmarkiewicz/gists', 'https://api.github.com/users/tmarkiewicz/starred', 'https://api.github.com/users/tmarkiewicz/repos', 'https://api.github.com/users/tmarkiewicz/events', 'https://api.github.com/users/tmarkiewicz/received_events', 0); +INSERT INTO `developer` VALUES (3218, 'lewism', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-17T15:53:02Z', '2022-03-07T10:05:00Z', 'https://avatars.githubusercontent.com/u/3218?v=4', 'https://api.github.com/users/lewism', 'https://github.com/lewism', 'https://api.github.com/users/lewism/followers', 'https://api.github.com/users/lewism/following', 'https://api.github.com/users/lewism/gists', 'https://api.github.com/users/lewism/starred', 'https://api.github.com/users/lewism/repos', 'https://api.github.com/users/lewism/events', 'https://api.github.com/users/lewism/received_events', 0); +INSERT INTO `developer` VALUES (3219, 'thomasjachmann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Jachmann', '@sumcumo ', 'thomasjachmann.com', 'Hamburg, Germany', 'self@thomasjachmann.com', 'true', NULL, NULL, 0, 0, 38, 2, 0, 0, 0, '2008-03-17T15:53:13Z', '2024-11-04T22:31:31Z', 'https://avatars.githubusercontent.com/u/3219?v=4', 'https://api.github.com/users/thomasjachmann', 'https://github.com/thomasjachmann', 'https://api.github.com/users/thomasjachmann/followers', 'https://api.github.com/users/thomasjachmann/following', 'https://api.github.com/users/thomasjachmann/gists', 'https://api.github.com/users/thomasjachmann/starred', 'https://api.github.com/users/thomasjachmann/repos', 'https://api.github.com/users/thomasjachmann/events', 'https://api.github.com/users/thomasjachmann/received_events', 0); +INSERT INTO `developer` VALUES (3220, 'brendanrankin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 15, 0, 0, 0, '2008-03-17T15:53:35Z', '2024-09-10T17:10:33Z', 'https://avatars.githubusercontent.com/u/3220?v=4', 'https://api.github.com/users/brendanrankin', 'https://github.com/brendanrankin', 'https://api.github.com/users/brendanrankin/followers', 'https://api.github.com/users/brendanrankin/following', 'https://api.github.com/users/brendanrankin/gists', 'https://api.github.com/users/brendanrankin/starred', 'https://api.github.com/users/brendanrankin/repos', 'https://api.github.com/users/brendanrankin/events', 'https://api.github.com/users/brendanrankin/received_events', 0); +INSERT INTO `developer` VALUES (3221, 'dje', 'C', 0, 0, 0, 0, 0, 0, 0, 'Darrin Eden', 'Stealth', 'https://darrineden.com', 'Portland, Oregon, U.S.A.', 'me@darrineden.com', NULL, 'Software composer', NULL, 0, 0, 92, 137, 0, 0, 0, '2008-03-17T15:53:59Z', '2024-11-01T19:37:24Z', 'https://avatars.githubusercontent.com/u/3221?v=4', 'https://api.github.com/users/dje', 'https://github.com/dje', 'https://api.github.com/users/dje/followers', 'https://api.github.com/users/dje/following', 'https://api.github.com/users/dje/gists', 'https://api.github.com/users/dje/starred', 'https://api.github.com/users/dje/repos', 'https://api.github.com/users/dje/events', 'https://api.github.com/users/dje/received_events', 0); +INSERT INTO `developer` VALUES (3222, 'exit91', 'C', 0, 0, 0, 0, 0, 0, 0, 'Long Huynh Huu', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 19, 50, 0, 0, 0, '2008-03-17T15:54:10Z', '2023-10-08T07:27:27Z', 'https://avatars.githubusercontent.com/u/3222?v=4', 'https://api.github.com/users/exit91', 'https://github.com/exit91', 'https://api.github.com/users/exit91/followers', 'https://api.github.com/users/exit91/following', 'https://api.github.com/users/exit91/gists', 'https://api.github.com/users/exit91/starred', 'https://api.github.com/users/exit91/repos', 'https://api.github.com/users/exit91/events', 'https://api.github.com/users/exit91/received_events', 0); +INSERT INTO `developer` VALUES (3223, 'jasonroelofs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Roelofs', '@workos', 'http://jasonroelofs.com', 'Holland, MI', 'jasongroelofs@gmail.com', NULL, NULL, NULL, 0, 0, 83, 13, 0, 0, 0, '2008-03-17T15:54:40Z', '2024-10-14T20:30:34Z', 'https://avatars.githubusercontent.com/u/3223?v=4', 'https://api.github.com/users/jasonroelofs', 'https://github.com/jasonroelofs', 'https://api.github.com/users/jasonroelofs/followers', 'https://api.github.com/users/jasonroelofs/following', 'https://api.github.com/users/jasonroelofs/gists', 'https://api.github.com/users/jasonroelofs/starred', 'https://api.github.com/users/jasonroelofs/repos', 'https://api.github.com/users/jasonroelofs/events', 'https://api.github.com/users/jasonroelofs/received_events', 0); +INSERT INTO `developer` VALUES (3225, 'developernotes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Parker', 'Zetetic, LLC', 'https://developernotes.com', 'Ankeny, IA', NULL, NULL, NULL, NULL, 0, 0, 96, 14, 0, 0, 0, '2008-03-17T15:55:12Z', '2024-11-03T12:19:30Z', 'https://avatars.githubusercontent.com/u/3225?v=4', 'https://api.github.com/users/developernotes', 'https://github.com/developernotes', 'https://api.github.com/users/developernotes/followers', 'https://api.github.com/users/developernotes/following', 'https://api.github.com/users/developernotes/gists', 'https://api.github.com/users/developernotes/starred', 'https://api.github.com/users/developernotes/repos', 'https://api.github.com/users/developernotes/events', 'https://api.github.com/users/developernotes/received_events', 0); +INSERT INTO `developer` VALUES (3226, 'erbmicha', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Erb', NULL, 'https://www.linkedin.com/in/erbmicha/', 'Portland, OR', 'merb@flyingjunction.com', NULL, 'Spartan, 🚁 and ✈️ pilot, code 🐒, and Detroiter loving it in PDX. Former 🏐 player who misses his knees (and his vertical.)', 'erbmicha', 0, 0, 23, 20, 0, 0, 0, '2008-03-17T15:57:26Z', '2024-08-28T22:46:28Z', 'https://avatars.githubusercontent.com/u/3226?v=4', 'https://api.github.com/users/erbmicha', 'https://github.com/erbmicha', 'https://api.github.com/users/erbmicha/followers', 'https://api.github.com/users/erbmicha/following', 'https://api.github.com/users/erbmicha/gists', 'https://api.github.com/users/erbmicha/starred', 'https://api.github.com/users/erbmicha/repos', 'https://api.github.com/users/erbmicha/events', 'https://api.github.com/users/erbmicha/received_events', 0); +INSERT INTO `developer` VALUES (3227, 'gmoothart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gabe Moothart', 'Google', '', 'Portland, OR', 'gmoothart@google.com', NULL, NULL, NULL, 0, 0, 30, 15, 0, 0, 0, '2008-03-17T15:58:20Z', '2024-10-10T01:47:46Z', 'https://avatars.githubusercontent.com/u/3227?v=4', 'https://api.github.com/users/gmoothart', 'https://github.com/gmoothart', 'https://api.github.com/users/gmoothart/followers', 'https://api.github.com/users/gmoothart/following', 'https://api.github.com/users/gmoothart/gists', 'https://api.github.com/users/gmoothart/starred', 'https://api.github.com/users/gmoothart/repos', 'https://api.github.com/users/gmoothart/events', 'https://api.github.com/users/gmoothart/received_events', 0); +INSERT INTO `developer` VALUES (3228, 'alexeypegov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexey Pegov', NULL, 'https://pegov.dev', 'Around the world', 'alexey@pegov.dev', NULL, 'JetBrains (2004-2012), Animatron (2013-2015), ALM Works (2015-2022), Flâneur (2022...)', NULL, 0, 0, 22, 4, 0, 0, 0, '2008-03-17T15:58:22Z', '2024-10-30T16:18:50Z', 'https://avatars.githubusercontent.com/u/3228?v=4', 'https://api.github.com/users/alexeypegov', 'https://github.com/alexeypegov', 'https://api.github.com/users/alexeypegov/followers', 'https://api.github.com/users/alexeypegov/following', 'https://api.github.com/users/alexeypegov/gists', 'https://api.github.com/users/alexeypegov/starred', 'https://api.github.com/users/alexeypegov/repos', 'https://api.github.com/users/alexeypegov/events', 'https://api.github.com/users/alexeypegov/received_events', 0); +INSERT INTO `developer` VALUES (3229, 'statonjr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Larry Staton Jr.', NULL, 'https://www.larrystaton.com', 'Orlando, FL', 'larry@larrystaton.com', 'true', NULL, NULL, 0, 0, 59, 177, 0, 0, 0, '2008-03-17T15:59:35Z', '2024-10-05T13:34:22Z', 'https://avatars.githubusercontent.com/u/3229?v=4', 'https://api.github.com/users/statonjr', 'https://github.com/statonjr', 'https://api.github.com/users/statonjr/followers', 'https://api.github.com/users/statonjr/following', 'https://api.github.com/users/statonjr/gists', 'https://api.github.com/users/statonjr/starred', 'https://api.github.com/users/statonjr/repos', 'https://api.github.com/users/statonjr/events', 'https://api.github.com/users/statonjr/received_events', 0); +INSERT INTO `developer` VALUES (3230, 'wizardwerdna', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Greenberg', NULL, '', 'Napa, CA', 'wizardwerdna@gmail.com', 'true', NULL, NULL, 0, 0, 19, 4, 0, 0, 0, '2008-03-17T16:00:37Z', '2020-01-22T22:17:17Z', 'https://avatars.githubusercontent.com/u/3230?v=4', 'https://api.github.com/users/wizardwerdna', 'https://github.com/wizardwerdna', 'https://api.github.com/users/wizardwerdna/followers', 'https://api.github.com/users/wizardwerdna/following', 'https://api.github.com/users/wizardwerdna/gists', 'https://api.github.com/users/wizardwerdna/starred', 'https://api.github.com/users/wizardwerdna/repos', 'https://api.github.com/users/wizardwerdna/events', 'https://api.github.com/users/wizardwerdna/received_events', 0); +INSERT INTO `developer` VALUES (3231, 'joshrotenberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'josh rotenberg', NULL, 'http://www.joshrotenberg.com', 'albany, ca', 'joshrotenberg@gmail.com', 'true', 'hi, i\'m josh.', NULL, 0, 0, 64, 114, 0, 0, 0, '2008-03-17T16:01:18Z', '2024-10-16T17:33:10Z', 'https://avatars.githubusercontent.com/u/3231?v=4', 'https://api.github.com/users/joshrotenberg', 'https://github.com/joshrotenberg', 'https://api.github.com/users/joshrotenberg/followers', 'https://api.github.com/users/joshrotenberg/following', 'https://api.github.com/users/joshrotenberg/gists', 'https://api.github.com/users/joshrotenberg/starred', 'https://api.github.com/users/joshrotenberg/repos', 'https://api.github.com/users/joshrotenberg/events', 'https://api.github.com/users/joshrotenberg/received_events', 0); +INSERT INTO `developer` VALUES (3233, 'cromulus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Cromie', NULL, 'https://cromie.org', 'Brooklyn, NY', NULL, NULL, NULL, NULL, 0, 0, 31, 16, 0, 0, 0, '2008-03-17T16:03:13Z', '2024-10-04T18:28:27Z', 'https://avatars.githubusercontent.com/u/3233?v=4', 'https://api.github.com/users/cromulus', 'https://github.com/cromulus', 'https://api.github.com/users/cromulus/followers', 'https://api.github.com/users/cromulus/following', 'https://api.github.com/users/cromulus/gists', 'https://api.github.com/users/cromulus/starred', 'https://api.github.com/users/cromulus/repos', 'https://api.github.com/users/cromulus/events', 'https://api.github.com/users/cromulus/received_events', 0); +INSERT INTO `developer` VALUES (3234, 'tyler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tyler McMullen', 'Fastly', 'https://www.fastly.com', 'San Francisco', 'tbmcmullen@gmail.com', NULL, 'Chief Tyler Office at Fastly', NULL, 0, 0, 256, 17, 0, 0, 0, '2008-03-17T16:03:26Z', '2024-11-04T16:48:03Z', 'https://avatars.githubusercontent.com/u/3234?v=4', 'https://api.github.com/users/tyler', 'https://github.com/tyler', 'https://api.github.com/users/tyler/followers', 'https://api.github.com/users/tyler/following', 'https://api.github.com/users/tyler/gists', 'https://api.github.com/users/tyler/starred', 'https://api.github.com/users/tyler/repos', 'https://api.github.com/users/tyler/events', 'https://api.github.com/users/tyler/received_events', 0); +INSERT INTO `developer` VALUES (3235, 'andy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Zaitsev-Zotov', NULL, '', 'Singapore', NULL, NULL, '🏋🏿', NULL, 0, 0, 50, 33, 0, 0, 0, '2008-03-17T16:04:33Z', '2024-11-02T11:06:17Z', 'https://avatars.githubusercontent.com/u/3235?v=4', 'https://api.github.com/users/andy', 'https://github.com/andy', 'https://api.github.com/users/andy/followers', 'https://api.github.com/users/andy/following', 'https://api.github.com/users/andy/gists', 'https://api.github.com/users/andy/starred', 'https://api.github.com/users/andy/repos', 'https://api.github.com/users/andy/events', 'https://api.github.com/users/andy/received_events', 0); +INSERT INTO `developer` VALUES (3236, 'mikea', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Aizatsky', NULL, 'https://docs.google.com/document/d/1W5I0Rpyc1RYRfCtN7Rxyatd3iOvygYBD9e6gBbU1pUw/edit#', 'San Francisco Bay Area, USA', 'mike.aizatsky@gmail.com', 'true', NULL, NULL, 0, 0, 124, 27, 0, 0, 0, '2008-03-17T16:04:49Z', '2024-09-03T13:42:07Z', 'https://avatars.githubusercontent.com/u/3236?v=4', 'https://api.github.com/users/mikea', 'https://github.com/mikea', 'https://api.github.com/users/mikea/followers', 'https://api.github.com/users/mikea/following', 'https://api.github.com/users/mikea/gists', 'https://api.github.com/users/mikea/starred', 'https://api.github.com/users/mikea/repos', 'https://api.github.com/users/mikea/events', 'https://api.github.com/users/mikea/received_events', 0); +INSERT INTO `developer` VALUES (3237, 'asacalow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Asa Calow', NULL, 'http://asacalow.co.uk', 'Manchester, UK', NULL, NULL, NULL, NULL, 0, 0, 42, 11, 0, 0, 0, '2008-03-17T16:05:17Z', '2024-11-01T18:13:52Z', 'https://avatars.githubusercontent.com/u/3237?v=4', 'https://api.github.com/users/asacalow', 'https://github.com/asacalow', 'https://api.github.com/users/asacalow/followers', 'https://api.github.com/users/asacalow/following', 'https://api.github.com/users/asacalow/gists', 'https://api.github.com/users/asacalow/starred', 'https://api.github.com/users/asacalow/repos', 'https://api.github.com/users/asacalow/events', 'https://api.github.com/users/asacalow/received_events', 0); +INSERT INTO `developer` VALUES (3238, 'loe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Loe', NULL, 'https://www.andrewloe.com/', 'Seattle, WA', 'andrew@andrewloe.com', NULL, NULL, NULL, 0, 0, 173, 108, 0, 0, 0, '2008-03-17T16:05:40Z', '2024-08-23T22:51:55Z', 'https://avatars.githubusercontent.com/u/3238?v=4', 'https://api.github.com/users/loe', 'https://github.com/loe', 'https://api.github.com/users/loe/followers', 'https://api.github.com/users/loe/following', 'https://api.github.com/users/loe/gists', 'https://api.github.com/users/loe/starred', 'https://api.github.com/users/loe/repos', 'https://api.github.com/users/loe/events', 'https://api.github.com/users/loe/received_events', 0); +INSERT INTO `developer` VALUES (3239, 'dwalters-zz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Walters', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2008-03-17T16:06:18Z', '2022-04-11T22:44:42Z', 'https://avatars.githubusercontent.com/u/3239?v=4', 'https://api.github.com/users/dwalters-zz', 'https://github.com/dwalters-zz', 'https://api.github.com/users/dwalters-zz/followers', 'https://api.github.com/users/dwalters-zz/following', 'https://api.github.com/users/dwalters-zz/gists', 'https://api.github.com/users/dwalters-zz/starred', 'https://api.github.com/users/dwalters-zz/repos', 'https://api.github.com/users/dwalters-zz/events', 'https://api.github.com/users/dwalters-zz/received_events', 0); +INSERT INTO `developer` VALUES (3240, 'pirxpilot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damian Krzeminski', '@furkot ', 'https://pirxpilot.me', 'United States', 'pirxpilot@furkot.com', NULL, ':sunflower: :skier: :mountain: :boat: :us: :eu: :poland: ', NULL, 0, 0, 68, 7, 0, 0, 0, '2008-03-17T16:07:50Z', '2024-09-11T17:58:11Z', 'https://avatars.githubusercontent.com/u/3240?v=4', 'https://api.github.com/users/pirxpilot', 'https://github.com/pirxpilot', 'https://api.github.com/users/pirxpilot/followers', 'https://api.github.com/users/pirxpilot/following', 'https://api.github.com/users/pirxpilot/gists', 'https://api.github.com/users/pirxpilot/starred', 'https://api.github.com/users/pirxpilot/repos', 'https://api.github.com/users/pirxpilot/events', 'https://api.github.com/users/pirxpilot/received_events', 0); +INSERT INTO `developer` VALUES (3241, 'chriswarren', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Warren', NULL, 'https://chriswarren.net', 'Minneapolis, MN', 'me@chriswarren.net', NULL, NULL, NULL, 0, 0, 35, 5, 0, 0, 0, '2008-03-17T16:09:51Z', '2024-09-17T20:26:54Z', 'https://avatars.githubusercontent.com/u/3241?v=4', 'https://api.github.com/users/chriswarren', 'https://github.com/chriswarren', 'https://api.github.com/users/chriswarren/followers', 'https://api.github.com/users/chriswarren/following', 'https://api.github.com/users/chriswarren/gists', 'https://api.github.com/users/chriswarren/starred', 'https://api.github.com/users/chriswarren/repos', 'https://api.github.com/users/chriswarren/events', 'https://api.github.com/users/chriswarren/received_events', 0); +INSERT INTO `developer` VALUES (3243, 'avdgaag', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arjan van der Gaag', NULL, 'http://arjanvandergaag.nl', 'Helmond, Netherlands', NULL, NULL, 'Dad, historian, developer, team leader and all-round geek. I help companies deliver successful software using lean concepts, self-organisation and emoji.', NULL, 0, 0, 94, 87, 0, 0, 0, '2008-03-17T16:11:31Z', '2024-09-27T16:19:51Z', 'https://avatars.githubusercontent.com/u/3243?v=4', 'https://api.github.com/users/avdgaag', 'https://github.com/avdgaag', 'https://api.github.com/users/avdgaag/followers', 'https://api.github.com/users/avdgaag/following', 'https://api.github.com/users/avdgaag/gists', 'https://api.github.com/users/avdgaag/starred', 'https://api.github.com/users/avdgaag/repos', 'https://api.github.com/users/avdgaag/events', 'https://api.github.com/users/avdgaag/received_events', 0); +INSERT INTO `developer` VALUES (3244, 'robertbrook', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Brook', NULL, 'https://robert-brook.com', 'London', 'robertbrook@fastmail.fm', NULL, 'I live and work in London.', NULL, 0, 0, 83, 227, 0, 0, 0, '2008-03-17T16:11:38Z', '2024-09-18T18:13:28Z', 'https://avatars.githubusercontent.com/u/3244?v=4', 'https://api.github.com/users/robertbrook', 'https://github.com/robertbrook', 'https://api.github.com/users/robertbrook/followers', 'https://api.github.com/users/robertbrook/following', 'https://api.github.com/users/robertbrook/gists', 'https://api.github.com/users/robertbrook/starred', 'https://api.github.com/users/robertbrook/repos', 'https://api.github.com/users/robertbrook/events', 'https://api.github.com/users/robertbrook/received_events', 0); +INSERT INTO `developer` VALUES (3245, 'paolodona', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paolo Dona', NULL, 'http://paolodona.com', 'Dublin, Ireland', 'paolo.dona@gmail.com', NULL, 'Homestay.com CTO and director\r\nNiftySchool.com founder', NULL, 0, 0, 35, 0, 0, 0, 0, '2008-03-17T16:12:51Z', '2024-02-16T08:00:47Z', 'https://avatars.githubusercontent.com/u/3245?v=4', 'https://api.github.com/users/paolodona', 'https://github.com/paolodona', 'https://api.github.com/users/paolodona/followers', 'https://api.github.com/users/paolodona/following', 'https://api.github.com/users/paolodona/gists', 'https://api.github.com/users/paolodona/starred', 'https://api.github.com/users/paolodona/repos', 'https://api.github.com/users/paolodona/events', 'https://api.github.com/users/paolodona/received_events', 0); +INSERT INTO `developer` VALUES (3246, 'barryf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Barry Frost', NULL, 'https://barryfrost.com/', 'UK', 'public@barryfrost.com', NULL, 'Hacking on #indieweb side projects in Ruby and Node. ', 'barryf', 0, 0, 57, 98, 0, 0, 0, '2008-03-17T16:13:07Z', '2024-11-04T09:38:42Z', 'https://avatars.githubusercontent.com/u/3246?v=4', 'https://api.github.com/users/barryf', 'https://github.com/barryf', 'https://api.github.com/users/barryf/followers', 'https://api.github.com/users/barryf/following', 'https://api.github.com/users/barryf/gists', 'https://api.github.com/users/barryf/starred', 'https://api.github.com/users/barryf/repos', 'https://api.github.com/users/barryf/events', 'https://api.github.com/users/barryf/received_events', 0); +INSERT INTO `developer` VALUES (3247, 'fredrikbach', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fredrik Bach', 'Norway Post', '', 'Oslo, Norway', 'fredrikbach@gmail.com', NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-03-17T16:15:53Z', '2024-10-15T18:37:49Z', 'https://avatars.githubusercontent.com/u/3247?v=4', 'https://api.github.com/users/fredrikbach', 'https://github.com/fredrikbach', 'https://api.github.com/users/fredrikbach/followers', 'https://api.github.com/users/fredrikbach/following', 'https://api.github.com/users/fredrikbach/gists', 'https://api.github.com/users/fredrikbach/starred', 'https://api.github.com/users/fredrikbach/repos', 'https://api.github.com/users/fredrikbach/events', 'https://api.github.com/users/fredrikbach/received_events', 0); +INSERT INTO `developer` VALUES (3248, 'zimbatm', 'C', 6.622465151200825, 0, 0, 0, 0, 0, 0, 'Jonas Chevalier', '@numtide ', 'https://zimbatm.com', '[@x1:~] $ ', 'zimbatm@zimbatm.com', NULL, '$ echo Building minimalist shell tools. Obsessed with @NixOS.\r\n', 'zimbatm', 0, 0, 671, 91, 0, 0, 0, '2008-03-17T16:16:50Z', '2024-11-03T11:43:50Z', 'https://avatars.githubusercontent.com/u/3248?v=4', 'https://api.github.com/users/zimbatm', 'https://github.com/zimbatm', 'https://api.github.com/users/zimbatm/followers', 'https://api.github.com/users/zimbatm/following', 'https://api.github.com/users/zimbatm/gists', 'https://api.github.com/users/zimbatm/starred', 'https://api.github.com/users/zimbatm/repos', 'https://api.github.com/users/zimbatm/events', 'https://api.github.com/users/zimbatm/received_events', 0); +INSERT INTO `developer` VALUES (3249, 'ryanfelton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Felton', NULL, 'http://ryanfelton.com', '未知', NULL, 'true', NULL, NULL, 0, 0, 25, 8, 0, 0, 0, '2008-03-17T16:17:17Z', '2024-04-02T18:50:15Z', 'https://avatars.githubusercontent.com/u/3249?v=4', 'https://api.github.com/users/ryanfelton', 'https://github.com/ryanfelton', 'https://api.github.com/users/ryanfelton/followers', 'https://api.github.com/users/ryanfelton/following', 'https://api.github.com/users/ryanfelton/gists', 'https://api.github.com/users/ryanfelton/starred', 'https://api.github.com/users/ryanfelton/repos', 'https://api.github.com/users/ryanfelton/events', 'https://api.github.com/users/ryanfelton/received_events', 0); +INSERT INTO `developer` VALUES (3250, 'bjtitus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandon Titus', '@Automattic', 'titus.io', 'Denver, CO', 'b@titus.io', NULL, NULL, 'bjtitus', 0, 0, 50, 46, 0, 0, 0, '2008-03-17T16:17:53Z', '2024-10-29T13:32:58Z', 'https://avatars.githubusercontent.com/u/3250?v=4', 'https://api.github.com/users/bjtitus', 'https://github.com/bjtitus', 'https://api.github.com/users/bjtitus/followers', 'https://api.github.com/users/bjtitus/following', 'https://api.github.com/users/bjtitus/gists', 'https://api.github.com/users/bjtitus/starred', 'https://api.github.com/users/bjtitus/repos', 'https://api.github.com/users/bjtitus/events', 'https://api.github.com/users/bjtitus/received_events', 0); +INSERT INTO `developer` VALUES (3251, 'apanda', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aurojit Panda', 'NYU', 'https://cs.nyu.edu/~apanda', 'New York, NY', 'aurojit@gmail.com', NULL, NULL, NULL, 0, 0, 101, 2, 0, 0, 0, '2008-03-17T16:20:07Z', '2024-10-10T21:51:00Z', 'https://avatars.githubusercontent.com/u/3251?v=4', 'https://api.github.com/users/apanda', 'https://github.com/apanda', 'https://api.github.com/users/apanda/followers', 'https://api.github.com/users/apanda/following', 'https://api.github.com/users/apanda/gists', 'https://api.github.com/users/apanda/starred', 'https://api.github.com/users/apanda/repos', 'https://api.github.com/users/apanda/events', 'https://api.github.com/users/apanda/received_events', 0); +INSERT INTO `developer` VALUES (3252, 'sgtcoolguy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Williams', '@appcelerator', '', 'Rochester, NY', 'chris.a.williams@gmail.com', 'true', NULL, NULL, 0, 0, 75, 9, 0, 0, 0, '2008-03-17T16:23:47Z', '2024-08-11T01:29:54Z', 'https://avatars.githubusercontent.com/u/3252?v=4', 'https://api.github.com/users/sgtcoolguy', 'https://github.com/sgtcoolguy', 'https://api.github.com/users/sgtcoolguy/followers', 'https://api.github.com/users/sgtcoolguy/following', 'https://api.github.com/users/sgtcoolguy/gists', 'https://api.github.com/users/sgtcoolguy/starred', 'https://api.github.com/users/sgtcoolguy/repos', 'https://api.github.com/users/sgtcoolguy/events', 'https://api.github.com/users/sgtcoolguy/received_events', 0); +INSERT INTO `developer` VALUES (3253, 'pacifists', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rytis Lukosevicius', 'isave.lt, brightstate.eu', 'https://rytis.net', 'Kaunas, Lithuania', 'pacifists@gmail.com', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-03-17T16:26:00Z', '2024-08-01T07:01:38Z', 'https://avatars.githubusercontent.com/u/3253?v=4', 'https://api.github.com/users/pacifists', 'https://github.com/pacifists', 'https://api.github.com/users/pacifists/followers', 'https://api.github.com/users/pacifists/following', 'https://api.github.com/users/pacifists/gists', 'https://api.github.com/users/pacifists/starred', 'https://api.github.com/users/pacifists/repos', 'https://api.github.com/users/pacifists/events', 'https://api.github.com/users/pacifists/received_events', 0); +INSERT INTO `developer` VALUES (3254, 'gustavomzw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gustavo Morozowski', '@Stedi ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 2, 0, 0, 0, '2008-03-17T16:28:05Z', '2024-07-03T16:14:55Z', 'https://avatars.githubusercontent.com/u/3254?v=4', 'https://api.github.com/users/gustavomzw', 'https://github.com/gustavomzw', 'https://api.github.com/users/gustavomzw/followers', 'https://api.github.com/users/gustavomzw/following', 'https://api.github.com/users/gustavomzw/gists', 'https://api.github.com/users/gustavomzw/starred', 'https://api.github.com/users/gustavomzw/repos', 'https://api.github.com/users/gustavomzw/events', 'https://api.github.com/users/gustavomzw/received_events', 0); +INSERT INTO `developer` VALUES (3255, 'westphahl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Westphahl', 'BMW Group', 'http://www.westphahl.net/', 'Memmingen, Germany', 'simon@westphahl.net', NULL, NULL, NULL, 0, 0, 30, 4, 0, 0, 0, '2008-03-17T16:34:19Z', '2024-11-04T11:33:09Z', 'https://avatars.githubusercontent.com/u/3255?v=4', 'https://api.github.com/users/westphahl', 'https://github.com/westphahl', 'https://api.github.com/users/westphahl/followers', 'https://api.github.com/users/westphahl/following', 'https://api.github.com/users/westphahl/gists', 'https://api.github.com/users/westphahl/starred', 'https://api.github.com/users/westphahl/repos', 'https://api.github.com/users/westphahl/events', 'https://api.github.com/users/westphahl/received_events', 0); +INSERT INTO `developer` VALUES (3256, 'tdraegen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Draegen', NULL, '', 'Asheville, NC', 'tim@eudaemon.net', NULL, NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2008-03-17T16:34:21Z', '2024-01-10T16:26:06Z', 'https://avatars.githubusercontent.com/u/3256?v=4', 'https://api.github.com/users/tdraegen', 'https://github.com/tdraegen', 'https://api.github.com/users/tdraegen/followers', 'https://api.github.com/users/tdraegen/following', 'https://api.github.com/users/tdraegen/gists', 'https://api.github.com/users/tdraegen/starred', 'https://api.github.com/users/tdraegen/repos', 'https://api.github.com/users/tdraegen/events', 'https://api.github.com/users/tdraegen/received_events', 0); +INSERT INTO `developer` VALUES (3257, 'stephenhandley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen Handley', 'Hello10', 'https://person.sh', 'Del Mar, CA', NULL, 'true', NULL, NULL, 0, 0, 65, 105, 0, 0, 0, '2008-03-17T16:35:00Z', '2024-04-12T20:46:07Z', 'https://avatars.githubusercontent.com/u/3257?v=4', 'https://api.github.com/users/stephenhandley', 'https://github.com/stephenhandley', 'https://api.github.com/users/stephenhandley/followers', 'https://api.github.com/users/stephenhandley/following', 'https://api.github.com/users/stephenhandley/gists', 'https://api.github.com/users/stephenhandley/starred', 'https://api.github.com/users/stephenhandley/repos', 'https://api.github.com/users/stephenhandley/events', 'https://api.github.com/users/stephenhandley/received_events', 0); +INSERT INTO `developer` VALUES (3258, 'earino', 'C', 0, 0, 0, 0, 0, 0, 0, 'E. Ariño de la Rubia', NULL, 'http://twitter.com/earino', 'Foster City, CA', 'earino@gmail.com', NULL, NULL, NULL, 0, 0, 86, 18, 0, 0, 0, '2008-03-17T16:39:57Z', '2022-12-27T13:53:30Z', 'https://avatars.githubusercontent.com/u/3258?v=4', 'https://api.github.com/users/earino', 'https://github.com/earino', 'https://api.github.com/users/earino/followers', 'https://api.github.com/users/earino/following', 'https://api.github.com/users/earino/gists', 'https://api.github.com/users/earino/starred', 'https://api.github.com/users/earino/repos', 'https://api.github.com/users/earino/events', 'https://api.github.com/users/earino/received_events', 0); +INSERT INTO `developer` VALUES (3259, 'milli', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 6, 0, 0, 0, '2008-03-17T16:42:10Z', '2024-11-04T02:56:52Z', 'https://avatars.githubusercontent.com/u/3259?v=4', 'https://api.github.com/users/milli', 'https://github.com/milli', 'https://api.github.com/users/milli/followers', 'https://api.github.com/users/milli/following', 'https://api.github.com/users/milli/gists', 'https://api.github.com/users/milli/starred', 'https://api.github.com/users/milli/repos', 'https://api.github.com/users/milli/events', 'https://api.github.com/users/milli/received_events', 0); +INSERT INTO `developer` VALUES (3260, 'chronicole', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicole Ramsey', NULL, 'http://codeorcodenot.com', 'Portland', NULL, 'true', NULL, NULL, 0, 0, 27, 4, 0, 0, 0, '2008-03-17T16:43:56Z', '2024-03-02T15:43:54Z', 'https://avatars.githubusercontent.com/u/3260?v=4', 'https://api.github.com/users/chronicole', 'https://github.com/chronicole', 'https://api.github.com/users/chronicole/followers', 'https://api.github.com/users/chronicole/following', 'https://api.github.com/users/chronicole/gists', 'https://api.github.com/users/chronicole/starred', 'https://api.github.com/users/chronicole/repos', 'https://api.github.com/users/chronicole/events', 'https://api.github.com/users/chronicole/received_events', 0); +INSERT INTO `developer` VALUES (3261, 'peterdavidhamilton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Hamilton', 'PDH', 'https://pdhamilton.uk', 'Leeds, United Kingdom', 'pete@peterdavidhamilton.com', 'true', 'Product Developer at AND Digital', NULL, 0, 0, 18, 21, 0, 0, 0, '2008-03-17T16:48:47Z', '2024-11-02T12:31:58Z', 'https://avatars.githubusercontent.com/u/3261?v=4', 'https://api.github.com/users/peterdavidhamilton', 'https://github.com/peterdavidhamilton', 'https://api.github.com/users/peterdavidhamilton/followers', 'https://api.github.com/users/peterdavidhamilton/following', 'https://api.github.com/users/peterdavidhamilton/gists', 'https://api.github.com/users/peterdavidhamilton/starred', 'https://api.github.com/users/peterdavidhamilton/repos', 'https://api.github.com/users/peterdavidhamilton/events', 'https://api.github.com/users/peterdavidhamilton/received_events', 0); +INSERT INTO `developer` VALUES (3262, 'dugsmith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Smith', '@CovenantEyes ', 'https://dougsmithdev.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 24, 1, 0, 0, 0, '2008-03-17T16:49:54Z', '2024-07-18T14:35:32Z', 'https://avatars.githubusercontent.com/u/3262?v=4', 'https://api.github.com/users/dugsmith', 'https://github.com/dugsmith', 'https://api.github.com/users/dugsmith/followers', 'https://api.github.com/users/dugsmith/following', 'https://api.github.com/users/dugsmith/gists', 'https://api.github.com/users/dugsmith/starred', 'https://api.github.com/users/dugsmith/repos', 'https://api.github.com/users/dugsmith/events', 'https://api.github.com/users/dugsmith/received_events', 0); +INSERT INTO `developer` VALUES (3263, 'chadwpry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chad W Pry', NULL, 'https://www.linkedin.com/in/chadwpry/', 'Austin, TX', NULL, 'true', NULL, NULL, 0, 0, 57, 0, 0, 0, 0, '2008-03-17T16:50:34Z', '2024-10-23T19:58:58Z', 'https://avatars.githubusercontent.com/u/3263?v=4', 'https://api.github.com/users/chadwpry', 'https://github.com/chadwpry', 'https://api.github.com/users/chadwpry/followers', 'https://api.github.com/users/chadwpry/following', 'https://api.github.com/users/chadwpry/gists', 'https://api.github.com/users/chadwpry/starred', 'https://api.github.com/users/chadwpry/repos', 'https://api.github.com/users/chadwpry/events', 'https://api.github.com/users/chadwpry/received_events', 0); +INSERT INTO `developer` VALUES (3264, 'webbdog', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-17T16:51:01Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3264?v=4', 'https://api.github.com/users/webbdog', 'https://github.com/webbdog', 'https://api.github.com/users/webbdog/followers', 'https://api.github.com/users/webbdog/following', 'https://api.github.com/users/webbdog/gists', 'https://api.github.com/users/webbdog/starred', 'https://api.github.com/users/webbdog/repos', 'https://api.github.com/users/webbdog/events', 'https://api.github.com/users/webbdog/received_events', 0); +INSERT INTO `developer` VALUES (3265, 'ehird', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elliott Hird', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 34, 0, 0, 0, 0, '2008-03-17T16:51:09Z', '2020-04-24T04:46:34Z', 'https://avatars.githubusercontent.com/u/3265?v=4', 'https://api.github.com/users/ehird', 'https://github.com/ehird', 'https://api.github.com/users/ehird/followers', 'https://api.github.com/users/ehird/following', 'https://api.github.com/users/ehird/gists', 'https://api.github.com/users/ehird/starred', 'https://api.github.com/users/ehird/repos', 'https://api.github.com/users/ehird/events', 'https://api.github.com/users/ehird/received_events', 0); +INSERT INTO `developer` VALUES (3266, 'itay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Itay Neeman', NULL, '', 'Seattle, WA', 'itay@neeman.net', NULL, NULL, NULL, 0, 0, 58, 5, 0, 0, 0, '2008-03-17T16:51:15Z', '2024-10-05T11:20:54Z', 'https://avatars.githubusercontent.com/u/3266?v=4', 'https://api.github.com/users/itay', 'https://github.com/itay', 'https://api.github.com/users/itay/followers', 'https://api.github.com/users/itay/following', 'https://api.github.com/users/itay/gists', 'https://api.github.com/users/itay/starred', 'https://api.github.com/users/itay/repos', 'https://api.github.com/users/itay/events', 'https://api.github.com/users/itay/received_events', 0); +INSERT INTO `developer` VALUES (3267, 'ryanahamilton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Hamilton', '@astronomer ', 'https://ryanahamilton.com', 'Cincinnati, OH', NULL, 'true', 'UX Engineer at @astronomer, Commiter on @apache Airflow', 'ryanahamilton', 0, 0, 45, 25, 0, 0, 0, '2008-03-17T16:51:18Z', '2024-11-05T00:31:04Z', 'https://avatars.githubusercontent.com/u/3267?v=4', 'https://api.github.com/users/ryanahamilton', 'https://github.com/ryanahamilton', 'https://api.github.com/users/ryanahamilton/followers', 'https://api.github.com/users/ryanahamilton/following', 'https://api.github.com/users/ryanahamilton/gists', 'https://api.github.com/users/ryanahamilton/starred', 'https://api.github.com/users/ryanahamilton/repos', 'https://api.github.com/users/ryanahamilton/events', 'https://api.github.com/users/ryanahamilton/received_events', 0); +INSERT INTO `developer` VALUES (3268, 'uhlenbrock', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bobby Uhlenbrock', NULL, 'http://www.uhlenbrock.us', 'Cincinnati, OH', NULL, NULL, NULL, 'uhlenbrock', 0, 0, 23, 12, 0, 0, 0, '2008-03-17T16:53:30Z', '2024-07-29T16:25:51Z', 'https://avatars.githubusercontent.com/u/3268?v=4', 'https://api.github.com/users/uhlenbrock', 'https://github.com/uhlenbrock', 'https://api.github.com/users/uhlenbrock/followers', 'https://api.github.com/users/uhlenbrock/following', 'https://api.github.com/users/uhlenbrock/gists', 'https://api.github.com/users/uhlenbrock/starred', 'https://api.github.com/users/uhlenbrock/repos', 'https://api.github.com/users/uhlenbrock/events', 'https://api.github.com/users/uhlenbrock/received_events', 0); +INSERT INTO `developer` VALUES (3269, 'ettomatic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ettore Berardi', 'BBC News', 'http://www.ettomatic.com', 'London UK', NULL, NULL, NULL, NULL, 0, 0, 19, 0, 0, 0, 0, '2008-03-17T17:01:50Z', '2024-10-06T15:01:32Z', 'https://avatars.githubusercontent.com/u/3269?v=4', 'https://api.github.com/users/ettomatic', 'https://github.com/ettomatic', 'https://api.github.com/users/ettomatic/followers', 'https://api.github.com/users/ettomatic/following', 'https://api.github.com/users/ettomatic/gists', 'https://api.github.com/users/ettomatic/starred', 'https://api.github.com/users/ettomatic/repos', 'https://api.github.com/users/ettomatic/events', 'https://api.github.com/users/ettomatic/received_events', 0); +INSERT INTO `developer` VALUES (3270, 'mhennemeyer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthias Hennemeyer', 'Matthias Hennemeyer', 'matthiashennemeyer.com', 'Germany', 'mhennemeyer@me.com', NULL, NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2008-03-17T17:04:31Z', '2024-07-23T09:59:29Z', 'https://avatars.githubusercontent.com/u/3270?v=4', 'https://api.github.com/users/mhennemeyer', 'https://github.com/mhennemeyer', 'https://api.github.com/users/mhennemeyer/followers', 'https://api.github.com/users/mhennemeyer/following', 'https://api.github.com/users/mhennemeyer/gists', 'https://api.github.com/users/mhennemeyer/starred', 'https://api.github.com/users/mhennemeyer/repos', 'https://api.github.com/users/mhennemeyer/events', 'https://api.github.com/users/mhennemeyer/received_events', 0); +INSERT INTO `developer` VALUES (3271, 'boe', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-17T17:05:50Z', '2022-06-22T19:43:55Z', 'https://avatars.githubusercontent.com/u/3271?v=4', 'https://api.github.com/users/boe', 'https://github.com/boe', 'https://api.github.com/users/boe/followers', 'https://api.github.com/users/boe/following', 'https://api.github.com/users/boe/gists', 'https://api.github.com/users/boe/starred', 'https://api.github.com/users/boe/repos', 'https://api.github.com/users/boe/events', 'https://api.github.com/users/boe/received_events', 0); +INSERT INTO `developer` VALUES (3272, 'morty', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Mortimer-Jones', NULL, 'www.morty.co.uk', 'United Kingdom', NULL, 'true', NULL, NULL, 0, 0, 30, 7, 0, 0, 0, '2008-03-17T17:09:04Z', '2024-08-19T13:24:52Z', 'https://avatars.githubusercontent.com/u/3272?v=4', 'https://api.github.com/users/morty', 'https://github.com/morty', 'https://api.github.com/users/morty/followers', 'https://api.github.com/users/morty/following', 'https://api.github.com/users/morty/gists', 'https://api.github.com/users/morty/starred', 'https://api.github.com/users/morty/repos', 'https://api.github.com/users/morty/events', 'https://api.github.com/users/morty/received_events', 0); +INSERT INTO `developer` VALUES (3273, 'Sprak', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-17T17:10:41Z', '2022-10-09T03:12:22Z', 'https://avatars.githubusercontent.com/u/3273?v=4', 'https://api.github.com/users/Sprak', 'https://github.com/Sprak', 'https://api.github.com/users/Sprak/followers', 'https://api.github.com/users/Sprak/following', 'https://api.github.com/users/Sprak/gists', 'https://api.github.com/users/Sprak/starred', 'https://api.github.com/users/Sprak/repos', 'https://api.github.com/users/Sprak/events', 'https://api.github.com/users/Sprak/received_events', 0); +INSERT INTO `developer` VALUES (3274, 'rpgoldman', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 57, 2, 0, 0, 0, '2008-03-17T17:15:02Z', '2024-08-29T20:50:53Z', 'https://avatars.githubusercontent.com/u/3274?v=4', 'https://api.github.com/users/rpgoldman', 'https://github.com/rpgoldman', 'https://api.github.com/users/rpgoldman/followers', 'https://api.github.com/users/rpgoldman/following', 'https://api.github.com/users/rpgoldman/gists', 'https://api.github.com/users/rpgoldman/starred', 'https://api.github.com/users/rpgoldman/repos', 'https://api.github.com/users/rpgoldman/events', 'https://api.github.com/users/rpgoldman/received_events', 0); +INSERT INTO `developer` VALUES (3275, 'leewbutler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lee W Butler', 'Drupal Web Consultant', '', 'Portland, Oregon', 'leewbutler@gmail.com', NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-03-17T17:23:53Z', '2023-07-18T23:47:26Z', 'https://avatars.githubusercontent.com/u/3275?v=4', 'https://api.github.com/users/leewbutler', 'https://github.com/leewbutler', 'https://api.github.com/users/leewbutler/followers', 'https://api.github.com/users/leewbutler/following', 'https://api.github.com/users/leewbutler/gists', 'https://api.github.com/users/leewbutler/starred', 'https://api.github.com/users/leewbutler/repos', 'https://api.github.com/users/leewbutler/events', 'https://api.github.com/users/leewbutler/received_events', 0); +INSERT INTO `developer` VALUES (3276, 'jdigger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Moore', NULL, 'https://jdigger.github.io/', 'Denver, CO', NULL, NULL, NULL, NULL, 0, 0, 38, 8, 0, 0, 0, '2008-03-17T17:25:58Z', '2024-10-26T01:28:13Z', 'https://avatars.githubusercontent.com/u/3276?v=4', 'https://api.github.com/users/jdigger', 'https://github.com/jdigger', 'https://api.github.com/users/jdigger/followers', 'https://api.github.com/users/jdigger/following', 'https://api.github.com/users/jdigger/gists', 'https://api.github.com/users/jdigger/starred', 'https://api.github.com/users/jdigger/repos', 'https://api.github.com/users/jdigger/events', 'https://api.github.com/users/jdigger/received_events', 0); +INSERT INTO `developer` VALUES (3277, 'smtm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roland Oth', 'igumbi', 'http://www.igumbi.com/de/blog', 'Vienna Austria', 'roland.oth@gmail.com', NULL, NULL, NULL, 0, 0, 8, 9, 0, 0, 0, '2008-03-17T17:26:10Z', '2024-10-27T16:29:58Z', 'https://avatars.githubusercontent.com/u/3277?v=4', 'https://api.github.com/users/smtm', 'https://github.com/smtm', 'https://api.github.com/users/smtm/followers', 'https://api.github.com/users/smtm/following', 'https://api.github.com/users/smtm/gists', 'https://api.github.com/users/smtm/starred', 'https://api.github.com/users/smtm/repos', 'https://api.github.com/users/smtm/events', 'https://api.github.com/users/smtm/received_events', 0); +INSERT INTO `developer` VALUES (3278, 'mfb', 'C', 0, 0, 0, 0, 0, 0, 0, 'mark burdett', NULL, '', 'San Francisco, CA', NULL, 'true', NULL, NULL, 0, 0, 113, 7, 0, 0, 0, '2008-03-17T17:27:52Z', '2024-09-27T00:46:16Z', 'https://avatars.githubusercontent.com/u/3278?v=4', 'https://api.github.com/users/mfb', 'https://github.com/mfb', 'https://api.github.com/users/mfb/followers', 'https://api.github.com/users/mfb/following', 'https://api.github.com/users/mfb/gists', 'https://api.github.com/users/mfb/starred', 'https://api.github.com/users/mfb/repos', 'https://api.github.com/users/mfb/events', 'https://api.github.com/users/mfb/received_events', 0); +INSERT INTO `developer` VALUES (3279, 'nextmat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Sanders', 'Streamfold', '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 60, 29, 0, 0, 0, '2008-03-17T17:29:14Z', '2024-09-25T19:03:11Z', 'https://avatars.githubusercontent.com/u/3279?v=4', 'https://api.github.com/users/nextmat', 'https://github.com/nextmat', 'https://api.github.com/users/nextmat/followers', 'https://api.github.com/users/nextmat/following', 'https://api.github.com/users/nextmat/gists', 'https://api.github.com/users/nextmat/starred', 'https://api.github.com/users/nextmat/repos', 'https://api.github.com/users/nextmat/events', 'https://api.github.com/users/nextmat/received_events', 0); +INSERT INTO `developer` VALUES (3280, 'sintaks', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-17T17:29:35Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3280?v=4', 'https://api.github.com/users/sintaks', 'https://github.com/sintaks', 'https://api.github.com/users/sintaks/followers', 'https://api.github.com/users/sintaks/following', 'https://api.github.com/users/sintaks/gists', 'https://api.github.com/users/sintaks/starred', 'https://api.github.com/users/sintaks/repos', 'https://api.github.com/users/sintaks/events', 'https://api.github.com/users/sintaks/received_events', 0); +INSERT INTO `developer` VALUES (3281, 'smartkiwi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vladimir Vladimirov', NULL, '', '未知', NULL, NULL, 'AKA smartkiwi', NULL, 0, 0, 12, 1, 0, 0, 0, '2008-03-17T17:33:55Z', '2024-06-07T20:39:05Z', 'https://avatars.githubusercontent.com/u/3281?v=4', 'https://api.github.com/users/smartkiwi', 'https://github.com/smartkiwi', 'https://api.github.com/users/smartkiwi/followers', 'https://api.github.com/users/smartkiwi/following', 'https://api.github.com/users/smartkiwi/gists', 'https://api.github.com/users/smartkiwi/starred', 'https://api.github.com/users/smartkiwi/repos', 'https://api.github.com/users/smartkiwi/events', 'https://api.github.com/users/smartkiwi/received_events', 0); +INSERT INTO `developer` VALUES (3282, 'mtwentyman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Twentyman', 'Endeavor Digital', '', 'Atlanta, GA', '20@thirdfloorstudios.com', NULL, NULL, NULL, 0, 0, 32, 27, 0, 0, 0, '2008-03-17T17:38:35Z', '2024-11-04T12:19:37Z', 'https://avatars.githubusercontent.com/u/3282?v=4', 'https://api.github.com/users/mtwentyman', 'https://github.com/mtwentyman', 'https://api.github.com/users/mtwentyman/followers', 'https://api.github.com/users/mtwentyman/following', 'https://api.github.com/users/mtwentyman/gists', 'https://api.github.com/users/mtwentyman/starred', 'https://api.github.com/users/mtwentyman/repos', 'https://api.github.com/users/mtwentyman/events', 'https://api.github.com/users/mtwentyman/received_events', 0); +INSERT INTO `developer` VALUES (3283, 'scottag99', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Stevenson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 4, 0, 0, 0, '2008-03-17T17:39:16Z', '2023-12-09T22:10:28Z', 'https://avatars.githubusercontent.com/u/3283?v=4', 'https://api.github.com/users/scottag99', 'https://github.com/scottag99', 'https://api.github.com/users/scottag99/followers', 'https://api.github.com/users/scottag99/following', 'https://api.github.com/users/scottag99/gists', 'https://api.github.com/users/scottag99/starred', 'https://api.github.com/users/scottag99/repos', 'https://api.github.com/users/scottag99/events', 'https://api.github.com/users/scottag99/received_events', 0); +INSERT INTO `developer` VALUES (3284, 'dragosdimitriu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-17T17:39:23Z', '2019-05-30T08:49:40Z', 'https://avatars.githubusercontent.com/u/3284?v=4', 'https://api.github.com/users/dragosdimitriu', 'https://github.com/dragosdimitriu', 'https://api.github.com/users/dragosdimitriu/followers', 'https://api.github.com/users/dragosdimitriu/following', 'https://api.github.com/users/dragosdimitriu/gists', 'https://api.github.com/users/dragosdimitriu/starred', 'https://api.github.com/users/dragosdimitriu/repos', 'https://api.github.com/users/dragosdimitriu/events', 'https://api.github.com/users/dragosdimitriu/received_events', 0); +INSERT INTO `developer` VALUES (3285, 'mkrisher', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Krisher', NULL, 'http://www.mikekrisher.com', 'Cincinnati, OH', 'mike@mikekrisher.com', NULL, 'reader of books, writer of code', NULL, 0, 0, 60, 42, 0, 0, 0, '2008-03-17T17:39:33Z', '2024-10-25T14:19:14Z', 'https://avatars.githubusercontent.com/u/3285?v=4', 'https://api.github.com/users/mkrisher', 'https://github.com/mkrisher', 'https://api.github.com/users/mkrisher/followers', 'https://api.github.com/users/mkrisher/following', 'https://api.github.com/users/mkrisher/gists', 'https://api.github.com/users/mkrisher/starred', 'https://api.github.com/users/mkrisher/repos', 'https://api.github.com/users/mkrisher/events', 'https://api.github.com/users/mkrisher/received_events', 0); +INSERT INTO `developer` VALUES (3286, 'gumgum', 'C', 0, 0, 0, 0, 0, 0, 0, 'GumGum', NULL, 'https://gumgum.com', 'Santa Monica, CA', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-17T18:03:43Z', '2024-09-16T16:48:14Z', 'https://avatars.githubusercontent.com/u/3286?v=4', 'https://api.github.com/users/gumgum', 'https://github.com/gumgum', 'https://api.github.com/users/gumgum/followers', 'https://api.github.com/users/gumgum/following', 'https://api.github.com/users/gumgum/gists', 'https://api.github.com/users/gumgum/starred', 'https://api.github.com/users/gumgum/repos', 'https://api.github.com/users/gumgum/events', 'https://api.github.com/users/gumgum/received_events', 0); +INSERT INTO `developer` VALUES (3289, 'barwin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Arwin', NULL, '', 'Los Angeles, CA', NULL, NULL, NULL, NULL, 0, 0, 14, 9, 0, 0, 0, '2008-03-17T18:24:01Z', '2024-11-01T12:27:27Z', 'https://avatars.githubusercontent.com/u/3289?v=4', 'https://api.github.com/users/barwin', 'https://github.com/barwin', 'https://api.github.com/users/barwin/followers', 'https://api.github.com/users/barwin/following', 'https://api.github.com/users/barwin/gists', 'https://api.github.com/users/barwin/starred', 'https://api.github.com/users/barwin/repos', 'https://api.github.com/users/barwin/events', 'https://api.github.com/users/barwin/received_events', 0); +INSERT INTO `developer` VALUES (3290, 'brownsm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean Brown', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 5, 0, 0, 0, '2008-03-17T18:24:14Z', '2023-12-21T20:21:10Z', 'https://avatars.githubusercontent.com/u/3290?v=4', 'https://api.github.com/users/brownsm', 'https://github.com/brownsm', 'https://api.github.com/users/brownsm/followers', 'https://api.github.com/users/brownsm/following', 'https://api.github.com/users/brownsm/gists', 'https://api.github.com/users/brownsm/starred', 'https://api.github.com/users/brownsm/repos', 'https://api.github.com/users/brownsm/events', 'https://api.github.com/users/brownsm/received_events', 0); +INSERT INTO `developer` VALUES (3291, 'SWolfe2000', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Wolfe', NULL, 'http://quadtonephotography.com', 'Columbus, Ohio, USA', 'SWolfeNI8W@gmail.com', NULL, NULL, NULL, 0, 0, 5, 3, 0, 0, 0, '2008-03-17T18:27:26Z', '2020-01-25T23:31:35Z', 'https://avatars.githubusercontent.com/u/3291?v=4', 'https://api.github.com/users/SWolfe2000', 'https://github.com/SWolfe2000', 'https://api.github.com/users/SWolfe2000/followers', 'https://api.github.com/users/SWolfe2000/following', 'https://api.github.com/users/SWolfe2000/gists', 'https://api.github.com/users/SWolfe2000/starred', 'https://api.github.com/users/SWolfe2000/repos', 'https://api.github.com/users/SWolfe2000/events', 'https://api.github.com/users/SWolfe2000/received_events', 0); +INSERT INTO `developer` VALUES (3292, 'kris', 'C', 0, 0, 0, 0, 0, 0, 0, 'kris', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 28, 4, 0, 0, 0, '2008-03-17T18:28:23Z', '2024-09-15T18:21:13Z', 'https://avatars.githubusercontent.com/u/3292?v=4', 'https://api.github.com/users/kris', 'https://github.com/kris', 'https://api.github.com/users/kris/followers', 'https://api.github.com/users/kris/following', 'https://api.github.com/users/kris/gists', 'https://api.github.com/users/kris/starred', 'https://api.github.com/users/kris/repos', 'https://api.github.com/users/kris/events', 'https://api.github.com/users/kris/received_events', 0); +INSERT INTO `developer` VALUES (3293, 'michaelp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Pavlovsky', '--', 'https://ca.linkedin.com/pub/michael-pavlovsky/3/781/41', 'Canada', NULL, 'true', NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-03-17T18:32:07Z', '2024-10-22T15:42:29Z', 'https://avatars.githubusercontent.com/u/3293?v=4', 'https://api.github.com/users/michaelp', 'https://github.com/michaelp', 'https://api.github.com/users/michaelp/followers', 'https://api.github.com/users/michaelp/following', 'https://api.github.com/users/michaelp/gists', 'https://api.github.com/users/michaelp/starred', 'https://api.github.com/users/michaelp/repos', 'https://api.github.com/users/michaelp/events', 'https://api.github.com/users/michaelp/received_events', 0); +INSERT INTO `developer` VALUES (3294, 'shaiguitar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shai Rosenfeld', NULL, 'http://shairosenfeld.com', '未知', NULL, NULL, 'http://shairosenfeld.com/pickle.html', NULL, 0, 0, 73, 80, 0, 0, 0, '2008-03-17T18:33:48Z', '2024-09-08T11:26:32Z', 'https://avatars.githubusercontent.com/u/3294?v=4', 'https://api.github.com/users/shaiguitar', 'https://github.com/shaiguitar', 'https://api.github.com/users/shaiguitar/followers', 'https://api.github.com/users/shaiguitar/following', 'https://api.github.com/users/shaiguitar/gists', 'https://api.github.com/users/shaiguitar/starred', 'https://api.github.com/users/shaiguitar/repos', 'https://api.github.com/users/shaiguitar/events', 'https://api.github.com/users/shaiguitar/received_events', 0); +INSERT INTO `developer` VALUES (3296, 'buck', 'C', 0, 0, 0, 0, 0, 0, 0, 'A. Lester Buck III', NULL, '', 'Houston, Texas', 'github-reg@nbolt.com', NULL, NULL, NULL, 0, 0, 6, 2, 0, 0, 0, '2008-03-17T18:40:17Z', '2024-03-27T20:47:31Z', 'https://avatars.githubusercontent.com/u/3296?v=4', 'https://api.github.com/users/buck', 'https://github.com/buck', 'https://api.github.com/users/buck/followers', 'https://api.github.com/users/buck/following', 'https://api.github.com/users/buck/gists', 'https://api.github.com/users/buck/starred', 'https://api.github.com/users/buck/repos', 'https://api.github.com/users/buck/events', 'https://api.github.com/users/buck/received_events', 0); +INSERT INTO `developer` VALUES (3297, 'sgabello', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrea Ottolina', '@pixelinlove @flubbermedia ', '', 'Lisbon, PT', NULL, NULL, NULL, NULL, 0, 0, 18, 3, 0, 0, 0, '2008-03-17T18:41:03Z', '2024-10-07T01:00:25Z', 'https://avatars.githubusercontent.com/u/3297?v=4', 'https://api.github.com/users/sgabello', 'https://github.com/sgabello', 'https://api.github.com/users/sgabello/followers', 'https://api.github.com/users/sgabello/following', 'https://api.github.com/users/sgabello/gists', 'https://api.github.com/users/sgabello/starred', 'https://api.github.com/users/sgabello/repos', 'https://api.github.com/users/sgabello/events', 'https://api.github.com/users/sgabello/received_events', 0); +INSERT INTO `developer` VALUES (3298, 'werkshy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy O\'Neill', 'Caire Health', 'http://ultrahigh.org/', 'New York City', NULL, NULL, 'In the weeds. Caire Health (previously Source Health; Harry\'s; EnergyHub; Columbia University)', NULL, 0, 0, 23, 14, 0, 0, 0, '2008-03-17T18:42:34Z', '2024-10-08T18:55:06Z', 'https://avatars.githubusercontent.com/u/3298?v=4', 'https://api.github.com/users/werkshy', 'https://github.com/werkshy', 'https://api.github.com/users/werkshy/followers', 'https://api.github.com/users/werkshy/following', 'https://api.github.com/users/werkshy/gists', 'https://api.github.com/users/werkshy/starred', 'https://api.github.com/users/werkshy/repos', 'https://api.github.com/users/werkshy/events', 'https://api.github.com/users/werkshy/received_events', 0); +INSERT INTO `developer` VALUES (3299, 'stany', 'C', 0, 0, 0, 0, 25, 0, 0, 'Marcin Stankiewicz', 'Yelp', '', 'Hamburg', 'marcin@yelp.com', NULL, NULL, NULL, 0, 0, 20, 2, 0, 0, 0, '2008-03-17T18:46:55Z', '2024-04-09T09:32:25Z', 'https://avatars.githubusercontent.com/u/3299?v=4', 'https://api.github.com/users/stany', 'https://github.com/stany', 'https://api.github.com/users/stany/followers', 'https://api.github.com/users/stany/following', 'https://api.github.com/users/stany/gists', 'https://api.github.com/users/stany/starred', 'https://api.github.com/users/stany/repos', 'https://api.github.com/users/stany/events', 'https://api.github.com/users/stany/received_events', 0); +INSERT INTO `developer` VALUES (3300, 'jherdman', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Herdman', '@nulogy ', '', 'Toronto, ON', NULL, NULL, 'Developer at @nulogy (formerly @PrecisionNutrition). Passionate singer of bedtime songs, and sometimes boulderer.', NULL, 0, 0, 93, 70, 0, 0, 0, '2008-03-17T19:09:52Z', '2024-10-25T14:39:39Z', 'https://avatars.githubusercontent.com/u/3300?v=4', 'https://api.github.com/users/jherdman', 'https://github.com/jherdman', 'https://api.github.com/users/jherdman/followers', 'https://api.github.com/users/jherdman/following', 'https://api.github.com/users/jherdman/gists', 'https://api.github.com/users/jherdman/starred', 'https://api.github.com/users/jherdman/repos', 'https://api.github.com/users/jherdman/events', 'https://api.github.com/users/jherdman/received_events', 0); +INSERT INTO `developer` VALUES (3301, 'rfugger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Fugger', NULL, 'ryanfugger.com', 'Vancouver, BC', NULL, NULL, NULL, NULL, 0, 0, 37, 0, 0, 0, 0, '2008-03-17T19:11:07Z', '2023-12-28T04:22:17Z', 'https://avatars.githubusercontent.com/u/3301?v=4', 'https://api.github.com/users/rfugger', 'https://github.com/rfugger', 'https://api.github.com/users/rfugger/followers', 'https://api.github.com/users/rfugger/following', 'https://api.github.com/users/rfugger/gists', 'https://api.github.com/users/rfugger/starred', 'https://api.github.com/users/rfugger/repos', 'https://api.github.com/users/rfugger/events', 'https://api.github.com/users/rfugger/received_events', 0); +INSERT INTO `developer` VALUES (3302, 'k0001', 'C', 1.4938487446545654, 0, 3, 4, 166, 14, 0, 'k0001', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 217, 23, 0, 0, 0, '2008-03-17T19:39:56Z', '2024-05-27T08:35:42Z', 'https://avatars.githubusercontent.com/u/3302?v=4', 'https://api.github.com/users/k0001', 'https://github.com/k0001', 'https://api.github.com/users/k0001/followers', 'https://api.github.com/users/k0001/following', 'https://api.github.com/users/k0001/gists', 'https://api.github.com/users/k0001/starred', 'https://api.github.com/users/k0001/repos', 'https://api.github.com/users/k0001/events', 'https://api.github.com/users/k0001/received_events', 0); +INSERT INTO `developer` VALUES (3304, 'shenie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Shen', NULL, 'http://shenie.github.com', 'Sydney', NULL, NULL, NULL, NULL, 0, 0, 31, 2, 0, 0, 0, '2008-03-17T20:26:19Z', '2024-11-03T23:48:00Z', 'https://avatars.githubusercontent.com/u/3304?v=4', 'https://api.github.com/users/shenie', 'https://github.com/shenie', 'https://api.github.com/users/shenie/followers', 'https://api.github.com/users/shenie/following', 'https://api.github.com/users/shenie/gists', 'https://api.github.com/users/shenie/starred', 'https://api.github.com/users/shenie/repos', 'https://api.github.com/users/shenie/events', 'https://api.github.com/users/shenie/received_events', 0); +INSERT INTO `developer` VALUES (3305, 'vasi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Vasilevsky', NULL, '', 'Montreal', NULL, NULL, 'https://fosstodon.org/@vasi', NULL, 0, 0, 117, 16, 0, 0, 0, '2008-03-17T20:39:55Z', '2024-10-26T18:40:31Z', 'https://avatars.githubusercontent.com/u/3305?v=4', 'https://api.github.com/users/vasi', 'https://github.com/vasi', 'https://api.github.com/users/vasi/followers', 'https://api.github.com/users/vasi/following', 'https://api.github.com/users/vasi/gists', 'https://api.github.com/users/vasi/starred', 'https://api.github.com/users/vasi/repos', 'https://api.github.com/users/vasi/events', 'https://api.github.com/users/vasi/received_events', 0); +INSERT INTO `developer` VALUES (3306, 'stueccles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stuart Eccles', NULL, '', 'New York, NY', NULL, NULL, NULL, 'stueccles', 0, 0, 31, 3, 0, 0, 0, '2008-03-17T20:49:33Z', '2024-11-04T17:57:11Z', 'https://avatars.githubusercontent.com/u/3306?v=4', 'https://api.github.com/users/stueccles', 'https://github.com/stueccles', 'https://api.github.com/users/stueccles/followers', 'https://api.github.com/users/stueccles/following', 'https://api.github.com/users/stueccles/gists', 'https://api.github.com/users/stueccles/starred', 'https://api.github.com/users/stueccles/repos', 'https://api.github.com/users/stueccles/events', 'https://api.github.com/users/stueccles/received_events', 0); +INSERT INTO `developer` VALUES (3307, 'richdownie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rich Downie', 'https://github.com/richdownie', 'https://fullstacktesting.com', 'Rochester, NY', 'botwhisperer@hey.com', NULL, '🚀 Passionate Full-Stack Automation Engineer | Ruby Enthusiast | CI/CD Specialist', 'richdownie', 0, 0, 29, 42, 0, 0, 0, '2008-03-17T20:56:20Z', '2024-10-18T15:20:19Z', 'https://avatars.githubusercontent.com/u/3307?v=4', 'https://api.github.com/users/richdownie', 'https://github.com/richdownie', 'https://api.github.com/users/richdownie/followers', 'https://api.github.com/users/richdownie/following', 'https://api.github.com/users/richdownie/gists', 'https://api.github.com/users/richdownie/starred', 'https://api.github.com/users/richdownie/repos', 'https://api.github.com/users/richdownie/events', 'https://api.github.com/users/richdownie/received_events', 0); +INSERT INTO `developer` VALUES (3308, 'ddollar', 'C', 11.835616260475138, 0, 0, 0, 0, 0, 0, 'David Dollar', '@epiphytelabs ', 'http://david.dollar.io', '未知', 'david@dollar.io', NULL, NULL, NULL, 0, 0, 975, 8, 0, 0, 0, '2008-03-17T20:57:12Z', '2024-10-15T23:56:05Z', 'https://avatars.githubusercontent.com/u/3308?v=4', 'https://api.github.com/users/ddollar', 'https://github.com/ddollar', 'https://api.github.com/users/ddollar/followers', 'https://api.github.com/users/ddollar/following', 'https://api.github.com/users/ddollar/gists', 'https://api.github.com/users/ddollar/starred', 'https://api.github.com/users/ddollar/repos', 'https://api.github.com/users/ddollar/events', 'https://api.github.com/users/ddollar/received_events', 0); +INSERT INTO `developer` VALUES (3309, 'adulau', 'C+', 15.95126187306013, 0, 0, 0, 0, 0, 0, 'Alexandre Dulaunoy', '@MISP @CIRCL @cve-search and many others ', 'http://www.foo.be/', 'Europe', 'a@foo.be', NULL, 'Enjoy when human are using machines in unexpected ways. I break stuff and I do stuff. ', 'adulau', 0, 0, 1215, 2620, 0, 0, 0, '2008-03-17T21:06:56Z', '2024-11-05T08:44:23Z', 'https://avatars.githubusercontent.com/u/3309?v=4', 'https://api.github.com/users/adulau', 'https://github.com/adulau', 'https://api.github.com/users/adulau/followers', 'https://api.github.com/users/adulau/following', 'https://api.github.com/users/adulau/gists', 'https://api.github.com/users/adulau/starred', 'https://api.github.com/users/adulau/repos', 'https://api.github.com/users/adulau/events', 'https://api.github.com/users/adulau/received_events', 0); +INSERT INTO `developer` VALUES (3310, 'neomindryan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Findley', 'Neomind Labs', '', 'Philadelphia, PA', 'ryan@neomindlabs.com', NULL, NULL, 'neomindryan', 0, 0, 26, 10, 0, 0, 0, '2008-03-17T21:07:06Z', '2024-08-01T14:41:47Z', 'https://avatars.githubusercontent.com/u/3310?v=4', 'https://api.github.com/users/neomindryan', 'https://github.com/neomindryan', 'https://api.github.com/users/neomindryan/followers', 'https://api.github.com/users/neomindryan/following', 'https://api.github.com/users/neomindryan/gists', 'https://api.github.com/users/neomindryan/starred', 'https://api.github.com/users/neomindryan/repos', 'https://api.github.com/users/neomindryan/events', 'https://api.github.com/users/neomindryan/received_events', 0); +INSERT INTO `developer` VALUES (3311, 'fauxmachine', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keston Helfrich', NULL, 'http://www.fauxmachine.com', 'SC', 'keston@fauxmachine.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-17T21:08:54Z', '2022-12-12T18:46:11Z', 'https://avatars.githubusercontent.com/u/3311?v=4', 'https://api.github.com/users/fauxmachine', 'https://github.com/fauxmachine', 'https://api.github.com/users/fauxmachine/followers', 'https://api.github.com/users/fauxmachine/following', 'https://api.github.com/users/fauxmachine/gists', 'https://api.github.com/users/fauxmachine/starred', 'https://api.github.com/users/fauxmachine/repos', 'https://api.github.com/users/fauxmachine/events', 'https://api.github.com/users/fauxmachine/received_events', 0); +INSERT INTO `developer` VALUES (3312, 'snatchev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Natchev', '@Google', 'https://zeropush.com', 'Philly', NULL, NULL, NULL, NULL, 0, 0, 170, 112, 0, 0, 0, '2008-03-17T21:12:50Z', '2024-10-30T18:22:38Z', 'https://avatars.githubusercontent.com/u/3312?v=4', 'https://api.github.com/users/snatchev', 'https://github.com/snatchev', 'https://api.github.com/users/snatchev/followers', 'https://api.github.com/users/snatchev/following', 'https://api.github.com/users/snatchev/gists', 'https://api.github.com/users/snatchev/starred', 'https://api.github.com/users/snatchev/repos', 'https://api.github.com/users/snatchev/events', 'https://api.github.com/users/snatchev/received_events', 0); +INSERT INTO `developer` VALUES (3313, 'cris', 'C', 0, 0, 0, 0, 28, 0, 0, 'Sergii Boiko', 'Railsware', '', 'Kyiv, Ukraine', NULL, NULL, NULL, NULL, 0, 0, 35, 0, 0, 0, 0, '2008-03-17T21:13:33Z', '2024-08-09T09:25:10Z', 'https://avatars.githubusercontent.com/u/3313?v=4', 'https://api.github.com/users/cris', 'https://github.com/cris', 'https://api.github.com/users/cris/followers', 'https://api.github.com/users/cris/following', 'https://api.github.com/users/cris/gists', 'https://api.github.com/users/cris/starred', 'https://api.github.com/users/cris/repos', 'https://api.github.com/users/cris/events', 'https://api.github.com/users/cris/received_events', 0); +INSERT INTO `developer` VALUES (3314, 'dougeven', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Evenhouse', 'Evenhouse Consulting, Inc.', 'http://evenhouseconsulting.com', 'Westmont, IL USA', 'doug.evenhouse+github@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-17T21:33:03Z', '2021-03-09T18:58:11Z', 'https://avatars.githubusercontent.com/u/3314?v=4', 'https://api.github.com/users/dougeven', 'https://github.com/dougeven', 'https://api.github.com/users/dougeven/followers', 'https://api.github.com/users/dougeven/following', 'https://api.github.com/users/dougeven/gists', 'https://api.github.com/users/dougeven/starred', 'https://api.github.com/users/dougeven/repos', 'https://api.github.com/users/dougeven/events', 'https://api.github.com/users/dougeven/received_events', 0); +INSERT INTO `developer` VALUES (3315, 'yaegor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yegor Yarko', '@JetBrains', '', 'Munich, Germany', 'yegor.yarko@jetbrains.com', NULL, 'Technical Analyst @JetBrains', NULL, 0, 0, 51, 0, 0, 0, 0, '2008-03-17T21:35:55Z', '2024-10-21T11:19:32Z', 'https://avatars.githubusercontent.com/u/3315?v=4', 'https://api.github.com/users/yaegor', 'https://github.com/yaegor', 'https://api.github.com/users/yaegor/followers', 'https://api.github.com/users/yaegor/following', 'https://api.github.com/users/yaegor/gists', 'https://api.github.com/users/yaegor/starred', 'https://api.github.com/users/yaegor/repos', 'https://api.github.com/users/yaegor/events', 'https://api.github.com/users/yaegor/received_events', 0); +INSERT INTO `developer` VALUES (3316, 'AllanD', 'C', 0, 0, 0, 0, 0, 0, 0, 'Allan Delacruz', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 10, 0, 0, 0, '2008-03-17T21:42:55Z', '2024-09-16T15:10:38Z', 'https://avatars.githubusercontent.com/u/3316?v=4', 'https://api.github.com/users/AllanD', 'https://github.com/AllanD', 'https://api.github.com/users/AllanD/followers', 'https://api.github.com/users/AllanD/following', 'https://api.github.com/users/AllanD/gists', 'https://api.github.com/users/AllanD/starred', 'https://api.github.com/users/AllanD/repos', 'https://api.github.com/users/AllanD/events', 'https://api.github.com/users/AllanD/received_events', 0); +INSERT INTO `developer` VALUES (3320, 'nimblemachines', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Frech', NULL, 'https://www.nimblemachines.com/', 'SF Bay Area, California', NULL, NULL, NULL, 'nimblemachines', 0, 0, 32, 0, 0, 0, 0, '2008-03-17T22:18:52Z', '2024-10-28T17:46:10Z', 'https://avatars.githubusercontent.com/u/3320?v=4', 'https://api.github.com/users/nimblemachines', 'https://github.com/nimblemachines', 'https://api.github.com/users/nimblemachines/followers', 'https://api.github.com/users/nimblemachines/following', 'https://api.github.com/users/nimblemachines/gists', 'https://api.github.com/users/nimblemachines/starred', 'https://api.github.com/users/nimblemachines/repos', 'https://api.github.com/users/nimblemachines/events', 'https://api.github.com/users/nimblemachines/received_events', 0); +INSERT INTO `developer` VALUES (3323, 'nonsequitur', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 62, 17, 0, 0, 0, '2008-03-17T22:46:26Z', '2024-02-28T12:58:18Z', 'https://avatars.githubusercontent.com/u/3323?v=4', 'https://api.github.com/users/nonsequitur', 'https://github.com/nonsequitur', 'https://api.github.com/users/nonsequitur/followers', 'https://api.github.com/users/nonsequitur/following', 'https://api.github.com/users/nonsequitur/gists', 'https://api.github.com/users/nonsequitur/starred', 'https://api.github.com/users/nonsequitur/repos', 'https://api.github.com/users/nonsequitur/events', 'https://api.github.com/users/nonsequitur/received_events', 0); +INSERT INTO `developer` VALUES (3325, 'mylescarrick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Myles Carrick', NULL, 'mylescarrick.com', 'Sydney, Australia', 'mylescarrick@gmail.com', NULL, NULL, NULL, 0, 0, 16, 5, 0, 0, 0, '2008-03-17T23:05:17Z', '2024-10-12T22:53:09Z', 'https://avatars.githubusercontent.com/u/3325?v=4', 'https://api.github.com/users/mylescarrick', 'https://github.com/mylescarrick', 'https://api.github.com/users/mylescarrick/followers', 'https://api.github.com/users/mylescarrick/following', 'https://api.github.com/users/mylescarrick/gists', 'https://api.github.com/users/mylescarrick/starred', 'https://api.github.com/users/mylescarrick/repos', 'https://api.github.com/users/mylescarrick/events', 'https://api.github.com/users/mylescarrick/received_events', 0); +INSERT INTO `developer` VALUES (3326, 'adragomir', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrei Dragomir', NULL, '', 'Bucharest', 'adragomir@gmail.com', NULL, NULL, NULL, 0, 0, 95, 358, 0, 0, 0, '2008-03-17T23:16:17Z', '2023-12-19T21:22:02Z', 'https://avatars.githubusercontent.com/u/3326?v=4', 'https://api.github.com/users/adragomir', 'https://github.com/adragomir', 'https://api.github.com/users/adragomir/followers', 'https://api.github.com/users/adragomir/following', 'https://api.github.com/users/adragomir/gists', 'https://api.github.com/users/adragomir/starred', 'https://api.github.com/users/adragomir/repos', 'https://api.github.com/users/adragomir/events', 'https://api.github.com/users/adragomir/received_events', 0); +INSERT INTO `developer` VALUES (3327, 'tehmaze', 'C', 0, 0, 0, 0, 0, 0, 0, 'maze', NULL, 'https://maze.io/', '未知', NULL, NULL, NULL, 'tehmaze', 0, 0, 184, 77, 0, 0, 0, '2008-03-17T23:27:42Z', '2024-10-21T19:00:34Z', 'https://avatars.githubusercontent.com/u/3327?v=4', 'https://api.github.com/users/tehmaze', 'https://github.com/tehmaze', 'https://api.github.com/users/tehmaze/followers', 'https://api.github.com/users/tehmaze/following', 'https://api.github.com/users/tehmaze/gists', 'https://api.github.com/users/tehmaze/starred', 'https://api.github.com/users/tehmaze/repos', 'https://api.github.com/users/tehmaze/events', 'https://api.github.com/users/tehmaze/received_events', 0); +INSERT INTO `developer` VALUES (3328, 'jbernard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Bernard', NULL, 'https://jbernard.io', 'Blacksburg, VA', NULL, NULL, NULL, NULL, 0, 0, 49, 0, 0, 0, 0, '2008-03-18T00:05:21Z', '2024-08-13T05:23:01Z', 'https://avatars.githubusercontent.com/u/3328?v=4', 'https://api.github.com/users/jbernard', 'https://github.com/jbernard', 'https://api.github.com/users/jbernard/followers', 'https://api.github.com/users/jbernard/following', 'https://api.github.com/users/jbernard/gists', 'https://api.github.com/users/jbernard/starred', 'https://api.github.com/users/jbernard/repos', 'https://api.github.com/users/jbernard/events', 'https://api.github.com/users/jbernard/received_events', 0); +INSERT INTO `developer` VALUES (3329, 'billeisenhauer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bill Eisenhauer', NULL, 'http://billeisenhauer.com', 'Austin, TX', 'bill@billeisenhauer.com', NULL, NULL, 'billeisenhauer', 0, 0, 22, 1, 0, 0, 0, '2008-03-18T00:59:50Z', '2024-10-12T20:52:45Z', 'https://avatars.githubusercontent.com/u/3329?v=4', 'https://api.github.com/users/billeisenhauer', 'https://github.com/billeisenhauer', 'https://api.github.com/users/billeisenhauer/followers', 'https://api.github.com/users/billeisenhauer/following', 'https://api.github.com/users/billeisenhauer/gists', 'https://api.github.com/users/billeisenhauer/starred', 'https://api.github.com/users/billeisenhauer/repos', 'https://api.github.com/users/billeisenhauer/events', 'https://api.github.com/users/billeisenhauer/received_events', 0); +INSERT INTO `developer` VALUES (3330, 'jaywilliams', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jay Williams', 'D3 Designs', 'https://myd3.com/', 'Spencer, TN', 'jay@myd3.com', NULL, 'Web developer, husband, father, music lover.', NULL, 0, 0, 43, 34, 0, 0, 0, '2008-03-18T01:05:22Z', '2024-04-15T14:57:37Z', 'https://avatars.githubusercontent.com/u/3330?v=4', 'https://api.github.com/users/jaywilliams', 'https://github.com/jaywilliams', 'https://api.github.com/users/jaywilliams/followers', 'https://api.github.com/users/jaywilliams/following', 'https://api.github.com/users/jaywilliams/gists', 'https://api.github.com/users/jaywilliams/starred', 'https://api.github.com/users/jaywilliams/repos', 'https://api.github.com/users/jaywilliams/events', 'https://api.github.com/users/jaywilliams/received_events', 0); +INSERT INTO `developer` VALUES (3331, 'jim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Benton', 'Discord', '', 'Chicago, IL', NULL, NULL, 'Software engineer', NULL, 0, 0, 134, 35, 0, 0, 0, '2008-03-18T01:21:53Z', '2024-08-28T15:55:43Z', 'https://avatars.githubusercontent.com/u/3331?v=4', 'https://api.github.com/users/jim', 'https://github.com/jim', 'https://api.github.com/users/jim/followers', 'https://api.github.com/users/jim/following', 'https://api.github.com/users/jim/gists', 'https://api.github.com/users/jim/starred', 'https://api.github.com/users/jim/repos', 'https://api.github.com/users/jim/events', 'https://api.github.com/users/jim/received_events', 0); +INSERT INTO `developer` VALUES (3333, 'wxin-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T01:54:31Z', '2017-04-06T01:22:55Z', 'https://avatars.githubusercontent.com/u/3333?v=4', 'https://api.github.com/users/wxin-zz', 'https://github.com/wxin-zz', 'https://api.github.com/users/wxin-zz/followers', 'https://api.github.com/users/wxin-zz/following', 'https://api.github.com/users/wxin-zz/gists', 'https://api.github.com/users/wxin-zz/starred', 'https://api.github.com/users/wxin-zz/repos', 'https://api.github.com/users/wxin-zz/events', 'https://api.github.com/users/wxin-zz/received_events', 0); +INSERT INTO `developer` VALUES (3335, 'hippo5329', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Chou', NULL, '', 'Taipei', 'thomas@wytron.com.tw', NULL, 'NTUEE. ASIC design. FPGA appilcation.\r\nLinux Kernel contributor, u-boot contributor.\r\nCloud computing, Robotic.', NULL, 0, 0, 20, 0, 0, 0, 0, '2008-03-18T02:52:28Z', '2024-11-01T05:51:28Z', 'https://avatars.githubusercontent.com/u/3335?v=4', 'https://api.github.com/users/hippo5329', 'https://github.com/hippo5329', 'https://api.github.com/users/hippo5329/followers', 'https://api.github.com/users/hippo5329/following', 'https://api.github.com/users/hippo5329/gists', 'https://api.github.com/users/hippo5329/starred', 'https://api.github.com/users/hippo5329/repos', 'https://api.github.com/users/hippo5329/events', 'https://api.github.com/users/hippo5329/received_events', 0); +INSERT INTO `developer` VALUES (3336, 'dante-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-18T02:58:10Z', '2020-11-06T04:48:33Z', 'https://avatars.githubusercontent.com/u/3336?v=4', 'https://api.github.com/users/dante-xx', 'https://github.com/dante-xx', 'https://api.github.com/users/dante-xx/followers', 'https://api.github.com/users/dante-xx/following', 'https://api.github.com/users/dante-xx/gists', 'https://api.github.com/users/dante-xx/starred', 'https://api.github.com/users/dante-xx/repos', 'https://api.github.com/users/dante-xx/events', 'https://api.github.com/users/dante-xx/received_events', 0); +INSERT INTO `developer` VALUES (3337, 'ThisOldCoder', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-18T03:03:37Z', '2024-02-12T05:19:52Z', 'https://avatars.githubusercontent.com/u/3337?v=4', 'https://api.github.com/users/ThisOldCoder', 'https://github.com/ThisOldCoder', 'https://api.github.com/users/ThisOldCoder/followers', 'https://api.github.com/users/ThisOldCoder/following', 'https://api.github.com/users/ThisOldCoder/gists', 'https://api.github.com/users/ThisOldCoder/starred', 'https://api.github.com/users/ThisOldCoder/repos', 'https://api.github.com/users/ThisOldCoder/events', 'https://api.github.com/users/ThisOldCoder/received_events', 0); +INSERT INTO `developer` VALUES (3338, 'amaximov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Maximov', NULL, 'http://antonmaximov.com', '未知', NULL, 'true', NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-18T03:37:12Z', '2022-10-16T14:38:11Z', 'https://avatars.githubusercontent.com/u/3338?v=4', 'https://api.github.com/users/amaximov', 'https://github.com/amaximov', 'https://api.github.com/users/amaximov/followers', 'https://api.github.com/users/amaximov/following', 'https://api.github.com/users/amaximov/gists', 'https://api.github.com/users/amaximov/starred', 'https://api.github.com/users/amaximov/repos', 'https://api.github.com/users/amaximov/events', 'https://api.github.com/users/amaximov/received_events', 0); +INSERT INTO `developer` VALUES (3339, 'KiWiB0RG', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T04:12:20Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3339?v=4', 'https://api.github.com/users/KiWiB0RG', 'https://github.com/KiWiB0RG', 'https://api.github.com/users/KiWiB0RG/followers', 'https://api.github.com/users/KiWiB0RG/following', 'https://api.github.com/users/KiWiB0RG/gists', 'https://api.github.com/users/KiWiB0RG/starred', 'https://api.github.com/users/KiWiB0RG/repos', 'https://api.github.com/users/KiWiB0RG/events', 'https://api.github.com/users/KiWiB0RG/received_events', 0); +INSERT INTO `developer` VALUES (3340, 'mathias', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Gauger', 'GitHub', 'http://blog.mattgauger.com', '未知', 'matt.gauger@gmail.com', NULL, 'Hyper-local solutions to local problems, decentralized+resilient infrastructure, & an inclusive solarpunk future. ', NULL, 0, 0, 183, 96, 0, 0, 0, '2008-03-18T04:50:22Z', '2024-10-15T11:18:45Z', 'https://avatars.githubusercontent.com/u/3340?v=4', 'https://api.github.com/users/mathias', 'https://github.com/mathias', 'https://api.github.com/users/mathias/followers', 'https://api.github.com/users/mathias/following', 'https://api.github.com/users/mathias/gists', 'https://api.github.com/users/mathias/starred', 'https://api.github.com/users/mathias/repos', 'https://api.github.com/users/mathias/events', 'https://api.github.com/users/mathias/received_events', 0); +INSERT INTO `developer` VALUES (3341, 'abraham', 'C+', 19.706788494543925, 0, 0, 0, 0, 0, 0, 'Abraham Williams', 'GitHub', 'https://abrah.am', 'Madison, WI', NULL, NULL, 'Developer, conference speaker, and open source maintainer', NULL, 0, 0, 1434, 214, 0, 0, 0, '2008-03-18T05:00:44Z', '2024-11-04T18:00:09Z', 'https://avatars.githubusercontent.com/u/3341?v=4', 'https://api.github.com/users/abraham', 'https://github.com/abraham', 'https://api.github.com/users/abraham/followers', 'https://api.github.com/users/abraham/following', 'https://api.github.com/users/abraham/gists', 'https://api.github.com/users/abraham/starred', 'https://api.github.com/users/abraham/repos', 'https://api.github.com/users/abraham/events', 'https://api.github.com/users/abraham/received_events', 0); +INSERT INTO `developer` VALUES (3342, 'gerhard', 'C', 1.100640620982636, 0, 0, 0, 0, 0, 0, 'Gerhard Lazu', NULL, 'gerhard.io', 'UK', NULL, NULL, NULL, NULL, 0, 0, 349, 0, 0, 0, 0, '2008-03-18T05:04:08Z', '2024-10-24T15:37:15Z', 'https://avatars.githubusercontent.com/u/3342?v=4', 'https://api.github.com/users/gerhard', 'https://github.com/gerhard', 'https://api.github.com/users/gerhard/followers', 'https://api.github.com/users/gerhard/following', 'https://api.github.com/users/gerhard/gists', 'https://api.github.com/users/gerhard/starred', 'https://api.github.com/users/gerhard/repos', 'https://api.github.com/users/gerhard/events', 'https://api.github.com/users/gerhard/received_events', 0); +INSERT INTO `developer` VALUES (3343, 'brianteutsch', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-03-18T05:33:46Z', '2024-10-07T21:59:58Z', 'https://avatars.githubusercontent.com/u/3343?v=4', 'https://api.github.com/users/brianteutsch', 'https://github.com/brianteutsch', 'https://api.github.com/users/brianteutsch/followers', 'https://api.github.com/users/brianteutsch/following', 'https://api.github.com/users/brianteutsch/gists', 'https://api.github.com/users/brianteutsch/starred', 'https://api.github.com/users/brianteutsch/repos', 'https://api.github.com/users/brianteutsch/events', 'https://api.github.com/users/brianteutsch/received_events', 0); +INSERT INTO `developer` VALUES (3344, 'Sputz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T05:44:30Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3344?v=4', 'https://api.github.com/users/Sputz', 'https://github.com/Sputz', 'https://api.github.com/users/Sputz/followers', 'https://api.github.com/users/Sputz/following', 'https://api.github.com/users/Sputz/gists', 'https://api.github.com/users/Sputz/starred', 'https://api.github.com/users/Sputz/repos', 'https://api.github.com/users/Sputz/events', 'https://api.github.com/users/Sputz/received_events', 0); +INSERT INTO `developer` VALUES (3345, 'vknightbd', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Lam', '20/20 Seed Labs Inc.', '', 'Canada', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-18T06:40:17Z', '2024-09-24T13:46:56Z', 'https://avatars.githubusercontent.com/u/3345?v=4', 'https://api.github.com/users/vknightbd', 'https://github.com/vknightbd', 'https://api.github.com/users/vknightbd/followers', 'https://api.github.com/users/vknightbd/following', 'https://api.github.com/users/vknightbd/gists', 'https://api.github.com/users/vknightbd/starred', 'https://api.github.com/users/vknightbd/repos', 'https://api.github.com/users/vknightbd/events', 'https://api.github.com/users/vknightbd/received_events', 0); +INSERT INTO `developer` VALUES (3346, 'bergie', 'C', 8.423060106706757, 0, 0, 0, 0, 0, 0, 'Henri Bergius', NULL, 'https://bergie.iki.fi/', 'Berlin, Germany', 'henri.bergius@iki.fi', 'true', 'Sailor, developer, occasional adventurer', NULL, 0, 0, 776, 6, 0, 0, 0, '2008-03-18T07:23:03Z', '2024-10-23T12:13:23Z', 'https://avatars.githubusercontent.com/u/3346?v=4', 'https://api.github.com/users/bergie', 'https://github.com/bergie', 'https://api.github.com/users/bergie/followers', 'https://api.github.com/users/bergie/following', 'https://api.github.com/users/bergie/gists', 'https://api.github.com/users/bergie/starred', 'https://api.github.com/users/bergie/repos', 'https://api.github.com/users/bergie/events', 'https://api.github.com/users/bergie/received_events', 0); +INSERT INTO `developer` VALUES (3347, 'tec', 'C', 0, 0, 0, 0, 0, 0, 0, 'Silvan T. Golega', 'Das Büro am Draht, Pidoco', 'http://golega.de', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 29, 20, 0, 0, 0, '2008-03-18T07:58:55Z', '2024-10-27T10:12:49Z', 'https://avatars.githubusercontent.com/u/3347?v=4', 'https://api.github.com/users/tec', 'https://github.com/tec', 'https://api.github.com/users/tec/followers', 'https://api.github.com/users/tec/following', 'https://api.github.com/users/tec/gists', 'https://api.github.com/users/tec/starred', 'https://api.github.com/users/tec/repos', 'https://api.github.com/users/tec/events', 'https://api.github.com/users/tec/received_events', 0); +INSERT INTO `developer` VALUES (3349, 'carbonish', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T08:11:10Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3349?v=4', 'https://api.github.com/users/carbonish', 'https://github.com/carbonish', 'https://api.github.com/users/carbonish/followers', 'https://api.github.com/users/carbonish/following', 'https://api.github.com/users/carbonish/gists', 'https://api.github.com/users/carbonish/starred', 'https://api.github.com/users/carbonish/repos', 'https://api.github.com/users/carbonish/events', 'https://api.github.com/users/carbonish/received_events', 0); +INSERT INTO `developer` VALUES (3350, 'jmale', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Male', NULL, '', 'Sydney', 'jmale.home@gmail.com', NULL, NULL, 'jmale', 0, 0, 5, 0, 0, 0, 0, '2008-03-18T08:26:04Z', '2024-10-21T21:32:08Z', 'https://avatars.githubusercontent.com/u/3350?v=4', 'https://api.github.com/users/jmale', 'https://github.com/jmale', 'https://api.github.com/users/jmale/followers', 'https://api.github.com/users/jmale/following', 'https://api.github.com/users/jmale/gists', 'https://api.github.com/users/jmale/starred', 'https://api.github.com/users/jmale/repos', 'https://api.github.com/users/jmale/events', 'https://api.github.com/users/jmale/received_events', 0); +INSERT INTO `developer` VALUES (3351, 'soerenw', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T08:26:25Z', '2020-04-25T07:56:37Z', 'https://avatars.githubusercontent.com/u/3351?v=4', 'https://api.github.com/users/soerenw', 'https://github.com/soerenw', 'https://api.github.com/users/soerenw/followers', 'https://api.github.com/users/soerenw/following', 'https://api.github.com/users/soerenw/gists', 'https://api.github.com/users/soerenw/starred', 'https://api.github.com/users/soerenw/repos', 'https://api.github.com/users/soerenw/events', 'https://api.github.com/users/soerenw/received_events', 0); +INSERT INTO `developer` VALUES (3353, 'noozo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pedro Assunção', NULL, 'http://pedroassuncao.com', 'Lisboa, Portugal', 'pedro@pedroassuncao.com', NULL, 'Senior Software developer. My opinions are stolen from the Internet.', 'therealnoozo', 0, 0, 31, 27, 0, 0, 0, '2008-03-18T09:15:55Z', '2024-10-24T15:38:15Z', 'https://avatars.githubusercontent.com/u/3353?v=4', 'https://api.github.com/users/noozo', 'https://github.com/noozo', 'https://api.github.com/users/noozo/followers', 'https://api.github.com/users/noozo/following', 'https://api.github.com/users/noozo/gists', 'https://api.github.com/users/noozo/starred', 'https://api.github.com/users/noozo/repos', 'https://api.github.com/users/noozo/events', 'https://api.github.com/users/noozo/received_events', 0); +INSERT INTO `developer` VALUES (3355, 'dido', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rafael Sevilla', 'NTT Global Networks / Imperium Technology', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-18T11:06:47Z', '2024-09-08T22:34:10Z', 'https://avatars.githubusercontent.com/u/3355?v=4', 'https://api.github.com/users/dido', 'https://github.com/dido', 'https://api.github.com/users/dido/followers', 'https://api.github.com/users/dido/following', 'https://api.github.com/users/dido/gists', 'https://api.github.com/users/dido/starred', 'https://api.github.com/users/dido/repos', 'https://api.github.com/users/dido/events', 'https://api.github.com/users/dido/received_events', 0); +INSERT INTO `developer` VALUES (3357, 'tapajos', 'C', 7.548485414032447, 0, 0, 0, 0, 0, 0, 'Marcos Tapajós', 'Senior Software Engineer at @Decisiv ', 'http://tapajos.me', 'Rio de Janeiro', NULL, 'true', NULL, NULL, 0, 0, 725, 6, 0, 0, 0, '2008-03-18T11:23:53Z', '2024-10-23T18:51:42Z', 'https://avatars.githubusercontent.com/u/3357?v=4', 'https://api.github.com/users/tapajos', 'https://github.com/tapajos', 'https://api.github.com/users/tapajos/followers', 'https://api.github.com/users/tapajos/following', 'https://api.github.com/users/tapajos/gists', 'https://api.github.com/users/tapajos/starred', 'https://api.github.com/users/tapajos/repos', 'https://api.github.com/users/tapajos/events', 'https://api.github.com/users/tapajos/received_events', 0); +INSERT INTO `developer` VALUES (3358, 'oleen', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T11:31:53Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3358?v=4', 'https://api.github.com/users/oleen', 'https://github.com/oleen', 'https://api.github.com/users/oleen/followers', 'https://api.github.com/users/oleen/following', 'https://api.github.com/users/oleen/gists', 'https://api.github.com/users/oleen/starred', 'https://api.github.com/users/oleen/repos', 'https://api.github.com/users/oleen/events', 'https://api.github.com/users/oleen/received_events', 0); +INSERT INTO `developer` VALUES (3359, 'miloops', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emilio Tagua', NULL, '', '未知', 'miloops (at) gmail (dot) com', NULL, NULL, NULL, 0, 0, 161, 9, 0, 0, 0, '2008-03-18T12:49:19Z', '2024-07-01T14:52:53Z', 'https://avatars.githubusercontent.com/u/3359?v=4', 'https://api.github.com/users/miloops', 'https://github.com/miloops', 'https://api.github.com/users/miloops/followers', 'https://api.github.com/users/miloops/following', 'https://api.github.com/users/miloops/gists', 'https://api.github.com/users/miloops/starred', 'https://api.github.com/users/miloops/repos', 'https://api.github.com/users/miloops/events', 'https://api.github.com/users/miloops/received_events', 0); +INSERT INTO `developer` VALUES (3361, 'brennandunn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brennan Dunn', 'RightMessage', 'http://rightmessage.com', 'Hinckley, UK', 'me@brennandunn.com', NULL, NULL, NULL, 0, 0, 72, 7, 0, 0, 0, '2008-03-18T13:25:39Z', '2024-10-14T08:58:26Z', 'https://avatars.githubusercontent.com/u/3361?v=4', 'https://api.github.com/users/brennandunn', 'https://github.com/brennandunn', 'https://api.github.com/users/brennandunn/followers', 'https://api.github.com/users/brennandunn/following', 'https://api.github.com/users/brennandunn/gists', 'https://api.github.com/users/brennandunn/starred', 'https://api.github.com/users/brennandunn/repos', 'https://api.github.com/users/brennandunn/events', 'https://api.github.com/users/brennandunn/received_events', 0); +INSERT INTO `developer` VALUES (3363, 'DefV', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan De Poorter', '@dpgradio ', '', 'Belgium', NULL, NULL, NULL, NULL, 0, 0, 54, 4, 0, 0, 0, '2008-03-18T13:43:26Z', '2024-10-31T11:32:54Z', 'https://avatars.githubusercontent.com/u/3363?v=4', 'https://api.github.com/users/DefV', 'https://github.com/DefV', 'https://api.github.com/users/DefV/followers', 'https://api.github.com/users/DefV/following', 'https://api.github.com/users/DefV/gists', 'https://api.github.com/users/DefV/starred', 'https://api.github.com/users/DefV/repos', 'https://api.github.com/users/DefV/events', 'https://api.github.com/users/DefV/received_events', 0); +INSERT INTO `developer` VALUES (3364, 'FloTuEuR', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T13:47:12Z', '2024-03-31T15:55:02Z', 'https://avatars.githubusercontent.com/u/3364?v=4', 'https://api.github.com/users/FloTuEuR', 'https://github.com/FloTuEuR', 'https://api.github.com/users/FloTuEuR/followers', 'https://api.github.com/users/FloTuEuR/following', 'https://api.github.com/users/FloTuEuR/gists', 'https://api.github.com/users/FloTuEuR/starred', 'https://api.github.com/users/FloTuEuR/repos', 'https://api.github.com/users/FloTuEuR/events', 'https://api.github.com/users/FloTuEuR/received_events', 0); +INSERT INTO `developer` VALUES (3365, 'bensherman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Sherman', NULL, '', 'Seattle, Washington', NULL, NULL, NULL, 'bensherman', 0, 0, 26, 48, 0, 0, 0, '2008-03-18T13:52:52Z', '2024-09-29T14:38:39Z', 'https://avatars.githubusercontent.com/u/3365?v=4', 'https://api.github.com/users/bensherman', 'https://github.com/bensherman', 'https://api.github.com/users/bensherman/followers', 'https://api.github.com/users/bensherman/following', 'https://api.github.com/users/bensherman/gists', 'https://api.github.com/users/bensherman/starred', 'https://api.github.com/users/bensherman/repos', 'https://api.github.com/users/bensherman/events', 'https://api.github.com/users/bensherman/received_events', 0); +INSERT INTO `developer` VALUES (3366, 'mikel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mikel Lindsaar', 'StoreConnect, MetaPulse, reinteractive', 'https://lindsaar.net/', 'Sydney, Australia', NULL, 'true', NULL, 'lindsaar', 0, 0, 277, 0, 0, 0, 0, '2008-03-18T14:05:00Z', '2024-11-04T22:57:20Z', 'https://avatars.githubusercontent.com/u/3366?v=4', 'https://api.github.com/users/mikel', 'https://github.com/mikel', 'https://api.github.com/users/mikel/followers', 'https://api.github.com/users/mikel/following', 'https://api.github.com/users/mikel/gists', 'https://api.github.com/users/mikel/starred', 'https://api.github.com/users/mikel/repos', 'https://api.github.com/users/mikel/events', 'https://api.github.com/users/mikel/received_events', 0); +INSERT INTO `developer` VALUES (3367, 'matthewvb', 'C', 0, 0, 0, 0, 0, 0, 0, 'MatthewVB', NULL, 'http://www.matthewvb.me', 'Washington DC Metro Area', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-18T14:13:02Z', '2021-02-05T02:38:33Z', 'https://avatars.githubusercontent.com/u/3367?v=4', 'https://api.github.com/users/matthewvb', 'https://github.com/matthewvb', 'https://api.github.com/users/matthewvb/followers', 'https://api.github.com/users/matthewvb/following', 'https://api.github.com/users/matthewvb/gists', 'https://api.github.com/users/matthewvb/starred', 'https://api.github.com/users/matthewvb/repos', 'https://api.github.com/users/matthewvb/events', 'https://api.github.com/users/matthewvb/received_events', 0); +INSERT INTO `developer` VALUES (3368, 'jonaphin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@Adobe', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 2, 0, 0, 0, '2008-03-18T14:24:39Z', '2024-08-11T12:57:05Z', 'https://avatars.githubusercontent.com/u/3368?v=4', 'https://api.github.com/users/jonaphin', 'https://github.com/jonaphin', 'https://api.github.com/users/jonaphin/followers', 'https://api.github.com/users/jonaphin/following', 'https://api.github.com/users/jonaphin/gists', 'https://api.github.com/users/jonaphin/starred', 'https://api.github.com/users/jonaphin/repos', 'https://api.github.com/users/jonaphin/events', 'https://api.github.com/users/jonaphin/received_events', 0); +INSERT INTO `developer` VALUES (3369, 'oracle202', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anthony Rocco', 'We Are Titans, Inc.', 'http://anthonyrocco.net', 'Fort Lauderdale, FL', 'arocco@me.com', NULL, NULL, NULL, 0, 0, 6, 3, 0, 0, 0, '2008-03-18T14:37:05Z', '2020-12-09T00:51:19Z', 'https://avatars.githubusercontent.com/u/3369?v=4', 'https://api.github.com/users/oracle202', 'https://github.com/oracle202', 'https://api.github.com/users/oracle202/followers', 'https://api.github.com/users/oracle202/following', 'https://api.github.com/users/oracle202/gists', 'https://api.github.com/users/oracle202/starred', 'https://api.github.com/users/oracle202/repos', 'https://api.github.com/users/oracle202/events', 'https://api.github.com/users/oracle202/received_events', 0); +INSERT INTO `developer` VALUES (3370, 'stefano', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefano', NULL, '', 'Italy', NULL, 'true', NULL, NULL, 0, 0, 36, 8, 0, 0, 0, '2008-03-18T14:38:57Z', '2024-09-22T10:44:33Z', 'https://avatars.githubusercontent.com/u/3370?v=4', 'https://api.github.com/users/stefano', 'https://github.com/stefano', 'https://api.github.com/users/stefano/followers', 'https://api.github.com/users/stefano/following', 'https://api.github.com/users/stefano/gists', 'https://api.github.com/users/stefano/starred', 'https://api.github.com/users/stefano/repos', 'https://api.github.com/users/stefano/events', 'https://api.github.com/users/stefano/received_events', 0); +INSERT INTO `developer` VALUES (3372, 'ryanw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan', NULL, 'https://ryan.nz', 'Aotearoa', 'git@ryan.nz', NULL, 'I do computering', NULL, 0, 0, 25, 4, 0, 0, 0, '2008-03-18T14:42:46Z', '2024-04-13T12:40:26Z', 'https://avatars.githubusercontent.com/u/3372?v=4', 'https://api.github.com/users/ryanw', 'https://github.com/ryanw', 'https://api.github.com/users/ryanw/followers', 'https://api.github.com/users/ryanw/following', 'https://api.github.com/users/ryanw/gists', 'https://api.github.com/users/ryanw/starred', 'https://api.github.com/users/ryanw/repos', 'https://api.github.com/users/ryanw/events', 'https://api.github.com/users/ryanw/received_events', 0); +INSERT INTO `developer` VALUES (3373, 'viniciusteles', 'C', 2.5239680620016105, 0, 0, 0, 0, 0, 0, 'Vinicius Teles', 'Casal Partiu', 'http://nomadedigital.com.br', 'Europe', 'vinicius.m.teles@gmail.com', 'true', 'Brazilian digital nomad living around the globe since 2010.', NULL, 0, 0, 432, 64, 0, 0, 0, '2008-03-18T14:43:13Z', '2024-10-04T14:23:46Z', 'https://avatars.githubusercontent.com/u/3373?v=4', 'https://api.github.com/users/viniciusteles', 'https://github.com/viniciusteles', 'https://api.github.com/users/viniciusteles/followers', 'https://api.github.com/users/viniciusteles/following', 'https://api.github.com/users/viniciusteles/gists', 'https://api.github.com/users/viniciusteles/starred', 'https://api.github.com/users/viniciusteles/repos', 'https://api.github.com/users/viniciusteles/events', 'https://api.github.com/users/viniciusteles/received_events', 0); +INSERT INTO `developer` VALUES (3374, 'jderrett', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Derrett', '@aws', 'https://jderrett.github.io', 'Austin, TX', NULL, NULL, NULL, NULL, 0, 0, 34, 31, 0, 0, 0, '2008-03-18T16:59:33Z', '2024-10-01T10:56:56Z', 'https://avatars.githubusercontent.com/u/3374?v=4', 'https://api.github.com/users/jderrett', 'https://github.com/jderrett', 'https://api.github.com/users/jderrett/followers', 'https://api.github.com/users/jderrett/following', 'https://api.github.com/users/jderrett/gists', 'https://api.github.com/users/jderrett/starred', 'https://api.github.com/users/jderrett/repos', 'https://api.github.com/users/jderrett/events', 'https://api.github.com/users/jderrett/received_events', 0); +INSERT INTO `developer` VALUES (3376, 'clocksarestupid', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T17:12:58Z', '2019-11-22T06:01:03Z', 'https://avatars.githubusercontent.com/u/3376?v=4', 'https://api.github.com/users/clocksarestupid', 'https://github.com/clocksarestupid', 'https://api.github.com/users/clocksarestupid/followers', 'https://api.github.com/users/clocksarestupid/following', 'https://api.github.com/users/clocksarestupid/gists', 'https://api.github.com/users/clocksarestupid/starred', 'https://api.github.com/users/clocksarestupid/repos', 'https://api.github.com/users/clocksarestupid/events', 'https://api.github.com/users/clocksarestupid/received_events', 0); +INSERT INTO `developer` VALUES (3379, 'doug', 'C', 0.41469968555180525, 0, 0, 0, 0, 0, 0, 'Doug', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 309, 23, 0, 0, 0, '2008-03-18T19:00:43Z', '2024-10-23T11:40:44Z', 'https://avatars.githubusercontent.com/u/3379?v=4', 'https://api.github.com/users/doug', 'https://github.com/doug', 'https://api.github.com/users/doug/followers', 'https://api.github.com/users/doug/following', 'https://api.github.com/users/doug/gists', 'https://api.github.com/users/doug/starred', 'https://api.github.com/users/doug/repos', 'https://api.github.com/users/doug/events', 'https://api.github.com/users/doug/received_events', 0); +INSERT INTO `developer` VALUES (3380, 'jflatow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jared Flatow', NULL, 'http://www.flatown.com', 'Palo Alto', 'jflatow@gmail.com', 'true', NULL, NULL, 0, 0, 109, 50, 0, 0, 0, '2008-03-18T19:15:23Z', '2024-10-24T20:33:39Z', 'https://avatars.githubusercontent.com/u/3380?v=4', 'https://api.github.com/users/jflatow', 'https://github.com/jflatow', 'https://api.github.com/users/jflatow/followers', 'https://api.github.com/users/jflatow/following', 'https://api.github.com/users/jflatow/gists', 'https://api.github.com/users/jflatow/starred', 'https://api.github.com/users/jflatow/repos', 'https://api.github.com/users/jflatow/events', 'https://api.github.com/users/jflatow/received_events', 0); +INSERT INTO `developer` VALUES (3381, 'Skewler', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-18T19:26:18Z', '2022-05-07T13:00:39Z', 'https://avatars.githubusercontent.com/u/3381?v=4', 'https://api.github.com/users/Skewler', 'https://github.com/Skewler', 'https://api.github.com/users/Skewler/followers', 'https://api.github.com/users/Skewler/following', 'https://api.github.com/users/Skewler/gists', 'https://api.github.com/users/Skewler/starred', 'https://api.github.com/users/Skewler/repos', 'https://api.github.com/users/Skewler/events', 'https://api.github.com/users/Skewler/received_events', 0); +INSERT INTO `developer` VALUES (3383, 'tavon', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Hwang', 'Lanio', 'http://www.tavon.org', 'Grand Rapids, MI', NULL, NULL, 'CEO + Founder of Lanio', 'tavon', 0, 0, 27, 11, 0, 0, 0, '2008-03-18T20:29:07Z', '2024-06-25T17:00:34Z', 'https://avatars.githubusercontent.com/u/3383?v=4', 'https://api.github.com/users/tavon', 'https://github.com/tavon', 'https://api.github.com/users/tavon/followers', 'https://api.github.com/users/tavon/following', 'https://api.github.com/users/tavon/gists', 'https://api.github.com/users/tavon/starred', 'https://api.github.com/users/tavon/repos', 'https://api.github.com/users/tavon/events', 'https://api.github.com/users/tavon/received_events', 0); +INSERT INTO `developer` VALUES (3384, 'jhubert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Baker', '@retailzipline ', 'http://jeremyhubert.com', 'North America', 'jhubert@gmail.com', NULL, NULL, NULL, 0, 0, 107, 64, 0, 0, 0, '2008-03-18T20:55:40Z', '2024-11-03T06:35:54Z', 'https://avatars.githubusercontent.com/u/3384?v=4', 'https://api.github.com/users/jhubert', 'https://github.com/jhubert', 'https://api.github.com/users/jhubert/followers', 'https://api.github.com/users/jhubert/following', 'https://api.github.com/users/jhubert/gists', 'https://api.github.com/users/jhubert/starred', 'https://api.github.com/users/jhubert/repos', 'https://api.github.com/users/jhubert/events', 'https://api.github.com/users/jhubert/received_events', 0); +INSERT INTO `developer` VALUES (3385, 'sgruhier', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sébastien Gruhier', 'https://xilinus.com', '', 'Saint-Paul en Forêt', NULL, NULL, NULL, 'sgruhier', 0, 0, 64, 9, 0, 0, 0, '2008-03-18T21:03:15Z', '2024-10-17T07:31:54Z', 'https://avatars.githubusercontent.com/u/3385?v=4', 'https://api.github.com/users/sgruhier', 'https://github.com/sgruhier', 'https://api.github.com/users/sgruhier/followers', 'https://api.github.com/users/sgruhier/following', 'https://api.github.com/users/sgruhier/gists', 'https://api.github.com/users/sgruhier/starred', 'https://api.github.com/users/sgruhier/repos', 'https://api.github.com/users/sgruhier/events', 'https://api.github.com/users/sgruhier/received_events', 0); +INSERT INTO `developer` VALUES (3386, 'agrieser', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Grieser', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 24, 16, 0, 0, 0, '2008-03-18T21:25:07Z', '2024-10-26T18:32:00Z', 'https://avatars.githubusercontent.com/u/3386?v=4', 'https://api.github.com/users/agrieser', 'https://github.com/agrieser', 'https://api.github.com/users/agrieser/followers', 'https://api.github.com/users/agrieser/following', 'https://api.github.com/users/agrieser/gists', 'https://api.github.com/users/agrieser/starred', 'https://api.github.com/users/agrieser/repos', 'https://api.github.com/users/agrieser/events', 'https://api.github.com/users/agrieser/received_events', 0); +INSERT INTO `developer` VALUES (3387, 'fxn', 'C+', 18.386352193839574, 0, 0, 0, 0, 0, 0, 'Xavier Noria', 'Freelance', 'https://hashref.com', 'Barcelona', 'fxn@hashref.com', 'true', 'Everlasting student · Rails Core · Zeitwerk · Freelance · Life lover', 'fxn', 0, 0, 1357, 25, 0, 0, 0, '2008-03-18T21:36:55Z', '2024-10-08T17:27:34Z', 'https://avatars.githubusercontent.com/u/3387?v=4', 'https://api.github.com/users/fxn', 'https://github.com/fxn', 'https://api.github.com/users/fxn/followers', 'https://api.github.com/users/fxn/following', 'https://api.github.com/users/fxn/gists', 'https://api.github.com/users/fxn/starred', 'https://api.github.com/users/fxn/repos', 'https://api.github.com/users/fxn/events', 'https://api.github.com/users/fxn/received_events', 0); +INSERT INTO `developer` VALUES (3389, 'towynlin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zachary Crockett', '@sofarocean ', 'https://zacharycrockett.com/', 'San Francisco Bay Area', 'towynlin@gmail.com', NULL, 'Firmware Engineering Manager at Sofar Ocean', NULL, 0, 0, 96, 66, 0, 0, 0, '2008-03-18T22:07:06Z', '2024-11-01T18:00:35Z', 'https://avatars.githubusercontent.com/u/3389?v=4', 'https://api.github.com/users/towynlin', 'https://github.com/towynlin', 'https://api.github.com/users/towynlin/followers', 'https://api.github.com/users/towynlin/following', 'https://api.github.com/users/towynlin/gists', 'https://api.github.com/users/towynlin/starred', 'https://api.github.com/users/towynlin/repos', 'https://api.github.com/users/towynlin/events', 'https://api.github.com/users/towynlin/received_events', 0); +INSERT INTO `developer` VALUES (3390, 'madrobby', 'B', 43.04592882257795, 0, 0, 0, 0, 0, 0, 'Thomas Fuchs', 'Slash7 LLC', 'https://hachyderm.io/@thomasfuchs', 'Tucson, AZ', 'thomas@slash7.com', NULL, NULL, NULL, 0, 0, 2795, 14, 0, 0, 0, '2008-03-18T22:11:15Z', '2024-09-25T15:25:51Z', 'https://avatars.githubusercontent.com/u/3390?v=4', 'https://api.github.com/users/madrobby', 'https://github.com/madrobby', 'https://api.github.com/users/madrobby/followers', 'https://api.github.com/users/madrobby/following', 'https://api.github.com/users/madrobby/gists', 'https://api.github.com/users/madrobby/starred', 'https://api.github.com/users/madrobby/repos', 'https://api.github.com/users/madrobby/events', 'https://api.github.com/users/madrobby/received_events', 0); +INSERT INTO `developer` VALUES (3392, 'tobie', 'C', 6.0554659889776685, 0, 6, 21, 162, 1, 0, 'Tobie Langel', 'UnlockOpen', 'http://www.tobie.me', 'Geneva, Switzerland', 'tobie@unlockopen.com', NULL, NULL, 'tobie', 0, 0, 431, 102, 0, 0, 0, '2008-03-18T22:44:44Z', '2024-08-23T11:02:22Z', 'https://avatars.githubusercontent.com/u/3392?v=4', 'https://api.github.com/users/tobie', 'https://github.com/tobie', 'https://api.github.com/users/tobie/followers', 'https://api.github.com/users/tobie/following', 'https://api.github.com/users/tobie/gists', 'https://api.github.com/users/tobie/starred', 'https://api.github.com/users/tobie/repos', 'https://api.github.com/users/tobie/events', 'https://api.github.com/users/tobie/received_events', 0); +INSERT INTO `developer` VALUES (3393, 'rue', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rue Saynatkari', '@reaktor ', '', 'Helsinki', NULL, 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-18T22:54:41Z', '2023-08-28T10:53:13Z', 'https://avatars.githubusercontent.com/u/3393?v=4', 'https://api.github.com/users/rue', 'https://github.com/rue', 'https://api.github.com/users/rue/followers', 'https://api.github.com/users/rue/following', 'https://api.github.com/users/rue/gists', 'https://api.github.com/users/rue/starred', 'https://api.github.com/users/rue/repos', 'https://api.github.com/users/rue/events', 'https://api.github.com/users/rue/received_events', 0); +INSERT INTO `developer` VALUES (3394, 'thomd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Dürr', NULL, '', 'Hamburg, Germany', 'thomduerr@gmail.com', NULL, NULL, NULL, 0, 0, 52, 46, 0, 0, 0, '2008-03-18T23:03:35Z', '2024-10-31T21:13:37Z', 'https://avatars.githubusercontent.com/u/3394?v=4', 'https://api.github.com/users/thomd', 'https://github.com/thomd', 'https://api.github.com/users/thomd/followers', 'https://api.github.com/users/thomd/following', 'https://api.github.com/users/thomd/gists', 'https://api.github.com/users/thomd/starred', 'https://api.github.com/users/thomd/repos', 'https://api.github.com/users/thomd/events', 'https://api.github.com/users/thomd/received_events', 0); +INSERT INTO `developer` VALUES (3395, 'kirbmart', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brady Becker', NULL, 'dramapothecary.com', 'Denver', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-18T23:26:57Z', '2022-08-04T19:40:24Z', 'https://avatars.githubusercontent.com/u/3395?v=4', 'https://api.github.com/users/kirbmart', 'https://github.com/kirbmart', 'https://api.github.com/users/kirbmart/followers', 'https://api.github.com/users/kirbmart/following', 'https://api.github.com/users/kirbmart/gists', 'https://api.github.com/users/kirbmart/starred', 'https://api.github.com/users/kirbmart/repos', 'https://api.github.com/users/kirbmart/events', 'https://api.github.com/users/kirbmart/received_events', 0); +INSERT INTO `developer` VALUES (3396, 'Righteousham', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-18T23:29:57Z', '2012-11-23T21:42:52Z', 'https://avatars.githubusercontent.com/u/3396?v=4', 'https://api.github.com/users/Righteousham', 'https://github.com/Righteousham', 'https://api.github.com/users/Righteousham/followers', 'https://api.github.com/users/Righteousham/following', 'https://api.github.com/users/Righteousham/gists', 'https://api.github.com/users/Righteousham/starred', 'https://api.github.com/users/Righteousham/repos', 'https://api.github.com/users/Righteousham/events', 'https://api.github.com/users/Righteousham/received_events', 0); +INSERT INTO `developer` VALUES (3398, 'alikuski', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-18T23:37:53Z', '2016-02-26T22:34:57Z', 'https://avatars.githubusercontent.com/u/3398?v=4', 'https://api.github.com/users/alikuski', 'https://github.com/alikuski', 'https://api.github.com/users/alikuski/followers', 'https://api.github.com/users/alikuski/following', 'https://api.github.com/users/alikuski/gists', 'https://api.github.com/users/alikuski/starred', 'https://api.github.com/users/alikuski/repos', 'https://api.github.com/users/alikuski/events', 'https://api.github.com/users/alikuski/received_events', 0); +INSERT INTO `developer` VALUES (3399, 'jfinch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jack Finch', NULL, '', 'Salt Lake City, UT', 'jfinch@hyperxmedia.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-18T23:39:26Z', '2016-02-26T22:34:57Z', 'https://avatars.githubusercontent.com/u/3399?v=4', 'https://api.github.com/users/jfinch', 'https://github.com/jfinch', 'https://api.github.com/users/jfinch/followers', 'https://api.github.com/users/jfinch/following', 'https://api.github.com/users/jfinch/gists', 'https://api.github.com/users/jfinch/starred', 'https://api.github.com/users/jfinch/repos', 'https://api.github.com/users/jfinch/events', 'https://api.github.com/users/jfinch/received_events', 0); +INSERT INTO `developer` VALUES (3400, 'kipper', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-19T00:10:38Z', '2021-06-09T06:30:22Z', 'https://avatars.githubusercontent.com/u/3400?v=4', 'https://api.github.com/users/kipper', 'https://github.com/kipper', 'https://api.github.com/users/kipper/followers', 'https://api.github.com/users/kipper/following', 'https://api.github.com/users/kipper/gists', 'https://api.github.com/users/kipper/starred', 'https://api.github.com/users/kipper/repos', 'https://api.github.com/users/kipper/events', 'https://api.github.com/users/kipper/received_events', 0); +INSERT INTO `developer` VALUES (3402, 'djalmaaraujo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Djalma Araújo', '@Automattic', '', 'Recife, Brazil', 'djalma.araujo@gmail.com', 'true', 'Senior Software Engineer at @automattic', NULL, 0, 0, 262, 130, 0, 0, 0, '2008-03-19T00:22:14Z', '2024-11-04T18:29:00Z', 'https://avatars.githubusercontent.com/u/3402?v=4', 'https://api.github.com/users/djalmaaraujo', 'https://github.com/djalmaaraujo', 'https://api.github.com/users/djalmaaraujo/followers', 'https://api.github.com/users/djalmaaraujo/following', 'https://api.github.com/users/djalmaaraujo/gists', 'https://api.github.com/users/djalmaaraujo/starred', 'https://api.github.com/users/djalmaaraujo/repos', 'https://api.github.com/users/djalmaaraujo/events', 'https://api.github.com/users/djalmaaraujo/received_events', 0); +INSERT INTO `developer` VALUES (3403, 'cade', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cade Truitt', 'Good Enough', 'http://cadetruitt.com', 'Nashville, TN', NULL, NULL, NULL, NULL, 0, 0, 18, 0, 0, 0, 0, '2008-03-19T00:44:49Z', '2024-10-22T11:18:22Z', 'https://avatars.githubusercontent.com/u/3403?v=4', 'https://api.github.com/users/cade', 'https://github.com/cade', 'https://api.github.com/users/cade/followers', 'https://api.github.com/users/cade/following', 'https://api.github.com/users/cade/gists', 'https://api.github.com/users/cade/starred', 'https://api.github.com/users/cade/repos', 'https://api.github.com/users/cade/events', 'https://api.github.com/users/cade/received_events', 0); +INSERT INTO `developer` VALUES (3407, 'minichiello', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gerson Minichiello', NULL, '', 'Como, Italy', NULL, 'true', 'Full-Stack Developer | C# .NET • Java / Spring Boot • Node.js • PHP', NULL, 0, 0, 44, 3, 0, 0, 0, '2008-03-19T01:55:46Z', '2024-10-21T02:47:46Z', 'https://avatars.githubusercontent.com/u/3407?v=4', 'https://api.github.com/users/minichiello', 'https://github.com/minichiello', 'https://api.github.com/users/minichiello/followers', 'https://api.github.com/users/minichiello/following', 'https://api.github.com/users/minichiello/gists', 'https://api.github.com/users/minichiello/starred', 'https://api.github.com/users/minichiello/repos', 'https://api.github.com/users/minichiello/events', 'https://api.github.com/users/minichiello/received_events', 0); +INSERT INTO `developer` VALUES (3409, 'kinghajj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samuel Fredrickson', NULL, '', 'Bay Area, CA', NULL, NULL, NULL, NULL, 0, 0, 30, 1, 0, 0, 0, '2008-03-19T02:42:41Z', '2022-08-30T22:34:50Z', 'https://avatars.githubusercontent.com/u/3409?v=4', 'https://api.github.com/users/kinghajj', 'https://github.com/kinghajj', 'https://api.github.com/users/kinghajj/followers', 'https://api.github.com/users/kinghajj/following', 'https://api.github.com/users/kinghajj/gists', 'https://api.github.com/users/kinghajj/starred', 'https://api.github.com/users/kinghajj/repos', 'https://api.github.com/users/kinghajj/events', 'https://api.github.com/users/kinghajj/received_events', 0); +INSERT INTO `developer` VALUES (3410, 'someguy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-19T02:54:03Z', '2014-04-18T10:30:43Z', 'https://avatars.githubusercontent.com/u/3410?v=4', 'https://api.github.com/users/someguy', 'https://github.com/someguy', 'https://api.github.com/users/someguy/followers', 'https://api.github.com/users/someguy/following', 'https://api.github.com/users/someguy/gists', 'https://api.github.com/users/someguy/starred', 'https://api.github.com/users/someguy/repos', 'https://api.github.com/users/someguy/events', 'https://api.github.com/users/someguy/received_events', 0); +INSERT INTO `developer` VALUES (3411, 'fourchanprog', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-19T02:55:12Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3411?v=4', 'https://api.github.com/users/fourchanprog', 'https://github.com/fourchanprog', 'https://api.github.com/users/fourchanprog/followers', 'https://api.github.com/users/fourchanprog/following', 'https://api.github.com/users/fourchanprog/gists', 'https://api.github.com/users/fourchanprog/starred', 'https://api.github.com/users/fourchanprog/repos', 'https://api.github.com/users/fourchanprog/events', 'https://api.github.com/users/fourchanprog/received_events', 0); +INSERT INTO `developer` VALUES (3413, 'rugyoga', 'C+', 15.699670289315298, 0, 75, 50, 3, 0, 0, 'Guy Argo', NULL, '', 'San Francisco', 'guy.argo@gmail.com', NULL, 'Scot in exile.\r\nDid Ph.D on implementing functional languages a long time ago in a land far far away. Big Elixir fan.', NULL, 0, 0, 15, 1, 0, 0, 0, '2008-03-19T04:26:00Z', '2024-10-31T03:03:32Z', 'https://avatars.githubusercontent.com/u/3413?v=4', 'https://api.github.com/users/rugyoga', 'https://github.com/rugyoga', 'https://api.github.com/users/rugyoga/followers', 'https://api.github.com/users/rugyoga/following', 'https://api.github.com/users/rugyoga/gists', 'https://api.github.com/users/rugyoga/starred', 'https://api.github.com/users/rugyoga/repos', 'https://api.github.com/users/rugyoga/events', 'https://api.github.com/users/rugyoga/received_events', 0); +INSERT INTO `developer` VALUES (3415, 'whisker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Budd', 'TDP, Inc.', 'htpp://www.calamitylane.com', 'Kansas City, MO', 'ericbudd@calamitylane.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-19T05:18:52Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3415?v=4', 'https://api.github.com/users/whisker', 'https://github.com/whisker', 'https://api.github.com/users/whisker/followers', 'https://api.github.com/users/whisker/following', 'https://api.github.com/users/whisker/gists', 'https://api.github.com/users/whisker/starred', 'https://api.github.com/users/whisker/repos', 'https://api.github.com/users/whisker/events', 'https://api.github.com/users/whisker/received_events', 0); +INSERT INTO `developer` VALUES (3416, 'thoughtpolice', 'C', 2.4896710152300687, 0, 0, 0, 0, 0, 0, 'Austin Seipp', NULL, 'https://austinseipp.com', 'Austin, TX', NULL, NULL, 'i live 400 miles underground', 'stdlib', 0, 0, 430, 7, 0, 0, 0, '2008-03-19T05:26:09Z', '2024-09-23T13:46:42Z', 'https://avatars.githubusercontent.com/u/3416?v=4', 'https://api.github.com/users/thoughtpolice', 'https://github.com/thoughtpolice', 'https://api.github.com/users/thoughtpolice/followers', 'https://api.github.com/users/thoughtpolice/following', 'https://api.github.com/users/thoughtpolice/gists', 'https://api.github.com/users/thoughtpolice/starred', 'https://api.github.com/users/thoughtpolice/repos', 'https://api.github.com/users/thoughtpolice/events', 'https://api.github.com/users/thoughtpolice/received_events', 0); +INSERT INTO `developer` VALUES (3417, 'benj0323', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-19T05:44:35Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3417?v=4', 'https://api.github.com/users/benj0323', 'https://github.com/benj0323', 'https://api.github.com/users/benj0323/followers', 'https://api.github.com/users/benj0323/following', 'https://api.github.com/users/benj0323/gists', 'https://api.github.com/users/benj0323/starred', 'https://api.github.com/users/benj0323/repos', 'https://api.github.com/users/benj0323/events', 'https://api.github.com/users/benj0323/received_events', 0); +INSERT INTO `developer` VALUES (3418, 'guyvdb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guy van den Berg', NULL, '', 'Johannesburg, South Africa', 'tofofresh@gmail.com', NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-19T07:05:02Z', '2024-09-25T12:01:35Z', 'https://avatars.githubusercontent.com/u/3418?v=4', 'https://api.github.com/users/guyvdb', 'https://github.com/guyvdb', 'https://api.github.com/users/guyvdb/followers', 'https://api.github.com/users/guyvdb/following', 'https://api.github.com/users/guyvdb/gists', 'https://api.github.com/users/guyvdb/starred', 'https://api.github.com/users/guyvdb/repos', 'https://api.github.com/users/guyvdb/events', 'https://api.github.com/users/guyvdb/received_events', 0); +INSERT INTO `developer` VALUES (3423, 'meili-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-19T10:48:51Z', '2019-12-16T11:15:14Z', 'https://avatars.githubusercontent.com/u/3423?v=4', 'https://api.github.com/users/meili-zz', 'https://github.com/meili-zz', 'https://api.github.com/users/meili-zz/followers', 'https://api.github.com/users/meili-zz/following', 'https://api.github.com/users/meili-zz/gists', 'https://api.github.com/users/meili-zz/starred', 'https://api.github.com/users/meili-zz/repos', 'https://api.github.com/users/meili-zz/events', 'https://api.github.com/users/meili-zz/received_events', 0); +INSERT INTO `developer` VALUES (3425, 'educhana', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eduardo Javier Chana Bernabé', 'Santander', '', 'Madrid', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-19T11:01:29Z', '2024-10-05T07:41:47Z', 'https://avatars.githubusercontent.com/u/3425?v=4', 'https://api.github.com/users/educhana', 'https://github.com/educhana', 'https://api.github.com/users/educhana/followers', 'https://api.github.com/users/educhana/following', 'https://api.github.com/users/educhana/gists', 'https://api.github.com/users/educhana/starred', 'https://api.github.com/users/educhana/repos', 'https://api.github.com/users/educhana/events', 'https://api.github.com/users/educhana/received_events', 0); +INSERT INTO `developer` VALUES (3427, 'wick3d', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jerry Jalava', NULL, 'http://protoblogr.net', 'Finland', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-19T12:34:35Z', '2015-04-11T14:22:31Z', 'https://avatars.githubusercontent.com/u/3427?v=4', 'https://api.github.com/users/wick3d', 'https://github.com/wick3d', 'https://api.github.com/users/wick3d/followers', 'https://api.github.com/users/wick3d/following', 'https://api.github.com/users/wick3d/gists', 'https://api.github.com/users/wick3d/starred', 'https://api.github.com/users/wick3d/repos', 'https://api.github.com/users/wick3d/events', 'https://api.github.com/users/wick3d/received_events', 0); +INSERT INTO `developer` VALUES (3428, 'caring', 'C', 0, 0, 0, 0, 0, 0, 0, 'Caring.com Dev Team', NULL, 'www.caring.com', 'United States of America', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-19T13:09:04Z', '2024-09-29T07:09:05Z', 'https://avatars.githubusercontent.com/u/3428?v=4', 'https://api.github.com/users/caring', 'https://github.com/caring', 'https://api.github.com/users/caring/followers', 'https://api.github.com/users/caring/following', 'https://api.github.com/users/caring/gists', 'https://api.github.com/users/caring/starred', 'https://api.github.com/users/caring/repos', 'https://api.github.com/users/caring/events', 'https://api.github.com/users/caring/received_events', 0); +INSERT INTO `developer` VALUES (3429, 'antelio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Antelio I. Abe', NULL, '', '未知', 'antelio@gmail.com', NULL, NULL, NULL, 0, 0, 25, 52, 0, 0, 0, '2008-03-19T13:51:12Z', '2024-10-21T19:01:26Z', 'https://avatars.githubusercontent.com/u/3429?v=4', 'https://api.github.com/users/antelio', 'https://github.com/antelio', 'https://api.github.com/users/antelio/followers', 'https://api.github.com/users/antelio/following', 'https://api.github.com/users/antelio/gists', 'https://api.github.com/users/antelio/starred', 'https://api.github.com/users/antelio/repos', 'https://api.github.com/users/antelio/events', 'https://api.github.com/users/antelio/received_events', 0); +INSERT INTO `developer` VALUES (3430, 'joshutt', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-19T14:16:36Z', '2024-09-01T22:21:40Z', 'https://avatars.githubusercontent.com/u/3430?v=4', 'https://api.github.com/users/joshutt', 'https://github.com/joshutt', 'https://api.github.com/users/joshutt/followers', 'https://api.github.com/users/joshutt/following', 'https://api.github.com/users/joshutt/gists', 'https://api.github.com/users/joshutt/starred', 'https://api.github.com/users/joshutt/repos', 'https://api.github.com/users/joshutt/events', 'https://api.github.com/users/joshutt/received_events', 0); +INSERT INTO `developer` VALUES (3431, 'whartonn', 'C', 0, 0, 0, 0, 0, 0, 0, 'N Wharton', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-03-19T14:30:55Z', '2023-04-19T20:25:16Z', 'https://avatars.githubusercontent.com/u/3431?v=4', 'https://api.github.com/users/whartonn', 'https://github.com/whartonn', 'https://api.github.com/users/whartonn/followers', 'https://api.github.com/users/whartonn/following', 'https://api.github.com/users/whartonn/gists', 'https://api.github.com/users/whartonn/starred', 'https://api.github.com/users/whartonn/repos', 'https://api.github.com/users/whartonn/events', 'https://api.github.com/users/whartonn/received_events', 0); +INSERT INTO `developer` VALUES (3432, 'grobie', 'C', 0.0888777412221604, 0, 0, 0, 0, 0, 0, 'Tobias Schmidt', '@gigs', 'https://hachyderm.io/@grobie', 'Berlin', NULL, 'true', 'Head of Engineering @gigs', 'dagrobie', 0, 0, 290, 50, 0, 0, 0, '2008-03-19T14:36:19Z', '2024-10-28T11:16:15Z', 'https://avatars.githubusercontent.com/u/3432?v=4', 'https://api.github.com/users/grobie', 'https://github.com/grobie', 'https://api.github.com/users/grobie/followers', 'https://api.github.com/users/grobie/following', 'https://api.github.com/users/grobie/gists', 'https://api.github.com/users/grobie/starred', 'https://api.github.com/users/grobie/repos', 'https://api.github.com/users/grobie/events', 'https://api.github.com/users/grobie/received_events', 0); +INSERT INTO `developer` VALUES (3433, 'sunfjun', 'C', 0, 0, 0, 0, 0, 0, 0, 'FengJun Sun', 'The Plant Co., Ltd.', 'sunfjun.com', 'HangZhou China', 'sunfjun@gmail.com', NULL, NULL, NULL, 0, 0, 22, 7, 0, 0, 0, '2008-03-19T14:59:49Z', '2024-10-15T04:33:48Z', 'https://avatars.githubusercontent.com/u/3433?v=4', 'https://api.github.com/users/sunfjun', 'https://github.com/sunfjun', 'https://api.github.com/users/sunfjun/followers', 'https://api.github.com/users/sunfjun/following', 'https://api.github.com/users/sunfjun/gists', 'https://api.github.com/users/sunfjun/starred', 'https://api.github.com/users/sunfjun/repos', 'https://api.github.com/users/sunfjun/events', 'https://api.github.com/users/sunfjun/received_events', 0); +INSERT INTO `developer` VALUES (3434, 'rafudu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raphael Martins', 'Lolo', '', 'berlin, de', NULL, NULL, NULL, NULL, 0, 0, 28, 6, 0, 0, 0, '2008-03-19T15:02:48Z', '2024-10-13T20:47:42Z', 'https://avatars.githubusercontent.com/u/3434?v=4', 'https://api.github.com/users/rafudu', 'https://github.com/rafudu', 'https://api.github.com/users/rafudu/followers', 'https://api.github.com/users/rafudu/following', 'https://api.github.com/users/rafudu/gists', 'https://api.github.com/users/rafudu/starred', 'https://api.github.com/users/rafudu/repos', 'https://api.github.com/users/rafudu/events', 'https://api.github.com/users/rafudu/received_events', 0); +INSERT INTO `developer` VALUES (3435, 'jnarowski', 'C', 0, 0, 0, 0, 0, 0, 0, 'JP Narowski', 'KarmaCRM', 'jpnarowski.com', 'Denver, CO', NULL, NULL, NULL, NULL, 0, 0, 22, 7, 0, 0, 0, '2008-03-19T15:19:30Z', '2024-09-09T14:12:43Z', 'https://avatars.githubusercontent.com/u/3435?v=4', 'https://api.github.com/users/jnarowski', 'https://github.com/jnarowski', 'https://api.github.com/users/jnarowski/followers', 'https://api.github.com/users/jnarowski/following', 'https://api.github.com/users/jnarowski/gists', 'https://api.github.com/users/jnarowski/starred', 'https://api.github.com/users/jnarowski/repos', 'https://api.github.com/users/jnarowski/events', 'https://api.github.com/users/jnarowski/received_events', 0); +INSERT INTO `developer` VALUES (3436, 'copyhacker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Vaught', NULL, 'http://copyhacker.com', 'Columbia, SC 29209', 'jonathan.vaught@gmail.com', NULL, NULL, NULL, 0, 0, 24, 18, 0, 0, 0, '2008-03-19T15:29:04Z', '2024-11-04T20:48:01Z', 'https://avatars.githubusercontent.com/u/3436?v=4', 'https://api.github.com/users/copyhacker', 'https://github.com/copyhacker', 'https://api.github.com/users/copyhacker/followers', 'https://api.github.com/users/copyhacker/following', 'https://api.github.com/users/copyhacker/gists', 'https://api.github.com/users/copyhacker/starred', 'https://api.github.com/users/copyhacker/repos', 'https://api.github.com/users/copyhacker/events', 'https://api.github.com/users/copyhacker/received_events', 0); +INSERT INTO `developer` VALUES (3437, 'mash', 'C', 0, 0, 0, 0, 0, 0, 0, 'Masakazu Ohtsuka', NULL, 'https://maaash.jp/', '未知', 'o.masakazu@gmail.com', 'true', NULL, NULL, 0, 0, 204, 82, 0, 0, 0, '2008-03-19T15:43:24Z', '2024-10-23T17:09:55Z', 'https://avatars.githubusercontent.com/u/3437?v=4', 'https://api.github.com/users/mash', 'https://github.com/mash', 'https://api.github.com/users/mash/followers', 'https://api.github.com/users/mash/following', 'https://api.github.com/users/mash/gists', 'https://api.github.com/users/mash/starred', 'https://api.github.com/users/mash/repos', 'https://api.github.com/users/mash/events', 'https://api.github.com/users/mash/received_events', 0); +INSERT INTO `developer` VALUES (3438, 'indrekj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Indrek Juhkam', 'Glia', 'urgas.eu', 'Estonia', 'indrek@urgas.eu', NULL, 'Principal Software Engineer @ Glia', 'indrekj', 0, 0, 45, 20, 0, 0, 0, '2008-03-19T16:05:45Z', '2024-07-18T08:10:42Z', 'https://avatars.githubusercontent.com/u/3438?v=4', 'https://api.github.com/users/indrekj', 'https://github.com/indrekj', 'https://api.github.com/users/indrekj/followers', 'https://api.github.com/users/indrekj/following', 'https://api.github.com/users/indrekj/gists', 'https://api.github.com/users/indrekj/starred', 'https://api.github.com/users/indrekj/repos', 'https://api.github.com/users/indrekj/events', 'https://api.github.com/users/indrekj/received_events', 0); +INSERT INTO `developer` VALUES (3439, 'AbortRetryFail', 'C', 0, 0, 0, 0, 0, 0, 0, 'AbortRetryFail', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 5, 0, 0, 0, '2008-03-19T16:59:04Z', '2023-03-20T14:55:22Z', 'https://avatars.githubusercontent.com/u/3439?v=4', 'https://api.github.com/users/AbortRetryFail', 'https://github.com/AbortRetryFail', 'https://api.github.com/users/AbortRetryFail/followers', 'https://api.github.com/users/AbortRetryFail/following', 'https://api.github.com/users/AbortRetryFail/gists', 'https://api.github.com/users/AbortRetryFail/starred', 'https://api.github.com/users/AbortRetryFail/repos', 'https://api.github.com/users/AbortRetryFail/events', 'https://api.github.com/users/AbortRetryFail/received_events', 0); +INSERT INTO `developer` VALUES (3440, 'xilo32', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Kirkwood', NULL, '', 'San Jose, CA', 'adamk@xilo32.com', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-19T17:11:36Z', '2020-11-06T04:40:34Z', 'https://avatars.githubusercontent.com/u/3440?v=4', 'https://api.github.com/users/xilo32', 'https://github.com/xilo32', 'https://api.github.com/users/xilo32/followers', 'https://api.github.com/users/xilo32/following', 'https://api.github.com/users/xilo32/gists', 'https://api.github.com/users/xilo32/starred', 'https://api.github.com/users/xilo32/repos', 'https://api.github.com/users/xilo32/events', 'https://api.github.com/users/xilo32/received_events', 0); +INSERT INTO `developer` VALUES (3441, 'yipstar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gianni Jacklone', NULL, '', 'Los Angeles', 'gianni.jacklone@gmail.com', NULL, NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2008-03-19T17:14:02Z', '2024-09-06T07:21:02Z', 'https://avatars.githubusercontent.com/u/3441?v=4', 'https://api.github.com/users/yipstar', 'https://github.com/yipstar', 'https://api.github.com/users/yipstar/followers', 'https://api.github.com/users/yipstar/following', 'https://api.github.com/users/yipstar/gists', 'https://api.github.com/users/yipstar/starred', 'https://api.github.com/users/yipstar/repos', 'https://api.github.com/users/yipstar/events', 'https://api.github.com/users/yipstar/received_events', 0); +INSERT INTO `developer` VALUES (3443, 'mikeymicrophone', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Schwab', 'Mikey Microphone presents MICharisma', 'http://wordsamong.blogspot.com', 'Brooklyn, NY', 'mike.schwab@gmail.com', NULL, NULL, NULL, 0, 0, 69, 129, 0, 0, 0, '2008-03-19T19:50:10Z', '2024-10-29T22:13:30Z', 'https://avatars.githubusercontent.com/u/3443?v=4', 'https://api.github.com/users/mikeymicrophone', 'https://github.com/mikeymicrophone', 'https://api.github.com/users/mikeymicrophone/followers', 'https://api.github.com/users/mikeymicrophone/following', 'https://api.github.com/users/mikeymicrophone/gists', 'https://api.github.com/users/mikeymicrophone/starred', 'https://api.github.com/users/mikeymicrophone/repos', 'https://api.github.com/users/mikeymicrophone/events', 'https://api.github.com/users/mikeymicrophone/received_events', 0); +INSERT INTO `developer` VALUES (3444, 'kieran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kieran Huggins', 'Universe', 'http://kieran.ca', 'Victoria, BC', 'kieran@kieran.ca', 'true', 'Director of R&D @uniiverse / Maker of votewell.ca, baristajs, myttc.ca\r\n/ Lover of succinct, readable code', 'kieran', 0, 0, 81, 23, 0, 0, 0, '2008-03-19T21:02:08Z', '2024-09-08T20:47:34Z', 'https://avatars.githubusercontent.com/u/3444?v=4', 'https://api.github.com/users/kieran', 'https://github.com/kieran', 'https://api.github.com/users/kieran/followers', 'https://api.github.com/users/kieran/following', 'https://api.github.com/users/kieran/gists', 'https://api.github.com/users/kieran/starred', 'https://api.github.com/users/kieran/repos', 'https://api.github.com/users/kieran/events', 'https://api.github.com/users/kieran/received_events', 0); +INSERT INTO `developer` VALUES (3445, 'frederik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frederik Eichler', '@sciflow ', 'http://www.ifrederik.com', 'Berlin, Germany', 'mail@frederik-eichler.de', NULL, 'Co-Founder at @sciflow, Interested in traveling, science & technology, (agile) web development, startups and dancing.', NULL, 0, 0, 8, 6, 0, 0, 0, '2008-03-19T21:24:17Z', '2024-01-30T20:17:47Z', 'https://avatars.githubusercontent.com/u/3445?v=4', 'https://api.github.com/users/frederik', 'https://github.com/frederik', 'https://api.github.com/users/frederik/followers', 'https://api.github.com/users/frederik/following', 'https://api.github.com/users/frederik/gists', 'https://api.github.com/users/frederik/starred', 'https://api.github.com/users/frederik/repos', 'https://api.github.com/users/frederik/events', 'https://api.github.com/users/frederik/received_events', 0); +INSERT INTO `developer` VALUES (3446, 'gubler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daryl Gubler', NULL, 'https://gubler.micro.blog', 'Tampa, FL, USA', 'daryl@dev88.co', NULL, NULL, NULL, 0, 0, 17, 4, 0, 0, 0, '2008-03-19T21:58:13Z', '2024-10-26T21:24:24Z', 'https://avatars.githubusercontent.com/u/3446?v=4', 'https://api.github.com/users/gubler', 'https://github.com/gubler', 'https://api.github.com/users/gubler/followers', 'https://api.github.com/users/gubler/following', 'https://api.github.com/users/gubler/gists', 'https://api.github.com/users/gubler/starred', 'https://api.github.com/users/gubler/repos', 'https://api.github.com/users/gubler/events', 'https://api.github.com/users/gubler/received_events', 0); +INSERT INTO `developer` VALUES (3448, 'fester', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tymofii Baga', '@heremaps', '', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2008-03-20T00:41:48Z', '2024-04-23T11:31:22Z', 'https://avatars.githubusercontent.com/u/3448?v=4', 'https://api.github.com/users/fester', 'https://github.com/fester', 'https://api.github.com/users/fester/followers', 'https://api.github.com/users/fester/following', 'https://api.github.com/users/fester/gists', 'https://api.github.com/users/fester/starred', 'https://api.github.com/users/fester/repos', 'https://api.github.com/users/fester/events', 'https://api.github.com/users/fester/received_events', 0); +INSERT INTO `developer` VALUES (3450, 'savetheclocktower', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Dupont', NULL, 'https://andrewdupont.net', 'Pasadena, CA (USA)', NULL, NULL, NULL, NULL, 0, 0, 239, 14, 0, 0, 0, '2008-03-20T00:49:46Z', '2024-11-02T20:38:19Z', 'https://avatars.githubusercontent.com/u/3450?v=4', 'https://api.github.com/users/savetheclocktower', 'https://github.com/savetheclocktower', 'https://api.github.com/users/savetheclocktower/followers', 'https://api.github.com/users/savetheclocktower/following', 'https://api.github.com/users/savetheclocktower/gists', 'https://api.github.com/users/savetheclocktower/starred', 'https://api.github.com/users/savetheclocktower/repos', 'https://api.github.com/users/savetheclocktower/events', 'https://api.github.com/users/savetheclocktower/received_events', 0); +INSERT INTO `developer` VALUES (3453, 'braintree', 'C', 0, 0, 0, 0, 0, 0, 0, 'Braintree', NULL, 'https://braintree.github.io/', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 187, 0, 0, 0, 0, '2008-03-20T02:34:08Z', '2023-06-28T18:55:58Z', 'https://avatars.githubusercontent.com/u/3453?v=4', 'https://api.github.com/users/braintree', 'https://github.com/braintree', 'https://api.github.com/users/braintree/followers', 'https://api.github.com/users/braintree/following', 'https://api.github.com/users/braintree/gists', 'https://api.github.com/users/braintree/starred', 'https://api.github.com/users/braintree/repos', 'https://api.github.com/users/braintree/events', 'https://api.github.com/users/braintree/received_events', 0); +INSERT INTO `developer` VALUES (3454, 'daglo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-20T03:08:07Z', '2019-10-25T19:07:26Z', 'https://avatars.githubusercontent.com/u/3454?v=4', 'https://api.github.com/users/daglo', 'https://github.com/daglo', 'https://api.github.com/users/daglo/followers', 'https://api.github.com/users/daglo/following', 'https://api.github.com/users/daglo/gists', 'https://api.github.com/users/daglo/starred', 'https://api.github.com/users/daglo/repos', 'https://api.github.com/users/daglo/events', 'https://api.github.com/users/daglo/received_events', 0); +INSERT INTO `developer` VALUES (3455, 'jbsf', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-03-20T05:15:09Z', '2020-01-22T22:17:17Z', 'https://avatars.githubusercontent.com/u/3455?v=4', 'https://api.github.com/users/jbsf', 'https://github.com/jbsf', 'https://api.github.com/users/jbsf/followers', 'https://api.github.com/users/jbsf/following', 'https://api.github.com/users/jbsf/gists', 'https://api.github.com/users/jbsf/starred', 'https://api.github.com/users/jbsf/repos', 'https://api.github.com/users/jbsf/events', 'https://api.github.com/users/jbsf/received_events', 0); +INSERT INTO `developer` VALUES (3457, 'niclas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Niclas Vester', '800 rader', '', 'Palma, Spain / Gävle, Sweden', 'niclas.vester@gmail.com', 'true', NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-03-20T07:43:13Z', '2024-10-25T05:30:42Z', 'https://avatars.githubusercontent.com/u/3457?v=4', 'https://api.github.com/users/niclas', 'https://github.com/niclas', 'https://api.github.com/users/niclas/followers', 'https://api.github.com/users/niclas/following', 'https://api.github.com/users/niclas/gists', 'https://api.github.com/users/niclas/starred', 'https://api.github.com/users/niclas/repos', 'https://api.github.com/users/niclas/events', 'https://api.github.com/users/niclas/received_events', 0); +INSERT INTO `developer` VALUES (3458, 'kentaro', 'C', 3.6557706054624814, 0, 0, 0, 0, 0, 0, 'Kentaro Kuribayashi', 'GMO Pepabo, Inc.', 'https://kentarokuribayashi.com/', 'Tokyo, Japan', 'kentarok@gmail.com', NULL, 'CTO at GMO Pepabo, Inc.', 'kentaro', 0, 0, 498, 89, 0, 0, 0, '2008-03-20T09:57:49Z', '2024-08-29T15:15:33Z', 'https://avatars.githubusercontent.com/u/3458?v=4', 'https://api.github.com/users/kentaro', 'https://github.com/kentaro', 'https://api.github.com/users/kentaro/followers', 'https://api.github.com/users/kentaro/following', 'https://api.github.com/users/kentaro/gists', 'https://api.github.com/users/kentaro/starred', 'https://api.github.com/users/kentaro/repos', 'https://api.github.com/users/kentaro/events', 'https://api.github.com/users/kentaro/received_events', 0); +INSERT INTO `developer` VALUES (3459, 'wonko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bernard Grymonpon', 'Deltus / Krane Labs', 'http://www.wonko.be', 'Gent, Belgium', NULL, NULL, 'Freelance devops-minded cloud infrastructure engineer - IT management & automation', NULL, 0, 0, 28, 4, 0, 0, 0, '2008-03-20T09:59:36Z', '2024-04-30T08:12:58Z', 'https://avatars.githubusercontent.com/u/3459?v=4', 'https://api.github.com/users/wonko', 'https://github.com/wonko', 'https://api.github.com/users/wonko/followers', 'https://api.github.com/users/wonko/following', 'https://api.github.com/users/wonko/gists', 'https://api.github.com/users/wonko/starred', 'https://api.github.com/users/wonko/repos', 'https://api.github.com/users/wonko/events', 'https://api.github.com/users/wonko/received_events', 0); +INSERT INTO `developer` VALUES (3461, 'dbackeus', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Backeus', 'Mynewsdesk', '', 'Stockholm (Sweden)', NULL, NULL, NULL, 'dbackeus', 0, 0, 44, 0, 0, 0, 0, '2008-03-20T11:22:24Z', '2024-10-29T20:01:52Z', 'https://avatars.githubusercontent.com/u/3461?v=4', 'https://api.github.com/users/dbackeus', 'https://github.com/dbackeus', 'https://api.github.com/users/dbackeus/followers', 'https://api.github.com/users/dbackeus/following', 'https://api.github.com/users/dbackeus/gists', 'https://api.github.com/users/dbackeus/starred', 'https://api.github.com/users/dbackeus/repos', 'https://api.github.com/users/dbackeus/events', 'https://api.github.com/users/dbackeus/received_events', 0); +INSERT INTO `developer` VALUES (3462, 'jimiray', 'C', 0, 0, 2, 0, 4, 0, 0, 'Jim Ray', 'TrueCoach', 'http://jimiray.github.io', 'Denver, CO', NULL, NULL, NULL, 'jimiray', 0, 0, 21, 3, 0, 0, 0, '2008-03-20T11:58:05Z', '2024-10-26T13:59:29Z', 'https://avatars.githubusercontent.com/u/3462?v=4', 'https://api.github.com/users/jimiray', 'https://github.com/jimiray', 'https://api.github.com/users/jimiray/followers', 'https://api.github.com/users/jimiray/following', 'https://api.github.com/users/jimiray/gists', 'https://api.github.com/users/jimiray/starred', 'https://api.github.com/users/jimiray/repos', 'https://api.github.com/users/jimiray/events', 'https://api.github.com/users/jimiray/received_events', 0); +INSERT INTO `developer` VALUES (3463, 'stevenbristol', 'C', 0, 0, 0, 0, 0, 0, 0, 'S Bristol', 'Less Everything', 'http://lesseverything.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 100, 20, 0, 0, 0, '2008-03-20T13:08:20Z', '2017-08-14T19:40:24Z', 'https://avatars.githubusercontent.com/u/3463?v=4', 'https://api.github.com/users/stevenbristol', 'https://github.com/stevenbristol', 'https://api.github.com/users/stevenbristol/followers', 'https://api.github.com/users/stevenbristol/following', 'https://api.github.com/users/stevenbristol/gists', 'https://api.github.com/users/stevenbristol/starred', 'https://api.github.com/users/stevenbristol/repos', 'https://api.github.com/users/stevenbristol/events', 'https://api.github.com/users/stevenbristol/received_events', 0); +INSERT INTO `developer` VALUES (3464, 'sneeu', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Sutherland', '@trustpilot', 'https://sneeu.com/', 'Edinburgh, Scotland', 'john@sneeu.com', 'true', 'Hello 👋🏻 ', NULL, 0, 0, 63, 55, 0, 0, 0, '2008-03-20T14:38:39Z', '2024-11-05T08:30:55Z', 'https://avatars.githubusercontent.com/u/3464?v=4', 'https://api.github.com/users/sneeu', 'https://github.com/sneeu', 'https://api.github.com/users/sneeu/followers', 'https://api.github.com/users/sneeu/following', 'https://api.github.com/users/sneeu/gists', 'https://api.github.com/users/sneeu/starred', 'https://api.github.com/users/sneeu/repos', 'https://api.github.com/users/sneeu/events', 'https://api.github.com/users/sneeu/received_events', 0); +INSERT INTO `developer` VALUES (3466, 'DanielSeidel', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-20T15:01:25Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3466?v=4', 'https://api.github.com/users/DanielSeidel', 'https://github.com/DanielSeidel', 'https://api.github.com/users/DanielSeidel/followers', 'https://api.github.com/users/DanielSeidel/following', 'https://api.github.com/users/DanielSeidel/gists', 'https://api.github.com/users/DanielSeidel/starred', 'https://api.github.com/users/DanielSeidel/repos', 'https://api.github.com/users/DanielSeidel/events', 'https://api.github.com/users/DanielSeidel/received_events', 0); +INSERT INTO `developer` VALUES (3467, 'kovyrin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oleksiy Kovyrin', '@shopify', 'https://kovyrin.net/', 'Waterloo, Ontario, Canada', 'oleksiy@kovyrin.net', NULL, 'Principal Engineer, @Shopify ', 'kovyrin', 0, 0, 155, 62, 0, 0, 0, '2008-03-20T15:42:17Z', '2024-10-05T15:37:12Z', 'https://avatars.githubusercontent.com/u/3467?v=4', 'https://api.github.com/users/kovyrin', 'https://github.com/kovyrin', 'https://api.github.com/users/kovyrin/followers', 'https://api.github.com/users/kovyrin/following', 'https://api.github.com/users/kovyrin/gists', 'https://api.github.com/users/kovyrin/starred', 'https://api.github.com/users/kovyrin/repos', 'https://api.github.com/users/kovyrin/events', 'https://api.github.com/users/kovyrin/received_events', 0); +INSERT INTO `developer` VALUES (3468, 'penryu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Hammerquist', NULL, 'https://blog.pun.ninja', '未知', 'tim@penryu.dev', NULL, NULL, NULL, 0, 0, 40, 41, 0, 0, 0, '2008-03-20T15:58:20Z', '2024-09-23T04:09:46Z', 'https://avatars.githubusercontent.com/u/3468?v=4', 'https://api.github.com/users/penryu', 'https://github.com/penryu', 'https://api.github.com/users/penryu/followers', 'https://api.github.com/users/penryu/following', 'https://api.github.com/users/penryu/gists', 'https://api.github.com/users/penryu/starred', 'https://api.github.com/users/penryu/repos', 'https://api.github.com/users/penryu/events', 'https://api.github.com/users/penryu/received_events', 0); +INSERT INTO `developer` VALUES (3469, 'Sajfer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Bretting', NULL, '', 'Sweden', 'sajfer@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-20T16:01:52Z', '2024-09-18T06:40:17Z', 'https://avatars.githubusercontent.com/u/3469?v=4', 'https://api.github.com/users/Sajfer', 'https://github.com/Sajfer', 'https://api.github.com/users/Sajfer/followers', 'https://api.github.com/users/Sajfer/following', 'https://api.github.com/users/Sajfer/gists', 'https://api.github.com/users/Sajfer/starred', 'https://api.github.com/users/Sajfer/repos', 'https://api.github.com/users/Sajfer/events', 'https://api.github.com/users/Sajfer/received_events', 0); +INSERT INTO `developer` VALUES (3471, 'scytrin', 'C', 8.557204261999637, 0, 31, 103, 28, 0, 0, 'Scytrin dai Kinthra', 'StaDiK Motions', 'http://stadik.net', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 29, 7, 0, 0, 0, '2008-03-20T16:27:24Z', '2024-06-02T17:05:26Z', 'https://avatars.githubusercontent.com/u/3471?v=4', 'https://api.github.com/users/scytrin', 'https://github.com/scytrin', 'https://api.github.com/users/scytrin/followers', 'https://api.github.com/users/scytrin/following', 'https://api.github.com/users/scytrin/gists', 'https://api.github.com/users/scytrin/starred', 'https://api.github.com/users/scytrin/repos', 'https://api.github.com/users/scytrin/events', 'https://api.github.com/users/scytrin/received_events', 0); +INSERT INTO `developer` VALUES (3472, 'ocher', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michal Ochman', NULL, '', '未知', 'ocherek@gmail.com', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2008-03-20T16:28:29Z', '2024-07-01T09:26:51Z', 'https://avatars.githubusercontent.com/u/3472?v=4', 'https://api.github.com/users/ocher', 'https://github.com/ocher', 'https://api.github.com/users/ocher/followers', 'https://api.github.com/users/ocher/following', 'https://api.github.com/users/ocher/gists', 'https://api.github.com/users/ocher/starred', 'https://api.github.com/users/ocher/repos', 'https://api.github.com/users/ocher/events', 'https://api.github.com/users/ocher/received_events', 0); +INSERT INTO `developer` VALUES (3473, 'komu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juha Komulainen', '@EvidentSolutions ', 'https://komu.dev', 'Tampere, Finland', 'juha.komulainen@gmail.com', NULL, 'Code æsthete', NULL, 0, 0, 22, 10, 0, 0, 0, '2008-03-20T16:36:30Z', '2024-10-19T19:19:44Z', 'https://avatars.githubusercontent.com/u/3473?v=4', 'https://api.github.com/users/komu', 'https://github.com/komu', 'https://api.github.com/users/komu/followers', 'https://api.github.com/users/komu/following', 'https://api.github.com/users/komu/gists', 'https://api.github.com/users/komu/starred', 'https://api.github.com/users/komu/repos', 'https://api.github.com/users/komu/events', 'https://api.github.com/users/komu/received_events', 0); +INSERT INTO `developer` VALUES (3474, 'neurokinetikz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael', NULL, 'https://neurokinetikz.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-20T18:19:22Z', '2022-04-26T13:01:59Z', 'https://avatars.githubusercontent.com/u/3474?v=4', 'https://api.github.com/users/neurokinetikz', 'https://github.com/neurokinetikz', 'https://api.github.com/users/neurokinetikz/followers', 'https://api.github.com/users/neurokinetikz/following', 'https://api.github.com/users/neurokinetikz/gists', 'https://api.github.com/users/neurokinetikz/starred', 'https://api.github.com/users/neurokinetikz/repos', 'https://api.github.com/users/neurokinetikz/events', 'https://api.github.com/users/neurokinetikz/received_events', 0); +INSERT INTO `developer` VALUES (3475, 'austinmoore', 'C', 0, 0, 0, 0, 0, 0, 0, 'Austin Moore', NULL, '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 14, 3, 0, 0, 0, '2008-03-20T19:07:34Z', '2024-10-22T10:50:54Z', 'https://avatars.githubusercontent.com/u/3475?v=4', 'https://api.github.com/users/austinmoore', 'https://github.com/austinmoore', 'https://api.github.com/users/austinmoore/followers', 'https://api.github.com/users/austinmoore/following', 'https://api.github.com/users/austinmoore/gists', 'https://api.github.com/users/austinmoore/starred', 'https://api.github.com/users/austinmoore/repos', 'https://api.github.com/users/austinmoore/events', 'https://api.github.com/users/austinmoore/received_events', 0); +INSERT INTO `developer` VALUES (3477, 'ncarlson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicholas Carlson', NULL, '', 'Fort Collins, Colorado', NULL, NULL, NULL, NULL, 0, 0, 11, 3, 0, 0, 0, '2008-03-20T19:51:18Z', '2024-01-06T06:52:14Z', 'https://avatars.githubusercontent.com/u/3477?v=4', 'https://api.github.com/users/ncarlson', 'https://github.com/ncarlson', 'https://api.github.com/users/ncarlson/followers', 'https://api.github.com/users/ncarlson/following', 'https://api.github.com/users/ncarlson/gists', 'https://api.github.com/users/ncarlson/starred', 'https://api.github.com/users/ncarlson/repos', 'https://api.github.com/users/ncarlson/events', 'https://api.github.com/users/ncarlson/received_events', 0); +INSERT INTO `developer` VALUES (3478, 'dce', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Eisinger', '@vigetlabs ', 'http://www.davideisinger.com/', 'Durham, NC', NULL, NULL, NULL, NULL, 0, 0, 105, 39, 0, 0, 0, '2008-03-20T20:07:47Z', '2024-06-20T00:49:12Z', 'https://avatars.githubusercontent.com/u/3478?v=4', 'https://api.github.com/users/dce', 'https://github.com/dce', 'https://api.github.com/users/dce/followers', 'https://api.github.com/users/dce/following', 'https://api.github.com/users/dce/gists', 'https://api.github.com/users/dce/starred', 'https://api.github.com/users/dce/repos', 'https://api.github.com/users/dce/events', 'https://api.github.com/users/dce/received_events', 0); +INSERT INTO `developer` VALUES (3479, 'ahsanziauddin', 'C', 0, 0, 0, 0, 0, 0, 0, 'ahsan ziauddin', NULL, 'ahsan.cat', 'toronto', 'ahsan.ziauddin@gmail.com', NULL, NULL, 'stabbedface', 0, 0, 10, 10, 0, 0, 0, '2008-03-20T20:17:52Z', '2024-11-04T12:19:37Z', 'https://avatars.githubusercontent.com/u/3479?v=4', 'https://api.github.com/users/ahsanziauddin', 'https://github.com/ahsanziauddin', 'https://api.github.com/users/ahsanziauddin/followers', 'https://api.github.com/users/ahsanziauddin/following', 'https://api.github.com/users/ahsanziauddin/gists', 'https://api.github.com/users/ahsanziauddin/starred', 'https://api.github.com/users/ahsanziauddin/repos', 'https://api.github.com/users/ahsanziauddin/events', 'https://api.github.com/users/ahsanziauddin/received_events', 0); +INSERT INTO `developer` VALUES (3480, 'rphipps', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ron Phipps', 'End Point Corporation', '', 'Eugene, OR', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-20T21:10:05Z', '2021-12-08T18:22:33Z', 'https://avatars.githubusercontent.com/u/3480?v=4', 'https://api.github.com/users/rphipps', 'https://github.com/rphipps', 'https://api.github.com/users/rphipps/followers', 'https://api.github.com/users/rphipps/following', 'https://api.github.com/users/rphipps/gists', 'https://api.github.com/users/rphipps/starred', 'https://api.github.com/users/rphipps/repos', 'https://api.github.com/users/rphipps/events', 'https://api.github.com/users/rphipps/received_events', 0); +INSERT INTO `developer` VALUES (3481, 'kshah', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-20T21:11:43Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3481?v=4', 'https://api.github.com/users/kshah', 'https://github.com/kshah', 'https://api.github.com/users/kshah/followers', 'https://api.github.com/users/kshah/following', 'https://api.github.com/users/kshah/gists', 'https://api.github.com/users/kshah/starred', 'https://api.github.com/users/kshah/repos', 'https://api.github.com/users/kshah/events', 'https://api.github.com/users/kshah/received_events', 0); +INSERT INTO `developer` VALUES (3482, 'imcqueen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Iain McQueen', NULL, '', 'New York', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-20T21:22:38Z', '2024-04-21T16:04:32Z', 'https://avatars.githubusercontent.com/u/3482?v=4', 'https://api.github.com/users/imcqueen', 'https://github.com/imcqueen', 'https://api.github.com/users/imcqueen/followers', 'https://api.github.com/users/imcqueen/following', 'https://api.github.com/users/imcqueen/gists', 'https://api.github.com/users/imcqueen/starred', 'https://api.github.com/users/imcqueen/repos', 'https://api.github.com/users/imcqueen/events', 'https://api.github.com/users/imcqueen/received_events', 0); +INSERT INTO `developer` VALUES (3484, 'amyhoy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 77, 0, 0, 0, 0, '2008-03-20T21:27:36Z', '2023-03-07T19:56:29Z', 'https://avatars.githubusercontent.com/u/3484?v=4', 'https://api.github.com/users/amyhoy', 'https://github.com/amyhoy', 'https://api.github.com/users/amyhoy/followers', 'https://api.github.com/users/amyhoy/following', 'https://api.github.com/users/amyhoy/gists', 'https://api.github.com/users/amyhoy/starred', 'https://api.github.com/users/amyhoy/repos', 'https://api.github.com/users/amyhoy/events', 'https://api.github.com/users/amyhoy/received_events', 0); +INSERT INTO `developer` VALUES (3485, 'kswedberg', 'C', 3.930146979634813, 0, 0, 0, 0, 0, 0, 'Karl Swedberg', '@bamf-health ', 'https://karlswedberg.com/', 'Grand Rapids, MI', 'kswedberg@gmail.com', 'true', NULL, NULL, 0, 0, 514, 26, 0, 0, 0, '2008-03-20T21:27:52Z', '2024-10-21T21:33:09Z', 'https://avatars.githubusercontent.com/u/3485?v=4', 'https://api.github.com/users/kswedberg', 'https://github.com/kswedberg', 'https://api.github.com/users/kswedberg/followers', 'https://api.github.com/users/kswedberg/following', 'https://api.github.com/users/kswedberg/gists', 'https://api.github.com/users/kswedberg/starred', 'https://api.github.com/users/kswedberg/repos', 'https://api.github.com/users/kswedberg/events', 'https://api.github.com/users/kswedberg/received_events', 0); +INSERT INTO `developer` VALUES (3486, 'jmazzahacks', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Byteforgia', NULL, '', '未知', NULL, NULL, 'Code, crypto & podcasts. Just another night_city_net_runner.', 'jmazzahacks', 0, 0, 25, 22, 0, 0, 0, '2008-03-20T21:38:55Z', '2024-09-27T22:42:09Z', 'https://avatars.githubusercontent.com/u/3486?v=4', 'https://api.github.com/users/jmazzahacks', 'https://github.com/jmazzahacks', 'https://api.github.com/users/jmazzahacks/followers', 'https://api.github.com/users/jmazzahacks/following', 'https://api.github.com/users/jmazzahacks/gists', 'https://api.github.com/users/jmazzahacks/starred', 'https://api.github.com/users/jmazzahacks/repos', 'https://api.github.com/users/jmazzahacks/events', 'https://api.github.com/users/jmazzahacks/received_events', 0); +INSERT INTO `developer` VALUES (3488, 'mattdaw', 'C', 0, 0, 0, 0, 17, 0, 0, 'Matt Daw', 'Software Architect / Consultant', '', 'Ontario, Canada', NULL, NULL, NULL, NULL, 0, 0, 21, 1, 0, 0, 0, '2008-03-20T22:31:47Z', '2024-08-26T15:56:07Z', 'https://avatars.githubusercontent.com/u/3488?v=4', 'https://api.github.com/users/mattdaw', 'https://github.com/mattdaw', 'https://api.github.com/users/mattdaw/followers', 'https://api.github.com/users/mattdaw/following', 'https://api.github.com/users/mattdaw/gists', 'https://api.github.com/users/mattdaw/starred', 'https://api.github.com/users/mattdaw/repos', 'https://api.github.com/users/mattdaw/events', 'https://api.github.com/users/mattdaw/received_events', 0); +INSERT INTO `developer` VALUES (3489, 'ireuben', 'C', 0, 0, 0, 0, 35, 0, 0, 'Isaac Reuben', NULL, '', 'Seattle, Wa', NULL, NULL, NULL, NULL, 0, 0, 19, 0, 0, 0, 0, '2008-03-20T23:05:19Z', '2024-11-04T18:34:36Z', 'https://avatars.githubusercontent.com/u/3489?v=4', 'https://api.github.com/users/ireuben', 'https://github.com/ireuben', 'https://api.github.com/users/ireuben/followers', 'https://api.github.com/users/ireuben/following', 'https://api.github.com/users/ireuben/gists', 'https://api.github.com/users/ireuben/starred', 'https://api.github.com/users/ireuben/repos', 'https://api.github.com/users/ireuben/events', 'https://api.github.com/users/ireuben/received_events', 0); +INSERT INTO `developer` VALUES (3492, 'subvrtd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bryan Jay Miller', 'WOXY.com', '', 'San Francisco CA', 'bryan@woxy.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-20T23:17:37Z', '2020-11-06T05:06:51Z', 'https://avatars.githubusercontent.com/u/3492?v=4', 'https://api.github.com/users/subvrtd', 'https://github.com/subvrtd', 'https://api.github.com/users/subvrtd/followers', 'https://api.github.com/users/subvrtd/following', 'https://api.github.com/users/subvrtd/gists', 'https://api.github.com/users/subvrtd/starred', 'https://api.github.com/users/subvrtd/repos', 'https://api.github.com/users/subvrtd/events', 'https://api.github.com/users/subvrtd/received_events', 0); +INSERT INTO `developer` VALUES (3493, 'chap', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chap Ambrose', NULL, 'chapambrose.com', 'Bastrop, TX', 'chapambrose@gmail.com', NULL, NULL, NULL, 0, 0, 29, 9, 0, 0, 0, '2008-03-20T23:42:07Z', '2024-10-20T22:31:03Z', 'https://avatars.githubusercontent.com/u/3493?v=4', 'https://api.github.com/users/chap', 'https://github.com/chap', 'https://api.github.com/users/chap/followers', 'https://api.github.com/users/chap/following', 'https://api.github.com/users/chap/gists', 'https://api.github.com/users/chap/starred', 'https://api.github.com/users/chap/repos', 'https://api.github.com/users/chap/events', 'https://api.github.com/users/chap/received_events', 0); +INSERT INTO `developer` VALUES (3494, 'professor492', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T00:03:32Z', '2020-07-21T21:29:40Z', 'https://avatars.githubusercontent.com/u/3494?v=4', 'https://api.github.com/users/professor492', 'https://github.com/professor492', 'https://api.github.com/users/professor492/followers', 'https://api.github.com/users/professor492/following', 'https://api.github.com/users/professor492/gists', 'https://api.github.com/users/professor492/starred', 'https://api.github.com/users/professor492/repos', 'https://api.github.com/users/professor492/events', 'https://api.github.com/users/professor492/received_events', 0); +INSERT INTO `developer` VALUES (3498, 'mellwanger', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-21T01:15:52Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3498?v=4', 'https://api.github.com/users/mellwanger', 'https://github.com/mellwanger', 'https://api.github.com/users/mellwanger/followers', 'https://api.github.com/users/mellwanger/following', 'https://api.github.com/users/mellwanger/gists', 'https://api.github.com/users/mellwanger/starred', 'https://api.github.com/users/mellwanger/repos', 'https://api.github.com/users/mellwanger/events', 'https://api.github.com/users/mellwanger/received_events', 0); +INSERT INTO `developer` VALUES (3499, 'miyagawa', 'B-', 37.421213152045134, 0, 0, 0, 0, 0, 0, 'Tatsuhiko Miyagawa', NULL, 'https://miyagawa.co/', 'San Francisco, CA', 'miyagawa@bulknews.net', 'true', NULL, 'miyagawa', 0, 0, 2467, 352, 0, 0, 0, '2008-03-21T01:50:29Z', '2024-09-23T21:46:23Z', 'https://avatars.githubusercontent.com/u/3499?v=4', 'https://api.github.com/users/miyagawa', 'https://github.com/miyagawa', 'https://api.github.com/users/miyagawa/followers', 'https://api.github.com/users/miyagawa/following', 'https://api.github.com/users/miyagawa/gists', 'https://api.github.com/users/miyagawa/starred', 'https://api.github.com/users/miyagawa/repos', 'https://api.github.com/users/miyagawa/events', 'https://api.github.com/users/miyagawa/received_events', 0); +INSERT INTO `developer` VALUES (3500, 'hotchpotch', 'C', 3.518582418376315, 0, 0, 0, 0, 0, 0, 'Yuichi Tateno (secon)', NULL, 'https://secon.dev/', 'Japan', NULL, NULL, 'Software Engineer, Data Scientist, Kaggle Competitions Master, Traveler. ', 'hotchpotch', 0, 0, 490, 52, 0, 0, 0, '2008-03-21T01:50:42Z', '2024-08-09T16:37:07Z', 'https://avatars.githubusercontent.com/u/3500?v=4', 'https://api.github.com/users/hotchpotch', 'https://github.com/hotchpotch', 'https://api.github.com/users/hotchpotch/followers', 'https://api.github.com/users/hotchpotch/following', 'https://api.github.com/users/hotchpotch/gists', 'https://api.github.com/users/hotchpotch/starred', 'https://api.github.com/users/hotchpotch/repos', 'https://api.github.com/users/hotchpotch/events', 'https://api.github.com/users/hotchpotch/received_events', 0); +INSERT INTO `developer` VALUES (3501, 'jrray', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-21T01:56:02Z', '2024-10-18T23:22:12Z', 'https://avatars.githubusercontent.com/u/3501?v=4', 'https://api.github.com/users/jrray', 'https://github.com/jrray', 'https://api.github.com/users/jrray/followers', 'https://api.github.com/users/jrray/following', 'https://api.github.com/users/jrray/gists', 'https://api.github.com/users/jrray/starred', 'https://api.github.com/users/jrray/repos', 'https://api.github.com/users/jrray/events', 'https://api.github.com/users/jrray/received_events', 0); +INSERT INTO `developer` VALUES (3502, 'hidek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hideo Kimura', NULL, '', 'Tokyo, Japan', NULL, NULL, NULL, NULL, 0, 0, 138, 9, 0, 0, 0, '2008-03-21T01:56:34Z', '2024-09-26T09:51:18Z', 'https://avatars.githubusercontent.com/u/3502?v=4', 'https://api.github.com/users/hidek', 'https://github.com/hidek', 'https://api.github.com/users/hidek/followers', 'https://api.github.com/users/hidek/following', 'https://api.github.com/users/hidek/gists', 'https://api.github.com/users/hidek/starred', 'https://api.github.com/users/hidek/repos', 'https://api.github.com/users/hidek/events', 'https://api.github.com/users/hidek/received_events', 0); +INSERT INTO `developer` VALUES (3503, 'tpoland', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tyler Poland', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 27, 14, 0, 0, 0, '2008-03-21T02:27:36Z', '2024-10-22T11:18:22Z', 'https://avatars.githubusercontent.com/u/3503?v=4', 'https://api.github.com/users/tpoland', 'https://github.com/tpoland', 'https://api.github.com/users/tpoland/followers', 'https://api.github.com/users/tpoland/following', 'https://api.github.com/users/tpoland/gists', 'https://api.github.com/users/tpoland/starred', 'https://api.github.com/users/tpoland/repos', 'https://api.github.com/users/tpoland/events', 'https://api.github.com/users/tpoland/received_events', 0); +INSERT INTO `developer` VALUES (3504, 'adamdill', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Dill', 'DBA', 'http://www.adamwdill.com', 'Colorado', 'altrux@gmail.com', NULL, NULL, NULL, 0, 0, 42, 12, 0, 0, 0, '2008-03-21T03:30:07Z', '2024-10-19T00:14:57Z', 'https://avatars.githubusercontent.com/u/3504?v=4', 'https://api.github.com/users/adamdill', 'https://github.com/adamdill', 'https://api.github.com/users/adamdill/followers', 'https://api.github.com/users/adamdill/following', 'https://api.github.com/users/adamdill/gists', 'https://api.github.com/users/adamdill/starred', 'https://api.github.com/users/adamdill/repos', 'https://api.github.com/users/adamdill/events', 'https://api.github.com/users/adamdill/received_events', 0); +INSERT INTO `developer` VALUES (3507, 'manveru', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Fellinger', '@grodaus', 'https://manveru.dev', 'Austria', NULL, NULL, NULL, NULL, 0, 0, 267, 22, 0, 0, 0, '2008-03-21T08:26:10Z', '2024-10-22T19:31:27Z', 'https://avatars.githubusercontent.com/u/3507?v=4', 'https://api.github.com/users/manveru', 'https://github.com/manveru', 'https://api.github.com/users/manveru/followers', 'https://api.github.com/users/manveru/following', 'https://api.github.com/users/manveru/gists', 'https://api.github.com/users/manveru/starred', 'https://api.github.com/users/manveru/repos', 'https://api.github.com/users/manveru/events', 'https://api.github.com/users/manveru/received_events', 0); +INSERT INTO `developer` VALUES (3508, 'kig', 'C', 0.5175908258664299, 0, 0, 0, 0, 0, 0, 'Ilmari Heikkinen', 'Heichen Ltd', 'https://fhtr.org', 'Hong Kong', 'ilmari@fhtr.net', 'true', 'Creative dev -- If you need maintenance for a library, we can do an annual maintenance contract to provide regular updates to the library.', 'ilmarihei', 0, 0, 315, 3, 0, 0, 0, '2008-03-21T08:28:25Z', '2024-10-11T05:45:59Z', 'https://avatars.githubusercontent.com/u/3508?v=4', 'https://api.github.com/users/kig', 'https://github.com/kig', 'https://api.github.com/users/kig/followers', 'https://api.github.com/users/kig/following', 'https://api.github.com/users/kig/gists', 'https://api.github.com/users/kig/starred', 'https://api.github.com/users/kig/repos', 'https://api.github.com/users/kig/events', 'https://api.github.com/users/kig/received_events', 0); +INSERT INTO `developer` VALUES (3510, 'rjanse', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'Saxion', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 10, 0, 0, 0, '2008-03-21T10:12:45Z', '2024-10-08T06:46:29Z', 'https://avatars.githubusercontent.com/u/3510?v=4', 'https://api.github.com/users/rjanse', 'https://github.com/rjanse', 'https://api.github.com/users/rjanse/followers', 'https://api.github.com/users/rjanse/following', 'https://api.github.com/users/rjanse/gists', 'https://api.github.com/users/rjanse/starred', 'https://api.github.com/users/rjanse/repos', 'https://api.github.com/users/rjanse/events', 'https://api.github.com/users/rjanse/received_events', 0); +INSERT INTO `developer` VALUES (3514, 'jscheid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julian Scheid', NULL, '', '未知', NULL, NULL, 'Berlin, Germany', NULL, 0, 0, 27, 6, 0, 0, 0, '2008-03-21T13:37:32Z', '2024-08-19T05:08:30Z', 'https://avatars.githubusercontent.com/u/3514?v=4', 'https://api.github.com/users/jscheid', 'https://github.com/jscheid', 'https://api.github.com/users/jscheid/followers', 'https://api.github.com/users/jscheid/following', 'https://api.github.com/users/jscheid/gists', 'https://api.github.com/users/jscheid/starred', 'https://api.github.com/users/jscheid/repos', 'https://api.github.com/users/jscheid/events', 'https://api.github.com/users/jscheid/received_events', 0); +INSERT INTO `developer` VALUES (3515, 'FND', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 89, 26, 0, 0, 0, '2008-03-21T13:48:36Z', '2024-07-01T06:58:27Z', 'https://avatars.githubusercontent.com/u/3515?v=4', 'https://api.github.com/users/FND', 'https://github.com/FND', 'https://api.github.com/users/FND/followers', 'https://api.github.com/users/FND/following', 'https://api.github.com/users/FND/gists', 'https://api.github.com/users/FND/starred', 'https://api.github.com/users/FND/repos', 'https://api.github.com/users/FND/events', 'https://api.github.com/users/FND/received_events', 0); +INSERT INTO `developer` VALUES (3516, 'erkki', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erkki Eilonen', 'http://bearmetal.eu', '', '未知', 'erkki@itech.ee', 'true', NULL, NULL, 0, 0, 22, 0, 0, 0, 0, '2008-03-21T14:37:38Z', '2024-05-10T13:56:48Z', 'https://avatars.githubusercontent.com/u/3516?v=4', 'https://api.github.com/users/erkki', 'https://github.com/erkki', 'https://api.github.com/users/erkki/followers', 'https://api.github.com/users/erkki/following', 'https://api.github.com/users/erkki/gists', 'https://api.github.com/users/erkki/starred', 'https://api.github.com/users/erkki/repos', 'https://api.github.com/users/erkki/events', 'https://api.github.com/users/erkki/received_events', 0); +INSERT INTO `developer` VALUES (3517, 'caudill', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 3, 0, 0, 0, '2008-03-21T15:22:43Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3517?v=4', 'https://api.github.com/users/caudill', 'https://github.com/caudill', 'https://api.github.com/users/caudill/followers', 'https://api.github.com/users/caudill/following', 'https://api.github.com/users/caudill/gists', 'https://api.github.com/users/caudill/starred', 'https://api.github.com/users/caudill/repos', 'https://api.github.com/users/caudill/events', 'https://api.github.com/users/caudill/received_events', 0); +INSERT INTO `developer` VALUES (3518, 'insightmethods', 'C', 0, 0, 0, 0, 0, 0, 0, 'Beehively', NULL, 'https://beehively.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-21T15:44:39Z', '2024-09-30T07:00:44Z', 'https://avatars.githubusercontent.com/u/3518?v=4', 'https://api.github.com/users/insightmethods', 'https://github.com/insightmethods', 'https://api.github.com/users/insightmethods/followers', 'https://api.github.com/users/insightmethods/following', 'https://api.github.com/users/insightmethods/gists', 'https://api.github.com/users/insightmethods/starred', 'https://api.github.com/users/insightmethods/repos', 'https://api.github.com/users/insightmethods/events', 'https://api.github.com/users/insightmethods/received_events', 0); +INSERT INTO `developer` VALUES (3519, 'jang', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-21T15:45:55Z', '2024-02-26T22:23:01Z', 'https://avatars.githubusercontent.com/u/3519?v=4', 'https://api.github.com/users/jang', 'https://github.com/jang', 'https://api.github.com/users/jang/followers', 'https://api.github.com/users/jang/following', 'https://api.github.com/users/jang/gists', 'https://api.github.com/users/jang/starred', 'https://api.github.com/users/jang/repos', 'https://api.github.com/users/jang/events', 'https://api.github.com/users/jang/received_events', 0); +INSERT INTO `developer` VALUES (3520, 'tbalthazar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Balthazar', '@heroku ', 'https://balthazar.info', 'Brussels, Belgium', NULL, 'true', 'Security, Kubernetes, Go, Ruby, decentralization, privacy, free software, coffee, music. Restarting your computers so you don\'t have to, previously at Heroku', 'tba', 0, 0, 110, 0, 0, 0, 0, '2008-03-21T15:52:21Z', '2024-10-26T20:05:35Z', 'https://avatars.githubusercontent.com/u/3520?v=4', 'https://api.github.com/users/tbalthazar', 'https://github.com/tbalthazar', 'https://api.github.com/users/tbalthazar/followers', 'https://api.github.com/users/tbalthazar/following', 'https://api.github.com/users/tbalthazar/gists', 'https://api.github.com/users/tbalthazar/starred', 'https://api.github.com/users/tbalthazar/repos', 'https://api.github.com/users/tbalthazar/events', 'https://api.github.com/users/tbalthazar/received_events', 0); +INSERT INTO `developer` VALUES (3522, 'orion', 'C', 0, 0, 0, 0, 0, 0, 0, 'Orion Auld', 'SwiftStack', 'http://www.swiftstack.com', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 29, 3, 0, 0, 0, '2008-03-21T15:52:46Z', '2024-10-15T20:52:12Z', 'https://avatars.githubusercontent.com/u/3522?v=4', 'https://api.github.com/users/orion', 'https://github.com/orion', 'https://api.github.com/users/orion/followers', 'https://api.github.com/users/orion/following', 'https://api.github.com/users/orion/gists', 'https://api.github.com/users/orion/starred', 'https://api.github.com/users/orion/repos', 'https://api.github.com/users/orion/events', 'https://api.github.com/users/orion/received_events', 0); +INSERT INTO `developer` VALUES (3525, 'marcbey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Schopper', NULL, '', 'Stuttgart/Germany', 'marc@schopper.rocks', NULL, NULL, NULL, 0, 0, 16, 19, 0, 0, 0, '2008-03-21T15:54:13Z', '2024-08-01T08:08:57Z', 'https://avatars.githubusercontent.com/u/3525?v=4', 'https://api.github.com/users/marcbey', 'https://github.com/marcbey', 'https://api.github.com/users/marcbey/followers', 'https://api.github.com/users/marcbey/following', 'https://api.github.com/users/marcbey/gists', 'https://api.github.com/users/marcbey/starred', 'https://api.github.com/users/marcbey/repos', 'https://api.github.com/users/marcbey/events', 'https://api.github.com/users/marcbey/received_events', 0); +INSERT INTO `developer` VALUES (3526, 'tie-rack', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Shea', NULL, '', 'New York, NY', 'cmshea@gmail.com', NULL, NULL, NULL, 0, 0, 39, 1, 0, 0, 0, '2008-03-21T15:55:12Z', '2024-10-23T23:46:04Z', 'https://avatars.githubusercontent.com/u/3526?v=4', 'https://api.github.com/users/tie-rack', 'https://github.com/tie-rack', 'https://api.github.com/users/tie-rack/followers', 'https://api.github.com/users/tie-rack/following', 'https://api.github.com/users/tie-rack/gists', 'https://api.github.com/users/tie-rack/starred', 'https://api.github.com/users/tie-rack/repos', 'https://api.github.com/users/tie-rack/events', 'https://api.github.com/users/tie-rack/received_events', 0); +INSERT INTO `developer` VALUES (3527, 'TomK32', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas R. Koll', NULL, 'https://tomk32.de', 'Linz, Austria', 'tomk32@tomk32.de', NULL, 'hacker, dad, bike mechanic, guinea-pig herder, sailor. Ruby on Rails developer', NULL, 0, 0, 98, 89, 0, 0, 0, '2008-03-21T15:55:31Z', '2024-08-18T15:58:23Z', 'https://avatars.githubusercontent.com/u/3527?v=4', 'https://api.github.com/users/TomK32', 'https://github.com/TomK32', 'https://api.github.com/users/TomK32/followers', 'https://api.github.com/users/TomK32/following', 'https://api.github.com/users/TomK32/gists', 'https://api.github.com/users/TomK32/starred', 'https://api.github.com/users/TomK32/repos', 'https://api.github.com/users/TomK32/events', 'https://api.github.com/users/TomK32/received_events', 0); +INSERT INTO `developer` VALUES (3530, 'renato', 'C', 0, 0, 0, 0, 0, 0, 0, 'Renato Atilio', '@discourse', 'https://www.comparajogos.com.br', 'Brazil', 'renatoat@gmail.com', NULL, NULL, 'renatoat', 0, 0, 24, 11, 0, 0, 0, '2008-03-21T15:57:19Z', '2024-10-08T15:02:32Z', 'https://avatars.githubusercontent.com/u/3530?v=4', 'https://api.github.com/users/renato', 'https://github.com/renato', 'https://api.github.com/users/renato/followers', 'https://api.github.com/users/renato/following', 'https://api.github.com/users/renato/gists', 'https://api.github.com/users/renato/starred', 'https://api.github.com/users/renato/repos', 'https://api.github.com/users/renato/events', 'https://api.github.com/users/renato/received_events', 0); +INSERT INTO `developer` VALUES (3532, 'danielsimser', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-21T15:59:22Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3532?v=4', 'https://api.github.com/users/danielsimser', 'https://github.com/danielsimser', 'https://api.github.com/users/danielsimser/followers', 'https://api.github.com/users/danielsimser/following', 'https://api.github.com/users/danielsimser/gists', 'https://api.github.com/users/danielsimser/starred', 'https://api.github.com/users/danielsimser/repos', 'https://api.github.com/users/danielsimser/events', 'https://api.github.com/users/danielsimser/received_events', 0); +INSERT INTO `developer` VALUES (3533, 't0xa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Yakimov', NULL, '', 'Riga, Latvia', NULL, NULL, NULL, NULL, 0, 0, 17, 19, 0, 0, 0, '2008-03-21T15:59:42Z', '2024-10-21T07:13:19Z', 'https://avatars.githubusercontent.com/u/3533?v=4', 'https://api.github.com/users/t0xa', 'https://github.com/t0xa', 'https://api.github.com/users/t0xa/followers', 'https://api.github.com/users/t0xa/following', 'https://api.github.com/users/t0xa/gists', 'https://api.github.com/users/t0xa/starred', 'https://api.github.com/users/t0xa/repos', 'https://api.github.com/users/t0xa/events', 'https://api.github.com/users/t0xa/received_events', 0); +INSERT INTO `developer` VALUES (3534, 'shoe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Shoemaker', NULL, '', 'Rhode Island, USA', NULL, NULL, NULL, NULL, 0, 0, 33, 9, 0, 0, 0, '2008-03-21T15:59:57Z', '2024-09-09T13:45:36Z', 'https://avatars.githubusercontent.com/u/3534?v=4', 'https://api.github.com/users/shoe', 'https://github.com/shoe', 'https://api.github.com/users/shoe/followers', 'https://api.github.com/users/shoe/following', 'https://api.github.com/users/shoe/gists', 'https://api.github.com/users/shoe/starred', 'https://api.github.com/users/shoe/repos', 'https://api.github.com/users/shoe/events', 'https://api.github.com/users/shoe/received_events', 0); +INSERT INTO `developer` VALUES (3536, 'drewolson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Drew Olson', NULL, 'https://drewolson.org', 'Chicago, IL', NULL, NULL, 'software is fun', NULL, 0, 0, 249, 21, 0, 0, 0, '2008-03-21T16:01:37Z', '2024-10-18T17:11:32Z', 'https://avatars.githubusercontent.com/u/3536?v=4', 'https://api.github.com/users/drewolson', 'https://github.com/drewolson', 'https://api.github.com/users/drewolson/followers', 'https://api.github.com/users/drewolson/following', 'https://api.github.com/users/drewolson/gists', 'https://api.github.com/users/drewolson/starred', 'https://api.github.com/users/drewolson/repos', 'https://api.github.com/users/drewolson/events', 'https://api.github.com/users/drewolson/received_events', 0); +INSERT INTO `developer` VALUES (3537, 'npverni', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Verni', 'Tropic', '', '56th and Wabasha', 'npverni@gmail.com', 'true', 'CTO of Engineering at Tropic', NULL, 0, 0, 35, 9, 0, 0, 0, '2008-03-21T16:01:55Z', '2024-07-31T03:14:25Z', 'https://avatars.githubusercontent.com/u/3537?v=4', 'https://api.github.com/users/npverni', 'https://github.com/npverni', 'https://api.github.com/users/npverni/followers', 'https://api.github.com/users/npverni/following', 'https://api.github.com/users/npverni/gists', 'https://api.github.com/users/npverni/starred', 'https://api.github.com/users/npverni/repos', 'https://api.github.com/users/npverni/events', 'https://api.github.com/users/npverni/received_events', 0); +INSERT INTO `developer` VALUES (3538, 'lloydpuckitt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lloyd Puckitt', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T16:02:01Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3538?v=4', 'https://api.github.com/users/lloydpuckitt', 'https://github.com/lloydpuckitt', 'https://api.github.com/users/lloydpuckitt/followers', 'https://api.github.com/users/lloydpuckitt/following', 'https://api.github.com/users/lloydpuckitt/gists', 'https://api.github.com/users/lloydpuckitt/starred', 'https://api.github.com/users/lloydpuckitt/repos', 'https://api.github.com/users/lloydpuckitt/events', 'https://api.github.com/users/lloydpuckitt/received_events', 0); +INSERT INTO `developer` VALUES (3539, 'tante', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jürgen Geuter', 'http://tante.cc', 'http://tante.cc', 'Berlin/Germany', 'tante@tante.cc', NULL, NULL, 'tante', 0, 0, 36, 1, 0, 0, 0, '2008-03-21T16:02:41Z', '2024-10-08T22:16:44Z', 'https://avatars.githubusercontent.com/u/3539?v=4', 'https://api.github.com/users/tante', 'https://github.com/tante', 'https://api.github.com/users/tante/followers', 'https://api.github.com/users/tante/following', 'https://api.github.com/users/tante/gists', 'https://api.github.com/users/tante/starred', 'https://api.github.com/users/tante/repos', 'https://api.github.com/users/tante/events', 'https://api.github.com/users/tante/received_events', 0); +INSERT INTO `developer` VALUES (3540, 'brianketelsenllc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Ketelsen', 'Brian Ketelsen, LLC', 'www.brianketelsen.com', 'Sunny Florida', 'bketelsen@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T16:04:48Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3540?v=4', 'https://api.github.com/users/brianketelsenllc', 'https://github.com/brianketelsenllc', 'https://api.github.com/users/brianketelsenllc/followers', 'https://api.github.com/users/brianketelsenllc/following', 'https://api.github.com/users/brianketelsenllc/gists', 'https://api.github.com/users/brianketelsenllc/starred', 'https://api.github.com/users/brianketelsenllc/repos', 'https://api.github.com/users/brianketelsenllc/events', 'https://api.github.com/users/brianketelsenllc/received_events', 0); +INSERT INTO `developer` VALUES (3541, 'jomz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benny Degezelle', 'Monkeypatch', 'http://monkeypatch.be', 'Ghent, Belgium', 'hi@monkeypatch.be', NULL, NULL, NULL, 0, 0, 43, 13, 0, 0, 0, '2008-03-21T16:06:59Z', '2024-04-24T23:24:14Z', 'https://avatars.githubusercontent.com/u/3541?v=4', 'https://api.github.com/users/jomz', 'https://github.com/jomz', 'https://api.github.com/users/jomz/followers', 'https://api.github.com/users/jomz/following', 'https://api.github.com/users/jomz/gists', 'https://api.github.com/users/jomz/starred', 'https://api.github.com/users/jomz/repos', 'https://api.github.com/users/jomz/events', 'https://api.github.com/users/jomz/received_events', 0); +INSERT INTO `developer` VALUES (3542, 'pluskid', 'B', 38.33008489149098, 0, 0, 0, 0, 0, 0, 'Chiyuan Zhang', 'MIT', 'http://pluskid.org', 'Boston, MA', 'pluskid@gmail.com', NULL, NULL, NULL, 0, 0, 2520, 0, 0, 0, 0, '2008-03-21T16:07:50Z', '2024-10-21T22:27:33Z', 'https://avatars.githubusercontent.com/u/3542?v=4', 'https://api.github.com/users/pluskid', 'https://github.com/pluskid', 'https://api.github.com/users/pluskid/followers', 'https://api.github.com/users/pluskid/following', 'https://api.github.com/users/pluskid/gists', 'https://api.github.com/users/pluskid/starred', 'https://api.github.com/users/pluskid/repos', 'https://api.github.com/users/pluskid/events', 'https://api.github.com/users/pluskid/received_events', 0); +INSERT INTO `developer` VALUES (3545, 'dantebronto', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kellen Presley', 'Rhizome Compliance', 'https://rhizomecompliance.com', '未知', NULL, NULL, 'CEO & Founder of Rhizome Compliance', NULL, 0, 0, 47, 15, 0, 0, 0, '2008-03-21T16:15:55Z', '2024-09-06T23:47:01Z', 'https://avatars.githubusercontent.com/u/3545?v=4', 'https://api.github.com/users/dantebronto', 'https://github.com/dantebronto', 'https://api.github.com/users/dantebronto/followers', 'https://api.github.com/users/dantebronto/following', 'https://api.github.com/users/dantebronto/gists', 'https://api.github.com/users/dantebronto/starred', 'https://api.github.com/users/dantebronto/repos', 'https://api.github.com/users/dantebronto/events', 'https://api.github.com/users/dantebronto/received_events', 0); +INSERT INTO `developer` VALUES (3546, 'mdirolf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Dirolf', NULL, 'https://crosshare.org', 'Albany, NY', NULL, NULL, NULL, NULL, 0, 0, 172, 3, 0, 0, 0, '2008-03-21T16:17:34Z', '2024-10-31T11:18:18Z', 'https://avatars.githubusercontent.com/u/3546?v=4', 'https://api.github.com/users/mdirolf', 'https://github.com/mdirolf', 'https://api.github.com/users/mdirolf/followers', 'https://api.github.com/users/mdirolf/following', 'https://api.github.com/users/mdirolf/gists', 'https://api.github.com/users/mdirolf/starred', 'https://api.github.com/users/mdirolf/repos', 'https://api.github.com/users/mdirolf/events', 'https://api.github.com/users/mdirolf/received_events', 0); +INSERT INTO `developer` VALUES (3547, 'bobvarghese', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bob Varghese', NULL, '', 'Texas', 'bob.varghese@gmail.com', NULL, NULL, NULL, 0, 0, 6, 6, 0, 0, 0, '2008-03-21T16:20:50Z', '2024-09-18T17:30:37Z', 'https://avatars.githubusercontent.com/u/3547?v=4', 'https://api.github.com/users/bobvarghese', 'https://github.com/bobvarghese', 'https://api.github.com/users/bobvarghese/followers', 'https://api.github.com/users/bobvarghese/following', 'https://api.github.com/users/bobvarghese/gists', 'https://api.github.com/users/bobvarghese/starred', 'https://api.github.com/users/bobvarghese/repos', 'https://api.github.com/users/bobvarghese/events', 'https://api.github.com/users/bobvarghese/received_events', 0); +INSERT INTO `developer` VALUES (3548, 'AArnott', 'C+', 16.345677910932853, 0, 0, 0, 0, 0, 0, 'Andrew Arnott', 'Microsoft', 'http://blog.nerdbank.net', 'Longmont, CO ', 'andrewarnott@live.com', NULL, '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).', 'aarnott', 0, 0, 1238, 7, 0, 0, 0, '2008-03-21T16:24:38Z', '2024-10-19T22:32:04Z', 'https://avatars.githubusercontent.com/u/3548?v=4', 'https://api.github.com/users/AArnott', 'https://github.com/AArnott', 'https://api.github.com/users/AArnott/followers', 'https://api.github.com/users/AArnott/following', 'https://api.github.com/users/AArnott/gists', 'https://api.github.com/users/AArnott/starred', 'https://api.github.com/users/AArnott/repos', 'https://api.github.com/users/AArnott/events', 'https://api.github.com/users/AArnott/received_events', 0); +INSERT INTO `developer` VALUES (3553, 'schrepfler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Srepfler Srdan', 'Huddle Gaming Inc.', 'http://schrepfler.blogspot.com', 'Zagreb', 'schrepfler@gmail.com', NULL, NULL, 'schrepfler', 0, 0, 55, 146, 0, 0, 0, '2008-03-21T16:31:11Z', '2024-10-22T20:10:53Z', 'https://avatars.githubusercontent.com/u/3553?v=4', 'https://api.github.com/users/schrepfler', 'https://github.com/schrepfler', 'https://api.github.com/users/schrepfler/followers', 'https://api.github.com/users/schrepfler/following', 'https://api.github.com/users/schrepfler/gists', 'https://api.github.com/users/schrepfler/starred', 'https://api.github.com/users/schrepfler/repos', 'https://api.github.com/users/schrepfler/events', 'https://api.github.com/users/schrepfler/received_events', 0); +INSERT INTO `developer` VALUES (3555, 'btanaka', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Tanaka', NULL, 'http://www.briantanaka.com/blog', '未知', 'brian.tanaka@gmail.com', NULL, NULL, NULL, 0, 0, 15, 9, 0, 0, 0, '2008-03-21T16:33:51Z', '2020-10-20T02:06:36Z', 'https://avatars.githubusercontent.com/u/3555?v=4', 'https://api.github.com/users/btanaka', 'https://github.com/btanaka', 'https://api.github.com/users/btanaka/followers', 'https://api.github.com/users/btanaka/following', 'https://api.github.com/users/btanaka/gists', 'https://api.github.com/users/btanaka/starred', 'https://api.github.com/users/btanaka/repos', 'https://api.github.com/users/btanaka/events', 'https://api.github.com/users/btanaka/received_events', 0); +INSERT INTO `developer` VALUES (3556, 'davidbgk', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Larlet', 'http://scopyleft.fr', 'http://larlet.com', 'Montréal, Canada', NULL, NULL, 'Slowly but surely getting out of Microsoft Github. Sharing some code snippets on https://code.larlet.fr/', NULL, 0, 0, 206, 1, 0, 0, 0, '2008-03-21T16:35:06Z', '2024-07-25T12:21:43Z', 'https://avatars.githubusercontent.com/u/3556?v=4', 'https://api.github.com/users/davidbgk', 'https://github.com/davidbgk', 'https://api.github.com/users/davidbgk/followers', 'https://api.github.com/users/davidbgk/following', 'https://api.github.com/users/davidbgk/gists', 'https://api.github.com/users/davidbgk/starred', 'https://api.github.com/users/davidbgk/repos', 'https://api.github.com/users/davidbgk/events', 'https://api.github.com/users/davidbgk/received_events', 0); +INSERT INTO `developer` VALUES (3557, 'ledermann', 'C', 1.0834920975968654, 0, 0, 0, 0, 0, 0, 'Georg Ledermann', NULL, 'https://ledermann.dev', 'Jülich, Germany', 'georg@ledermann.dev', 'true', 'Full-stack web developer focused on Ruby on Rails. Building @solectrus, an open-source photovoltaic dashboard.', 'ledermann', 0, 0, 348, 101, 0, 0, 0, '2008-03-21T16:38:46Z', '2024-10-17T03:52:21Z', 'https://avatars.githubusercontent.com/u/3557?v=4', 'https://api.github.com/users/ledermann', 'https://github.com/ledermann', 'https://api.github.com/users/ledermann/followers', 'https://api.github.com/users/ledermann/following', 'https://api.github.com/users/ledermann/gists', 'https://api.github.com/users/ledermann/starred', 'https://api.github.com/users/ledermann/repos', 'https://api.github.com/users/ledermann/events', 'https://api.github.com/users/ledermann/received_events', 0); +INSERT INTO `developer` VALUES (3558, 'pbhogan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Hogan', 'Gallant Games, LLC', 'http://www.gallantgames.com', 'Edmond, Oklahoma', 'patrick@gallantgames.com', NULL, 'Full stack engineer, indie developer and developer of InControl and other Unity goodies.', 'pbhogan', 0, 0, 97, 2, 0, 0, 0, '2008-03-21T16:42:29Z', '2024-09-27T14:41:58Z', 'https://avatars.githubusercontent.com/u/3558?v=4', 'https://api.github.com/users/pbhogan', 'https://github.com/pbhogan', 'https://api.github.com/users/pbhogan/followers', 'https://api.github.com/users/pbhogan/following', 'https://api.github.com/users/pbhogan/gists', 'https://api.github.com/users/pbhogan/starred', 'https://api.github.com/users/pbhogan/repos', 'https://api.github.com/users/pbhogan/events', 'https://api.github.com/users/pbhogan/received_events', 0); +INSERT INTO `developer` VALUES (3559, 'jaggederest', 'C', 0, 0, 0, 0, 24, 0, 0, 'Justin George', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 56, 9, 0, 0, 0, '2008-03-21T16:46:18Z', '2024-09-06T06:35:13Z', 'https://avatars.githubusercontent.com/u/3559?v=4', 'https://api.github.com/users/jaggederest', 'https://github.com/jaggederest', 'https://api.github.com/users/jaggederest/followers', 'https://api.github.com/users/jaggederest/following', 'https://api.github.com/users/jaggederest/gists', 'https://api.github.com/users/jaggederest/starred', 'https://api.github.com/users/jaggederest/repos', 'https://api.github.com/users/jaggederest/events', 'https://api.github.com/users/jaggederest/received_events', 0); +INSERT INTO `developer` VALUES (3560, 'jpedroso', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jorge Pedroso', '@metaclassy', 'http://metaclassy.com', 'Helsinki, Finland', NULL, NULL, NULL, 'jpedroso', 0, 0, 18, 20, 0, 0, 0, '2008-03-21T16:49:17Z', '2024-10-09T19:07:58Z', 'https://avatars.githubusercontent.com/u/3560?v=4', 'https://api.github.com/users/jpedroso', 'https://github.com/jpedroso', 'https://api.github.com/users/jpedroso/followers', 'https://api.github.com/users/jpedroso/following', 'https://api.github.com/users/jpedroso/gists', 'https://api.github.com/users/jpedroso/starred', 'https://api.github.com/users/jpedroso/repos', 'https://api.github.com/users/jpedroso/events', 'https://api.github.com/users/jpedroso/received_events', 0); +INSERT INTO `developer` VALUES (3561, 'hypomodern', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Wilson', 'WB Games New York / @agoragames ', 'http://hypomodern.com', 'Ann Arbor, MI', 'mhw@hypomodern.com', NULL, NULL, NULL, 0, 0, 21, 5, 0, 0, 0, '2008-03-21T16:50:23Z', '2024-08-12T13:31:16Z', 'https://avatars.githubusercontent.com/u/3561?v=4', 'https://api.github.com/users/hypomodern', 'https://github.com/hypomodern', 'https://api.github.com/users/hypomodern/followers', 'https://api.github.com/users/hypomodern/following', 'https://api.github.com/users/hypomodern/gists', 'https://api.github.com/users/hypomodern/starred', 'https://api.github.com/users/hypomodern/repos', 'https://api.github.com/users/hypomodern/events', 'https://api.github.com/users/hypomodern/received_events', 0); +INSERT INTO `developer` VALUES (3562, 'Tobiaswk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tobias Westergaard Kjeldsen', NULL, 'https://tobis.dk', 'Denmark', 'tobias@wkjeldsen.dk', NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2008-03-21T16:56:10Z', '2022-01-27T16:54:03Z', 'https://avatars.githubusercontent.com/u/3562?v=4', 'https://api.github.com/users/Tobiaswk', 'https://github.com/Tobiaswk', 'https://api.github.com/users/Tobiaswk/followers', 'https://api.github.com/users/Tobiaswk/following', 'https://api.github.com/users/Tobiaswk/gists', 'https://api.github.com/users/Tobiaswk/starred', 'https://api.github.com/users/Tobiaswk/repos', 'https://api.github.com/users/Tobiaswk/events', 'https://api.github.com/users/Tobiaswk/received_events', 0); +INSERT INTO `developer` VALUES (3563, 'zippy', 'C', 0.1574718347652434, 0, 0, 0, 0, 0, 0, 'Eric Harris-Braun', 'metacurrency.org, holochain.org, holo.host', 'eric.harris-braun.com', 'NY', 'eric@harris-braun.com', NULL, 'ceptr, @holochain, @holo-host, @metacurrency, ', NULL, 0, 0, 294, 22, 0, 0, 0, '2008-03-21T16:59:09Z', '2024-09-27T19:04:23Z', 'https://avatars.githubusercontent.com/u/3563?v=4', 'https://api.github.com/users/zippy', 'https://github.com/zippy', 'https://api.github.com/users/zippy/followers', 'https://api.github.com/users/zippy/following', 'https://api.github.com/users/zippy/gists', 'https://api.github.com/users/zippy/starred', 'https://api.github.com/users/zippy/repos', 'https://api.github.com/users/zippy/events', 'https://api.github.com/users/zippy/received_events', 0); +INSERT INTO `developer` VALUES (3564, 'crazoid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fábio Palhano', 'Prefeitura de Ponta Grossa', '', 'Ponta Grossa, PR', 'crazoid@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T17:03:08Z', '2024-09-30T13:20:21Z', 'https://avatars.githubusercontent.com/u/3564?v=4', 'https://api.github.com/users/crazoid', 'https://github.com/crazoid', 'https://api.github.com/users/crazoid/followers', 'https://api.github.com/users/crazoid/following', 'https://api.github.com/users/crazoid/gists', 'https://api.github.com/users/crazoid/starred', 'https://api.github.com/users/crazoid/repos', 'https://api.github.com/users/crazoid/events', 'https://api.github.com/users/crazoid/received_events', 0); +INSERT INTO `developer` VALUES (3566, 'adamv', 'C', 0.4661452557091174, 0, 0, 0, 0, 0, 0, 'Adam Vandenberg', NULL, '', '未知', 'flangy@gmail.com', NULL, NULL, NULL, 0, 0, 312, 0, 0, 0, 0, '2008-03-21T17:11:01Z', '2020-12-29T18:19:59Z', 'https://avatars.githubusercontent.com/u/3566?v=4', 'https://api.github.com/users/adamv', 'https://github.com/adamv', 'https://api.github.com/users/adamv/followers', 'https://api.github.com/users/adamv/following', 'https://api.github.com/users/adamv/gists', 'https://api.github.com/users/adamv/starred', 'https://api.github.com/users/adamv/repos', 'https://api.github.com/users/adamv/events', 'https://api.github.com/users/adamv/received_events', 0); +INSERT INTO `developer` VALUES (3567, 'adisak', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-21T17:13:08Z', '2024-06-13T06:45:47Z', 'https://avatars.githubusercontent.com/u/3567?v=4', 'https://api.github.com/users/adisak', 'https://github.com/adisak', 'https://api.github.com/users/adisak/followers', 'https://api.github.com/users/adisak/following', 'https://api.github.com/users/adisak/gists', 'https://api.github.com/users/adisak/starred', 'https://api.github.com/users/adisak/repos', 'https://api.github.com/users/adisak/events', 'https://api.github.com/users/adisak/received_events', 0); +INSERT INTO `developer` VALUES (3568, 'jaboojoo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T17:13:34Z', '2016-06-16T02:12:42Z', 'https://avatars.githubusercontent.com/u/3568?v=4', 'https://api.github.com/users/jaboojoo', 'https://github.com/jaboojoo', 'https://api.github.com/users/jaboojoo/followers', 'https://api.github.com/users/jaboojoo/following', 'https://api.github.com/users/jaboojoo/gists', 'https://api.github.com/users/jaboojoo/starred', 'https://api.github.com/users/jaboojoo/repos', 'https://api.github.com/users/jaboojoo/events', 'https://api.github.com/users/jaboojoo/received_events', 0); +INSERT INTO `developer` VALUES (3569, 'vlarsen', 'C', 0, 0, 0, 0, 35, 0, 0, 'Vidar Larsen', 'Telenor Digital', '', 'Trondheim, Norway', 'vlarsen@telenordigital.com', NULL, NULL, NULL, 0, 0, 12, 12, 0, 0, 0, '2008-03-21T17:19:22Z', '2024-10-10T10:25:47Z', 'https://avatars.githubusercontent.com/u/3569?v=4', 'https://api.github.com/users/vlarsen', 'https://github.com/vlarsen', 'https://api.github.com/users/vlarsen/followers', 'https://api.github.com/users/vlarsen/following', 'https://api.github.com/users/vlarsen/gists', 'https://api.github.com/users/vlarsen/starred', 'https://api.github.com/users/vlarsen/repos', 'https://api.github.com/users/vlarsen/events', 'https://api.github.com/users/vlarsen/received_events', 0); +INSERT INTO `developer` VALUES (3570, 'x0r', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-21T17:31:21Z', '2019-12-22T08:34:09Z', 'https://avatars.githubusercontent.com/u/3570?v=4', 'https://api.github.com/users/x0r', 'https://github.com/x0r', 'https://api.github.com/users/x0r/followers', 'https://api.github.com/users/x0r/following', 'https://api.github.com/users/x0r/gists', 'https://api.github.com/users/x0r/starred', 'https://api.github.com/users/x0r/repos', 'https://api.github.com/users/x0r/events', 'https://api.github.com/users/x0r/received_events', 0); +INSERT INTO `developer` VALUES (3571, 'PaulRaye', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Raupach', '4PR Solutions', 'http://www.ddmweb.com', 'Vallejo, CA', 'paul@raupach.com', NULL, NULL, NULL, 0, 0, 22, 1, 0, 0, 0, '2008-03-21T17:33:48Z', '2024-10-26T22:07:01Z', 'https://avatars.githubusercontent.com/u/3571?v=4', 'https://api.github.com/users/PaulRaye', 'https://github.com/PaulRaye', 'https://api.github.com/users/PaulRaye/followers', 'https://api.github.com/users/PaulRaye/following', 'https://api.github.com/users/PaulRaye/gists', 'https://api.github.com/users/PaulRaye/starred', 'https://api.github.com/users/PaulRaye/repos', 'https://api.github.com/users/PaulRaye/events', 'https://api.github.com/users/PaulRaye/received_events', 0); +INSERT INTO `developer` VALUES (3572, 'IrateNinja', 'C', 0, 0, 0, 0, 45, 1, 0, 'Geoffrey Byers', NULL, '', 'Canada', NULL, 'true', NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-03-21T17:34:18Z', '2024-10-22T04:24:53Z', 'https://avatars.githubusercontent.com/u/3572?v=4', 'https://api.github.com/users/IrateNinja', 'https://github.com/IrateNinja', 'https://api.github.com/users/IrateNinja/followers', 'https://api.github.com/users/IrateNinja/following', 'https://api.github.com/users/IrateNinja/gists', 'https://api.github.com/users/IrateNinja/starred', 'https://api.github.com/users/IrateNinja/repos', 'https://api.github.com/users/IrateNinja/events', 'https://api.github.com/users/IrateNinja/received_events', 0); +INSERT INTO `developer` VALUES (3573, 'jelle', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 0, 0, 0, 0, '2008-03-21T17:35:50Z', '2024-06-11T14:34:51Z', 'https://avatars.githubusercontent.com/u/3573?v=4', 'https://api.github.com/users/jelle', 'https://github.com/jelle', 'https://api.github.com/users/jelle/followers', 'https://api.github.com/users/jelle/following', 'https://api.github.com/users/jelle/gists', 'https://api.github.com/users/jelle/starred', 'https://api.github.com/users/jelle/repos', 'https://api.github.com/users/jelle/events', 'https://api.github.com/users/jelle/received_events', 0); +INSERT INTO `developer` VALUES (3574, 'okr', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 2, 0, 0, 0, '2008-03-21T17:36:48Z', '2022-12-23T02:54:22Z', 'https://avatars.githubusercontent.com/u/3574?v=4', 'https://api.github.com/users/okr', 'https://github.com/okr', 'https://api.github.com/users/okr/followers', 'https://api.github.com/users/okr/following', 'https://api.github.com/users/okr/gists', 'https://api.github.com/users/okr/starred', 'https://api.github.com/users/okr/repos', 'https://api.github.com/users/okr/events', 'https://api.github.com/users/okr/received_events', 0); +INSERT INTO `developer` VALUES (3575, 'agateau', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aurélien Gâteau', NULL, 'agateau.com', '未知', NULL, NULL, 'I create cross-platform games, desktop apps and tools.', NULL, 0, 0, 115, 1, 0, 0, 0, '2008-03-21T17:41:00Z', '2024-10-04T06:21:41Z', 'https://avatars.githubusercontent.com/u/3575?v=4', 'https://api.github.com/users/agateau', 'https://github.com/agateau', 'https://api.github.com/users/agateau/followers', 'https://api.github.com/users/agateau/following', 'https://api.github.com/users/agateau/gists', 'https://api.github.com/users/agateau/starred', 'https://api.github.com/users/agateau/repos', 'https://api.github.com/users/agateau/events', 'https://api.github.com/users/agateau/received_events', 0); +INSERT INTO `developer` VALUES (3576, 'collin-robinson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Collin Robinson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-21T17:43:25Z', '2024-09-17T03:58:52Z', 'https://avatars.githubusercontent.com/u/3576?v=4', 'https://api.github.com/users/collin-robinson', 'https://github.com/collin-robinson', 'https://api.github.com/users/collin-robinson/followers', 'https://api.github.com/users/collin-robinson/following', 'https://api.github.com/users/collin-robinson/gists', 'https://api.github.com/users/collin-robinson/starred', 'https://api.github.com/users/collin-robinson/repos', 'https://api.github.com/users/collin-robinson/events', 'https://api.github.com/users/collin-robinson/received_events', 0); +INSERT INTO `developer` VALUES (3577, 'gartho', 'C', 0, 0, 0, 0, 0, 0, 0, 'Garth O', 'SAS Institute', '', 'Isle of Wight, UK', 'garth.oatley@gmail.com', NULL, 'Principle Software Developer at SAS Institute.\r\nInterested in Java, Ruby, Kafka, and AWS.', NULL, 0, 0, 25, 14, 0, 0, 0, '2008-03-21T17:44:57Z', '2024-07-15T15:35:29Z', 'https://avatars.githubusercontent.com/u/3577?v=4', 'https://api.github.com/users/gartho', 'https://github.com/gartho', 'https://api.github.com/users/gartho/followers', 'https://api.github.com/users/gartho/following', 'https://api.github.com/users/gartho/gists', 'https://api.github.com/users/gartho/starred', 'https://api.github.com/users/gartho/repos', 'https://api.github.com/users/gartho/events', 'https://api.github.com/users/gartho/received_events', 0); +INSERT INTO `developer` VALUES (3578, 'raybondo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ray Ratelis', 'Guild Software, Inc.', '', 'Milwaukee, WI', 'ray@guildsoftware.com', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-21T17:48:26Z', '2024-07-19T17:09:42Z', 'https://avatars.githubusercontent.com/u/3578?v=4', 'https://api.github.com/users/raybondo', 'https://github.com/raybondo', 'https://api.github.com/users/raybondo/followers', 'https://api.github.com/users/raybondo/following', 'https://api.github.com/users/raybondo/gists', 'https://api.github.com/users/raybondo/starred', 'https://api.github.com/users/raybondo/repos', 'https://api.github.com/users/raybondo/events', 'https://api.github.com/users/raybondo/received_events', 0); +INSERT INTO `developer` VALUES (3579, 'blt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian L. Troutwine', 'Software Developer', 'blog.troutwine.us', 'Berkeley, CA', 'brian@troutwine.us', NULL, NULL, NULL, 0, 0, 202, 48, 0, 0, 0, '2008-03-21T17:49:42Z', '2024-09-30T06:12:46Z', 'https://avatars.githubusercontent.com/u/3579?v=4', 'https://api.github.com/users/blt', 'https://github.com/blt', 'https://api.github.com/users/blt/followers', 'https://api.github.com/users/blt/following', 'https://api.github.com/users/blt/gists', 'https://api.github.com/users/blt/starred', 'https://api.github.com/users/blt/repos', 'https://api.github.com/users/blt/events', 'https://api.github.com/users/blt/received_events', 0); +INSERT INTO `developer` VALUES (3580, 'tirtauntario', 'C', 0, 0, 0, 2, 39, 0, 0, 'Tirta Untario', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T17:51:28Z', '2024-09-25T10:49:09Z', 'https://avatars.githubusercontent.com/u/3580?v=4', 'https://api.github.com/users/tirtauntario', 'https://github.com/tirtauntario', 'https://api.github.com/users/tirtauntario/followers', 'https://api.github.com/users/tirtauntario/following', 'https://api.github.com/users/tirtauntario/gists', 'https://api.github.com/users/tirtauntario/starred', 'https://api.github.com/users/tirtauntario/repos', 'https://api.github.com/users/tirtauntario/events', 'https://api.github.com/users/tirtauntario/received_events', 0); +INSERT INTO `developer` VALUES (3581, 'jeremybower', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Bower', NULL, 'https://jeremybower.com', 'Toronto, ON', 'jeremy@jeremybower.com', NULL, 'Fractional CTO • I build successful product technology teams for startups, SMBs and enterprises', NULL, 0, 0, 17, 2, 0, 0, 0, '2008-03-21T18:15:00Z', '2024-09-15T21:53:56Z', 'https://avatars.githubusercontent.com/u/3581?v=4', 'https://api.github.com/users/jeremybower', 'https://github.com/jeremybower', 'https://api.github.com/users/jeremybower/followers', 'https://api.github.com/users/jeremybower/following', 'https://api.github.com/users/jeremybower/gists', 'https://api.github.com/users/jeremybower/starred', 'https://api.github.com/users/jeremybower/repos', 'https://api.github.com/users/jeremybower/events', 'https://api.github.com/users/jeremybower/received_events', 0); +INSERT INTO `developer` VALUES (3582, 'akraut', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T18:15:44Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3582?v=4', 'https://api.github.com/users/akraut', 'https://github.com/akraut', 'https://api.github.com/users/akraut/followers', 'https://api.github.com/users/akraut/following', 'https://api.github.com/users/akraut/gists', 'https://api.github.com/users/akraut/starred', 'https://api.github.com/users/akraut/repos', 'https://api.github.com/users/akraut/events', 'https://api.github.com/users/akraut/received_events', 0); +INSERT INTO `developer` VALUES (3583, 'donparker', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T18:32:26Z', '2020-04-24T21:04:33Z', 'https://avatars.githubusercontent.com/u/3583?v=4', 'https://api.github.com/users/donparker', 'https://github.com/donparker', 'https://api.github.com/users/donparker/followers', 'https://api.github.com/users/donparker/following', 'https://api.github.com/users/donparker/gists', 'https://api.github.com/users/donparker/starred', 'https://api.github.com/users/donparker/repos', 'https://api.github.com/users/donparker/events', 'https://api.github.com/users/donparker/received_events', 0); +INSERT INTO `developer` VALUES (3584, 'ank', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Kraut', '@BioTeam', 'http://bleedingedgebiotech.com', 'Pittsburgh, PA', NULL, NULL, NULL, 'adamkraut', 0, 0, 13, 0, 0, 0, 0, '2008-03-21T18:35:37Z', '2024-07-19T21:45:33Z', 'https://avatars.githubusercontent.com/u/3584?v=4', 'https://api.github.com/users/ank', 'https://github.com/ank', 'https://api.github.com/users/ank/followers', 'https://api.github.com/users/ank/following', 'https://api.github.com/users/ank/gists', 'https://api.github.com/users/ank/starred', 'https://api.github.com/users/ank/repos', 'https://api.github.com/users/ank/events', 'https://api.github.com/users/ank/received_events', 0); +INSERT INTO `developer` VALUES (3585, 'shad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shad Reynolds', 'data.world', 'http://shadr.us', 'Austin, TX, USA', 'shad.reynolds@gmail.com', NULL, NULL, NULL, 0, 0, 33, 12, 0, 0, 0, '2008-03-21T18:39:11Z', '2024-10-24T17:56:08Z', 'https://avatars.githubusercontent.com/u/3585?v=4', 'https://api.github.com/users/shad', 'https://github.com/shad', 'https://api.github.com/users/shad/followers', 'https://api.github.com/users/shad/following', 'https://api.github.com/users/shad/gists', 'https://api.github.com/users/shad/starred', 'https://api.github.com/users/shad/repos', 'https://api.github.com/users/shad/events', 'https://api.github.com/users/shad/received_events', 0); +INSERT INTO `developer` VALUES (3588, 'alexisrobert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexis Robert', 'Kima Ventures', '', 'Paris', NULL, NULL, NULL, 'ale6_', 0, 0, 26, 0, 0, 0, 0, '2008-03-21T19:05:24Z', '2024-10-06T14:55:30Z', 'https://avatars.githubusercontent.com/u/3588?v=4', 'https://api.github.com/users/alexisrobert', 'https://github.com/alexisrobert', 'https://api.github.com/users/alexisrobert/followers', 'https://api.github.com/users/alexisrobert/following', 'https://api.github.com/users/alexisrobert/gists', 'https://api.github.com/users/alexisrobert/starred', 'https://api.github.com/users/alexisrobert/repos', 'https://api.github.com/users/alexisrobert/events', 'https://api.github.com/users/alexisrobert/received_events', 0); +INSERT INTO `developer` VALUES (3589, 'harningt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Harning Jr', '@censys', '', 'Ft Wayne, IN', 'harningt@gmail.com', NULL, NULL, NULL, 0, 0, 40, 3, 0, 0, 0, '2008-03-21T19:08:26Z', '2024-07-07T16:24:43Z', 'https://avatars.githubusercontent.com/u/3589?v=4', 'https://api.github.com/users/harningt', 'https://github.com/harningt', 'https://api.github.com/users/harningt/followers', 'https://api.github.com/users/harningt/following', 'https://api.github.com/users/harningt/gists', 'https://api.github.com/users/harningt/starred', 'https://api.github.com/users/harningt/repos', 'https://api.github.com/users/harningt/events', 'https://api.github.com/users/harningt/received_events', 0); +INSERT INTO `developer` VALUES (3590, 'Whitespace', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Clark', 'Algolia', 'https://algolia.com', 'NY', 'whitespace@gmail.com', NULL, 'Principal Engineer at Algolia. Art stuff on the side.', NULL, 0, 0, 53, 35, 0, 0, 0, '2008-03-21T19:09:05Z', '2024-08-03T17:20:55Z', 'https://avatars.githubusercontent.com/u/3590?v=4', 'https://api.github.com/users/Whitespace', 'https://github.com/Whitespace', 'https://api.github.com/users/Whitespace/followers', 'https://api.github.com/users/Whitespace/following', 'https://api.github.com/users/Whitespace/gists', 'https://api.github.com/users/Whitespace/starred', 'https://api.github.com/users/Whitespace/repos', 'https://api.github.com/users/Whitespace/events', 'https://api.github.com/users/Whitespace/received_events', 0); +INSERT INTO `developer` VALUES (3591, 'iivanovic', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T19:19:19Z', '2019-12-16T07:34:25Z', 'https://avatars.githubusercontent.com/u/3591?v=4', 'https://api.github.com/users/iivanovic', 'https://github.com/iivanovic', 'https://api.github.com/users/iivanovic/followers', 'https://api.github.com/users/iivanovic/following', 'https://api.github.com/users/iivanovic/gists', 'https://api.github.com/users/iivanovic/starred', 'https://api.github.com/users/iivanovic/repos', 'https://api.github.com/users/iivanovic/events', 'https://api.github.com/users/iivanovic/received_events', 0); +INSERT INTO `developer` VALUES (3592, 'unilogic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben', NULL, 'http://www.benallenphoto.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-21T19:27:27Z', '2022-05-03T01:32:58Z', 'https://avatars.githubusercontent.com/u/3592?v=4', 'https://api.github.com/users/unilogic', 'https://github.com/unilogic', 'https://api.github.com/users/unilogic/followers', 'https://api.github.com/users/unilogic/following', 'https://api.github.com/users/unilogic/gists', 'https://api.github.com/users/unilogic/starred', 'https://api.github.com/users/unilogic/repos', 'https://api.github.com/users/unilogic/events', 'https://api.github.com/users/unilogic/received_events', 0); +INSERT INTO `developer` VALUES (3594, 'findrails', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-21T19:40:52Z', '2021-06-02T03:46:58Z', 'https://avatars.githubusercontent.com/u/3594?v=4', 'https://api.github.com/users/findrails', 'https://github.com/findrails', 'https://api.github.com/users/findrails/followers', 'https://api.github.com/users/findrails/following', 'https://api.github.com/users/findrails/gists', 'https://api.github.com/users/findrails/starred', 'https://api.github.com/users/findrails/repos', 'https://api.github.com/users/findrails/events', 'https://api.github.com/users/findrails/received_events', 0); +INSERT INTO `developer` VALUES (3595, 'shingo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-03-21T19:41:10Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3595?v=4', 'https://api.github.com/users/shingo', 'https://github.com/shingo', 'https://api.github.com/users/shingo/followers', 'https://api.github.com/users/shingo/following', 'https://api.github.com/users/shingo/gists', 'https://api.github.com/users/shingo/starred', 'https://api.github.com/users/shingo/repos', 'https://api.github.com/users/shingo/events', 'https://api.github.com/users/shingo/received_events', 0); +INSERT INTO `developer` VALUES (3596, 'pvl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pedro Lima', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 27, 29, 0, 0, 0, '2008-03-21T19:41:55Z', '2024-06-10T10:26:57Z', 'https://avatars.githubusercontent.com/u/3596?v=4', 'https://api.github.com/users/pvl', 'https://github.com/pvl', 'https://api.github.com/users/pvl/followers', 'https://api.github.com/users/pvl/following', 'https://api.github.com/users/pvl/gists', 'https://api.github.com/users/pvl/starred', 'https://api.github.com/users/pvl/repos', 'https://api.github.com/users/pvl/events', 'https://api.github.com/users/pvl/received_events', 0); +INSERT INTO `developer` VALUES (3597, 'rcabaco', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rúben Cabaço', NULL, 'http://github.com/rcabaco', 'Austria', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T20:01:02Z', '2024-08-05T08:15:25Z', 'https://avatars.githubusercontent.com/u/3597?v=4', 'https://api.github.com/users/rcabaco', 'https://github.com/rcabaco', 'https://api.github.com/users/rcabaco/followers', 'https://api.github.com/users/rcabaco/following', 'https://api.github.com/users/rcabaco/gists', 'https://api.github.com/users/rcabaco/starred', 'https://api.github.com/users/rcabaco/repos', 'https://api.github.com/users/rcabaco/events', 'https://api.github.com/users/rcabaco/received_events', 0); +INSERT INTO `developer` VALUES (3598, 'cfedde', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Fedde', 'Loud Noise System Services', '', '未知', NULL, NULL, 'I, for one, welcome our new corporate masters.', NULL, 0, 0, 11, 1, 0, 0, 0, '2008-03-21T20:10:16Z', '2024-09-19T14:36:18Z', 'https://avatars.githubusercontent.com/u/3598?v=4', 'https://api.github.com/users/cfedde', 'https://github.com/cfedde', 'https://api.github.com/users/cfedde/followers', 'https://api.github.com/users/cfedde/following', 'https://api.github.com/users/cfedde/gists', 'https://api.github.com/users/cfedde/starred', 'https://api.github.com/users/cfedde/repos', 'https://api.github.com/users/cfedde/events', 'https://api.github.com/users/cfedde/received_events', 0); +INSERT INTO `developer` VALUES (3599, 'klatos', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-21T20:21:12Z', '2021-05-23T14:55:07Z', 'https://avatars.githubusercontent.com/u/3599?v=4', 'https://api.github.com/users/klatos', 'https://github.com/klatos', 'https://api.github.com/users/klatos/followers', 'https://api.github.com/users/klatos/following', 'https://api.github.com/users/klatos/gists', 'https://api.github.com/users/klatos/starred', 'https://api.github.com/users/klatos/repos', 'https://api.github.com/users/klatos/events', 'https://api.github.com/users/klatos/received_events', 0); +INSERT INTO `developer` VALUES (3600, 'jcbpl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob Paul', '@memberful', '', 'Minnesota', 'jacob@jacobpaul.io', NULL, NULL, NULL, 0, 0, 27, 6, 0, 0, 0, '2008-03-21T20:58:40Z', '2024-04-26T14:48:07Z', 'https://avatars.githubusercontent.com/u/3600?v=4', 'https://api.github.com/users/jcbpl', 'https://github.com/jcbpl', 'https://api.github.com/users/jcbpl/followers', 'https://api.github.com/users/jcbpl/following', 'https://api.github.com/users/jcbpl/gists', 'https://api.github.com/users/jcbpl/starred', 'https://api.github.com/users/jcbpl/repos', 'https://api.github.com/users/jcbpl/events', 'https://api.github.com/users/jcbpl/received_events', 0); +INSERT INTO `developer` VALUES (3601, 'mrfabbri', 'C', 3.7696686785317626, 0, 2, 13, 850, 29, 0, 'Marco Fabbri', NULL, 'https://mrfabbri.org', 'Bologna, Italy', 'mrfabbri@gmail.com', NULL, NULL, 'mrfabbri', 0, 0, 51, 37, 0, 0, 0, '2008-03-21T21:00:18Z', '2024-10-24T07:14:07Z', 'https://avatars.githubusercontent.com/u/3601?v=4', 'https://api.github.com/users/mrfabbri', 'https://github.com/mrfabbri', 'https://api.github.com/users/mrfabbri/followers', 'https://api.github.com/users/mrfabbri/following', 'https://api.github.com/users/mrfabbri/gists', 'https://api.github.com/users/mrfabbri/starred', 'https://api.github.com/users/mrfabbri/repos', 'https://api.github.com/users/mrfabbri/events', 'https://api.github.com/users/mrfabbri/received_events', 0); +INSERT INTO `developer` VALUES (3603, 'makyox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michał', NULL, 'makyo.pl', '未知', NULL, NULL, 'webdev', NULL, 0, 0, 21, 10, 0, 0, 0, '2008-03-21T21:49:54Z', '2024-11-03T23:34:52Z', 'https://avatars.githubusercontent.com/u/3603?v=4', 'https://api.github.com/users/makyox', 'https://github.com/makyox', 'https://api.github.com/users/makyox/followers', 'https://api.github.com/users/makyox/following', 'https://api.github.com/users/makyox/gists', 'https://api.github.com/users/makyox/starred', 'https://api.github.com/users/makyox/repos', 'https://api.github.com/users/makyox/events', 'https://api.github.com/users/makyox/received_events', 0); +INSERT INTO `developer` VALUES (3605, 'danmunk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Munk', NULL, '', 'Sacramento, CA', 'danmunk@gmail.com', NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2008-03-21T22:04:47Z', '2024-07-18T22:10:42Z', 'https://avatars.githubusercontent.com/u/3605?v=4', 'https://api.github.com/users/danmunk', 'https://github.com/danmunk', 'https://api.github.com/users/danmunk/followers', 'https://api.github.com/users/danmunk/following', 'https://api.github.com/users/danmunk/gists', 'https://api.github.com/users/danmunk/starred', 'https://api.github.com/users/danmunk/repos', 'https://api.github.com/users/danmunk/events', 'https://api.github.com/users/danmunk/received_events', 0); +INSERT INTO `developer` VALUES (3606, 'wr0ngway', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Conway', NULL, '', 'Weymouth, MA', NULL, NULL, NULL, NULL, 0, 0, 87, 11, 0, 0, 0, '2008-03-21T22:06:03Z', '2024-09-13T20:10:38Z', 'https://avatars.githubusercontent.com/u/3606?v=4', 'https://api.github.com/users/wr0ngway', 'https://github.com/wr0ngway', 'https://api.github.com/users/wr0ngway/followers', 'https://api.github.com/users/wr0ngway/following', 'https://api.github.com/users/wr0ngway/gists', 'https://api.github.com/users/wr0ngway/starred', 'https://api.github.com/users/wr0ngway/repos', 'https://api.github.com/users/wr0ngway/events', 'https://api.github.com/users/wr0ngway/received_events', 0); +INSERT INTO `developer` VALUES (3607, 'arijo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexandre Gomes', 'Javascript Developer', 'https://www.linkedin.com/in/alexandrerijo', 'Porto, Portugal', 'alexandre.rijo@gmail.com', 'true', NULL, NULL, 0, 0, 26, 13, 0, 0, 0, '2008-03-21T22:26:57Z', '2024-10-23T22:28:02Z', 'https://avatars.githubusercontent.com/u/3607?v=4', 'https://api.github.com/users/arijo', 'https://github.com/arijo', 'https://api.github.com/users/arijo/followers', 'https://api.github.com/users/arijo/following', 'https://api.github.com/users/arijo/gists', 'https://api.github.com/users/arijo/starred', 'https://api.github.com/users/arijo/repos', 'https://api.github.com/users/arijo/events', 'https://api.github.com/users/arijo/received_events', 0); +INSERT INTO `developer` VALUES (3608, 'robc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Caporetto', NULL, 'http://www.rob-caporetto.com', 'Melbourne, Australia', 'rcaporetto@gmail.com', NULL, NULL, NULL, 0, 0, 43, 21, 0, 0, 0, '2008-03-21T22:37:53Z', '2024-06-27T11:55:06Z', 'https://avatars.githubusercontent.com/u/3608?v=4', 'https://api.github.com/users/robc', 'https://github.com/robc', 'https://api.github.com/users/robc/followers', 'https://api.github.com/users/robc/following', 'https://api.github.com/users/robc/gists', 'https://api.github.com/users/robc/starred', 'https://api.github.com/users/robc/repos', 'https://api.github.com/users/robc/events', 'https://api.github.com/users/robc/received_events', 0); +INSERT INTO `developer` VALUES (3609, 'pmh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrik Hedman', 'Kundo', '', 'Sweden', 'patrik.hedman@gmail.com', NULL, NULL, NULL, 0, 0, 26, 14, 0, 0, 0, '2008-03-21T22:38:56Z', '2024-10-18T16:02:35Z', 'https://avatars.githubusercontent.com/u/3609?v=4', 'https://api.github.com/users/pmh', 'https://github.com/pmh', 'https://api.github.com/users/pmh/followers', 'https://api.github.com/users/pmh/following', 'https://api.github.com/users/pmh/gists', 'https://api.github.com/users/pmh/starred', 'https://api.github.com/users/pmh/repos', 'https://api.github.com/users/pmh/events', 'https://api.github.com/users/pmh/received_events', 0); +INSERT INTO `developer` VALUES (3610, 'travismgibson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Travis Gibson', 'Travis Gibson', 'https://www.linkedin.com/in/travis-gibson-0305b77/', 'United States', 'travismgibson@gmail.com', NULL, 'I do stuff that needs doing...', NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-21T22:53:13Z', '2024-10-31T21:01:17Z', 'https://avatars.githubusercontent.com/u/3610?v=4', 'https://api.github.com/users/travismgibson', 'https://github.com/travismgibson', 'https://api.github.com/users/travismgibson/followers', 'https://api.github.com/users/travismgibson/following', 'https://api.github.com/users/travismgibson/gists', 'https://api.github.com/users/travismgibson/starred', 'https://api.github.com/users/travismgibson/repos', 'https://api.github.com/users/travismgibson/events', 'https://api.github.com/users/travismgibson/received_events', 0); +INSERT INTO `developer` VALUES (3613, 'gr0kk3d', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ashwin Kumar', NULL, '', 'Bangalore', 'ashwinks@gmail.com', NULL, NULL, NULL, 0, 0, 10, 2, 0, 0, 0, '2008-03-21T23:24:39Z', '2016-08-30T15:12:44Z', 'https://avatars.githubusercontent.com/u/3613?v=4', 'https://api.github.com/users/gr0kk3d', 'https://github.com/gr0kk3d', 'https://api.github.com/users/gr0kk3d/followers', 'https://api.github.com/users/gr0kk3d/following', 'https://api.github.com/users/gr0kk3d/gists', 'https://api.github.com/users/gr0kk3d/starred', 'https://api.github.com/users/gr0kk3d/repos', 'https://api.github.com/users/gr0kk3d/events', 'https://api.github.com/users/gr0kk3d/received_events', 0); +INSERT INTO `developer` VALUES (3614, 'nullobject', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Bassett', NULL, 'http://joshbassett.info/', 'Pottsville, Australia', 'hello@joshbassett.info', NULL, 'Synth maker and Rustacean. Z80 inside.', NULL, 0, 0, 284, 52, 0, 0, 0, '2008-03-21T23:24:53Z', '2024-10-12T09:20:07Z', 'https://avatars.githubusercontent.com/u/3614?v=4', 'https://api.github.com/users/nullobject', 'https://github.com/nullobject', 'https://api.github.com/users/nullobject/followers', 'https://api.github.com/users/nullobject/following', 'https://api.github.com/users/nullobject/gists', 'https://api.github.com/users/nullobject/starred', 'https://api.github.com/users/nullobject/repos', 'https://api.github.com/users/nullobject/events', 'https://api.github.com/users/nullobject/received_events', 0); +INSERT INTO `developer` VALUES (3615, 'bottlecaplabs', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-03-21T23:25:41Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3615?v=4', 'https://api.github.com/users/bottlecaplabs', 'https://github.com/bottlecaplabs', 'https://api.github.com/users/bottlecaplabs/followers', 'https://api.github.com/users/bottlecaplabs/following', 'https://api.github.com/users/bottlecaplabs/gists', 'https://api.github.com/users/bottlecaplabs/starred', 'https://api.github.com/users/bottlecaplabs/repos', 'https://api.github.com/users/bottlecaplabs/events', 'https://api.github.com/users/bottlecaplabs/received_events', 0); +INSERT INTO `developer` VALUES (3616, 'hattawayd', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-21T23:33:01Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3616?v=4', 'https://api.github.com/users/hattawayd', 'https://github.com/hattawayd', 'https://api.github.com/users/hattawayd/followers', 'https://api.github.com/users/hattawayd/following', 'https://api.github.com/users/hattawayd/gists', 'https://api.github.com/users/hattawayd/starred', 'https://api.github.com/users/hattawayd/repos', 'https://api.github.com/users/hattawayd/events', 'https://api.github.com/users/hattawayd/received_events', 0); +INSERT INTO `developer` VALUES (3617, 'JoshBorke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Borke', NULL, '', '未知', 'joshborke+github@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-21T23:52:16Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3617?v=4', 'https://api.github.com/users/JoshBorke', 'https://github.com/JoshBorke', 'https://api.github.com/users/JoshBorke/followers', 'https://api.github.com/users/JoshBorke/following', 'https://api.github.com/users/JoshBorke/gists', 'https://api.github.com/users/JoshBorke/starred', 'https://api.github.com/users/JoshBorke/repos', 'https://api.github.com/users/JoshBorke/events', 'https://api.github.com/users/JoshBorke/received_events', 0); +INSERT INTO `developer` VALUES (3618, 'tritchey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Ritchey', 'Red Rome Logic, LLC', 'redromelogic.com', 'Muncie, IN', NULL, 'true', NULL, NULL, 0, 0, 11, 2, 0, 0, 0, '2008-03-22T00:13:28Z', '2024-10-01T14:15:22Z', 'https://avatars.githubusercontent.com/u/3618?v=4', 'https://api.github.com/users/tritchey', 'https://github.com/tritchey', 'https://api.github.com/users/tritchey/followers', 'https://api.github.com/users/tritchey/following', 'https://api.github.com/users/tritchey/gists', 'https://api.github.com/users/tritchey/starred', 'https://api.github.com/users/tritchey/repos', 'https://api.github.com/users/tritchey/events', 'https://api.github.com/users/tritchey/received_events', 0); +INSERT INTO `developer` VALUES (3620, 'mizzy', 'C', 4.8733157658522055, 0, 0, 0, 0, 0, 0, 'Gosuke Miyashita', NULL, 'http://mizzy.org/', 'Kanagawa, Japan', 'gosukenator@gmail.com', 'true', NULL, NULL, 0, 0, 569, 105, 0, 0, 0, '2008-03-22T00:38:21Z', '2024-09-30T06:56:10Z', 'https://avatars.githubusercontent.com/u/3620?v=4', 'https://api.github.com/users/mizzy', 'https://github.com/mizzy', 'https://api.github.com/users/mizzy/followers', 'https://api.github.com/users/mizzy/following', 'https://api.github.com/users/mizzy/gists', 'https://api.github.com/users/mizzy/starred', 'https://api.github.com/users/mizzy/repos', 'https://api.github.com/users/mizzy/events', 'https://api.github.com/users/mizzy/received_events', 0); +INSERT INTO `developer` VALUES (3621, 'mfilej', 'C', 0, 0, 0, 0, 0, 0, 0, 'Miha Filej', '@virtualq ', 'http://miha.filej.net', 'Europe', NULL, 'true', 'Big fan of the base 10', 'mfilej', 0, 0, 57, 45, 0, 0, 0, '2008-03-22T00:41:13Z', '2024-10-10T11:44:27Z', 'https://avatars.githubusercontent.com/u/3621?v=4', 'https://api.github.com/users/mfilej', 'https://github.com/mfilej', 'https://api.github.com/users/mfilej/followers', 'https://api.github.com/users/mfilej/following', 'https://api.github.com/users/mfilej/gists', 'https://api.github.com/users/mfilej/starred', 'https://api.github.com/users/mfilej/repos', 'https://api.github.com/users/mfilej/events', 'https://api.github.com/users/mfilej/received_events', 0); +INSERT INTO `developer` VALUES (3623, 'nubydave', 'C', 0, 0, 0, 0, 0, 0, 0, 'David', NULL, '', 'Montreal', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-22T01:33:34Z', '2016-02-26T22:34:59Z', 'https://avatars.githubusercontent.com/u/3623?v=4', 'https://api.github.com/users/nubydave', 'https://github.com/nubydave', 'https://api.github.com/users/nubydave/followers', 'https://api.github.com/users/nubydave/following', 'https://api.github.com/users/nubydave/gists', 'https://api.github.com/users/nubydave/starred', 'https://api.github.com/users/nubydave/repos', 'https://api.github.com/users/nubydave/events', 'https://api.github.com/users/nubydave/received_events', 0); +INSERT INTO `developer` VALUES (3624, 'jmettraux', 'C', 1.9066212201138621, 0, 0, 0, 0, 0, 0, 'John Mettraux', '@floraison ', '', 'Hiroshima', 'jmettraux@gmail.com', NULL, 'programmer', NULL, 0, 0, 396, 305, 0, 0, 0, '2008-03-22T01:37:42Z', '2024-08-26T06:08:09Z', 'https://avatars.githubusercontent.com/u/3624?v=4', 'https://api.github.com/users/jmettraux', 'https://github.com/jmettraux', 'https://api.github.com/users/jmettraux/followers', 'https://api.github.com/users/jmettraux/following', 'https://api.github.com/users/jmettraux/gists', 'https://api.github.com/users/jmettraux/starred', 'https://api.github.com/users/jmettraux/repos', 'https://api.github.com/users/jmettraux/events', 'https://api.github.com/users/jmettraux/received_events', 0); +INSERT INTO `developer` VALUES (3625, 'mhogue', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-22T01:40:19Z', '2019-12-18T04:22:14Z', 'https://avatars.githubusercontent.com/u/3625?v=4', 'https://api.github.com/users/mhogue', 'https://github.com/mhogue', 'https://api.github.com/users/mhogue/followers', 'https://api.github.com/users/mhogue/following', 'https://api.github.com/users/mhogue/gists', 'https://api.github.com/users/mhogue/starred', 'https://api.github.com/users/mhogue/repos', 'https://api.github.com/users/mhogue/events', 'https://api.github.com/users/mhogue/received_events', 0); +INSERT INTO `developer` VALUES (3627, 'KeithHanson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keith Hanson', 'City of Shreveport', 'http://keithhanson.io', 'Shreveport, LA', 'keith@keithhanson.io', NULL, NULL, NULL, 0, 0, 24, 5, 0, 0, 0, '2008-03-22T02:22:37Z', '2024-08-01T22:55:28Z', 'https://avatars.githubusercontent.com/u/3627?v=4', 'https://api.github.com/users/KeithHanson', 'https://github.com/KeithHanson', 'https://api.github.com/users/KeithHanson/followers', 'https://api.github.com/users/KeithHanson/following', 'https://api.github.com/users/KeithHanson/gists', 'https://api.github.com/users/KeithHanson/starred', 'https://api.github.com/users/KeithHanson/repos', 'https://api.github.com/users/KeithHanson/events', 'https://api.github.com/users/KeithHanson/received_events', 0); +INSERT INTO `developer` VALUES (3628, 'zefrank', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-22T02:56:54Z', '2019-10-23T07:44:49Z', 'https://avatars.githubusercontent.com/u/3628?v=4', 'https://api.github.com/users/zefrank', 'https://github.com/zefrank', 'https://api.github.com/users/zefrank/followers', 'https://api.github.com/users/zefrank/following', 'https://api.github.com/users/zefrank/gists', 'https://api.github.com/users/zefrank/starred', 'https://api.github.com/users/zefrank/repos', 'https://api.github.com/users/zefrank/events', 'https://api.github.com/users/zefrank/received_events', 0); +INSERT INTO `developer` VALUES (3629, 'archaelus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Geoff Cant', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 206, 34, 0, 0, 0, '2008-03-22T03:12:38Z', '2024-09-28T04:46:24Z', 'https://avatars.githubusercontent.com/u/3629?v=4', 'https://api.github.com/users/archaelus', 'https://github.com/archaelus', 'https://api.github.com/users/archaelus/followers', 'https://api.github.com/users/archaelus/following', 'https://api.github.com/users/archaelus/gists', 'https://api.github.com/users/archaelus/starred', 'https://api.github.com/users/archaelus/repos', 'https://api.github.com/users/archaelus/events', 'https://api.github.com/users/archaelus/received_events', 0); +INSERT INTO `developer` VALUES (3630, 'taku', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-22T04:49:56Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3630?v=4', 'https://api.github.com/users/taku', 'https://github.com/taku', 'https://api.github.com/users/taku/followers', 'https://api.github.com/users/taku/following', 'https://api.github.com/users/taku/gists', 'https://api.github.com/users/taku/starred', 'https://api.github.com/users/taku/repos', 'https://api.github.com/users/taku/events', 'https://api.github.com/users/taku/received_events', 0); +INSERT INTO `developer` VALUES (3632, 'puttiz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-22T06:35:45Z', '2020-09-25T09:41:50Z', 'https://avatars.githubusercontent.com/u/3632?v=4', 'https://api.github.com/users/puttiz', 'https://github.com/puttiz', 'https://api.github.com/users/puttiz/followers', 'https://api.github.com/users/puttiz/following', 'https://api.github.com/users/puttiz/gists', 'https://api.github.com/users/puttiz/starred', 'https://api.github.com/users/puttiz/repos', 'https://api.github.com/users/puttiz/events', 'https://api.github.com/users/puttiz/received_events', 0); +INSERT INTO `developer` VALUES (3633, 'nutbits', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Kern', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-03-22T06:56:07Z', '2023-07-05T17:28:28Z', 'https://avatars.githubusercontent.com/u/3633?v=4', 'https://api.github.com/users/nutbits', 'https://github.com/nutbits', 'https://api.github.com/users/nutbits/followers', 'https://api.github.com/users/nutbits/following', 'https://api.github.com/users/nutbits/gists', 'https://api.github.com/users/nutbits/starred', 'https://api.github.com/users/nutbits/repos', 'https://api.github.com/users/nutbits/events', 'https://api.github.com/users/nutbits/received_events', 0); +INSERT INTO `developer` VALUES (3634, 'gnosek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Grzegorz Nosek', NULL, '', '未知', 'root(@)localdomain.pl', NULL, NULL, NULL, 0, 0, 116, 1, 0, 0, 0, '2008-03-22T07:58:01Z', '2024-10-04T20:27:38Z', 'https://avatars.githubusercontent.com/u/3634?v=4', 'https://api.github.com/users/gnosek', 'https://github.com/gnosek', 'https://api.github.com/users/gnosek/followers', 'https://api.github.com/users/gnosek/following', 'https://api.github.com/users/gnosek/gists', 'https://api.github.com/users/gnosek/starred', 'https://api.github.com/users/gnosek/repos', 'https://api.github.com/users/gnosek/events', 'https://api.github.com/users/gnosek/received_events', 0); +INSERT INTO `developer` VALUES (3635, 'krukow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karl Krukow', 'GitHub', 'http://blog.higher-order.net', 'Denmark', 'krukow@github.com', NULL, 'GitHub Advanced Security - Code scanning, Director of Engineering.', 'karlkrukow', 0, 0, 231, 7, 0, 0, 0, '2008-03-22T08:40:15Z', '2024-10-15T11:18:45Z', 'https://avatars.githubusercontent.com/u/3635?v=4', 'https://api.github.com/users/krukow', 'https://github.com/krukow', 'https://api.github.com/users/krukow/followers', 'https://api.github.com/users/krukow/following', 'https://api.github.com/users/krukow/gists', 'https://api.github.com/users/krukow/starred', 'https://api.github.com/users/krukow/repos', 'https://api.github.com/users/krukow/events', 'https://api.github.com/users/krukow/received_events', 0); +INSERT INTO `developer` VALUES (3636, 'marcin-maciukiewicz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcin Maciukiewicz', 'Blue Pocket Ltd', 'bluepocket.com', 'United Kingdom', 'mm@bluepocket.com', NULL, NULL, NULL, 0, 0, 16, 8, 0, 0, 0, '2008-03-22T10:50:05Z', '2022-04-05T06:39:58Z', 'https://avatars.githubusercontent.com/u/3636?v=4', 'https://api.github.com/users/marcin-maciukiewicz', 'https://github.com/marcin-maciukiewicz', 'https://api.github.com/users/marcin-maciukiewicz/followers', 'https://api.github.com/users/marcin-maciukiewicz/following', 'https://api.github.com/users/marcin-maciukiewicz/gists', 'https://api.github.com/users/marcin-maciukiewicz/starred', 'https://api.github.com/users/marcin-maciukiewicz/repos', 'https://api.github.com/users/marcin-maciukiewicz/events', 'https://api.github.com/users/marcin-maciukiewicz/received_events', 0); +INSERT INTO `developer` VALUES (3637, 'benpickles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Pickles', NULL, 'https://www.benpickles.com', 'London', NULL, 'true', 'Listener of Zappa • Writer of Ruby and JavaScript • Creator of https://github.com/benpickles/peity • Leader of thought\r\n', 'benpickles', 0, 0, 210, 87, 0, 0, 0, '2008-03-22T11:00:03Z', '2024-05-21T10:15:51Z', 'https://avatars.githubusercontent.com/u/3637?v=4', 'https://api.github.com/users/benpickles', 'https://github.com/benpickles', 'https://api.github.com/users/benpickles/followers', 'https://api.github.com/users/benpickles/following', 'https://api.github.com/users/benpickles/gists', 'https://api.github.com/users/benpickles/starred', 'https://api.github.com/users/benpickles/repos', 'https://api.github.com/users/benpickles/events', 'https://api.github.com/users/benpickles/received_events', 0); +INSERT INTO `developer` VALUES (3638, 'webid', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Porto, Portugal', NULL, NULL, NULL, NULL, 0, 0, 30, 32, 0, 0, 0, '2008-03-22T11:07:22Z', '2024-08-18T16:51:26Z', 'https://avatars.githubusercontent.com/u/3638?v=4', 'https://api.github.com/users/webid', 'https://github.com/webid', 'https://api.github.com/users/webid/followers', 'https://api.github.com/users/webid/following', 'https://api.github.com/users/webid/gists', 'https://api.github.com/users/webid/starred', 'https://api.github.com/users/webid/repos', 'https://api.github.com/users/webid/events', 'https://api.github.com/users/webid/received_events', 0); +INSERT INTO `developer` VALUES (3639, 'nickcoyne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Coyne', '@100yrs ', 'http://www.ahundredyears.com/', 'Tāmaki Makaurau, Aotearoa', 'nick@codevader.com', NULL, 'Building things.', NULL, 0, 0, 18, 21, 0, 0, 0, '2008-03-22T11:37:47Z', '2024-03-25T19:25:05Z', 'https://avatars.githubusercontent.com/u/3639?v=4', 'https://api.github.com/users/nickcoyne', 'https://github.com/nickcoyne', 'https://api.github.com/users/nickcoyne/followers', 'https://api.github.com/users/nickcoyne/following', 'https://api.github.com/users/nickcoyne/gists', 'https://api.github.com/users/nickcoyne/starred', 'https://api.github.com/users/nickcoyne/repos', 'https://api.github.com/users/nickcoyne/events', 'https://api.github.com/users/nickcoyne/received_events', 0); +INSERT INTO `developer` VALUES (3641, 'zkhan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zubair Khan', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 21, 3, 0, 0, 0, '2008-03-22T13:20:48Z', '2024-10-25T10:55:20Z', 'https://avatars.githubusercontent.com/u/3641?v=4', 'https://api.github.com/users/zkhan', 'https://github.com/zkhan', 'https://api.github.com/users/zkhan/followers', 'https://api.github.com/users/zkhan/following', 'https://api.github.com/users/zkhan/gists', 'https://api.github.com/users/zkhan/starred', 'https://api.github.com/users/zkhan/repos', 'https://api.github.com/users/zkhan/events', 'https://api.github.com/users/zkhan/received_events', 0); +INSERT INTO `developer` VALUES (3642, 'phhusson', 'B-', 28.726911795459355, 0, 0, 0, 0, 0, 0, 'Pierre-Hugues HUSSON', NULL, '', '未知', 'phh@phh.me', 'true', NULL, NULL, 0, 0, 1960, 3, 0, 0, 0, '2008-03-22T13:22:29Z', '2024-10-08T09:39:36Z', 'https://avatars.githubusercontent.com/u/3642?v=4', 'https://api.github.com/users/phhusson', 'https://github.com/phhusson', 'https://api.github.com/users/phhusson/followers', 'https://api.github.com/users/phhusson/following', 'https://api.github.com/users/phhusson/gists', 'https://api.github.com/users/phhusson/starred', 'https://api.github.com/users/phhusson/repos', 'https://api.github.com/users/phhusson/events', 'https://api.github.com/users/phhusson/received_events', 0); +INSERT INTO `developer` VALUES (3643, 'niketpatel', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-22T14:07:49Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3643?v=4', 'https://api.github.com/users/niketpatel', 'https://github.com/niketpatel', 'https://api.github.com/users/niketpatel/followers', 'https://api.github.com/users/niketpatel/following', 'https://api.github.com/users/niketpatel/gists', 'https://api.github.com/users/niketpatel/starred', 'https://api.github.com/users/niketpatel/repos', 'https://api.github.com/users/niketpatel/events', 'https://api.github.com/users/niketpatel/received_events', 0); +INSERT INTO `developer` VALUES (3645, 'puleen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Puleen Patel', NULL, '', 'Toronto, Canada', NULL, NULL, NULL, NULL, 0, 0, 23, 14, 0, 0, 0, '2008-03-22T14:22:22Z', '2024-09-01T07:07:15Z', 'https://avatars.githubusercontent.com/u/3645?v=4', 'https://api.github.com/users/puleen', 'https://github.com/puleen', 'https://api.github.com/users/puleen/followers', 'https://api.github.com/users/puleen/following', 'https://api.github.com/users/puleen/gists', 'https://api.github.com/users/puleen/starred', 'https://api.github.com/users/puleen/repos', 'https://api.github.com/users/puleen/events', 'https://api.github.com/users/puleen/received_events', 0); +INSERT INTO `developer` VALUES (3646, 'entropie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Trommer', NULL, 'http://wecoso.org', 'Germany / Leipzig', 'mictro@gmail.com', 'true', 'One man (and some dogs) army to seek and destroy bugs and find solutions to special problems. ', 'mictro', 0, 0, 20, 32, 0, 0, 0, '2008-03-22T14:22:39Z', '2024-10-21T15:44:56Z', 'https://avatars.githubusercontent.com/u/3646?v=4', 'https://api.github.com/users/entropie', 'https://github.com/entropie', 'https://api.github.com/users/entropie/followers', 'https://api.github.com/users/entropie/following', 'https://api.github.com/users/entropie/gists', 'https://api.github.com/users/entropie/starred', 'https://api.github.com/users/entropie/repos', 'https://api.github.com/users/entropie/events', 'https://api.github.com/users/entropie/received_events', 0); +INSERT INTO `developer` VALUES (3649, 'joecairns', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Cairns', NULL, '', 'Philadelphia', 'joe.cairns@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-22T17:14:19Z', '2024-02-26T18:21:12Z', 'https://avatars.githubusercontent.com/u/3649?v=4', 'https://api.github.com/users/joecairns', 'https://github.com/joecairns', 'https://api.github.com/users/joecairns/followers', 'https://api.github.com/users/joecairns/following', 'https://api.github.com/users/joecairns/gists', 'https://api.github.com/users/joecairns/starred', 'https://api.github.com/users/joecairns/repos', 'https://api.github.com/users/joecairns/events', 'https://api.github.com/users/joecairns/received_events', 0); +INSERT INTO `developer` VALUES (3650, 'vkryukov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Victor', NULL, '', 'Mountain View, CA', NULL, NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2008-03-22T17:39:16Z', '2024-09-30T19:16:35Z', 'https://avatars.githubusercontent.com/u/3650?v=4', 'https://api.github.com/users/vkryukov', 'https://github.com/vkryukov', 'https://api.github.com/users/vkryukov/followers', 'https://api.github.com/users/vkryukov/following', 'https://api.github.com/users/vkryukov/gists', 'https://api.github.com/users/vkryukov/starred', 'https://api.github.com/users/vkryukov/repos', 'https://api.github.com/users/vkryukov/events', 'https://api.github.com/users/vkryukov/received_events', 0); +INSERT INTO `developer` VALUES (3651, 'ovokinder', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-22T18:30:52Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3651?v=4', 'https://api.github.com/users/ovokinder', 'https://github.com/ovokinder', 'https://api.github.com/users/ovokinder/followers', 'https://api.github.com/users/ovokinder/following', 'https://api.github.com/users/ovokinder/gists', 'https://api.github.com/users/ovokinder/starred', 'https://api.github.com/users/ovokinder/repos', 'https://api.github.com/users/ovokinder/events', 'https://api.github.com/users/ovokinder/received_events', 0); +INSERT INTO `developer` VALUES (3653, 'rik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anthony Ricaud', NULL, 'https://ricaud.me', 'Rennes, France', 'anthony@ricaud.me', 'true', NULL, NULL, 0, 0, 86, 3, 0, 0, 0, '2008-03-22T18:52:00Z', '2024-11-04T08:19:18Z', 'https://avatars.githubusercontent.com/u/3653?v=4', 'https://api.github.com/users/rik', 'https://github.com/rik', 'https://api.github.com/users/rik/followers', 'https://api.github.com/users/rik/following', 'https://api.github.com/users/rik/gists', 'https://api.github.com/users/rik/starred', 'https://api.github.com/users/rik/repos', 'https://api.github.com/users/rik/events', 'https://api.github.com/users/rik/received_events', 0); +INSERT INTO `developer` VALUES (3654, 'bokchoy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-22T19:11:48Z', '2021-05-28T14:48:59Z', 'https://avatars.githubusercontent.com/u/3654?v=4', 'https://api.github.com/users/bokchoy', 'https://github.com/bokchoy', 'https://api.github.com/users/bokchoy/followers', 'https://api.github.com/users/bokchoy/following', 'https://api.github.com/users/bokchoy/gists', 'https://api.github.com/users/bokchoy/starred', 'https://api.github.com/users/bokchoy/repos', 'https://api.github.com/users/bokchoy/events', 'https://api.github.com/users/bokchoy/received_events', 0); +INSERT INTO `developer` VALUES (3657, 'JamesCropcho', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Cropcho', NULL, '', 'New York City', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-22T22:00:27Z', '2024-07-02T22:22:05Z', 'https://avatars.githubusercontent.com/u/3657?v=4', 'https://api.github.com/users/JamesCropcho', 'https://github.com/JamesCropcho', 'https://api.github.com/users/JamesCropcho/followers', 'https://api.github.com/users/JamesCropcho/following', 'https://api.github.com/users/JamesCropcho/gists', 'https://api.github.com/users/JamesCropcho/starred', 'https://api.github.com/users/JamesCropcho/repos', 'https://api.github.com/users/JamesCropcho/events', 'https://api.github.com/users/JamesCropcho/received_events', 0); +INSERT INTO `developer` VALUES (3658, 'blackrat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul McKibbin', 'Papillon Corporation Ltd', '', 'UK', 'pmckibbin@gmail.com', 'true', 'Sporadic Open-source contributor; Linux & Ruby guru, Kotlin novice and Golang lover. SOLID coding practices and very opinionated architectures.', NULL, 0, 0, 34, 23, 0, 0, 0, '2008-03-23T00:24:22Z', '2024-10-28T11:18:33Z', 'https://avatars.githubusercontent.com/u/3658?v=4', 'https://api.github.com/users/blackrat', 'https://github.com/blackrat', 'https://api.github.com/users/blackrat/followers', 'https://api.github.com/users/blackrat/following', 'https://api.github.com/users/blackrat/gists', 'https://api.github.com/users/blackrat/starred', 'https://api.github.com/users/blackrat/repos', 'https://api.github.com/users/blackrat/events', 'https://api.github.com/users/blackrat/received_events', 0); +INSERT INTO `developer` VALUES (3659, 'codingCaptor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Holmes', NULL, '', '未知', 'kurisukun@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-23T02:23:46Z', '2022-11-29T13:25:36Z', 'https://avatars.githubusercontent.com/u/3659?v=4', 'https://api.github.com/users/codingCaptor', 'https://github.com/codingCaptor', 'https://api.github.com/users/codingCaptor/followers', 'https://api.github.com/users/codingCaptor/following', 'https://api.github.com/users/codingCaptor/gists', 'https://api.github.com/users/codingCaptor/starred', 'https://api.github.com/users/codingCaptor/repos', 'https://api.github.com/users/codingCaptor/events', 'https://api.github.com/users/codingCaptor/received_events', 0); +INSERT INTO `developer` VALUES (3661, 'skizz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Stevenson', NULL, 'http://chrisstevenson.me', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 10, 2, 0, 0, 0, '2008-03-23T03:46:57Z', '2024-10-31T21:39:51Z', 'https://avatars.githubusercontent.com/u/3661?v=4', 'https://api.github.com/users/skizz', 'https://github.com/skizz', 'https://api.github.com/users/skizz/followers', 'https://api.github.com/users/skizz/following', 'https://api.github.com/users/skizz/gists', 'https://api.github.com/users/skizz/starred', 'https://api.github.com/users/skizz/repos', 'https://api.github.com/users/skizz/events', 'https://api.github.com/users/skizz/received_events', 0); +INSERT INTO `developer` VALUES (3662, 'atinypixel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arik Jones', 'TNYPXL', 'http://atinypixel.tumblr.com', 'Kearney, NE', 'tnypxl@gmail.com', NULL, NULL, NULL, 0, 0, 26, 20, 0, 0, 0, '2008-03-23T06:08:06Z', '2020-02-27T04:32:37Z', 'https://avatars.githubusercontent.com/u/3662?v=4', 'https://api.github.com/users/atinypixel', 'https://github.com/atinypixel', 'https://api.github.com/users/atinypixel/followers', 'https://api.github.com/users/atinypixel/following', 'https://api.github.com/users/atinypixel/gists', 'https://api.github.com/users/atinypixel/starred', 'https://api.github.com/users/atinypixel/repos', 'https://api.github.com/users/atinypixel/events', 'https://api.github.com/users/atinypixel/received_events', 0); +INSERT INTO `developer` VALUES (3663, 'masaki', 'C', 0, 0, 0, 0, 0, 0, 0, 'Masaki Nakagawa', 'Japan', 'https://about.me/ikasam_a', 'Yokohama, Japan', 'masaki.nakagawa@gmail.com', NULL, NULL, NULL, 0, 0, 150, 150, 0, 0, 0, '2008-03-23T06:41:44Z', '2023-10-27T05:03:34Z', 'https://avatars.githubusercontent.com/u/3663?v=4', 'https://api.github.com/users/masaki', 'https://github.com/masaki', 'https://api.github.com/users/masaki/followers', 'https://api.github.com/users/masaki/following', 'https://api.github.com/users/masaki/gists', 'https://api.github.com/users/masaki/starred', 'https://api.github.com/users/masaki/repos', 'https://api.github.com/users/masaki/events', 'https://api.github.com/users/masaki/received_events', 0); +INSERT INTO `developer` VALUES (3664, 'btakita', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Takita', NULL, 'https://briantakita.me', 'Bedford, NH', 'brian.takita@gmail.com', 'true', NULL, NULL, 0, 0, 131, 104, 0, 0, 0, '2008-03-23T07:04:13Z', '2024-10-10T18:27:32Z', 'https://avatars.githubusercontent.com/u/3664?v=4', 'https://api.github.com/users/btakita', 'https://github.com/btakita', 'https://api.github.com/users/btakita/followers', 'https://api.github.com/users/btakita/following', 'https://api.github.com/users/btakita/gists', 'https://api.github.com/users/btakita/starred', 'https://api.github.com/users/btakita/repos', 'https://api.github.com/users/btakita/events', 'https://api.github.com/users/btakita/received_events', 0); +INSERT INTO `developer` VALUES (3665, 'sreeix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sreekanth', 'Veritrans', 'http://livingforwards.wordpress.com', 'Jakarta', NULL, NULL, NULL, NULL, 0, 0, 93, 33, 0, 0, 0, '2008-03-23T13:19:15Z', '2024-10-23T08:30:06Z', 'https://avatars.githubusercontent.com/u/3665?v=4', 'https://api.github.com/users/sreeix', 'https://github.com/sreeix', 'https://api.github.com/users/sreeix/followers', 'https://api.github.com/users/sreeix/following', 'https://api.github.com/users/sreeix/gists', 'https://api.github.com/users/sreeix/starred', 'https://api.github.com/users/sreeix/repos', 'https://api.github.com/users/sreeix/events', 'https://api.github.com/users/sreeix/received_events', 0); +INSERT INTO `developer` VALUES (3668, 'andriytyurnikov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andriy Tyurnikov', NULL, 'andriytyurnikov.me', 'Ukraine', 'Andriy.Tyurnikov@gmail.com', 'true', 'Web developer.\r\n❤️ Rails & Svelte, Python & Vyper', 'AndriyTyurnikov', 0, 0, 56, 106, 0, 0, 0, '2008-03-23T20:00:18Z', '2024-07-02T08:29:28Z', 'https://avatars.githubusercontent.com/u/3668?v=4', 'https://api.github.com/users/andriytyurnikov', 'https://github.com/andriytyurnikov', 'https://api.github.com/users/andriytyurnikov/followers', 'https://api.github.com/users/andriytyurnikov/following', 'https://api.github.com/users/andriytyurnikov/gists', 'https://api.github.com/users/andriytyurnikov/starred', 'https://api.github.com/users/andriytyurnikov/repos', 'https://api.github.com/users/andriytyurnikov/events', 'https://api.github.com/users/andriytyurnikov/received_events', 0); +INSERT INTO `developer` VALUES (3669, 'istruble', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Struble', NULL, '', '未知', 'istruble@gmail.com', NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-03-23T21:37:10Z', '2022-12-21T16:36:28Z', 'https://avatars.githubusercontent.com/u/3669?v=4', 'https://api.github.com/users/istruble', 'https://github.com/istruble', 'https://api.github.com/users/istruble/followers', 'https://api.github.com/users/istruble/following', 'https://api.github.com/users/istruble/gists', 'https://api.github.com/users/istruble/starred', 'https://api.github.com/users/istruble/repos', 'https://api.github.com/users/istruble/events', 'https://api.github.com/users/istruble/received_events', 0); +INSERT INTO `developer` VALUES (3670, 'rolandd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roland Dreier', NULL, 'http://digitalvampire.org/blog/', '未知', NULL, NULL, NULL, NULL, 0, 0, 34, 0, 0, 0, 0, '2008-03-23T21:38:55Z', '2023-08-06T23:42:14Z', 'https://avatars.githubusercontent.com/u/3670?v=4', 'https://api.github.com/users/rolandd', 'https://github.com/rolandd', 'https://api.github.com/users/rolandd/followers', 'https://api.github.com/users/rolandd/following', 'https://api.github.com/users/rolandd/gists', 'https://api.github.com/users/rolandd/starred', 'https://api.github.com/users/rolandd/repos', 'https://api.github.com/users/rolandd/events', 'https://api.github.com/users/rolandd/received_events', 0); +INSERT INTO `developer` VALUES (3672, 'blynn', 'C', 1.8380271265707797, 0, 0, 0, 0, 0, 0, 'Ben Lynn', NULL, 'http://cs.stanford.edu/~blynn', '未知', 'benlynn@gmail.com', NULL, NULL, NULL, 0, 0, 392, 0, 0, 0, 0, '2008-03-23T22:36:13Z', '2024-09-24T15:16:53Z', 'https://avatars.githubusercontent.com/u/3672?v=4', 'https://api.github.com/users/blynn', 'https://github.com/blynn', 'https://api.github.com/users/blynn/followers', 'https://api.github.com/users/blynn/following', 'https://api.github.com/users/blynn/gists', 'https://api.github.com/users/blynn/starred', 'https://api.github.com/users/blynn/repos', 'https://api.github.com/users/blynn/events', 'https://api.github.com/users/blynn/received_events', 0); +INSERT INTO `developer` VALUES (3673, 'tail', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Yan', 'Disqus, Inc.', 'http://tail.im/', 'San Francisco, CA', 'tailofthesun@gmail.com', NULL, NULL, NULL, 0, 0, 49, 0, 0, 0, 0, '2008-03-24T00:08:10Z', '2023-07-18T05:11:22Z', 'https://avatars.githubusercontent.com/u/3673?v=4', 'https://api.github.com/users/tail', 'https://github.com/tail', 'https://api.github.com/users/tail/followers', 'https://api.github.com/users/tail/following', 'https://api.github.com/users/tail/gists', 'https://api.github.com/users/tail/starred', 'https://api.github.com/users/tail/repos', 'https://api.github.com/users/tail/events', 'https://api.github.com/users/tail/received_events', 0); +INSERT INTO `developer` VALUES (3676, 'tastyplanner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tasty Planner', 'Dreams Book', 'http://tastyplanner.com', 'Sterling, VA, USA', 'Matt@Dreamsbook.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-24T02:14:03Z', '2016-07-18T16:48:28Z', 'https://avatars.githubusercontent.com/u/3676?v=4', 'https://api.github.com/users/tastyplanner', 'https://github.com/tastyplanner', 'https://api.github.com/users/tastyplanner/followers', 'https://api.github.com/users/tastyplanner/following', 'https://api.github.com/users/tastyplanner/gists', 'https://api.github.com/users/tastyplanner/starred', 'https://api.github.com/users/tastyplanner/repos', 'https://api.github.com/users/tastyplanner/events', 'https://api.github.com/users/tastyplanner/received_events', 0); +INSERT INTO `developer` VALUES (3677, 'tastyplannerkevin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Burg', 'thoughtbot', 'http://kevin.tumblr.com', 'New York City', 'kburg@thoughtbot.com', NULL, NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2008-03-24T02:34:11Z', '2020-01-25T23:31:36Z', 'https://avatars.githubusercontent.com/u/3677?v=4', 'https://api.github.com/users/tastyplannerkevin', 'https://github.com/tastyplannerkevin', 'https://api.github.com/users/tastyplannerkevin/followers', 'https://api.github.com/users/tastyplannerkevin/following', 'https://api.github.com/users/tastyplannerkevin/gists', 'https://api.github.com/users/tastyplannerkevin/starred', 'https://api.github.com/users/tastyplannerkevin/repos', 'https://api.github.com/users/tastyplannerkevin/events', 'https://api.github.com/users/tastyplannerkevin/received_events', 0); +INSERT INTO `developer` VALUES (3680, 'admkrm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kristof Michiels', NULL, '', 'Belgium', 'kristof.michiels@gmail.com', NULL, NULL, NULL, 0, 0, 39, 3, 0, 0, 0, '2008-03-24T09:17:41Z', '2024-10-11T10:26:12Z', 'https://avatars.githubusercontent.com/u/3680?v=4', 'https://api.github.com/users/admkrm', 'https://github.com/admkrm', 'https://api.github.com/users/admkrm/followers', 'https://api.github.com/users/admkrm/following', 'https://api.github.com/users/admkrm/gists', 'https://api.github.com/users/admkrm/starred', 'https://api.github.com/users/admkrm/repos', 'https://api.github.com/users/admkrm/events', 'https://api.github.com/users/admkrm/received_events', 0); +INSERT INTO `developer` VALUES (3682, 'lachlanhardy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lachlan Hardy', 'Blackmill', 'http://lachstock.com.au', 'Melbourne, AU', 'lachlan@lachstock.com.au', NULL, NULL, 'lachlanhardy', 0, 0, 218, 0, 0, 0, 0, '2008-03-24T11:43:45Z', '2024-10-30T23:08:05Z', 'https://avatars.githubusercontent.com/u/3682?v=4', 'https://api.github.com/users/lachlanhardy', 'https://github.com/lachlanhardy', 'https://api.github.com/users/lachlanhardy/followers', 'https://api.github.com/users/lachlanhardy/following', 'https://api.github.com/users/lachlanhardy/gists', 'https://api.github.com/users/lachlanhardy/starred', 'https://api.github.com/users/lachlanhardy/repos', 'https://api.github.com/users/lachlanhardy/events', 'https://api.github.com/users/lachlanhardy/received_events', 0); +INSERT INTO `developer` VALUES (3683, 'ljuti', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lauri Jutila', 'Reforge Oy', 'http://laurijutila.com', 'Helsinki, Finland', 'github@laurijutila.com', NULL, 'CTO @finitec, @get-sales.\r\n\r\nMission Commander @cloudjets and @neuraljets.\r\n\r\nProsumer of Open Source software.', 'ljuti', 0, 0, 26, 2, 0, 0, 0, '2008-03-24T12:42:38Z', '2024-06-16T17:36:57Z', 'https://avatars.githubusercontent.com/u/3683?v=4', 'https://api.github.com/users/ljuti', 'https://github.com/ljuti', 'https://api.github.com/users/ljuti/followers', 'https://api.github.com/users/ljuti/following', 'https://api.github.com/users/ljuti/gists', 'https://api.github.com/users/ljuti/starred', 'https://api.github.com/users/ljuti/repos', 'https://api.github.com/users/ljuti/events', 'https://api.github.com/users/ljuti/received_events', 0); +INSERT INTO `developer` VALUES (3684, 'brainv', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rai Escarez', NULL, 'http://twitter.com/brainv', 'Philippines', 'ryan@free.net.ph', NULL, NULL, NULL, 0, 0, 78, 143, 0, 0, 0, '2008-03-24T13:35:32Z', '2024-09-23T03:45:33Z', 'https://avatars.githubusercontent.com/u/3684?v=4', 'https://api.github.com/users/brainv', 'https://github.com/brainv', 'https://api.github.com/users/brainv/followers', 'https://api.github.com/users/brainv/following', 'https://api.github.com/users/brainv/gists', 'https://api.github.com/users/brainv/starred', 'https://api.github.com/users/brainv/repos', 'https://api.github.com/users/brainv/events', 'https://api.github.com/users/brainv/received_events', 0); +INSERT INTO `developer` VALUES (3685, 'gvellut', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guilhem Vellut', NULL, 'https://vellut.com/', '未知', 'g@vellut.com', NULL, NULL, NULL, 0, 0, 24, 6, 0, 0, 0, '2008-03-24T13:48:05Z', '2024-01-06T17:20:23Z', 'https://avatars.githubusercontent.com/u/3685?v=4', 'https://api.github.com/users/gvellut', 'https://github.com/gvellut', 'https://api.github.com/users/gvellut/followers', 'https://api.github.com/users/gvellut/following', 'https://api.github.com/users/gvellut/gists', 'https://api.github.com/users/gvellut/starred', 'https://api.github.com/users/gvellut/repos', 'https://api.github.com/users/gvellut/events', 'https://api.github.com/users/gvellut/received_events', 0); +INSERT INTO `developer` VALUES (3686, 'squarefactor', 'C', 0, 0, 0, 0, 0, 0, 0, 'SQUAREFACTOR', NULL, 'http://squarefactor.com/', 'Orlando, FL', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-24T14:07:24Z', '2023-12-26T13:54:33Z', 'https://avatars.githubusercontent.com/u/3686?v=4', 'https://api.github.com/users/squarefactor', 'https://github.com/squarefactor', 'https://api.github.com/users/squarefactor/followers', 'https://api.github.com/users/squarefactor/following', 'https://api.github.com/users/squarefactor/gists', 'https://api.github.com/users/squarefactor/starred', 'https://api.github.com/users/squarefactor/repos', 'https://api.github.com/users/squarefactor/events', 'https://api.github.com/users/squarefactor/received_events', 0); +INSERT INTO `developer` VALUES (3687, 'tekin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tekin Süleyman', NULL, 'https://tekin.co.uk', 'Manchester, UK', NULL, NULL, NULL, 'tekin', 0, 0, 93, 13, 0, 0, 0, '2008-03-24T14:22:51Z', '2024-10-28T11:18:33Z', 'https://avatars.githubusercontent.com/u/3687?v=4', 'https://api.github.com/users/tekin', 'https://github.com/tekin', 'https://api.github.com/users/tekin/followers', 'https://api.github.com/users/tekin/following', 'https://api.github.com/users/tekin/gists', 'https://api.github.com/users/tekin/starred', 'https://api.github.com/users/tekin/repos', 'https://api.github.com/users/tekin/events', 'https://api.github.com/users/tekin/received_events', 0); +INSERT INTO `developer` VALUES (3688, 'carlitos-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-24T14:56:41Z', '2016-02-26T22:35:00Z', 'https://avatars.githubusercontent.com/u/3688?v=4', 'https://api.github.com/users/carlitos-xx', 'https://github.com/carlitos-xx', 'https://api.github.com/users/carlitos-xx/followers', 'https://api.github.com/users/carlitos-xx/following', 'https://api.github.com/users/carlitos-xx/gists', 'https://api.github.com/users/carlitos-xx/starred', 'https://api.github.com/users/carlitos-xx/repos', 'https://api.github.com/users/carlitos-xx/events', 'https://api.github.com/users/carlitos-xx/received_events', 0); +INSERT INTO `developer` VALUES (3689, 'oavdeev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oleg Avdeev', '@Outerbounds', 'https://outerbounds.co', 'San Francisco, CA', 'oleg.v.avdeev@gmail.com', NULL, NULL, NULL, 0, 0, 39, 8, 0, 0, 0, '2008-03-24T15:19:24Z', '2024-10-11T17:51:43Z', 'https://avatars.githubusercontent.com/u/3689?v=4', 'https://api.github.com/users/oavdeev', 'https://github.com/oavdeev', 'https://api.github.com/users/oavdeev/followers', 'https://api.github.com/users/oavdeev/following', 'https://api.github.com/users/oavdeev/gists', 'https://api.github.com/users/oavdeev/starred', 'https://api.github.com/users/oavdeev/repos', 'https://api.github.com/users/oavdeev/events', 'https://api.github.com/users/oavdeev/received_events', 0); +INSERT INTO `developer` VALUES (3690, 'smtlaissezfaire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Taylor', NULL, 'http://railsnewbie.com/', 'San Francisco', 'scott@railsnewbie.com', 'true', NULL, NULL, 0, 0, 280, 510, 0, 0, 0, '2008-03-24T16:39:00Z', '2024-09-10T18:02:34Z', 'https://avatars.githubusercontent.com/u/3690?v=4', 'https://api.github.com/users/smtlaissezfaire', 'https://github.com/smtlaissezfaire', 'https://api.github.com/users/smtlaissezfaire/followers', 'https://api.github.com/users/smtlaissezfaire/following', 'https://api.github.com/users/smtlaissezfaire/gists', 'https://api.github.com/users/smtlaissezfaire/starred', 'https://api.github.com/users/smtlaissezfaire/repos', 'https://api.github.com/users/smtlaissezfaire/events', 'https://api.github.com/users/smtlaissezfaire/received_events', 0); +INSERT INTO `developer` VALUES (3692, 'nummi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jerry Nummi', 'Kaplan, Inc', 'nummi.me', 'Oakland, CA', NULL, NULL, NULL, 'nummi', 0, 0, 43, 25, 0, 0, 0, '2008-03-24T17:00:12Z', '2024-09-20T16:06:29Z', 'https://avatars.githubusercontent.com/u/3692?v=4', 'https://api.github.com/users/nummi', 'https://github.com/nummi', 'https://api.github.com/users/nummi/followers', 'https://api.github.com/users/nummi/following', 'https://api.github.com/users/nummi/gists', 'https://api.github.com/users/nummi/starred', 'https://api.github.com/users/nummi/repos', 'https://api.github.com/users/nummi/events', 'https://api.github.com/users/nummi/received_events', 0); +INSERT INTO `developer` VALUES (3693, 'lancevo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lance Vo', NULL, '', 'Fort Myers, FL', NULL, 'true', NULL, NULL, 0, 0, 12, 11, 0, 0, 0, '2008-03-24T17:00:52Z', '2024-10-09T11:20:28Z', 'https://avatars.githubusercontent.com/u/3693?v=4', 'https://api.github.com/users/lancevo', 'https://github.com/lancevo', 'https://api.github.com/users/lancevo/followers', 'https://api.github.com/users/lancevo/following', 'https://api.github.com/users/lancevo/gists', 'https://api.github.com/users/lancevo/starred', 'https://api.github.com/users/lancevo/repos', 'https://api.github.com/users/lancevo/events', 'https://api.github.com/users/lancevo/received_events', 0); +INSERT INTO `developer` VALUES (3695, 'mbroggy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Broggy', NULL, 'https://xooyooz.com/', 'Morton, PA', 'mbroggy@gmail.com', NULL, NULL, NULL, 0, 0, 4, 4, 0, 0, 0, '2008-03-24T18:00:17Z', '2024-10-29T12:22:21Z', 'https://avatars.githubusercontent.com/u/3695?v=4', 'https://api.github.com/users/mbroggy', 'https://github.com/mbroggy', 'https://api.github.com/users/mbroggy/followers', 'https://api.github.com/users/mbroggy/following', 'https://api.github.com/users/mbroggy/gists', 'https://api.github.com/users/mbroggy/starred', 'https://api.github.com/users/mbroggy/repos', 'https://api.github.com/users/mbroggy/events', 'https://api.github.com/users/mbroggy/received_events', 0); +INSERT INTO `developer` VALUES (3696, 'ar2drummer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-24T18:53:40Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3696?v=4', 'https://api.github.com/users/ar2drummer', 'https://github.com/ar2drummer', 'https://api.github.com/users/ar2drummer/followers', 'https://api.github.com/users/ar2drummer/following', 'https://api.github.com/users/ar2drummer/gists', 'https://api.github.com/users/ar2drummer/starred', 'https://api.github.com/users/ar2drummer/repos', 'https://api.github.com/users/ar2drummer/events', 'https://api.github.com/users/ar2drummer/received_events', 0); +INSERT INTO `developer` VALUES (3697, 'nathanpbell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Bell', 'Argentic', 'http://nathanpbell.com', 'Portland, OR', NULL, 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-24T19:44:16Z', '2024-07-24T10:34:38Z', 'https://avatars.githubusercontent.com/u/3697?v=4', 'https://api.github.com/users/nathanpbell', 'https://github.com/nathanpbell', 'https://api.github.com/users/nathanpbell/followers', 'https://api.github.com/users/nathanpbell/following', 'https://api.github.com/users/nathanpbell/gists', 'https://api.github.com/users/nathanpbell/starred', 'https://api.github.com/users/nathanpbell/repos', 'https://api.github.com/users/nathanpbell/events', 'https://api.github.com/users/nathanpbell/received_events', 0); +INSERT INTO `developer` VALUES (3698, 'rsgrafx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Orion Engleton', NULL, 'http://utofiji.com', 'SoCal |> Fiji Islands ', 'rsgrafx@gmail.com', NULL, 'I Iike building big and small tools with Elixir/Ruby, React and Typescript.\r\n', NULL, 0, 0, 59, 118, 0, 0, 0, '2008-03-24T19:47:46Z', '2024-11-03T23:22:40Z', 'https://avatars.githubusercontent.com/u/3698?v=4', 'https://api.github.com/users/rsgrafx', 'https://github.com/rsgrafx', 'https://api.github.com/users/rsgrafx/followers', 'https://api.github.com/users/rsgrafx/following', 'https://api.github.com/users/rsgrafx/gists', 'https://api.github.com/users/rsgrafx/starred', 'https://api.github.com/users/rsgrafx/repos', 'https://api.github.com/users/rsgrafx/events', 'https://api.github.com/users/rsgrafx/received_events', 0); +INSERT INTO `developer` VALUES (3699, 'stephanschubert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephan Schubert', NULL, 'https://muellerschubert.com', '未知', 'stephan@frozencherry.de', NULL, NULL, 'stephanschubert', 0, 0, 17, 2, 0, 0, 0, '2008-03-24T20:03:15Z', '2024-10-04T11:45:32Z', 'https://avatars.githubusercontent.com/u/3699?v=4', 'https://api.github.com/users/stephanschubert', 'https://github.com/stephanschubert', 'https://api.github.com/users/stephanschubert/followers', 'https://api.github.com/users/stephanschubert/following', 'https://api.github.com/users/stephanschubert/gists', 'https://api.github.com/users/stephanschubert/starred', 'https://api.github.com/users/stephanschubert/repos', 'https://api.github.com/users/stephanschubert/events', 'https://api.github.com/users/stephanschubert/received_events', 0); +INSERT INTO `developer` VALUES (3700, 'curvezilla', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-24T20:15:38Z', '2020-11-08T21:56:36Z', 'https://avatars.githubusercontent.com/u/3700?v=4', 'https://api.github.com/users/curvezilla', 'https://github.com/curvezilla', 'https://api.github.com/users/curvezilla/followers', 'https://api.github.com/users/curvezilla/following', 'https://api.github.com/users/curvezilla/gists', 'https://api.github.com/users/curvezilla/starred', 'https://api.github.com/users/curvezilla/repos', 'https://api.github.com/users/curvezilla/events', 'https://api.github.com/users/curvezilla/received_events', 0); +INSERT INTO `developer` VALUES (3701, 'GFunk911', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-24T20:22:36Z', '2020-01-07T18:53:43Z', 'https://avatars.githubusercontent.com/u/3701?v=4', 'https://api.github.com/users/GFunk911', 'https://github.com/GFunk911', 'https://api.github.com/users/GFunk911/followers', 'https://api.github.com/users/GFunk911/following', 'https://api.github.com/users/GFunk911/gists', 'https://api.github.com/users/GFunk911/starred', 'https://api.github.com/users/GFunk911/repos', 'https://api.github.com/users/GFunk911/events', 'https://api.github.com/users/GFunk911/received_events', 0); +INSERT INTO `developer` VALUES (3702, 'krammer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-24T20:40:30Z', '2016-02-26T22:35:00Z', 'https://avatars.githubusercontent.com/u/3702?v=4', 'https://api.github.com/users/krammer', 'https://github.com/krammer', 'https://api.github.com/users/krammer/followers', 'https://api.github.com/users/krammer/following', 'https://api.github.com/users/krammer/gists', 'https://api.github.com/users/krammer/starred', 'https://api.github.com/users/krammer/repos', 'https://api.github.com/users/krammer/events', 'https://api.github.com/users/krammer/received_events', 0); +INSERT INTO `developer` VALUES (3704, 'daisy-xx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karen Hawthorn', NULL, '', '未知', 'karenhawthorn@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-24T21:16:59Z', '2024-06-13T19:10:26Z', 'https://avatars.githubusercontent.com/u/3704?v=4', 'https://api.github.com/users/daisy-xx', 'https://github.com/daisy-xx', 'https://api.github.com/users/daisy-xx/followers', 'https://api.github.com/users/daisy-xx/following', 'https://api.github.com/users/daisy-xx/gists', 'https://api.github.com/users/daisy-xx/starred', 'https://api.github.com/users/daisy-xx/repos', 'https://api.github.com/users/daisy-xx/events', 'https://api.github.com/users/daisy-xx/received_events', 0); +INSERT INTO `developer` VALUES (3705, 'mnutt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Nutt', 'Movable Ink', 'http://nuttnet.net', 'New York City, NY', 'michael@nuttnet.net', NULL, NULL, NULL, 0, 0, 277, 34, 0, 0, 0, '2008-03-24T21:39:07Z', '2024-09-27T03:44:27Z', 'https://avatars.githubusercontent.com/u/3705?v=4', 'https://api.github.com/users/mnutt', 'https://github.com/mnutt', 'https://api.github.com/users/mnutt/followers', 'https://api.github.com/users/mnutt/following', 'https://api.github.com/users/mnutt/gists', 'https://api.github.com/users/mnutt/starred', 'https://api.github.com/users/mnutt/repos', 'https://api.github.com/users/mnutt/events', 'https://api.github.com/users/mnutt/received_events', 0); +INSERT INTO `developer` VALUES (3708, 'loymoser', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-24T23:10:35Z', '2016-02-26T22:35:00Z', 'https://avatars.githubusercontent.com/u/3708?v=4', 'https://api.github.com/users/loymoser', 'https://github.com/loymoser', 'https://api.github.com/users/loymoser/followers', 'https://api.github.com/users/loymoser/following', 'https://api.github.com/users/loymoser/gists', 'https://api.github.com/users/loymoser/starred', 'https://api.github.com/users/loymoser/repos', 'https://api.github.com/users/loymoser/events', 'https://api.github.com/users/loymoser/received_events', 0); +INSERT INTO `developer` VALUES (3709, 'cwisecarver', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Wisecarver', '@Parsely ', 'http://www.topherwise.com', 'Philadelphia, PA', NULL, NULL, NULL, NULL, 0, 0, 13, 2, 0, 0, 0, '2008-03-25T00:45:35Z', '2024-08-12T19:43:22Z', 'https://avatars.githubusercontent.com/u/3709?v=4', 'https://api.github.com/users/cwisecarver', 'https://github.com/cwisecarver', 'https://api.github.com/users/cwisecarver/followers', 'https://api.github.com/users/cwisecarver/following', 'https://api.github.com/users/cwisecarver/gists', 'https://api.github.com/users/cwisecarver/starred', 'https://api.github.com/users/cwisecarver/repos', 'https://api.github.com/users/cwisecarver/events', 'https://api.github.com/users/cwisecarver/received_events', 0); +INSERT INTO `developer` VALUES (3710, 'nfg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nigel Grégoire', '@airG ', 'https://www.forgreatjustice.ca/', 'Vancouver, Soviet Canuckistan', 'nigelgregoire@gmail.com', NULL, 'Definitely not a communist.', NULL, 0, 0, 18, 5, 0, 0, 0, '2008-03-25T01:01:24Z', '2024-10-31T17:42:25Z', 'https://avatars.githubusercontent.com/u/3710?v=4', 'https://api.github.com/users/nfg', 'https://github.com/nfg', 'https://api.github.com/users/nfg/followers', 'https://api.github.com/users/nfg/following', 'https://api.github.com/users/nfg/gists', 'https://api.github.com/users/nfg/starred', 'https://api.github.com/users/nfg/repos', 'https://api.github.com/users/nfg/events', 'https://api.github.com/users/nfg/received_events', 0); +INSERT INTO `developer` VALUES (3711, 'blackanger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex', 'www.nibirutech.com', '', '未知', 'blackanger.z@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-25T01:29:59Z', '2019-12-13T15:51:23Z', 'https://avatars.githubusercontent.com/u/3711?v=4', 'https://api.github.com/users/blackanger', 'https://github.com/blackanger', 'https://api.github.com/users/blackanger/followers', 'https://api.github.com/users/blackanger/following', 'https://api.github.com/users/blackanger/gists', 'https://api.github.com/users/blackanger/starred', 'https://api.github.com/users/blackanger/repos', 'https://api.github.com/users/blackanger/events', 'https://api.github.com/users/blackanger/received_events', 0); +INSERT INTO `developer` VALUES (3712, 'socioclast', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-25T01:56:53Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3712?v=4', 'https://api.github.com/users/socioclast', 'https://github.com/socioclast', 'https://api.github.com/users/socioclast/followers', 'https://api.github.com/users/socioclast/following', 'https://api.github.com/users/socioclast/gists', 'https://api.github.com/users/socioclast/starred', 'https://api.github.com/users/socioclast/repos', 'https://api.github.com/users/socioclast/events', 'https://api.github.com/users/socioclast/received_events', 0); +INSERT INTO `developer` VALUES (3714, 'l15n', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leonard Chin', NULL, 'http://twitter.com/lchin', 'Tokyo', NULL, NULL, NULL, NULL, 0, 0, 110, 47, 0, 0, 0, '2008-03-25T04:19:44Z', '2024-10-28T03:54:03Z', 'https://avatars.githubusercontent.com/u/3714?v=4', 'https://api.github.com/users/l15n', 'https://github.com/l15n', 'https://api.github.com/users/l15n/followers', 'https://api.github.com/users/l15n/following', 'https://api.github.com/users/l15n/gists', 'https://api.github.com/users/l15n/starred', 'https://api.github.com/users/l15n/repos', 'https://api.github.com/users/l15n/events', 'https://api.github.com/users/l15n/received_events', 0); +INSERT INTO `developer` VALUES (3715, 'RayHightower', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raymond T. Hightower', 'Bridgetown Partners, LLC', 'https://RayHightower.com', 'Phoenix, AZ, USA', 'rth@rayhightower.com', NULL, 'Tech + Real Estate = ROIClear', 'RayHightower', 0, 0, 96, 19, 0, 0, 0, '2008-03-25T04:20:58Z', '2024-05-02T16:30:33Z', 'https://avatars.githubusercontent.com/u/3715?v=4', 'https://api.github.com/users/RayHightower', 'https://github.com/RayHightower', 'https://api.github.com/users/RayHightower/followers', 'https://api.github.com/users/RayHightower/following', 'https://api.github.com/users/RayHightower/gists', 'https://api.github.com/users/RayHightower/starred', 'https://api.github.com/users/RayHightower/repos', 'https://api.github.com/users/RayHightower/events', 'https://api.github.com/users/RayHightower/received_events', 0); +INSERT INTO `developer` VALUES (3717, 'd1rewolf', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Wells', 'GreatWorx', 'www.greatworx.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 3, 0, 0, 0, '2008-03-25T04:44:16Z', '2024-10-30T20:59:50Z', 'https://avatars.githubusercontent.com/u/3717?v=4', 'https://api.github.com/users/d1rewolf', 'https://github.com/d1rewolf', 'https://api.github.com/users/d1rewolf/followers', 'https://api.github.com/users/d1rewolf/following', 'https://api.github.com/users/d1rewolf/gists', 'https://api.github.com/users/d1rewolf/starred', 'https://api.github.com/users/d1rewolf/repos', 'https://api.github.com/users/d1rewolf/events', 'https://api.github.com/users/d1rewolf/received_events', 0); +INSERT INTO `developer` VALUES (3719, 'clive', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clive Saha', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-03-25T05:08:35Z', '2024-03-16T22:33:53Z', 'https://avatars.githubusercontent.com/u/3719?v=4', 'https://api.github.com/users/clive', 'https://github.com/clive', 'https://api.github.com/users/clive/followers', 'https://api.github.com/users/clive/following', 'https://api.github.com/users/clive/gists', 'https://api.github.com/users/clive/starred', 'https://api.github.com/users/clive/repos', 'https://api.github.com/users/clive/events', 'https://api.github.com/users/clive/received_events', 0); +INSERT INTO `developer` VALUES (3720, 'mfoemmel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Foemmel', NULL, '', 'Miami, FL', NULL, NULL, NULL, NULL, 0, 0, 32, 0, 0, 0, 0, '2008-03-25T06:18:37Z', '2024-10-31T18:54:07Z', 'https://avatars.githubusercontent.com/u/3720?v=4', 'https://api.github.com/users/mfoemmel', 'https://github.com/mfoemmel', 'https://api.github.com/users/mfoemmel/followers', 'https://api.github.com/users/mfoemmel/following', 'https://api.github.com/users/mfoemmel/gists', 'https://api.github.com/users/mfoemmel/starred', 'https://api.github.com/users/mfoemmel/repos', 'https://api.github.com/users/mfoemmel/events', 'https://api.github.com/users/mfoemmel/received_events', 0); +INSERT INTO `developer` VALUES (3721, 'mtenpow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Ten-Pow', '@tensor9ine ', 'https://www.tenpow.com', '未知', NULL, NULL, 'Founder at @tensor9ine | @amzn: Early @aws Engineer, S3, Privacy, Distributed Systems, Databases, Storage | @PrincetonUniversity: Compilers', 'mtenpow', 0, 0, 17, 15, 0, 0, 0, '2008-03-25T06:31:49Z', '2024-10-15T19:46:39Z', 'https://avatars.githubusercontent.com/u/3721?v=4', 'https://api.github.com/users/mtenpow', 'https://github.com/mtenpow', 'https://api.github.com/users/mtenpow/followers', 'https://api.github.com/users/mtenpow/following', 'https://api.github.com/users/mtenpow/gists', 'https://api.github.com/users/mtenpow/starred', 'https://api.github.com/users/mtenpow/repos', 'https://api.github.com/users/mtenpow/events', 'https://api.github.com/users/mtenpow/received_events', 0); +INSERT INTO `developer` VALUES (3722, 'mon-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-25T06:39:18Z', '2016-02-26T22:35:00Z', 'https://avatars.githubusercontent.com/u/3722?v=4', 'https://api.github.com/users/mon-zz', 'https://github.com/mon-zz', 'https://api.github.com/users/mon-zz/followers', 'https://api.github.com/users/mon-zz/following', 'https://api.github.com/users/mon-zz/gists', 'https://api.github.com/users/mon-zz/starred', 'https://api.github.com/users/mon-zz/repos', 'https://api.github.com/users/mon-zz/events', 'https://api.github.com/users/mon-zz/received_events', 0); +INSERT INTO `developer` VALUES (3724, 'jperla', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joseph Perla', NULL, 'http://www.jperla.com/', 'San Francisco, CA', NULL, NULL, NULL, 'jperla', 0, 0, 90, 1, 0, 0, 0, '2008-03-25T07:56:32Z', '2024-04-26T17:11:25Z', 'https://avatars.githubusercontent.com/u/3724?v=4', 'https://api.github.com/users/jperla', 'https://github.com/jperla', 'https://api.github.com/users/jperla/followers', 'https://api.github.com/users/jperla/following', 'https://api.github.com/users/jperla/gists', 'https://api.github.com/users/jperla/starred', 'https://api.github.com/users/jperla/repos', 'https://api.github.com/users/jperla/events', 'https://api.github.com/users/jperla/received_events', 0); +INSERT INTO `developer` VALUES (3725, 'haiyangjy', 'C', 0, 0, 0, 0, 0, 0, 0, 'haiyangjy', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-03-25T08:08:57Z', '2016-02-26T22:35:00Z', 'https://avatars.githubusercontent.com/u/3725?v=4', 'https://api.github.com/users/haiyangjy', 'https://github.com/haiyangjy', 'https://api.github.com/users/haiyangjy/followers', 'https://api.github.com/users/haiyangjy/following', 'https://api.github.com/users/haiyangjy/gists', 'https://api.github.com/users/haiyangjy/starred', 'https://api.github.com/users/haiyangjy/repos', 'https://api.github.com/users/haiyangjy/events', 'https://api.github.com/users/haiyangjy/received_events', 0); +INSERT INTO `developer` VALUES (3727, 'thechrisoshow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris O\'Sullivan', 'DraftPilot', 'https://www.thechrisoshow.com', 'Nashville', 'thechrisoshow@gmail.com', NULL, 'CTO and co-founder of https://www.draftpilot.ai ', 'thechrisoshow', 0, 0, 46, 14, 0, 0, 0, '2008-03-25T09:27:26Z', '2024-10-30T12:52:33Z', 'https://avatars.githubusercontent.com/u/3727?v=4', 'https://api.github.com/users/thechrisoshow', 'https://github.com/thechrisoshow', 'https://api.github.com/users/thechrisoshow/followers', 'https://api.github.com/users/thechrisoshow/following', 'https://api.github.com/users/thechrisoshow/gists', 'https://api.github.com/users/thechrisoshow/starred', 'https://api.github.com/users/thechrisoshow/repos', 'https://api.github.com/users/thechrisoshow/events', 'https://api.github.com/users/thechrisoshow/received_events', 0); +INSERT INTO `developer` VALUES (3728, 'axelb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Axel Böttcher', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 2, 0, 0, 0, '2008-03-25T10:10:30Z', '2024-10-24T11:19:57Z', 'https://avatars.githubusercontent.com/u/3728?v=4', 'https://api.github.com/users/axelb', 'https://github.com/axelb', 'https://api.github.com/users/axelb/followers', 'https://api.github.com/users/axelb/following', 'https://api.github.com/users/axelb/gists', 'https://api.github.com/users/axelb/starred', 'https://api.github.com/users/axelb/repos', 'https://api.github.com/users/axelb/events', 'https://api.github.com/users/axelb/received_events', 0); +INSERT INTO `developer` VALUES (3730, 'hallison', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hallison Batista', NULL, 'http://hallison.dev.br', 'Manaus-AM,Brazil', 'hallisonbatista@gmail.com', NULL, NULL, 'hallison', 0, 0, 55, 68, 0, 0, 0, '2008-03-25T11:16:18Z', '2024-10-18T03:19:13Z', 'https://avatars.githubusercontent.com/u/3730?v=4', 'https://api.github.com/users/hallison', 'https://github.com/hallison', 'https://api.github.com/users/hallison/followers', 'https://api.github.com/users/hallison/following', 'https://api.github.com/users/hallison/gists', 'https://api.github.com/users/hallison/starred', 'https://api.github.com/users/hallison/repos', 'https://api.github.com/users/hallison/events', 'https://api.github.com/users/hallison/received_events', 0); +INSERT INTO `developer` VALUES (3731, 'gwynm', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 1, 0, 0, 0, '2008-03-25T11:39:42Z', '2024-10-30T15:15:15Z', 'https://avatars.githubusercontent.com/u/3731?v=4', 'https://api.github.com/users/gwynm', 'https://github.com/gwynm', 'https://api.github.com/users/gwynm/followers', 'https://api.github.com/users/gwynm/following', 'https://api.github.com/users/gwynm/gists', 'https://api.github.com/users/gwynm/starred', 'https://api.github.com/users/gwynm/repos', 'https://api.github.com/users/gwynm/events', 'https://api.github.com/users/gwynm/received_events', 0); +INSERT INTO `developer` VALUES (3732, 'drifteaur', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zoltan Varady', NULL, 'http://zoltan.studio', 'Budapest, Hungary', NULL, NULL, NULL, NULL, 0, 0, 18, 16, 0, 0, 0, '2008-03-25T12:22:35Z', '2024-11-04T15:39:12Z', 'https://avatars.githubusercontent.com/u/3732?v=4', 'https://api.github.com/users/drifteaur', 'https://github.com/drifteaur', 'https://api.github.com/users/drifteaur/followers', 'https://api.github.com/users/drifteaur/following', 'https://api.github.com/users/drifteaur/gists', 'https://api.github.com/users/drifteaur/starred', 'https://api.github.com/users/drifteaur/repos', 'https://api.github.com/users/drifteaur/events', 'https://api.github.com/users/drifteaur/received_events', 0); +INSERT INTO `developer` VALUES (3733, 'matias', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matias Pelenur', NULL, 'matiaspelenur.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-25T12:56:57Z', '2024-02-22T06:08:24Z', 'https://avatars.githubusercontent.com/u/3733?v=4', 'https://api.github.com/users/matias', 'https://github.com/matias', 'https://api.github.com/users/matias/followers', 'https://api.github.com/users/matias/following', 'https://api.github.com/users/matias/gists', 'https://api.github.com/users/matias/starred', 'https://api.github.com/users/matias/repos', 'https://api.github.com/users/matias/events', 'https://api.github.com/users/matias/received_events', 0); +INSERT INTO `developer` VALUES (3734, 'zolk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Zolkiewicz', '@8thlight ', 'http://zolk.com', 'Chicago, IL', NULL, NULL, 'UI Engineer', NULL, 0, 0, 15, 5, 0, 0, 0, '2008-03-25T12:57:33Z', '2024-08-03T17:56:14Z', 'https://avatars.githubusercontent.com/u/3734?v=4', 'https://api.github.com/users/zolk', 'https://github.com/zolk', 'https://api.github.com/users/zolk/followers', 'https://api.github.com/users/zolk/following', 'https://api.github.com/users/zolk/gists', 'https://api.github.com/users/zolk/starred', 'https://api.github.com/users/zolk/repos', 'https://api.github.com/users/zolk/events', 'https://api.github.com/users/zolk/received_events', 0); +INSERT INTO `developer` VALUES (3735, 'cpadwick', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-25T13:28:25Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3735?v=4', 'https://api.github.com/users/cpadwick', 'https://github.com/cpadwick', 'https://api.github.com/users/cpadwick/followers', 'https://api.github.com/users/cpadwick/following', 'https://api.github.com/users/cpadwick/gists', 'https://api.github.com/users/cpadwick/starred', 'https://api.github.com/users/cpadwick/repos', 'https://api.github.com/users/cpadwick/events', 'https://api.github.com/users/cpadwick/received_events', 0); +INSERT INTO `developer` VALUES (3736, 'ciaran', 'C', 0, 0, 0, 0, 44, 1, 0, 'Ciarán Walsh', NULL, 'http://ciaranwal.sh', 'England', NULL, NULL, NULL, NULL, 0, 0, 172, 2, 0, 0, 0, '2008-03-25T14:17:39Z', '2024-10-07T19:31:03Z', 'https://avatars.githubusercontent.com/u/3736?v=4', 'https://api.github.com/users/ciaran', 'https://github.com/ciaran', 'https://api.github.com/users/ciaran/followers', 'https://api.github.com/users/ciaran/following', 'https://api.github.com/users/ciaran/gists', 'https://api.github.com/users/ciaran/starred', 'https://api.github.com/users/ciaran/repos', 'https://api.github.com/users/ciaran/events', 'https://api.github.com/users/ciaran/received_events', 0); +INSERT INTO `developer` VALUES (3737, 'pjones', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter J. Jones', NULL, 'https://freerangebits.com/', 'Tübingen, Germany', 'pjones@devalot.com', 'true', 'Open Source enthusiast. Lover of functional programming. An all-around nerd who likes to wear bow ties.\r\n', NULL, 0, 0, 102, 3, 0, 0, 0, '2008-03-25T14:26:35Z', '2024-10-18T11:24:29Z', 'https://avatars.githubusercontent.com/u/3737?v=4', 'https://api.github.com/users/pjones', 'https://github.com/pjones', 'https://api.github.com/users/pjones/followers', 'https://api.github.com/users/pjones/following', 'https://api.github.com/users/pjones/gists', 'https://api.github.com/users/pjones/starred', 'https://api.github.com/users/pjones/repos', 'https://api.github.com/users/pjones/events', 'https://api.github.com/users/pjones/received_events', 0); +INSERT INTO `developer` VALUES (3738, 'jperkins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Perkins', NULL, 'http://jsonp.cc', 'Chicago, IL', 'jperkins@me.com', NULL, NULL, NULL, 0, 0, 25, 4, 0, 0, 0, '2008-03-25T14:58:17Z', '2017-08-14T19:41:03Z', 'https://avatars.githubusercontent.com/u/3738?v=4', 'https://api.github.com/users/jperkins', 'https://github.com/jperkins', 'https://api.github.com/users/jperkins/followers', 'https://api.github.com/users/jperkins/following', 'https://api.github.com/users/jperkins/gists', 'https://api.github.com/users/jperkins/starred', 'https://api.github.com/users/jperkins/repos', 'https://api.github.com/users/jperkins/events', 'https://api.github.com/users/jperkins/received_events', 0); +INSERT INTO `developer` VALUES (3739, 'angileri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Angileri aka Fritzie', NULL, 'www.estcomputers.com', 'Floyd', 'chris@estcomputers.com', NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2008-03-25T15:28:06Z', '2020-11-06T05:26:25Z', 'https://avatars.githubusercontent.com/u/3739?v=4', 'https://api.github.com/users/angileri', 'https://github.com/angileri', 'https://api.github.com/users/angileri/followers', 'https://api.github.com/users/angileri/following', 'https://api.github.com/users/angileri/gists', 'https://api.github.com/users/angileri/starred', 'https://api.github.com/users/angileri/repos', 'https://api.github.com/users/angileri/events', 'https://api.github.com/users/angileri/received_events', 0); +INSERT INTO `developer` VALUES (3740, 'rlivsey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Richard Livsey', 'Intercom', 'http://livsey.org', 'London', 'richard@livsey.org', NULL, NULL, 'rlivsey', 0, 0, 91, 78, 0, 0, 0, '2008-03-25T15:43:10Z', '2024-11-01T10:12:59Z', 'https://avatars.githubusercontent.com/u/3740?v=4', 'https://api.github.com/users/rlivsey', 'https://github.com/rlivsey', 'https://api.github.com/users/rlivsey/followers', 'https://api.github.com/users/rlivsey/following', 'https://api.github.com/users/rlivsey/gists', 'https://api.github.com/users/rlivsey/starred', 'https://api.github.com/users/rlivsey/repos', 'https://api.github.com/users/rlivsey/events', 'https://api.github.com/users/rlivsey/received_events', 0); +INSERT INTO `developer` VALUES (3742, 'martinbtt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Sadler', 'Beyond Type', 'http://www.beyondtype.com', 'London', NULL, NULL, NULL, NULL, 0, 0, 32, 5, 0, 0, 0, '2008-03-25T15:47:11Z', '2024-10-22T21:07:54Z', 'https://avatars.githubusercontent.com/u/3742?v=4', 'https://api.github.com/users/martinbtt', 'https://github.com/martinbtt', 'https://api.github.com/users/martinbtt/followers', 'https://api.github.com/users/martinbtt/following', 'https://api.github.com/users/martinbtt/gists', 'https://api.github.com/users/martinbtt/starred', 'https://api.github.com/users/martinbtt/repos', 'https://api.github.com/users/martinbtt/events', 'https://api.github.com/users/martinbtt/received_events', 0); +INSERT INTO `developer` VALUES (3743, 'sschroed', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Schroeder', NULL, 'samuelschroeder.com', '未知', 'samuel.schroeder@gmail.com', NULL, NULL, 'SamSchroeder', 0, 0, 65, 57, 0, 0, 0, '2008-03-25T15:57:01Z', '2023-01-13T16:27:21Z', 'https://avatars.githubusercontent.com/u/3743?v=4', 'https://api.github.com/users/sschroed', 'https://github.com/sschroed', 'https://api.github.com/users/sschroed/followers', 'https://api.github.com/users/sschroed/following', 'https://api.github.com/users/sschroed/gists', 'https://api.github.com/users/sschroed/starred', 'https://api.github.com/users/sschroed/repos', 'https://api.github.com/users/sschroed/events', 'https://api.github.com/users/sschroed/received_events', 0); +INSERT INTO `developer` VALUES (3744, 'jmckible', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jordan McKible', 'Vocal Video', 'http://jordan.mckible.com', 'Petaluma, CA', NULL, NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2008-03-25T16:00:15Z', '2024-10-28T15:57:50Z', 'https://avatars.githubusercontent.com/u/3744?v=4', 'https://api.github.com/users/jmckible', 'https://github.com/jmckible', 'https://api.github.com/users/jmckible/followers', 'https://api.github.com/users/jmckible/following', 'https://api.github.com/users/jmckible/gists', 'https://api.github.com/users/jmckible/starred', 'https://api.github.com/users/jmckible/repos', 'https://api.github.com/users/jmckible/events', 'https://api.github.com/users/jmckible/received_events', 0); +INSERT INTO `developer` VALUES (3745, 'padione', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-25T16:03:20Z', '2024-02-12T17:44:59Z', 'https://avatars.githubusercontent.com/u/3745?v=4', 'https://api.github.com/users/padione', 'https://github.com/padione', 'https://api.github.com/users/padione/followers', 'https://api.github.com/users/padione/following', 'https://api.github.com/users/padione/gists', 'https://api.github.com/users/padione/starred', 'https://api.github.com/users/padione/repos', 'https://api.github.com/users/padione/events', 'https://api.github.com/users/padione/received_events', 0); +INSERT INTO `developer` VALUES (3746, 'skippy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Greene', NULL, '', 'San Juan County, WA', 'adam.greene@gmail.com', NULL, NULL, NULL, 0, 0, 32, 18, 0, 0, 0, '2008-03-25T16:08:04Z', '2024-09-19T20:13:07Z', 'https://avatars.githubusercontent.com/u/3746?v=4', 'https://api.github.com/users/skippy', 'https://github.com/skippy', 'https://api.github.com/users/skippy/followers', 'https://api.github.com/users/skippy/following', 'https://api.github.com/users/skippy/gists', 'https://api.github.com/users/skippy/starred', 'https://api.github.com/users/skippy/repos', 'https://api.github.com/users/skippy/events', 'https://api.github.com/users/skippy/received_events', 0); +INSERT INTO `developer` VALUES (3747, 'intridea', 'C', 0, 0, 0, 0, 0, 0, 0, 'INTRIDEA Inc.', NULL, 'http://intridea.com', 'Washington, DC', 'hello@intridea.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-25T16:34:33Z', '2019-06-05T05:47:00Z', 'https://avatars.githubusercontent.com/u/3747?v=4', 'https://api.github.com/users/intridea', 'https://github.com/intridea', 'https://api.github.com/users/intridea/followers', 'https://api.github.com/users/intridea/following', 'https://api.github.com/users/intridea/gists', 'https://api.github.com/users/intridea/starred', 'https://api.github.com/users/intridea/repos', 'https://api.github.com/users/intridea/events', 'https://api.github.com/users/intridea/received_events', 0); +INSERT INTO `developer` VALUES (3748, 'aphyr', 'A', 80.42970980355824, 0, 0, 0, 0, 0, 0, 'Kyle Kingsbury', '@jepsen-io ', 'https://aphyr.com', 'USA', NULL, NULL, NULL, NULL, 0, 0, 4975, 2, 0, 0, 0, '2008-03-25T17:32:19Z', '2023-09-24T23:00:15Z', 'https://avatars.githubusercontent.com/u/3748?v=4', 'https://api.github.com/users/aphyr', 'https://github.com/aphyr', 'https://api.github.com/users/aphyr/followers', 'https://api.github.com/users/aphyr/following', 'https://api.github.com/users/aphyr/gists', 'https://api.github.com/users/aphyr/starred', 'https://api.github.com/users/aphyr/repos', 'https://api.github.com/users/aphyr/events', 'https://api.github.com/users/aphyr/received_events', 0); +INSERT INTO `developer` VALUES (3749, 'clemens', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clemens Kofler', NULL, 'https://clemenskofler.com', 'Munich, Germany', NULL, 'true', NULL, 'clemensk', 0, 0, 86, 0, 0, 0, 0, '2008-03-25T17:48:28Z', '2024-10-31T15:03:57Z', 'https://avatars.githubusercontent.com/u/3749?v=4', 'https://api.github.com/users/clemens', 'https://github.com/clemens', 'https://api.github.com/users/clemens/followers', 'https://api.github.com/users/clemens/following', 'https://api.github.com/users/clemens/gists', 'https://api.github.com/users/clemens/starred', 'https://api.github.com/users/clemens/repos', 'https://api.github.com/users/clemens/events', 'https://api.github.com/users/clemens/received_events', 0); +INSERT INTO `developer` VALUES (3751, 'hjw3001', 'C', 0, 0, 0, 0, 0, 0, 0, 'Henry Wagner', 'Oracle', 'http://www.henrywagner.org/', 'Silicon Valley', 'hjw3001@gmail.com', NULL, NULL, NULL, 0, 0, 7, 23, 0, 0, 0, '2008-03-25T18:34:13Z', '2023-03-06T17:07:07Z', 'https://avatars.githubusercontent.com/u/3751?v=4', 'https://api.github.com/users/hjw3001', 'https://github.com/hjw3001', 'https://api.github.com/users/hjw3001/followers', 'https://api.github.com/users/hjw3001/following', 'https://api.github.com/users/hjw3001/gists', 'https://api.github.com/users/hjw3001/starred', 'https://api.github.com/users/hjw3001/repos', 'https://api.github.com/users/hjw3001/events', 'https://api.github.com/users/hjw3001/received_events', 0); +INSERT INTO `developer` VALUES (3752, 'tdd', 'C', 7.84001031159055, 0, 0, 0, 0, 0, 0, 'Christophe Porteneuve', 'Delicious Insights', 'http://tddsworld.com', 'Paris, France', 'tdd@tddsworld.com', NULL, 'Dad, programmer, husband, entrepreneur, friend, speaker, ally, author. I train ppl on JS/Node and Git[Hub], build B2B SaaS, & call out bigots of all kinds.', 'porteneuve', 0, 0, 742, 0, 0, 0, 0, '2008-03-25T18:39:22Z', '2024-09-06T08:46:14Z', 'https://avatars.githubusercontent.com/u/3752?v=4', 'https://api.github.com/users/tdd', 'https://github.com/tdd', 'https://api.github.com/users/tdd/followers', 'https://api.github.com/users/tdd/following', 'https://api.github.com/users/tdd/gists', 'https://api.github.com/users/tdd/starred', 'https://api.github.com/users/tdd/repos', 'https://api.github.com/users/tdd/events', 'https://api.github.com/users/tdd/received_events', 0); +INSERT INTO `developer` VALUES (3753, 'naffis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Naffis', 'Kargo', 'https://www.kargo.com/', 'Washington, DC', 'davidnaffis@gmail.com', NULL, NULL, NULL, 0, 0, 75, 44, 0, 0, 0, '2008-03-25T18:52:11Z', '2024-09-02T12:29:42Z', 'https://avatars.githubusercontent.com/u/3753?v=4', 'https://api.github.com/users/naffis', 'https://github.com/naffis', 'https://api.github.com/users/naffis/followers', 'https://api.github.com/users/naffis/following', 'https://api.github.com/users/naffis/gists', 'https://api.github.com/users/naffis/starred', 'https://api.github.com/users/naffis/repos', 'https://api.github.com/users/naffis/events', 'https://api.github.com/users/naffis/received_events', 0); +INSERT INTO `developer` VALUES (3754, 'cflipse', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Flipse', '@digitalocean ', 'http://devcaffeine.com/', 'Northern Virginia', 'cflipse@gmail.com', NULL, NULL, NULL, 0, 0, 36, 12, 0, 0, 0, '2008-03-25T19:18:46Z', '2024-09-01T15:09:24Z', 'https://avatars.githubusercontent.com/u/3754?v=4', 'https://api.github.com/users/cflipse', 'https://github.com/cflipse', 'https://api.github.com/users/cflipse/followers', 'https://api.github.com/users/cflipse/following', 'https://api.github.com/users/cflipse/gists', 'https://api.github.com/users/cflipse/starred', 'https://api.github.com/users/cflipse/repos', 'https://api.github.com/users/cflipse/events', 'https://api.github.com/users/cflipse/received_events', 0); +INSERT INTO `developer` VALUES (3755, 'threadhead', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karl Smith', 'Desert Solitaire', 'http://blog.spoolz.com', 'AZ', 'threadhead@gmail.com', NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2008-03-25T19:21:51Z', '2024-09-04T17:26:50Z', 'https://avatars.githubusercontent.com/u/3755?v=4', 'https://api.github.com/users/threadhead', 'https://github.com/threadhead', 'https://api.github.com/users/threadhead/followers', 'https://api.github.com/users/threadhead/following', 'https://api.github.com/users/threadhead/gists', 'https://api.github.com/users/threadhead/starred', 'https://api.github.com/users/threadhead/repos', 'https://api.github.com/users/threadhead/events', 'https://api.github.com/users/threadhead/received_events', 0); +INSERT INTO `developer` VALUES (3756, 'pelargir', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Bass', 'Adeptware, Inc.', '', 'Raleigh, NC', 'matt@adeptware.com', NULL, 'Founder @TranscriptMaker ', NULL, 0, 0, 28, 12, 0, 0, 0, '2008-03-25T19:44:21Z', '2024-09-23T11:44:49Z', 'https://avatars.githubusercontent.com/u/3756?v=4', 'https://api.github.com/users/pelargir', 'https://github.com/pelargir', 'https://api.github.com/users/pelargir/followers', 'https://api.github.com/users/pelargir/following', 'https://api.github.com/users/pelargir/gists', 'https://api.github.com/users/pelargir/starred', 'https://api.github.com/users/pelargir/repos', 'https://api.github.com/users/pelargir/events', 'https://api.github.com/users/pelargir/received_events', 0); +INSERT INTO `developer` VALUES (3757, 'sweeney', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Sweeney', 'Ravelin', 'https://sweeney.io', 'London', NULL, NULL, NULL, 'sweeney', 0, 0, 22, 6, 0, 0, 0, '2008-03-25T19:49:07Z', '2024-09-23T15:51:21Z', 'https://avatars.githubusercontent.com/u/3757?v=4', 'https://api.github.com/users/sweeney', 'https://github.com/sweeney', 'https://api.github.com/users/sweeney/followers', 'https://api.github.com/users/sweeney/following', 'https://api.github.com/users/sweeney/gists', 'https://api.github.com/users/sweeney/starred', 'https://api.github.com/users/sweeney/repos', 'https://api.github.com/users/sweeney/events', 'https://api.github.com/users/sweeney/received_events', 0); +INSERT INTO `developer` VALUES (3760, 'bborn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bruno Bornsztein', NULL, '', 'St. Paul, MN', NULL, NULL, NULL, 'brunotorious', 0, 0, 96, 10, 0, 0, 0, '2008-03-25T19:53:29Z', '2024-10-28T15:47:16Z', 'https://avatars.githubusercontent.com/u/3760?v=4', 'https://api.github.com/users/bborn', 'https://github.com/bborn', 'https://api.github.com/users/bborn/followers', 'https://api.github.com/users/bborn/following', 'https://api.github.com/users/bborn/gists', 'https://api.github.com/users/bborn/starred', 'https://api.github.com/users/bborn/repos', 'https://api.github.com/users/bborn/events', 'https://api.github.com/users/bborn/received_events', 0); +INSERT INTO `developer` VALUES (3761, '7hunderbird', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tyler Bird', NULL, '', 'Silicon Slopes, Utah', 'tyler.bird@gmail.com', NULL, NULL, '7hunderbird', 0, 0, 67, 118, 0, 0, 0, '2008-03-25T19:53:40Z', '2024-09-26T20:48:24Z', 'https://avatars.githubusercontent.com/u/3761?v=4', 'https://api.github.com/users/7hunderbird', 'https://github.com/7hunderbird', 'https://api.github.com/users/7hunderbird/followers', 'https://api.github.com/users/7hunderbird/following', 'https://api.github.com/users/7hunderbird/gists', 'https://api.github.com/users/7hunderbird/starred', 'https://api.github.com/users/7hunderbird/repos', 'https://api.github.com/users/7hunderbird/events', 'https://api.github.com/users/7hunderbird/received_events', 0); +INSERT INTO `developer` VALUES (3762, 'bryanthompson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bryan Thompson', 'http://www.37chairs.com', '', 'Lincoln, NE', 'bryan@37chairs.com', NULL, NULL, NULL, 0, 0, 27, 9, 0, 0, 0, '2008-03-25T19:54:06Z', '2024-05-08T20:22:17Z', 'https://avatars.githubusercontent.com/u/3762?v=4', 'https://api.github.com/users/bryanthompson', 'https://github.com/bryanthompson', 'https://api.github.com/users/bryanthompson/followers', 'https://api.github.com/users/bryanthompson/following', 'https://api.github.com/users/bryanthompson/gists', 'https://api.github.com/users/bryanthompson/starred', 'https://api.github.com/users/bryanthompson/repos', 'https://api.github.com/users/bryanthompson/events', 'https://api.github.com/users/bryanthompson/received_events', 0); +INSERT INTO `developer` VALUES (3764, 'quinn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Quinn Shanahan', 'HoneyCo', 'https://quinn.io/', 'Queens', NULL, 'true', 'huh', NULL, 0, 0, 80, 112, 0, 0, 0, '2008-03-25T19:55:57Z', '2024-09-16T14:30:07Z', 'https://avatars.githubusercontent.com/u/3764?v=4', 'https://api.github.com/users/quinn', 'https://github.com/quinn', 'https://api.github.com/users/quinn/followers', 'https://api.github.com/users/quinn/following', 'https://api.github.com/users/quinn/gists', 'https://api.github.com/users/quinn/starred', 'https://api.github.com/users/quinn/repos', 'https://api.github.com/users/quinn/events', 'https://api.github.com/users/quinn/received_events', 0); +INSERT INTO `developer` VALUES (3765, 'samuelam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Miller', 'Portland Art Museum', '', 'Portland, Oregon', 'samuel@roomtone.com', NULL, NULL, NULL, 0, 0, 18, 2, 0, 0, 0, '2008-03-25T19:56:09Z', '2024-07-12T16:33:20Z', 'https://avatars.githubusercontent.com/u/3765?v=4', 'https://api.github.com/users/samuelam', 'https://github.com/samuelam', 'https://api.github.com/users/samuelam/followers', 'https://api.github.com/users/samuelam/following', 'https://api.github.com/users/samuelam/gists', 'https://api.github.com/users/samuelam/starred', 'https://api.github.com/users/samuelam/repos', 'https://api.github.com/users/samuelam/events', 'https://api.github.com/users/samuelam/received_events', 0); +INSERT INTO `developer` VALUES (3768, 'marcharding', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Harding', NULL, 'http://www.marcharding.de', '未知', NULL, NULL, NULL, NULL, 0, 0, 20, 7, 0, 0, 0, '2008-03-25T19:58:17Z', '2024-09-23T09:37:01Z', 'https://avatars.githubusercontent.com/u/3768?v=4', 'https://api.github.com/users/marcharding', 'https://github.com/marcharding', 'https://api.github.com/users/marcharding/followers', 'https://api.github.com/users/marcharding/following', 'https://api.github.com/users/marcharding/gists', 'https://api.github.com/users/marcharding/starred', 'https://api.github.com/users/marcharding/repos', 'https://api.github.com/users/marcharding/events', 'https://api.github.com/users/marcharding/received_events', 0); +INSERT INTO `developer` VALUES (3769, 'blakeburris', 'C', 0, 0, 0, 0, 0, 0, 0, 'Blake Burris', NULL, 'http://www.merklemountain.com', 'Rocky Mountains', NULL, NULL, NULL, NULL, 0, 0, 9, 12, 0, 0, 0, '2008-03-25T19:58:48Z', '2023-03-28T16:08:59Z', 'https://avatars.githubusercontent.com/u/3769?v=4', 'https://api.github.com/users/blakeburris', 'https://github.com/blakeburris', 'https://api.github.com/users/blakeburris/followers', 'https://api.github.com/users/blakeburris/following', 'https://api.github.com/users/blakeburris/gists', 'https://api.github.com/users/blakeburris/starred', 'https://api.github.com/users/blakeburris/repos', 'https://api.github.com/users/blakeburris/events', 'https://api.github.com/users/blakeburris/received_events', 0); +INSERT INTO `developer` VALUES (3770, 'mid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justinas L.', 'Labanoras', 'https://labanoras.io', 'Lithuania', NULL, NULL, NULL, NULL, 0, 0, 33, 27, 0, 0, 0, '2008-03-25T20:00:23Z', '2024-10-25T13:08:44Z', 'https://avatars.githubusercontent.com/u/3770?v=4', 'https://api.github.com/users/mid', 'https://github.com/mid', 'https://api.github.com/users/mid/followers', 'https://api.github.com/users/mid/following', 'https://api.github.com/users/mid/gists', 'https://api.github.com/users/mid/starred', 'https://api.github.com/users/mid/repos', 'https://api.github.com/users/mid/events', 'https://api.github.com/users/mid/received_events', 0); +INSERT INTO `developer` VALUES (3771, 'archiloque', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julien Kirch', 'TDF', 'https://archiloque.net', 'Paris, France', NULL, NULL, 'Dev, architect and cat picture expert', NULL, 0, 0, 70, 1, 0, 0, 0, '2008-03-25T20:02:10Z', '2024-08-27T07:10:53Z', 'https://avatars.githubusercontent.com/u/3771?v=4', 'https://api.github.com/users/archiloque', 'https://github.com/archiloque', 'https://api.github.com/users/archiloque/followers', 'https://api.github.com/users/archiloque/following', 'https://api.github.com/users/archiloque/gists', 'https://api.github.com/users/archiloque/starred', 'https://api.github.com/users/archiloque/repos', 'https://api.github.com/users/archiloque/events', 'https://api.github.com/users/archiloque/received_events', 0); +INSERT INTO `developer` VALUES (3772, 'gmcintire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Graham McIntire', 'Verona Networks', 'https://vntx.net', 'Princeton, Tx', NULL, NULL, 'Plain text & dvorak enthusiast. Amateur photographer. Amateur radio operator since 1996, W5ISP. Run my own WISP. Neurodiverse. Buddhist.', NULL, 0, 0, 42, 76, 0, 0, 0, '2008-03-25T20:04:00Z', '2024-10-28T23:11:22Z', 'https://avatars.githubusercontent.com/u/3772?v=4', 'https://api.github.com/users/gmcintire', 'https://github.com/gmcintire', 'https://api.github.com/users/gmcintire/followers', 'https://api.github.com/users/gmcintire/following', 'https://api.github.com/users/gmcintire/gists', 'https://api.github.com/users/gmcintire/starred', 'https://api.github.com/users/gmcintire/repos', 'https://api.github.com/users/gmcintire/events', 'https://api.github.com/users/gmcintire/received_events', 0); +INSERT INTO `developer` VALUES (3773, 'ratchetcat', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'erg7.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 10, 0, 0, 0, '2008-03-25T20:04:03Z', '2023-10-05T11:10:47Z', 'https://avatars.githubusercontent.com/u/3773?v=4', 'https://api.github.com/users/ratchetcat', 'https://github.com/ratchetcat', 'https://api.github.com/users/ratchetcat/followers', 'https://api.github.com/users/ratchetcat/following', 'https://api.github.com/users/ratchetcat/gists', 'https://api.github.com/users/ratchetcat/starred', 'https://api.github.com/users/ratchetcat/repos', 'https://api.github.com/users/ratchetcat/events', 'https://api.github.com/users/ratchetcat/received_events', 0); +INSERT INTO `developer` VALUES (3774, 'chrisa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Andrews', NULL, 'http://chrisa.github.com', 'London', 'chris@nodnol.org', 'true', NULL, NULL, 0, 0, 66, 13, 0, 0, 0, '2008-03-25T20:04:22Z', '2024-09-26T18:14:16Z', 'https://avatars.githubusercontent.com/u/3774?v=4', 'https://api.github.com/users/chrisa', 'https://github.com/chrisa', 'https://api.github.com/users/chrisa/followers', 'https://api.github.com/users/chrisa/following', 'https://api.github.com/users/chrisa/gists', 'https://api.github.com/users/chrisa/starred', 'https://api.github.com/users/chrisa/repos', 'https://api.github.com/users/chrisa/events', 'https://api.github.com/users/chrisa/received_events', 0); +INSERT INTO `developer` VALUES (3776, 'loicboutet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Loïc Boutet', NULL, '', 'France', 'loic@boutet.com', NULL, NULL, NULL, 0, 0, 31, 5, 0, 0, 0, '2008-03-25T20:06:32Z', '2024-10-25T22:04:41Z', 'https://avatars.githubusercontent.com/u/3776?v=4', 'https://api.github.com/users/loicboutet', 'https://github.com/loicboutet', 'https://api.github.com/users/loicboutet/followers', 'https://api.github.com/users/loicboutet/following', 'https://api.github.com/users/loicboutet/gists', 'https://api.github.com/users/loicboutet/starred', 'https://api.github.com/users/loicboutet/repos', 'https://api.github.com/users/loicboutet/events', 'https://api.github.com/users/loicboutet/received_events', 0); +INSERT INTO `developer` VALUES (3779, 'bschwartz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brendan Schwartz', 'Wistia, Inc.', 'http://brendanschwartz.com', 'Cambridge, MA', NULL, NULL, NULL, NULL, 0, 0, 37, 13, 0, 0, 0, '2008-03-25T20:08:08Z', '2024-10-09T17:24:58Z', 'https://avatars.githubusercontent.com/u/3779?v=4', 'https://api.github.com/users/bschwartz', 'https://github.com/bschwartz', 'https://api.github.com/users/bschwartz/followers', 'https://api.github.com/users/bschwartz/following', 'https://api.github.com/users/bschwartz/gists', 'https://api.github.com/users/bschwartz/starred', 'https://api.github.com/users/bschwartz/repos', 'https://api.github.com/users/bschwartz/events', 'https://api.github.com/users/bschwartz/received_events', 0); +INSERT INTO `developer` VALUES (3780, 'pellucidity', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pellucidity', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 5, 0, 0, 0, '2008-03-25T20:11:05Z', '2017-08-14T19:40:27Z', 'https://avatars.githubusercontent.com/u/3780?v=4', 'https://api.github.com/users/pellucidity', 'https://github.com/pellucidity', 'https://api.github.com/users/pellucidity/followers', 'https://api.github.com/users/pellucidity/following', 'https://api.github.com/users/pellucidity/gists', 'https://api.github.com/users/pellucidity/starred', 'https://api.github.com/users/pellucidity/repos', 'https://api.github.com/users/pellucidity/events', 'https://api.github.com/users/pellucidity/received_events', 0); +INSERT INTO `developer` VALUES (3781, 'bogado', 'C', 0, 0, 0, 0, 0, 0, 0, 'Victor Bogado da Silva Lins', NULL, 'http://blogado.bogado.net/', '未知', 'victor@bogado.net', NULL, NULL, NULL, 0, 0, 14, 13, 0, 0, 0, '2008-03-25T20:11:30Z', '2024-10-11T00:03:17Z', 'https://avatars.githubusercontent.com/u/3781?v=4', 'https://api.github.com/users/bogado', 'https://github.com/bogado', 'https://api.github.com/users/bogado/followers', 'https://api.github.com/users/bogado/following', 'https://api.github.com/users/bogado/gists', 'https://api.github.com/users/bogado/starred', 'https://api.github.com/users/bogado/repos', 'https://api.github.com/users/bogado/events', 'https://api.github.com/users/bogado/received_events', 0); +INSERT INTO `developer` VALUES (3782, 'zerok', 'C', 0, 0, 0, 0, 0, 0, 0, 'Horst Gutmann', 'Grafana Labs', 'https://zerokspot.com/', 'Graz, Austria', NULL, NULL, NULL, NULL, 0, 0, 123, 25, 0, 0, 0, '2008-03-25T20:12:08Z', '2024-11-01T18:32:24Z', 'https://avatars.githubusercontent.com/u/3782?v=4', 'https://api.github.com/users/zerok', 'https://github.com/zerok', 'https://api.github.com/users/zerok/followers', 'https://api.github.com/users/zerok/following', 'https://api.github.com/users/zerok/gists', 'https://api.github.com/users/zerok/starred', 'https://api.github.com/users/zerok/repos', 'https://api.github.com/users/zerok/events', 'https://api.github.com/users/zerok/received_events', 0); +INSERT INTO `developer` VALUES (3783, 'sidecut', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim R', NULL, '', 'Cleveland, Ohio, USA', NULL, NULL, NULL, NULL, 0, 0, 9, 8, 0, 0, 0, '2008-03-25T20:12:38Z', '2024-08-02T12:47:04Z', 'https://avatars.githubusercontent.com/u/3783?v=4', 'https://api.github.com/users/sidecut', 'https://github.com/sidecut', 'https://api.github.com/users/sidecut/followers', 'https://api.github.com/users/sidecut/following', 'https://api.github.com/users/sidecut/gists', 'https://api.github.com/users/sidecut/starred', 'https://api.github.com/users/sidecut/repos', 'https://api.github.com/users/sidecut/events', 'https://api.github.com/users/sidecut/received_events', 0); +INSERT INTO `developer` VALUES (3784, 'raykrueger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ray Krueger', NULL, '', 'Chicago, IL, USA', 'raykrueger@gmail.com', NULL, NULL, NULL, 0, 0, 65, 18, 0, 0, 0, '2008-03-25T20:13:08Z', '2024-04-03T01:23:40Z', 'https://avatars.githubusercontent.com/u/3784?v=4', 'https://api.github.com/users/raykrueger', 'https://github.com/raykrueger', 'https://api.github.com/users/raykrueger/followers', 'https://api.github.com/users/raykrueger/following', 'https://api.github.com/users/raykrueger/gists', 'https://api.github.com/users/raykrueger/starred', 'https://api.github.com/users/raykrueger/repos', 'https://api.github.com/users/raykrueger/events', 'https://api.github.com/users/raykrueger/received_events', 0); +INSERT INTO `developer` VALUES (3785, 'mattb', 'C', 1.0834920975968654, 0, 0, 0, 0, 0, 0, 'Matt Biddulph', NULL, 'https://www.hackdiary.com/about', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 348, 192, 0, 0, 0, '2008-03-25T20:14:20Z', '2024-10-28T23:05:08Z', 'https://avatars.githubusercontent.com/u/3785?v=4', 'https://api.github.com/users/mattb', 'https://github.com/mattb', 'https://api.github.com/users/mattb/followers', 'https://api.github.com/users/mattb/following', 'https://api.github.com/users/mattb/gists', 'https://api.github.com/users/mattb/starred', 'https://api.github.com/users/mattb/repos', 'https://api.github.com/users/mattb/events', 'https://api.github.com/users/mattb/received_events', 0); +INSERT INTO `developer` VALUES (3786, 'dadiv', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Perkowski', 'Soomo Learning LLC', 'https://www.soomolearning.com/', 'Asheville, NC', NULL, NULL, NULL, NULL, 0, 0, 12, 10, 0, 0, 0, '2008-03-25T20:14:24Z', '2024-10-07T18:07:35Z', 'https://avatars.githubusercontent.com/u/3786?v=4', 'https://api.github.com/users/dadiv', 'https://github.com/dadiv', 'https://api.github.com/users/dadiv/followers', 'https://api.github.com/users/dadiv/following', 'https://api.github.com/users/dadiv/gists', 'https://api.github.com/users/dadiv/starred', 'https://api.github.com/users/dadiv/repos', 'https://api.github.com/users/dadiv/events', 'https://api.github.com/users/dadiv/received_events', 0); +INSERT INTO `developer` VALUES (3787, 'pivou', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2008-03-25T20:16:33Z', '2017-08-14T19:41:03Z', 'https://avatars.githubusercontent.com/u/3787?v=4', 'https://api.github.com/users/pivou', 'https://github.com/pivou', 'https://api.github.com/users/pivou/followers', 'https://api.github.com/users/pivou/following', 'https://api.github.com/users/pivou/gists', 'https://api.github.com/users/pivou/starred', 'https://api.github.com/users/pivou/repos', 'https://api.github.com/users/pivou/events', 'https://api.github.com/users/pivou/received_events', 0); +INSERT INTO `developer` VALUES (3788, 'tomasc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tomáš Celizna', NULL, 'www.tomascelizna.com', 'Amsterdam, NL', 'mail@tomascelizna.com', NULL, NULL, 'tomasce', 0, 0, 30, 0, 0, 0, 0, '2008-03-25T20:17:49Z', '2024-10-24T07:26:55Z', 'https://avatars.githubusercontent.com/u/3788?v=4', 'https://api.github.com/users/tomasc', 'https://github.com/tomasc', 'https://api.github.com/users/tomasc/followers', 'https://api.github.com/users/tomasc/following', 'https://api.github.com/users/tomasc/gists', 'https://api.github.com/users/tomasc/starred', 'https://api.github.com/users/tomasc/repos', 'https://api.github.com/users/tomasc/events', 'https://api.github.com/users/tomasc/received_events', 0); +INSERT INTO `developer` VALUES (3790, 'talmuth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Denys Lozko', 'Upwork', 'https://www.linkedin.com/in/talmuth/', '未知', 'denis.lozko@gmail.com', NULL, NULL, NULL, 0, 0, 15, 27, 0, 0, 0, '2008-03-25T20:18:19Z', '2024-10-24T22:40:36Z', 'https://avatars.githubusercontent.com/u/3790?v=4', 'https://api.github.com/users/talmuth', 'https://github.com/talmuth', 'https://api.github.com/users/talmuth/followers', 'https://api.github.com/users/talmuth/following', 'https://api.github.com/users/talmuth/gists', 'https://api.github.com/users/talmuth/starred', 'https://api.github.com/users/talmuth/repos', 'https://api.github.com/users/talmuth/events', 'https://api.github.com/users/talmuth/received_events', 0); +INSERT INTO `developer` VALUES (3792, 'goshatch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gosha Tcherednitchenko', '@apossiblespace ', 'https://gosha.net', 'London, UK', 'mail@gosha.net', 'true', 'I like computers, photography, long-term projects, and my family.', 'goshatch', 0, 0, 57, 40, 0, 0, 0, '2008-03-25T20:20:14Z', '2024-11-03T15:04:04Z', 'https://avatars.githubusercontent.com/u/3792?v=4', 'https://api.github.com/users/goshatch', 'https://github.com/goshatch', 'https://api.github.com/users/goshatch/followers', 'https://api.github.com/users/goshatch/following', 'https://api.github.com/users/goshatch/gists', 'https://api.github.com/users/goshatch/starred', 'https://api.github.com/users/goshatch/repos', 'https://api.github.com/users/goshatch/events', 'https://api.github.com/users/goshatch/received_events', 0); +INSERT INTO `developer` VALUES (3793, 'fons', 'C', 0, 0, 0, 0, 0, 0, 0, 'fons haffmans', '@morgan-stanley', 'www.linkedin.com/in/alfonshaffmans/', 'huntington, new york', 'fons.haffmans@gmail.com', NULL, NULL, NULL, 0, 0, 45, 16, 0, 0, 0, '2008-03-25T20:20:36Z', '2023-01-21T19:32:21Z', 'https://avatars.githubusercontent.com/u/3793?v=4', 'https://api.github.com/users/fons', 'https://github.com/fons', 'https://api.github.com/users/fons/followers', 'https://api.github.com/users/fons/following', 'https://api.github.com/users/fons/gists', 'https://api.github.com/users/fons/starred', 'https://api.github.com/users/fons/repos', 'https://api.github.com/users/fons/events', 'https://api.github.com/users/fons/received_events', 0); +INSERT INTO `developer` VALUES (3794, 'mpeychich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Peychich', 'Goldstar', '', 'Portland, OR, USA', 'mpeychich@mac.com', NULL, NULL, NULL, 0, 0, 17, 0, 0, 0, 0, '2008-03-25T20:20:50Z', '2024-05-03T16:57:50Z', 'https://avatars.githubusercontent.com/u/3794?v=4', 'https://api.github.com/users/mpeychich', 'https://github.com/mpeychich', 'https://api.github.com/users/mpeychich/followers', 'https://api.github.com/users/mpeychich/following', 'https://api.github.com/users/mpeychich/gists', 'https://api.github.com/users/mpeychich/starred', 'https://api.github.com/users/mpeychich/repos', 'https://api.github.com/users/mpeychich/events', 'https://api.github.com/users/mpeychich/received_events', 0); +INSERT INTO `developer` VALUES (3796, 'st23am', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Smith', 'Adobe / Frame.io', '', 'Cincinnati', 'st23am@gmail.com', NULL, NULL, 'st23am', 0, 0, 91, 94, 0, 0, 0, '2008-03-25T20:26:29Z', '2024-10-02T04:03:10Z', 'https://avatars.githubusercontent.com/u/3796?v=4', 'https://api.github.com/users/st23am', 'https://github.com/st23am', 'https://api.github.com/users/st23am/followers', 'https://api.github.com/users/st23am/following', 'https://api.github.com/users/st23am/gists', 'https://api.github.com/users/st23am/starred', 'https://api.github.com/users/st23am/repos', 'https://api.github.com/users/st23am/events', 'https://api.github.com/users/st23am/received_events', 0); +INSERT INTO `developer` VALUES (3797, 'blandest', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-25T20:29:51Z', '2024-10-30T09:28:12Z', 'https://avatars.githubusercontent.com/u/3797?v=4', 'https://api.github.com/users/blandest', 'https://github.com/blandest', 'https://api.github.com/users/blandest/followers', 'https://api.github.com/users/blandest/following', 'https://api.github.com/users/blandest/gists', 'https://api.github.com/users/blandest/starred', 'https://api.github.com/users/blandest/repos', 'https://api.github.com/users/blandest/events', 'https://api.github.com/users/blandest/received_events', 0); +INSERT INTO `developer` VALUES (3798, 'bburris', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-03-25T20:31:24Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3798?v=4', 'https://api.github.com/users/bburris', 'https://github.com/bburris', 'https://api.github.com/users/bburris/followers', 'https://api.github.com/users/bburris/following', 'https://api.github.com/users/bburris/gists', 'https://api.github.com/users/bburris/starred', 'https://api.github.com/users/bburris/repos', 'https://api.github.com/users/bburris/events', 'https://api.github.com/users/bburris/received_events', 0); +INSERT INTO `developer` VALUES (3799, 'paulhammond', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Hammond', NULL, 'https://paulhammond.org', 'San Francisco', 'paul@paulhammond.org', NULL, NULL, NULL, 0, 0, 240, 72, 0, 0, 0, '2008-03-25T20:33:40Z', '2024-10-08T04:18:02Z', 'https://avatars.githubusercontent.com/u/3799?v=4', 'https://api.github.com/users/paulhammond', 'https://github.com/paulhammond', 'https://api.github.com/users/paulhammond/followers', 'https://api.github.com/users/paulhammond/following', 'https://api.github.com/users/paulhammond/gists', 'https://api.github.com/users/paulhammond/starred', 'https://api.github.com/users/paulhammond/repos', 'https://api.github.com/users/paulhammond/events', 'https://api.github.com/users/paulhammond/received_events', 0); +INSERT INTO `developer` VALUES (3801, 'jacksoncharles', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Jackson', NULL, '', 'Liverpool', NULL, 'true', 'Playing with AWS Serverless solutions and Typescript.', 'webconfection', 0, 0, 20, 3, 0, 0, 0, '2008-03-25T20:44:10Z', '2023-04-18T17:22:20Z', 'https://avatars.githubusercontent.com/u/3801?v=4', 'https://api.github.com/users/jacksoncharles', 'https://github.com/jacksoncharles', 'https://api.github.com/users/jacksoncharles/followers', 'https://api.github.com/users/jacksoncharles/following', 'https://api.github.com/users/jacksoncharles/gists', 'https://api.github.com/users/jacksoncharles/starred', 'https://api.github.com/users/jacksoncharles/repos', 'https://api.github.com/users/jacksoncharles/events', 'https://api.github.com/users/jacksoncharles/received_events', 0); +INSERT INTO `developer` VALUES (3803, 'sushimako', 'C', 0, 0, 0, 0, 0, 0, 0, 'Flo L', NULL, '', 'Vienna, Austria', NULL, NULL, NULL, NULL, 0, 0, 28, 2, 0, 0, 0, '2008-03-25T20:50:09Z', '2024-09-18T12:32:49Z', 'https://avatars.githubusercontent.com/u/3803?v=4', 'https://api.github.com/users/sushimako', 'https://github.com/sushimako', 'https://api.github.com/users/sushimako/followers', 'https://api.github.com/users/sushimako/following', 'https://api.github.com/users/sushimako/gists', 'https://api.github.com/users/sushimako/starred', 'https://api.github.com/users/sushimako/repos', 'https://api.github.com/users/sushimako/events', 'https://api.github.com/users/sushimako/received_events', 0); +INSERT INTO `developer` VALUES (3804, 'OleTraveler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Travis Stevens', NULL, 'http://www.oletraveler.com', 'USA', NULL, NULL, NULL, 'Ole_Traveler', 0, 0, 10, 8, 0, 0, 0, '2008-03-25T20:52:12Z', '2024-10-20T02:31:03Z', 'https://avatars.githubusercontent.com/u/3804?v=4', 'https://api.github.com/users/OleTraveler', 'https://github.com/OleTraveler', 'https://api.github.com/users/OleTraveler/followers', 'https://api.github.com/users/OleTraveler/following', 'https://api.github.com/users/OleTraveler/gists', 'https://api.github.com/users/OleTraveler/starred', 'https://api.github.com/users/OleTraveler/repos', 'https://api.github.com/users/OleTraveler/events', 'https://api.github.com/users/OleTraveler/received_events', 0); +INSERT INTO `developer` VALUES (3805, 'mattenat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Ittigson', 'Future Adapter', 'http://futureadapter.com', 'NYC', 'matt@futureadapter.com', NULL, NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2008-03-25T20:57:28Z', '2024-01-17T17:13:43Z', 'https://avatars.githubusercontent.com/u/3805?v=4', 'https://api.github.com/users/mattenat', 'https://github.com/mattenat', 'https://api.github.com/users/mattenat/followers', 'https://api.github.com/users/mattenat/following', 'https://api.github.com/users/mattenat/gists', 'https://api.github.com/users/mattenat/starred', 'https://api.github.com/users/mattenat/repos', 'https://api.github.com/users/mattenat/events', 'https://api.github.com/users/mattenat/received_events', 0); +INSERT INTO `developer` VALUES (3806, 'scudco', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 48, 0, 0, 0, 0, '2008-03-25T20:59:42Z', '2024-10-26T19:00:45Z', 'https://avatars.githubusercontent.com/u/3806?v=4', 'https://api.github.com/users/scudco', 'https://github.com/scudco', 'https://api.github.com/users/scudco/followers', 'https://api.github.com/users/scudco/following', 'https://api.github.com/users/scudco/gists', 'https://api.github.com/users/scudco/starred', 'https://api.github.com/users/scudco/repos', 'https://api.github.com/users/scudco/events', 'https://api.github.com/users/scudco/received_events', 0); +INSERT INTO `developer` VALUES (3808, 'tlindner', 'C', 0, 0, 0, 0, 0, 0, 0, 'tim lindner', NULL, 'http://tlindner.macmess.org', 'Portland, OR', 'tlindner@macmess.org', NULL, 'Mac, Color Computer, Intellivision Programmer, lepidopterist and a philatelist.', 'tlindner', 0, 0, 28, 18, 0, 0, 0, '2008-03-25T21:07:54Z', '2024-09-26T16:54:05Z', 'https://avatars.githubusercontent.com/u/3808?v=4', 'https://api.github.com/users/tlindner', 'https://github.com/tlindner', 'https://api.github.com/users/tlindner/followers', 'https://api.github.com/users/tlindner/following', 'https://api.github.com/users/tlindner/gists', 'https://api.github.com/users/tlindner/starred', 'https://api.github.com/users/tlindner/repos', 'https://api.github.com/users/tlindner/events', 'https://api.github.com/users/tlindner/received_events', 0); +INSERT INTO `developer` VALUES (3809, 'netshade', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Zelenak', NULL, 'http://scaleassembly.com/', 'Indianapolis, IN', NULL, NULL, NULL, NULL, 0, 0, 94, 43, 0, 0, 0, '2008-03-25T21:08:49Z', '2024-10-17T22:21:26Z', 'https://avatars.githubusercontent.com/u/3809?v=4', 'https://api.github.com/users/netshade', 'https://github.com/netshade', 'https://api.github.com/users/netshade/followers', 'https://api.github.com/users/netshade/following', 'https://api.github.com/users/netshade/gists', 'https://api.github.com/users/netshade/starred', 'https://api.github.com/users/netshade/repos', 'https://api.github.com/users/netshade/events', 'https://api.github.com/users/netshade/received_events', 0); +INSERT INTO `developer` VALUES (3810, 'rosholt', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Rosholt', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-25T21:09:10Z', '2024-08-29T18:46:15Z', 'https://avatars.githubusercontent.com/u/3810?v=4', 'https://api.github.com/users/rosholt', 'https://github.com/rosholt', 'https://api.github.com/users/rosholt/followers', 'https://api.github.com/users/rosholt/following', 'https://api.github.com/users/rosholt/gists', 'https://api.github.com/users/rosholt/starred', 'https://api.github.com/users/rosholt/repos', 'https://api.github.com/users/rosholt/events', 'https://api.github.com/users/rosholt/received_events', 0); +INSERT INTO `developer` VALUES (3811, 'jonjensen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon Jensen', NULL, '', 'Provo, Utah', NULL, NULL, NULL, NULL, 0, 0, 82, 74, 0, 0, 0, '2008-03-25T21:09:25Z', '2024-10-04T02:06:15Z', 'https://avatars.githubusercontent.com/u/3811?v=4', 'https://api.github.com/users/jonjensen', 'https://github.com/jonjensen', 'https://api.github.com/users/jonjensen/followers', 'https://api.github.com/users/jonjensen/following', 'https://api.github.com/users/jonjensen/gists', 'https://api.github.com/users/jonjensen/starred', 'https://api.github.com/users/jonjensen/repos', 'https://api.github.com/users/jonjensen/events', 'https://api.github.com/users/jonjensen/received_events', 0); +INSERT INTO `developer` VALUES (3812, 'dneumeyer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Neumeyer', 'The Indianapolis Star', '', 'Indianapolis, IN, USA', 'dan.neumeyer@indystar.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-25T21:13:36Z', '2015-04-09T19:38:46Z', 'https://avatars.githubusercontent.com/u/3812?v=4', 'https://api.github.com/users/dneumeyer', 'https://github.com/dneumeyer', 'https://api.github.com/users/dneumeyer/followers', 'https://api.github.com/users/dneumeyer/following', 'https://api.github.com/users/dneumeyer/gists', 'https://api.github.com/users/dneumeyer/starred', 'https://api.github.com/users/dneumeyer/repos', 'https://api.github.com/users/dneumeyer/events', 'https://api.github.com/users/dneumeyer/received_events', 0); +INSERT INTO `developer` VALUES (3813, 'jonthetourist', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-25T21:17:12Z', '2021-01-29T03:45:25Z', 'https://avatars.githubusercontent.com/u/3813?v=4', 'https://api.github.com/users/jonthetourist', 'https://github.com/jonthetourist', 'https://api.github.com/users/jonthetourist/followers', 'https://api.github.com/users/jonthetourist/following', 'https://api.github.com/users/jonthetourist/gists', 'https://api.github.com/users/jonthetourist/starred', 'https://api.github.com/users/jonthetourist/repos', 'https://api.github.com/users/jonthetourist/events', 'https://api.github.com/users/jonthetourist/received_events', 0); +INSERT INTO `developer` VALUES (3815, 'oneup', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Hufsky', '72dpi army', 'blawg.geeq.at', 'Austria', 'hello@geeq.at', NULL, NULL, NULL, 0, 0, 37, 14, 0, 0, 0, '2008-03-25T21:30:44Z', '2017-08-14T19:40:13Z', 'https://avatars.githubusercontent.com/u/3815?v=4', 'https://api.github.com/users/oneup', 'https://github.com/oneup', 'https://api.github.com/users/oneup/followers', 'https://api.github.com/users/oneup/following', 'https://api.github.com/users/oneup/gists', 'https://api.github.com/users/oneup/starred', 'https://api.github.com/users/oneup/repos', 'https://api.github.com/users/oneup/events', 'https://api.github.com/users/oneup/received_events', 0); +INSERT INTO `developer` VALUES (3816, 'jfairbairn', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Fairbairn', NULL, '', 'California, USA', 'james@netlagoon.com', NULL, NULL, NULL, 0, 0, 21, 11, 0, 0, 0, '2008-03-25T21:32:04Z', '2024-05-02T00:26:22Z', 'https://avatars.githubusercontent.com/u/3816?v=4', 'https://api.github.com/users/jfairbairn', 'https://github.com/jfairbairn', 'https://api.github.com/users/jfairbairn/followers', 'https://api.github.com/users/jfairbairn/following', 'https://api.github.com/users/jfairbairn/gists', 'https://api.github.com/users/jfairbairn/starred', 'https://api.github.com/users/jfairbairn/repos', 'https://api.github.com/users/jfairbairn/events', 'https://api.github.com/users/jfairbairn/received_events', 0); +INSERT INTO `developer` VALUES (3817, 'daveyeu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Yeu', '@vimeo ', '', 'NYC', 'daveyeu@gmail.com', NULL, NULL, NULL, 0, 0, 34, 0, 0, 0, 0, '2008-03-25T21:36:54Z', '2024-08-29T01:13:50Z', 'https://avatars.githubusercontent.com/u/3817?v=4', 'https://api.github.com/users/daveyeu', 'https://github.com/daveyeu', 'https://api.github.com/users/daveyeu/followers', 'https://api.github.com/users/daveyeu/following', 'https://api.github.com/users/daveyeu/gists', 'https://api.github.com/users/daveyeu/starred', 'https://api.github.com/users/daveyeu/repos', 'https://api.github.com/users/daveyeu/events', 'https://api.github.com/users/daveyeu/received_events', 0); +INSERT INTO `developer` VALUES (3818, 'EdwardBetts', 'C', 0.654779012952596, 0, 0, 0, 0, 0, 0, 'Edward Betts', NULL, 'http://edwardbetts.com/', 'Bristol, UK', 'edward@4angle.com', NULL, 'Indie Developer // Wikidata // OSM // Python // Debian // Linux // Wikipedia // Internet Archive alumni ', NULL, 0, 0, 323, 268, 0, 0, 0, '2008-03-25T21:44:36Z', '2024-11-04T10:53:43Z', 'https://avatars.githubusercontent.com/u/3818?v=4', 'https://api.github.com/users/EdwardBetts', 'https://github.com/EdwardBetts', 'https://api.github.com/users/EdwardBetts/followers', 'https://api.github.com/users/EdwardBetts/following', 'https://api.github.com/users/EdwardBetts/gists', 'https://api.github.com/users/EdwardBetts/starred', 'https://api.github.com/users/EdwardBetts/repos', 'https://api.github.com/users/EdwardBetts/events', 'https://api.github.com/users/EdwardBetts/received_events', 0); +INSERT INTO `developer` VALUES (3819, 'georges', 'C', 0, 0, 0, 0, 0, 0, 0, 'Georges Auberger', 'Ternary Labs', 'https://auberger.com', 'Interwebs', NULL, NULL, 'Fractional CTO. I help distributed teams deliver quality software early and often. If you need software development done right, contact me. Remote OG since 2010', NULL, 0, 0, 19, 3, 0, 0, 0, '2008-03-25T21:46:41Z', '2024-10-02T05:13:02Z', 'https://avatars.githubusercontent.com/u/3819?v=4', 'https://api.github.com/users/georges', 'https://github.com/georges', 'https://api.github.com/users/georges/followers', 'https://api.github.com/users/georges/following', 'https://api.github.com/users/georges/gists', 'https://api.github.com/users/georges/starred', 'https://api.github.com/users/georges/repos', 'https://api.github.com/users/georges/events', 'https://api.github.com/users/georges/received_events', 0); +INSERT INTO `developer` VALUES (3821, 'flynx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex A. Naanou', 'Moscow State University', '', 'Moscow, Russia', 'alex.nanou@gmail.com', NULL, NULL, NULL, 0, 0, 30, 21, 0, 0, 0, '2008-03-25T21:49:36Z', '2024-10-22T12:22:19Z', 'https://avatars.githubusercontent.com/u/3821?v=4', 'https://api.github.com/users/flynx', 'https://github.com/flynx', 'https://api.github.com/users/flynx/followers', 'https://api.github.com/users/flynx/following', 'https://api.github.com/users/flynx/gists', 'https://api.github.com/users/flynx/starred', 'https://api.github.com/users/flynx/repos', 'https://api.github.com/users/flynx/events', 'https://api.github.com/users/flynx/received_events', 0); +INSERT INTO `developer` VALUES (3822, 'filiptepper', 'C', 0, 0, 0, 0, 0, 0, 0, 'Filip Tepper', '@bobsled-inc', 'http://filip.tepper.pl/', 'Warsaw, Poland', 'filip@tepper.pl', NULL, 'Boring Tech, LLC.', NULL, 0, 0, 68, 0, 0, 0, 0, '2008-03-25T22:02:17Z', '2024-09-16T06:38:56Z', 'https://avatars.githubusercontent.com/u/3822?v=4', 'https://api.github.com/users/filiptepper', 'https://github.com/filiptepper', 'https://api.github.com/users/filiptepper/followers', 'https://api.github.com/users/filiptepper/following', 'https://api.github.com/users/filiptepper/gists', 'https://api.github.com/users/filiptepper/starred', 'https://api.github.com/users/filiptepper/repos', 'https://api.github.com/users/filiptepper/events', 'https://api.github.com/users/filiptepper/received_events', 0); +INSERT INTO `developer` VALUES (3823, 'speedmax', 'C', 0, 0, 0, 0, 0, 0, 0, 'Taylor luk', 'Decouple Ventures', 'https://decouple.co', 'Hong Kong, Sydney', 'subjective@gmail.com', 'true', 'Tech entrepreneur, software engineer, cypherpunk ', 'taylor_luk', 0, 0, 71, 79, 0, 0, 0, '2008-03-25T22:03:48Z', '2024-10-26T05:35:43Z', 'https://avatars.githubusercontent.com/u/3823?v=4', 'https://api.github.com/users/speedmax', 'https://github.com/speedmax', 'https://api.github.com/users/speedmax/followers', 'https://api.github.com/users/speedmax/following', 'https://api.github.com/users/speedmax/gists', 'https://api.github.com/users/speedmax/starred', 'https://api.github.com/users/speedmax/repos', 'https://api.github.com/users/speedmax/events', 'https://api.github.com/users/speedmax/received_events', 0); +INSERT INTO `developer` VALUES (3824, 'goran', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-25T22:12:03Z', '2024-09-30T13:33:39Z', 'https://avatars.githubusercontent.com/u/3824?v=4', 'https://api.github.com/users/goran', 'https://github.com/goran', 'https://api.github.com/users/goran/followers', 'https://api.github.com/users/goran/following', 'https://api.github.com/users/goran/gists', 'https://api.github.com/users/goran/starred', 'https://api.github.com/users/goran/repos', 'https://api.github.com/users/goran/events', 'https://api.github.com/users/goran/received_events', 0); +INSERT INTO `developer` VALUES (3825, 'itfrombit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Buck', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 56, 7, 0, 0, 0, '2008-03-25T22:14:29Z', '2024-08-30T23:22:05Z', 'https://avatars.githubusercontent.com/u/3825?v=4', 'https://api.github.com/users/itfrombit', 'https://github.com/itfrombit', 'https://api.github.com/users/itfrombit/followers', 'https://api.github.com/users/itfrombit/following', 'https://api.github.com/users/itfrombit/gists', 'https://api.github.com/users/itfrombit/starred', 'https://api.github.com/users/itfrombit/repos', 'https://api.github.com/users/itfrombit/events', 'https://api.github.com/users/itfrombit/received_events', 0); +INSERT INTO `developer` VALUES (3826, 'natedog', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-03-25T22:27:38Z', '2022-07-12T16:26:46Z', 'https://avatars.githubusercontent.com/u/3826?v=4', 'https://api.github.com/users/natedog', 'https://github.com/natedog', 'https://api.github.com/users/natedog/followers', 'https://api.github.com/users/natedog/following', 'https://api.github.com/users/natedog/gists', 'https://api.github.com/users/natedog/starred', 'https://api.github.com/users/natedog/repos', 'https://api.github.com/users/natedog/events', 'https://api.github.com/users/natedog/received_events', 0); +INSERT INTO `developer` VALUES (3827, 'codebutler', 'C', 10.08646687512652, 0, 0, 0, 0, 0, 0, 'Eric Butler', NULL, 'http://codebutler.com/', 'Brooklyn, NY', 'eric@codebutler.com', 'true', NULL, NULL, 0, 0, 873, 44, 0, 0, 0, '2008-03-25T22:32:32Z', '2024-10-20T15:26:55Z', 'https://avatars.githubusercontent.com/u/3827?v=4', 'https://api.github.com/users/codebutler', 'https://github.com/codebutler', 'https://api.github.com/users/codebutler/followers', 'https://api.github.com/users/codebutler/following', 'https://api.github.com/users/codebutler/gists', 'https://api.github.com/users/codebutler/starred', 'https://api.github.com/users/codebutler/repos', 'https://api.github.com/users/codebutler/events', 'https://api.github.com/users/codebutler/received_events', 0); +INSERT INTO `developer` VALUES (3828, 'tbuser', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tony Buser', NULL, 'http://tonybuser.com', 'Belle Mead, NJ', 'tbuser@gmail.com', NULL, NULL, NULL, 0, 0, 109, 15, 0, 0, 0, '2008-03-25T22:37:13Z', '2022-11-27T16:29:07Z', 'https://avatars.githubusercontent.com/u/3828?v=4', 'https://api.github.com/users/tbuser', 'https://github.com/tbuser', 'https://api.github.com/users/tbuser/followers', 'https://api.github.com/users/tbuser/following', 'https://api.github.com/users/tbuser/gists', 'https://api.github.com/users/tbuser/starred', 'https://api.github.com/users/tbuser/repos', 'https://api.github.com/users/tbuser/events', 'https://api.github.com/users/tbuser/received_events', 0); +INSERT INTO `developer` VALUES (3830, 'porras', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergio Gil Pérez de la Manga', NULL, '', 'Berlin', 'sgilperez@gmail.com', 'true', NULL, NULL, 0, 0, 174, 53, 0, 0, 0, '2008-03-25T22:45:36Z', '2024-09-27T07:56:35Z', 'https://avatars.githubusercontent.com/u/3830?v=4', 'https://api.github.com/users/porras', 'https://github.com/porras', 'https://api.github.com/users/porras/followers', 'https://api.github.com/users/porras/following', 'https://api.github.com/users/porras/gists', 'https://api.github.com/users/porras/starred', 'https://api.github.com/users/porras/repos', 'https://api.github.com/users/porras/events', 'https://api.github.com/users/porras/received_events', 0); +INSERT INTO `developer` VALUES (3831, 'jks', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-25T22:49:25Z', '2021-09-16T03:05:16Z', 'https://avatars.githubusercontent.com/u/3831?v=4', 'https://api.github.com/users/jks', 'https://github.com/jks', 'https://api.github.com/users/jks/followers', 'https://api.github.com/users/jks/following', 'https://api.github.com/users/jks/gists', 'https://api.github.com/users/jks/starred', 'https://api.github.com/users/jks/repos', 'https://api.github.com/users/jks/events', 'https://api.github.com/users/jks/received_events', 0); +INSERT INTO `developer` VALUES (3832, 'bomberstudios', 'C', 6.605316627815055, 0, 0, 0, 0, 0, 0, 'Ale Muñoz', '@qatium ', 'https://ale.today', 'Working Remotely', 'bomberstudios@gmail.com', NULL, 'Digital toolsmith, designer & book junkie. Spends too much time building software to work less.', 'bomberstudios', 0, 0, 670, 88, 0, 0, 0, '2008-03-25T22:52:58Z', '2024-10-29T10:38:18Z', 'https://avatars.githubusercontent.com/u/3832?v=4', 'https://api.github.com/users/bomberstudios', 'https://github.com/bomberstudios', 'https://api.github.com/users/bomberstudios/followers', 'https://api.github.com/users/bomberstudios/following', 'https://api.github.com/users/bomberstudios/gists', 'https://api.github.com/users/bomberstudios/starred', 'https://api.github.com/users/bomberstudios/repos', 'https://api.github.com/users/bomberstudios/events', 'https://api.github.com/users/bomberstudios/received_events', 0); +INSERT INTO `developer` VALUES (3834, 'dams', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damien Krotkine', 'Alan', 'http://damien.krotkine.com/', 'France', 'dams@zarb.org', NULL, NULL, NULL, 0, 0, 84, 25, 0, 0, 0, '2008-03-25T23:10:32Z', '2024-08-09T10:57:05Z', 'https://avatars.githubusercontent.com/u/3834?v=4', 'https://api.github.com/users/dams', 'https://github.com/dams', 'https://api.github.com/users/dams/followers', 'https://api.github.com/users/dams/following', 'https://api.github.com/users/dams/gists', 'https://api.github.com/users/dams/starred', 'https://api.github.com/users/dams/repos', 'https://api.github.com/users/dams/events', 'https://api.github.com/users/dams/received_events', 0); +INSERT INTO `developer` VALUES (3835, 'nowa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nowa Zhu', NULL, 'https://nowa.im', 'Singapore', 'nowazhu@gmail.com', NULL, 'Be a block of the world.', NULL, 0, 0, 149, 20, 0, 0, 0, '2008-03-25T23:14:01Z', '2024-10-14T05:40:38Z', 'https://avatars.githubusercontent.com/u/3835?v=4', 'https://api.github.com/users/nowa', 'https://github.com/nowa', 'https://api.github.com/users/nowa/followers', 'https://api.github.com/users/nowa/following', 'https://api.github.com/users/nowa/gists', 'https://api.github.com/users/nowa/starred', 'https://api.github.com/users/nowa/repos', 'https://api.github.com/users/nowa/events', 'https://api.github.com/users/nowa/received_events', 0); +INSERT INTO `developer` VALUES (3836, 'HP', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hans Petter Wilhelmsen', NULL, 'https://hanspetter.no', 'Bergen, Norway', 'hp@hanspetter.no', NULL, NULL, 'hanspetter', 0, 0, 27, 35, 0, 0, 0, '2008-03-25T23:18:57Z', '2024-11-02T06:37:12Z', 'https://avatars.githubusercontent.com/u/3836?v=4', 'https://api.github.com/users/HP', 'https://github.com/HP', 'https://api.github.com/users/HP/followers', 'https://api.github.com/users/HP/following', 'https://api.github.com/users/HP/gists', 'https://api.github.com/users/HP/starred', 'https://api.github.com/users/HP/repos', 'https://api.github.com/users/HP/events', 'https://api.github.com/users/HP/received_events', 0); +INSERT INTO `developer` VALUES (3838, 'corey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Corey Reece', NULL, '', 'Bay Area, CA', NULL, 'true', 'O.G.', NULL, 0, 0, 81, 159, 0, 0, 0, '2008-03-25T23:42:13Z', '2024-10-21T00:06:53Z', 'https://avatars.githubusercontent.com/u/3838?v=4', 'https://api.github.com/users/corey', 'https://github.com/corey', 'https://api.github.com/users/corey/followers', 'https://api.github.com/users/corey/following', 'https://api.github.com/users/corey/gists', 'https://api.github.com/users/corey/starred', 'https://api.github.com/users/corey/repos', 'https://api.github.com/users/corey/events', 'https://api.github.com/users/corey/received_events', 0); +INSERT INTO `developer` VALUES (3841, 'map-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-25T23:51:01Z', '2016-02-26T22:35:01Z', 'https://avatars.githubusercontent.com/u/3841?v=4', 'https://api.github.com/users/map-zz', 'https://github.com/map-zz', 'https://api.github.com/users/map-zz/followers', 'https://api.github.com/users/map-zz/following', 'https://api.github.com/users/map-zz/gists', 'https://api.github.com/users/map-zz/starred', 'https://api.github.com/users/map-zz/repos', 'https://api.github.com/users/map-zz/events', 'https://api.github.com/users/map-zz/received_events', 0); +INSERT INTO `developer` VALUES (3842, 'alvarocamba', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-25T23:51:24Z', '2016-08-23T15:40:35Z', 'https://avatars.githubusercontent.com/u/3842?v=4', 'https://api.github.com/users/alvarocamba', 'https://github.com/alvarocamba', 'https://api.github.com/users/alvarocamba/followers', 'https://api.github.com/users/alvarocamba/following', 'https://api.github.com/users/alvarocamba/gists', 'https://api.github.com/users/alvarocamba/starred', 'https://api.github.com/users/alvarocamba/repos', 'https://api.github.com/users/alvarocamba/events', 'https://api.github.com/users/alvarocamba/received_events', 0); +INSERT INTO `developer` VALUES (3843, 'mokeefe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt O\'Keefe', NULL, '', '未知', 'matt@mattokeefe.com', NULL, NULL, NULL, 0, 0, 30, 40, 0, 0, 0, '2008-03-25T23:51:50Z', '2020-03-31T17:51:10Z', 'https://avatars.githubusercontent.com/u/3843?v=4', 'https://api.github.com/users/mokeefe', 'https://github.com/mokeefe', 'https://api.github.com/users/mokeefe/followers', 'https://api.github.com/users/mokeefe/following', 'https://api.github.com/users/mokeefe/gists', 'https://api.github.com/users/mokeefe/starred', 'https://api.github.com/users/mokeefe/repos', 'https://api.github.com/users/mokeefe/events', 'https://api.github.com/users/mokeefe/received_events', 0); +INSERT INTO `developer` VALUES (3844, 'dougbarth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Barth', '@spirl ', 'http://dougbarth.github.com', 'Bridgeville, PA', 'dougbarth@gmail.com', NULL, NULL, NULL, 0, 0, 46, 2, 0, 0, 0, '2008-03-25T23:58:17Z', '2024-09-17T13:15:11Z', 'https://avatars.githubusercontent.com/u/3844?v=4', 'https://api.github.com/users/dougbarth', 'https://github.com/dougbarth', 'https://api.github.com/users/dougbarth/followers', 'https://api.github.com/users/dougbarth/following', 'https://api.github.com/users/dougbarth/gists', 'https://api.github.com/users/dougbarth/starred', 'https://api.github.com/users/dougbarth/repos', 'https://api.github.com/users/dougbarth/events', 'https://api.github.com/users/dougbarth/received_events', 0); +INSERT INTO `developer` VALUES (3845, 'psynix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Psynix', NULL, '', 'Melbourne, Australia', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-26T00:02:51Z', '2024-10-21T02:18:13Z', 'https://avatars.githubusercontent.com/u/3845?v=4', 'https://api.github.com/users/psynix', 'https://github.com/psynix', 'https://api.github.com/users/psynix/followers', 'https://api.github.com/users/psynix/following', 'https://api.github.com/users/psynix/gists', 'https://api.github.com/users/psynix/starred', 'https://api.github.com/users/psynix/repos', 'https://api.github.com/users/psynix/events', 'https://api.github.com/users/psynix/received_events', 0); +INSERT INTO `developer` VALUES (3847, 'evmar', 'C', 9.349080369538378, 0, 0, 0, 0, 0, 0, 'Evan Martin', NULL, 'https://neugierig.org', '未知', 'evan.martin@gmail.com', NULL, NULL, 'evmar', 0, 0, 830, 14, 0, 0, 0, '2008-03-26T00:45:05Z', '2024-10-12T17:47:47Z', 'https://avatars.githubusercontent.com/u/3847?v=4', 'https://api.github.com/users/evmar', 'https://github.com/evmar', 'https://api.github.com/users/evmar/followers', 'https://api.github.com/users/evmar/following', 'https://api.github.com/users/evmar/gists', 'https://api.github.com/users/evmar/starred', 'https://api.github.com/users/evmar/repos', 'https://api.github.com/users/evmar/events', 'https://api.github.com/users/evmar/received_events', 0); +INSERT INTO `developer` VALUES (3849, 'ubuntufreak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anand Prabhu', NULL, 'http://ubuntufreak.in', 'India', NULL, NULL, 'Mobile and web application developer', NULL, 0, 0, 28, 79, 0, 0, 0, '2008-03-26T01:15:12Z', '2018-08-27T07:16:55Z', 'https://avatars.githubusercontent.com/u/3849?v=4', 'https://api.github.com/users/ubuntufreak', 'https://github.com/ubuntufreak', 'https://api.github.com/users/ubuntufreak/followers', 'https://api.github.com/users/ubuntufreak/following', 'https://api.github.com/users/ubuntufreak/gists', 'https://api.github.com/users/ubuntufreak/starred', 'https://api.github.com/users/ubuntufreak/repos', 'https://api.github.com/users/ubuntufreak/events', 'https://api.github.com/users/ubuntufreak/received_events', 0); +INSERT INTO `developer` VALUES (3850, 'jorbsd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jordan Breeding', NULL, 'http://www.jorbsd.com', 'Campbell, CA', 'jorbsd@me.com', NULL, NULL, NULL, 0, 0, 33, 23, 0, 0, 0, '2008-03-26T01:22:15Z', '2017-08-14T19:39:43Z', 'https://avatars.githubusercontent.com/u/3850?v=4', 'https://api.github.com/users/jorbsd', 'https://github.com/jorbsd', 'https://api.github.com/users/jorbsd/followers', 'https://api.github.com/users/jorbsd/following', 'https://api.github.com/users/jorbsd/gists', 'https://api.github.com/users/jorbsd/starred', 'https://api.github.com/users/jorbsd/repos', 'https://api.github.com/users/jorbsd/events', 'https://api.github.com/users/jorbsd/received_events', 0); +INSERT INTO `developer` VALUES (3851, 'Wang', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guoqiang', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2008-03-26T01:25:59Z', '2024-11-04T00:57:00Z', 'https://avatars.githubusercontent.com/u/3851?v=4', 'https://api.github.com/users/Wang', 'https://github.com/Wang', 'https://api.github.com/users/Wang/followers', 'https://api.github.com/users/Wang/following', 'https://api.github.com/users/Wang/gists', 'https://api.github.com/users/Wang/starred', 'https://api.github.com/users/Wang/repos', 'https://api.github.com/users/Wang/events', 'https://api.github.com/users/Wang/received_events', 0); +INSERT INTO `developer` VALUES (3852, 'daxpayne', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-26T01:26:00Z', '2019-05-18T14:46:38Z', 'https://avatars.githubusercontent.com/u/3852?v=4', 'https://api.github.com/users/daxpayne', 'https://github.com/daxpayne', 'https://api.github.com/users/daxpayne/followers', 'https://api.github.com/users/daxpayne/following', 'https://api.github.com/users/daxpayne/gists', 'https://api.github.com/users/daxpayne/starred', 'https://api.github.com/users/daxpayne/repos', 'https://api.github.com/users/daxpayne/events', 'https://api.github.com/users/daxpayne/received_events', 0); +INSERT INTO `developer` VALUES (3853, 'justinabrahms', 'C', 5.387771467425329, 0, 0, 0, 0, 0, 0, 'Justin Abrahms', 'Thrive Market', 'http://justin.abrah.ms', 'Portland, OR', 'justin@abrah.ms', NULL, NULL, NULL, 0, 0, 599, 98, 0, 0, 0, '2008-03-26T01:32:23Z', '2024-09-27T16:02:10Z', 'https://avatars.githubusercontent.com/u/3853?v=4', 'https://api.github.com/users/justinabrahms', 'https://github.com/justinabrahms', 'https://api.github.com/users/justinabrahms/followers', 'https://api.github.com/users/justinabrahms/following', 'https://api.github.com/users/justinabrahms/gists', 'https://api.github.com/users/justinabrahms/starred', 'https://api.github.com/users/justinabrahms/repos', 'https://api.github.com/users/justinabrahms/events', 'https://api.github.com/users/justinabrahms/received_events', 0); +INSERT INTO `developer` VALUES (3856, 'mrluanma', 'C', 3.0212752401889618, 0, 0, 0, 0, 0, 0, 'Zhao Xiaohong', NULL, 'http://mrluanma.github.io', 'Shanghai, China', 'mrluanma@gmail.com', 'true', NULL, 'mrluanma', 0, 0, 461, 5105, 0, 0, 0, '2008-03-26T02:00:19Z', '2024-03-10T15:27:17Z', 'https://avatars.githubusercontent.com/u/3856?v=4', 'https://api.github.com/users/mrluanma', 'https://github.com/mrluanma', 'https://api.github.com/users/mrluanma/followers', 'https://api.github.com/users/mrluanma/following', 'https://api.github.com/users/mrluanma/gists', 'https://api.github.com/users/mrluanma/starred', 'https://api.github.com/users/mrluanma/repos', 'https://api.github.com/users/mrluanma/events', 'https://api.github.com/users/mrluanma/received_events', 0); +INSERT INTO `developer` VALUES (3857, 'lucashungaro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lucas Húngaro', '+Subscribe', 'http://blog.lucashungaro.com', 'Porto, Portugal', 'lucashungaro@gmail.com', NULL, NULL, NULL, 0, 0, 116, 10, 0, 0, 0, '2008-03-26T02:28:14Z', '2024-09-23T15:36:16Z', 'https://avatars.githubusercontent.com/u/3857?v=4', 'https://api.github.com/users/lucashungaro', 'https://github.com/lucashungaro', 'https://api.github.com/users/lucashungaro/followers', 'https://api.github.com/users/lucashungaro/following', 'https://api.github.com/users/lucashungaro/gists', 'https://api.github.com/users/lucashungaro/starred', 'https://api.github.com/users/lucashungaro/repos', 'https://api.github.com/users/lucashungaro/events', 'https://api.github.com/users/lucashungaro/received_events', 0); +INSERT INTO `developer` VALUES (3858, 'gopaczewski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Opaczewski', '@conversant ', '', 'Chicago, IL', 'gopaczewski@gmail.com', 'true', NULL, NULL, 0, 0, 25, 5, 0, 0, 0, '2008-03-26T02:37:41Z', '2024-07-25T18:26:22Z', 'https://avatars.githubusercontent.com/u/3858?v=4', 'https://api.github.com/users/gopaczewski', 'https://github.com/gopaczewski', 'https://api.github.com/users/gopaczewski/followers', 'https://api.github.com/users/gopaczewski/following', 'https://api.github.com/users/gopaczewski/gists', 'https://api.github.com/users/gopaczewski/starred', 'https://api.github.com/users/gopaczewski/repos', 'https://api.github.com/users/gopaczewski/events', 'https://api.github.com/users/gopaczewski/received_events', 0); +INSERT INTO `developer` VALUES (3859, 'hannahwhy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hannah Yip', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-26T02:57:31Z', '2022-06-16T19:44:36Z', 'https://avatars.githubusercontent.com/u/3859?v=4', 'https://api.github.com/users/hannahwhy', 'https://github.com/hannahwhy', 'https://api.github.com/users/hannahwhy/followers', 'https://api.github.com/users/hannahwhy/following', 'https://api.github.com/users/hannahwhy/gists', 'https://api.github.com/users/hannahwhy/starred', 'https://api.github.com/users/hannahwhy/repos', 'https://api.github.com/users/hannahwhy/events', 'https://api.github.com/users/hannahwhy/received_events', 0); +INSERT INTO `developer` VALUES (3860, 'hmoniaga', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-26T03:06:27Z', '2020-04-13T15:12:40Z', 'https://avatars.githubusercontent.com/u/3860?v=4', 'https://api.github.com/users/hmoniaga', 'https://github.com/hmoniaga', 'https://api.github.com/users/hmoniaga/followers', 'https://api.github.com/users/hmoniaga/following', 'https://api.github.com/users/hmoniaga/gists', 'https://api.github.com/users/hmoniaga/starred', 'https://api.github.com/users/hmoniaga/repos', 'https://api.github.com/users/hmoniaga/events', 'https://api.github.com/users/hmoniaga/received_events', 0); +INSERT INTO `developer` VALUES (3862, 'kenwiesner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ken Wiesner', NULL, 'http://www.kenwiesner.com', 'Hoffman Estates, IL', 'ken.wiesner@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-26T03:32:49Z', '2024-02-29T14:30:42Z', 'https://avatars.githubusercontent.com/u/3862?v=4', 'https://api.github.com/users/kenwiesner', 'https://github.com/kenwiesner', 'https://api.github.com/users/kenwiesner/followers', 'https://api.github.com/users/kenwiesner/following', 'https://api.github.com/users/kenwiesner/gists', 'https://api.github.com/users/kenwiesner/starred', 'https://api.github.com/users/kenwiesner/repos', 'https://api.github.com/users/kenwiesner/events', 'https://api.github.com/users/kenwiesner/received_events', 0); +INSERT INTO `developer` VALUES (3863, 'Sen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sen', NULL, 'http://sen.github.io/', 'China', NULL, NULL, NULL, NULL, 0, 0, 37, 17, 0, 0, 0, '2008-03-26T03:33:42Z', '2024-09-30T03:49:12Z', 'https://avatars.githubusercontent.com/u/3863?v=4', 'https://api.github.com/users/Sen', 'https://github.com/Sen', 'https://api.github.com/users/Sen/followers', 'https://api.github.com/users/Sen/following', 'https://api.github.com/users/Sen/gists', 'https://api.github.com/users/Sen/starred', 'https://api.github.com/users/Sen/repos', 'https://api.github.com/users/Sen/events', 'https://api.github.com/users/Sen/received_events', 0); +INSERT INTO `developer` VALUES (3864, 'zengjie', 'C', 0, 0, 0, 0, 0, 0, 0, 'zengjie', 'Vertex Games', '', 'Singapore', 'zengjie@gmail.com', NULL, NULL, NULL, 0, 0, 36, 64, 0, 0, 0, '2008-03-26T03:35:35Z', '2024-10-23T05:31:50Z', 'https://avatars.githubusercontent.com/u/3864?v=4', 'https://api.github.com/users/zengjie', 'https://github.com/zengjie', 'https://api.github.com/users/zengjie/followers', 'https://api.github.com/users/zengjie/following', 'https://api.github.com/users/zengjie/gists', 'https://api.github.com/users/zengjie/starred', 'https://api.github.com/users/zengjie/repos', 'https://api.github.com/users/zengjie/events', 'https://api.github.com/users/zengjie/received_events', 0); +INSERT INTO `developer` VALUES (3865, 'tristanking', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tristan King', 'James Cook University', '', 'Townesille, Australia', 'tristan.king@jcu.edu.au', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-26T03:35:37Z', '2016-02-26T22:35:01Z', 'https://avatars.githubusercontent.com/u/3865?v=4', 'https://api.github.com/users/tristanking', 'https://github.com/tristanking', 'https://api.github.com/users/tristanking/followers', 'https://api.github.com/users/tristanking/following', 'https://api.github.com/users/tristanking/gists', 'https://api.github.com/users/tristanking/starred', 'https://api.github.com/users/tristanking/repos', 'https://api.github.com/users/tristanking/events', 'https://api.github.com/users/tristanking/received_events', 0); +INSERT INTO `developer` VALUES (3866, 'notahat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pete Yandell', NULL, 'http://notahat.com/', 'Melbourne, Australia', 'pete@notahat.com', NULL, 'Software engineer/architect, based in Melbourne, Australia.', 'notahat', 0, 0, 224, 5, 0, 0, 0, '2008-03-26T03:38:40Z', '2024-08-08T10:53:22Z', 'https://avatars.githubusercontent.com/u/3866?v=4', 'https://api.github.com/users/notahat', 'https://github.com/notahat', 'https://api.github.com/users/notahat/followers', 'https://api.github.com/users/notahat/following', 'https://api.github.com/users/notahat/gists', 'https://api.github.com/users/notahat/starred', 'https://api.github.com/users/notahat/repos', 'https://api.github.com/users/notahat/events', 'https://api.github.com/users/notahat/received_events', 0); +INSERT INTO `developer` VALUES (3867, 'rayvinly', 'C', 0.8091157234245331, 0, 0, 0, 0, 0, 0, 'Raymond Law', 'Clean Swift', 'https://clean-swift.com', 'USA', 'ray@clean-swift.com', 'true', NULL, 'rayvinly', 0, 0, 332, 35, 0, 0, 0, '2008-03-26T03:53:17Z', '2022-11-28T03:19:56Z', 'https://avatars.githubusercontent.com/u/3867?v=4', 'https://api.github.com/users/rayvinly', 'https://github.com/rayvinly', 'https://api.github.com/users/rayvinly/followers', 'https://api.github.com/users/rayvinly/following', 'https://api.github.com/users/rayvinly/gists', 'https://api.github.com/users/rayvinly/starred', 'https://api.github.com/users/rayvinly/repos', 'https://api.github.com/users/rayvinly/events', 'https://api.github.com/users/rayvinly/received_events', 0); +INSERT INTO `developer` VALUES (3868, 'mthomas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Thomas', NULL, '', 'New York, NY', 'mbthomas@gmail.com', NULL, NULL, NULL, 0, 0, 23, 27, 0, 0, 0, '2008-03-26T04:06:14Z', '2021-08-03T00:17:56Z', 'https://avatars.githubusercontent.com/u/3868?v=4', 'https://api.github.com/users/mthomas', 'https://github.com/mthomas', 'https://api.github.com/users/mthomas/followers', 'https://api.github.com/users/mthomas/following', 'https://api.github.com/users/mthomas/gists', 'https://api.github.com/users/mthomas/starred', 'https://api.github.com/users/mthomas/repos', 'https://api.github.com/users/mthomas/events', 'https://api.github.com/users/mthomas/received_events', 0); +INSERT INTO `developer` VALUES (3869, 'zachhale', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zach Hale', NULL, 'http://zachhale.com', 'Seattle, WA', 'zachhale@gmail.com', NULL, NULL, NULL, 0, 0, 95, 63, 0, 0, 0, '2008-03-26T04:10:45Z', '2024-06-20T01:01:31Z', 'https://avatars.githubusercontent.com/u/3869?v=4', 'https://api.github.com/users/zachhale', 'https://github.com/zachhale', 'https://api.github.com/users/zachhale/followers', 'https://api.github.com/users/zachhale/following', 'https://api.github.com/users/zachhale/gists', 'https://api.github.com/users/zachhale/starred', 'https://api.github.com/users/zachhale/repos', 'https://api.github.com/users/zachhale/events', 'https://api.github.com/users/zachhale/received_events', 0); +INSERT INTO `developer` VALUES (3872, 'rohankini', 'C', 0, 0, 0, 0, 0, 0, 0, 'ROhan Kini', 'ThoughtWorks, BumsOnTheSaddle', 'http://bumsonthesaddle.com/', 'Bangalore, India', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2008-03-26T04:55:11Z', '2020-11-08T21:37:12Z', 'https://avatars.githubusercontent.com/u/3872?v=4', 'https://api.github.com/users/rohankini', 'https://github.com/rohankini', 'https://api.github.com/users/rohankini/followers', 'https://api.github.com/users/rohankini/following', 'https://api.github.com/users/rohankini/gists', 'https://api.github.com/users/rohankini/starred', 'https://api.github.com/users/rohankini/repos', 'https://api.github.com/users/rohankini/events', 'https://api.github.com/users/rohankini/received_events', 0); +INSERT INTO `developer` VALUES (3873, 'comatosekid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ajay Kapal', NULL, 'www.ajaykapal.com', 'Ottawa, CA', 'ajay@fonefu.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-26T06:09:47Z', '2022-09-29T16:12:22Z', 'https://avatars.githubusercontent.com/u/3873?v=4', 'https://api.github.com/users/comatosekid', 'https://github.com/comatosekid', 'https://api.github.com/users/comatosekid/followers', 'https://api.github.com/users/comatosekid/following', 'https://api.github.com/users/comatosekid/gists', 'https://api.github.com/users/comatosekid/starred', 'https://api.github.com/users/comatosekid/repos', 'https://api.github.com/users/comatosekid/events', 'https://api.github.com/users/comatosekid/received_events', 0); +INSERT INTO `developer` VALUES (3876, 'kevinni', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-26T07:01:20Z', '2015-04-17T19:47:02Z', 'https://avatars.githubusercontent.com/u/3876?v=4', 'https://api.github.com/users/kevinni', 'https://github.com/kevinni', 'https://api.github.com/users/kevinni/followers', 'https://api.github.com/users/kevinni/following', 'https://api.github.com/users/kevinni/gists', 'https://api.github.com/users/kevinni/starred', 'https://api.github.com/users/kevinni/repos', 'https://api.github.com/users/kevinni/events', 'https://api.github.com/users/kevinni/received_events', 0); +INSERT INTO `developer` VALUES (3878, 'isak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Isaksson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-26T07:30:20Z', '2024-04-29T04:51:15Z', 'https://avatars.githubusercontent.com/u/3878?v=4', 'https://api.github.com/users/isak', 'https://github.com/isak', 'https://api.github.com/users/isak/followers', 'https://api.github.com/users/isak/following', 'https://api.github.com/users/isak/gists', 'https://api.github.com/users/isak/starred', 'https://api.github.com/users/isak/repos', 'https://api.github.com/users/isak/events', 'https://api.github.com/users/isak/received_events', 0); +INSERT INTO `developer` VALUES (3879, 'MerlinDMC', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Malon', NULL, '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 40, 1, 0, 0, 0, '2008-03-26T07:55:08Z', '2024-10-31T16:46:04Z', 'https://avatars.githubusercontent.com/u/3879?v=4', 'https://api.github.com/users/MerlinDMC', 'https://github.com/MerlinDMC', 'https://api.github.com/users/MerlinDMC/followers', 'https://api.github.com/users/MerlinDMC/following', 'https://api.github.com/users/MerlinDMC/gists', 'https://api.github.com/users/MerlinDMC/starred', 'https://api.github.com/users/MerlinDMC/repos', 'https://api.github.com/users/MerlinDMC/events', 'https://api.github.com/users/MerlinDMC/received_events', 0); +INSERT INTO `developer` VALUES (3881, 'nickolai', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nickolai Leschov', NULL, '', 'Kutaisi, ex. St.-Petersburg, Russia', 'nleschov@gmail.com', NULL, 'nostr: npub1d0ne05dgy7lnlazh7namumcj0fzg7ja6yk8du8yams5xcev3s4gqsk92vq', NULL, 0, 0, 4, 7, 0, 0, 0, '2008-03-26T08:38:04Z', '2024-08-11T17:07:04Z', 'https://avatars.githubusercontent.com/u/3881?v=4', 'https://api.github.com/users/nickolai', 'https://github.com/nickolai', 'https://api.github.com/users/nickolai/followers', 'https://api.github.com/users/nickolai/following', 'https://api.github.com/users/nickolai/gists', 'https://api.github.com/users/nickolai/starred', 'https://api.github.com/users/nickolai/repos', 'https://api.github.com/users/nickolai/events', 'https://api.github.com/users/nickolai/received_events', 0); +INSERT INTO `developer` VALUES (3882, 'cahe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maciej Janowski', 'Black Hat', 'http://cahe.pl', 'Poland/Warsaw', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-03-26T09:00:09Z', '2024-05-15T23:54:47Z', 'https://avatars.githubusercontent.com/u/3882?v=4', 'https://api.github.com/users/cahe', 'https://github.com/cahe', 'https://api.github.com/users/cahe/followers', 'https://api.github.com/users/cahe/following', 'https://api.github.com/users/cahe/gists', 'https://api.github.com/users/cahe/starred', 'https://api.github.com/users/cahe/repos', 'https://api.github.com/users/cahe/events', 'https://api.github.com/users/cahe/received_events', 0); +INSERT INTO `developer` VALUES (3883, 'rarepleasures', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anthony Green', NULL, 'blog.rarepleasures.com', 'London', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2008-03-26T09:06:39Z', '2020-05-07T09:24:20Z', 'https://avatars.githubusercontent.com/u/3883?v=4', 'https://api.github.com/users/rarepleasures', 'https://github.com/rarepleasures', 'https://api.github.com/users/rarepleasures/followers', 'https://api.github.com/users/rarepleasures/following', 'https://api.github.com/users/rarepleasures/gists', 'https://api.github.com/users/rarepleasures/starred', 'https://api.github.com/users/rarepleasures/repos', 'https://api.github.com/users/rarepleasures/events', 'https://api.github.com/users/rarepleasures/received_events', 0); +INSERT INTO `developer` VALUES (3884, 'DataWraith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johannes Holzfuß', NULL, '', 'Mainz, Germany', 'johannes@holzfuss.name', NULL, NULL, NULL, 0, 0, 26, 4, 0, 0, 0, '2008-03-26T09:15:30Z', '2024-10-10T13:55:13Z', 'https://avatars.githubusercontent.com/u/3884?v=4', 'https://api.github.com/users/DataWraith', 'https://github.com/DataWraith', 'https://api.github.com/users/DataWraith/followers', 'https://api.github.com/users/DataWraith/following', 'https://api.github.com/users/DataWraith/gists', 'https://api.github.com/users/DataWraith/starred', 'https://api.github.com/users/DataWraith/repos', 'https://api.github.com/users/DataWraith/events', 'https://api.github.com/users/DataWraith/received_events', 0); +INSERT INTO `developer` VALUES (3885, 'shinyford', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nic Ford', 'Ascential', '', 'London, UK', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-26T09:43:13Z', '2024-10-25T09:21:59Z', 'https://avatars.githubusercontent.com/u/3885?v=4', 'https://api.github.com/users/shinyford', 'https://github.com/shinyford', 'https://api.github.com/users/shinyford/followers', 'https://api.github.com/users/shinyford/following', 'https://api.github.com/users/shinyford/gists', 'https://api.github.com/users/shinyford/starred', 'https://api.github.com/users/shinyford/repos', 'https://api.github.com/users/shinyford/events', 'https://api.github.com/users/shinyford/received_events', 0); +INSERT INTO `developer` VALUES (3886, 'sconrad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen Conrad', 'Tridigital Solutions', 'http://www.tridigital.com.au', 'Tasmania, Australia', 'sconrad@tridigital.com.au', NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2008-03-26T10:11:35Z', '2023-07-20T09:03:47Z', 'https://avatars.githubusercontent.com/u/3886?v=4', 'https://api.github.com/users/sconrad', 'https://github.com/sconrad', 'https://api.github.com/users/sconrad/followers', 'https://api.github.com/users/sconrad/following', 'https://api.github.com/users/sconrad/gists', 'https://api.github.com/users/sconrad/starred', 'https://api.github.com/users/sconrad/repos', 'https://api.github.com/users/sconrad/events', 'https://api.github.com/users/sconrad/received_events', 0); +INSERT INTO `developer` VALUES (3890, 'alokjain', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 5, 0, 0, 0, '2008-03-26T11:22:48Z', '2019-07-27T16:22:35Z', 'https://avatars.githubusercontent.com/u/3890?v=4', 'https://api.github.com/users/alokjain', 'https://github.com/alokjain', 'https://api.github.com/users/alokjain/followers', 'https://api.github.com/users/alokjain/following', 'https://api.github.com/users/alokjain/gists', 'https://api.github.com/users/alokjain/starred', 'https://api.github.com/users/alokjain/repos', 'https://api.github.com/users/alokjain/events', 'https://api.github.com/users/alokjain/received_events', 0); +INSERT INTO `developer` VALUES (3891, 'michelegera', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michele Gerarduzzi', NULL, 'michelegera.dev', 'Venice, Italy', 'hello@michelegera.dev', 'true', 'Staff Front-End Engineer @qonto', NULL, 0, 0, 41, 1, 0, 0, 0, '2008-03-26T11:35:44Z', '2024-09-22T10:25:13Z', 'https://avatars.githubusercontent.com/u/3891?v=4', 'https://api.github.com/users/michelegera', 'https://github.com/michelegera', 'https://api.github.com/users/michelegera/followers', 'https://api.github.com/users/michelegera/following', 'https://api.github.com/users/michelegera/gists', 'https://api.github.com/users/michelegera/starred', 'https://api.github.com/users/michelegera/repos', 'https://api.github.com/users/michelegera/events', 'https://api.github.com/users/michelegera/received_events', 0); +INSERT INTO `developer` VALUES (3892, 'oscardelben', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oscar Del Ben', 'Google Inc', 'http://oscardelben.com', 'Zurich', 'oscar@oscardelben.com', 'true', NULL, NULL, 0, 0, 268, 16, 0, 0, 0, '2008-03-26T11:43:11Z', '2022-03-05T18:02:53Z', 'https://avatars.githubusercontent.com/u/3892?v=4', 'https://api.github.com/users/oscardelben', 'https://github.com/oscardelben', 'https://api.github.com/users/oscardelben/followers', 'https://api.github.com/users/oscardelben/following', 'https://api.github.com/users/oscardelben/gists', 'https://api.github.com/users/oscardelben/starred', 'https://api.github.com/users/oscardelben/repos', 'https://api.github.com/users/oscardelben/events', 'https://api.github.com/users/oscardelben/received_events', 0); +INSERT INTO `developer` VALUES (3893, 'matti', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matti Paksula', 'supervisor.com', 'http://www.supervisor.com', 'Helsinki', 'matti.paksula@iki.fi', 'true', 'biological', 'mattipaksula', 0, 0, 106, 5, 0, 0, 0, '2008-03-26T12:11:36Z', '2024-10-09T13:49:16Z', 'https://avatars.githubusercontent.com/u/3893?v=4', 'https://api.github.com/users/matti', 'https://github.com/matti', 'https://api.github.com/users/matti/followers', 'https://api.github.com/users/matti/following', 'https://api.github.com/users/matti/gists', 'https://api.github.com/users/matti/starred', 'https://api.github.com/users/matti/repos', 'https://api.github.com/users/matti/events', 'https://api.github.com/users/matti/received_events', 0); +INSERT INTO `developer` VALUES (3895, 'arttu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arttu Tervo', NULL, '', 'Helsinki, Finland', 'arttu.tervo@gmail.com', NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-03-26T12:29:57Z', '2024-02-05T11:27:48Z', 'https://avatars.githubusercontent.com/u/3895?v=4', 'https://api.github.com/users/arttu', 'https://github.com/arttu', 'https://api.github.com/users/arttu/followers', 'https://api.github.com/users/arttu/following', 'https://api.github.com/users/arttu/gists', 'https://api.github.com/users/arttu/starred', 'https://api.github.com/users/arttu/repos', 'https://api.github.com/users/arttu/events', 'https://api.github.com/users/arttu/received_events', 0); +INSERT INTO `developer` VALUES (3896, 'scoopr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mikko Lehtonen', 'Supercell', 'https://scoopr.fi/', 'Vantaa, Finland', NULL, NULL, NULL, NULL, 0, 0, 49, 0, 0, 0, 0, '2008-03-26T13:07:35Z', '2024-10-24T18:49:18Z', 'https://avatars.githubusercontent.com/u/3896?v=4', 'https://api.github.com/users/scoopr', 'https://github.com/scoopr', 'https://api.github.com/users/scoopr/followers', 'https://api.github.com/users/scoopr/following', 'https://api.github.com/users/scoopr/gists', 'https://api.github.com/users/scoopr/starred', 'https://api.github.com/users/scoopr/repos', 'https://api.github.com/users/scoopr/events', 'https://api.github.com/users/scoopr/received_events', 0); +INSERT INTO `developer` VALUES (3897, 'PeterBengtson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Bengtson', NULL, 'http://peterbengtson.com', 'Stockholm, Sweden', 'peter@peterbengtson.com', NULL, NULL, NULL, 0, 0, 17, 4, 0, 0, 0, '2008-03-26T13:38:41Z', '2024-10-28T16:39:24Z', 'https://avatars.githubusercontent.com/u/3897?v=4', 'https://api.github.com/users/PeterBengtson', 'https://github.com/PeterBengtson', 'https://api.github.com/users/PeterBengtson/followers', 'https://api.github.com/users/PeterBengtson/following', 'https://api.github.com/users/PeterBengtson/gists', 'https://api.github.com/users/PeterBengtson/starred', 'https://api.github.com/users/PeterBengtson/repos', 'https://api.github.com/users/PeterBengtson/events', 'https://api.github.com/users/PeterBengtson/received_events', 0); +INSERT INTO `developer` VALUES (3898, 'jlowmiller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Lowmiller', NULL, '', '未知', 'jason.lowmiller@gmail.com', NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-26T13:43:42Z', '2020-11-27T21:44:43Z', 'https://avatars.githubusercontent.com/u/3898?v=4', 'https://api.github.com/users/jlowmiller', 'https://github.com/jlowmiller', 'https://api.github.com/users/jlowmiller/followers', 'https://api.github.com/users/jlowmiller/following', 'https://api.github.com/users/jlowmiller/gists', 'https://api.github.com/users/jlowmiller/starred', 'https://api.github.com/users/jlowmiller/repos', 'https://api.github.com/users/jlowmiller/events', 'https://api.github.com/users/jlowmiller/received_events', 0); +INSERT INTO `developer` VALUES (3899, 'davidhq', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@uniqpath ', 'https://uniqpath.com', 'EU', NULL, NULL, 'Software Mechanics', 'zetaseek', 0, 0, 52, 8, 0, 0, 0, '2008-03-26T13:52:17Z', '2024-01-14T11:12:05Z', 'https://avatars.githubusercontent.com/u/3899?v=4', 'https://api.github.com/users/davidhq', 'https://github.com/davidhq', 'https://api.github.com/users/davidhq/followers', 'https://api.github.com/users/davidhq/following', 'https://api.github.com/users/davidhq/gists', 'https://api.github.com/users/davidhq/starred', 'https://api.github.com/users/davidhq/repos', 'https://api.github.com/users/davidhq/events', 'https://api.github.com/users/davidhq/received_events', 0); +INSERT INTO `developer` VALUES (3900, 'gus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gus Knowlden', '@heavyset', 'http://instagram.com/gus.or.bust', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 58, 26, 0, 0, 0, '2008-03-26T13:57:48Z', '2024-09-23T15:31:44Z', 'https://avatars.githubusercontent.com/u/3900?v=4', 'https://api.github.com/users/gus', 'https://github.com/gus', 'https://api.github.com/users/gus/followers', 'https://api.github.com/users/gus/following', 'https://api.github.com/users/gus/gists', 'https://api.github.com/users/gus/starred', 'https://api.github.com/users/gus/repos', 'https://api.github.com/users/gus/events', 'https://api.github.com/users/gus/received_events', 0); +INSERT INTO `developer` VALUES (3901, 'michal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michał Maliszewski', NULL, '', 'Poland, Warsaw', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-26T14:03:20Z', '2024-10-08T12:03:51Z', 'https://avatars.githubusercontent.com/u/3901?v=4', 'https://api.github.com/users/michal', 'https://github.com/michal', 'https://api.github.com/users/michal/followers', 'https://api.github.com/users/michal/following', 'https://api.github.com/users/michal/gists', 'https://api.github.com/users/michal/starred', 'https://api.github.com/users/michal/repos', 'https://api.github.com/users/michal/events', 'https://api.github.com/users/michal/received_events', 0); +INSERT INTO `developer` VALUES (3902, 'gabrielg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gabriel Gironda', NULL, 'http://gironda.org/', 'Madison, WI', 'gabriel@gironda.org', 'true', NULL, NULL, 0, 0, 102, 20, 0, 0, 0, '2008-03-26T14:31:24Z', '2024-10-26T02:17:17Z', 'https://avatars.githubusercontent.com/u/3902?v=4', 'https://api.github.com/users/gabrielg', 'https://github.com/gabrielg', 'https://api.github.com/users/gabrielg/followers', 'https://api.github.com/users/gabrielg/following', 'https://api.github.com/users/gabrielg/gists', 'https://api.github.com/users/gabrielg/starred', 'https://api.github.com/users/gabrielg/repos', 'https://api.github.com/users/gabrielg/events', 'https://api.github.com/users/gabrielg/received_events', 0); +INSERT INTO `developer` VALUES (3904, 'mwhuss', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marshall Huss', 'Apple', 'http://mwhuss.com', 'Santa Clara, CA', 'mwhuss@gmail.com', NULL, NULL, NULL, 0, 0, 49, 17, 0, 0, 0, '2008-03-26T15:08:38Z', '2024-09-12T20:19:56Z', 'https://avatars.githubusercontent.com/u/3904?v=4', 'https://api.github.com/users/mwhuss', 'https://github.com/mwhuss', 'https://api.github.com/users/mwhuss/followers', 'https://api.github.com/users/mwhuss/following', 'https://api.github.com/users/mwhuss/gists', 'https://api.github.com/users/mwhuss/starred', 'https://api.github.com/users/mwhuss/repos', 'https://api.github.com/users/mwhuss/events', 'https://api.github.com/users/mwhuss/received_events', 0); +INSERT INTO `developer` VALUES (3905, 'mlooney', 'C', 0, 0, 0, 0, 0, 0, 0, 'McClain Looney', 'LoonSoft Inc.', 'http://www.bitbucket.org/mml', 'Minneapolis', NULL, 'true', NULL, NULL, 0, 0, 22, 1, 0, 0, 0, '2008-03-26T15:31:05Z', '2024-07-26T16:06:30Z', 'https://avatars.githubusercontent.com/u/3905?v=4', 'https://api.github.com/users/mlooney', 'https://github.com/mlooney', 'https://api.github.com/users/mlooney/followers', 'https://api.github.com/users/mlooney/following', 'https://api.github.com/users/mlooney/gists', 'https://api.github.com/users/mlooney/starred', 'https://api.github.com/users/mlooney/repos', 'https://api.github.com/users/mlooney/events', 'https://api.github.com/users/mlooney/received_events', 0); +INSERT INTO `developer` VALUES (3906, 'kurtjx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 32, 18, 0, 0, 0, '2008-03-26T15:42:40Z', '2024-03-11T18:54:48Z', 'https://avatars.githubusercontent.com/u/3906?v=4', 'https://api.github.com/users/kurtjx', 'https://github.com/kurtjx', 'https://api.github.com/users/kurtjx/followers', 'https://api.github.com/users/kurtjx/following', 'https://api.github.com/users/kurtjx/gists', 'https://api.github.com/users/kurtjx/starred', 'https://api.github.com/users/kurtjx/repos', 'https://api.github.com/users/kurtjx/events', 'https://api.github.com/users/kurtjx/received_events', 0); +INSERT INTO `developer` VALUES (3907, 'nickw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Wientge', 'Differential', 'https://www.differential.com', 'Portland, OR', 'nick@differential.com', 'true', NULL, NULL, 0, 0, 171, 7, 0, 0, 0, '2008-03-26T16:09:48Z', '2024-10-05T03:12:43Z', 'https://avatars.githubusercontent.com/u/3907?v=4', 'https://api.github.com/users/nickw', 'https://github.com/nickw', 'https://api.github.com/users/nickw/followers', 'https://api.github.com/users/nickw/following', 'https://api.github.com/users/nickw/gists', 'https://api.github.com/users/nickw/starred', 'https://api.github.com/users/nickw/repos', 'https://api.github.com/users/nickw/events', 'https://api.github.com/users/nickw/received_events', 0); +INSERT INTO `developer` VALUES (3909, 'maintheme', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-26T16:24:34Z', '2016-07-06T17:22:56Z', 'https://avatars.githubusercontent.com/u/3909?v=4', 'https://api.github.com/users/maintheme', 'https://github.com/maintheme', 'https://api.github.com/users/maintheme/followers', 'https://api.github.com/users/maintheme/following', 'https://api.github.com/users/maintheme/gists', 'https://api.github.com/users/maintheme/starred', 'https://api.github.com/users/maintheme/repos', 'https://api.github.com/users/maintheme/events', 'https://api.github.com/users/maintheme/received_events', 0); +INSERT INTO `developer` VALUES (3910, 'haircut', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Warren', NULL, 'https://macblog.org', 'North America', NULL, NULL, NULL, NULL, 0, 0, 83, 17, 0, 0, 0, '2008-03-26T17:01:01Z', '2024-10-15T22:12:49Z', 'https://avatars.githubusercontent.com/u/3910?v=4', 'https://api.github.com/users/haircut', 'https://github.com/haircut', 'https://api.github.com/users/haircut/followers', 'https://api.github.com/users/haircut/following', 'https://api.github.com/users/haircut/gists', 'https://api.github.com/users/haircut/starred', 'https://api.github.com/users/haircut/repos', 'https://api.github.com/users/haircut/events', 'https://api.github.com/users/haircut/received_events', 0); +INSERT INTO `developer` VALUES (3911, 'slillibri', 'C', 9.84466648231379, 0, 40, 90, 71, 0, 0, 'Scott Lillibridge', NULL, 'http://slillibri.livejournal.com', 'Seattle, WA', 'scott.lillibridge@gmail.com', 'true', NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-26T17:26:05Z', '2024-10-04T03:29:15Z', 'https://avatars.githubusercontent.com/u/3911?v=4', 'https://api.github.com/users/slillibri', 'https://github.com/slillibri', 'https://api.github.com/users/slillibri/followers', 'https://api.github.com/users/slillibri/following', 'https://api.github.com/users/slillibri/gists', 'https://api.github.com/users/slillibri/starred', 'https://api.github.com/users/slillibri/repos', 'https://api.github.com/users/slillibri/events', 'https://api.github.com/users/slillibri/received_events', 0); +INSERT INTO `developer` VALUES (3912, 'jkalucki', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Kalucki', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 32, 15, 0, 0, 0, '2008-03-26T17:28:04Z', '2024-04-14T22:13:23Z', 'https://avatars.githubusercontent.com/u/3912?v=4', 'https://api.github.com/users/jkalucki', 'https://github.com/jkalucki', 'https://api.github.com/users/jkalucki/followers', 'https://api.github.com/users/jkalucki/following', 'https://api.github.com/users/jkalucki/gists', 'https://api.github.com/users/jkalucki/starred', 'https://api.github.com/users/jkalucki/repos', 'https://api.github.com/users/jkalucki/events', 'https://api.github.com/users/jkalucki/received_events', 0); +INSERT INTO `developer` VALUES (3913, 'mynyml', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin', NULL, '', 'Montreal', NULL, NULL, NULL, NULL, 0, 0, 173, 73, 0, 0, 0, '2008-03-26T18:09:07Z', '2024-09-29T15:06:05Z', 'https://avatars.githubusercontent.com/u/3913?v=4', 'https://api.github.com/users/mynyml', 'https://github.com/mynyml', 'https://api.github.com/users/mynyml/followers', 'https://api.github.com/users/mynyml/following', 'https://api.github.com/users/mynyml/gists', 'https://api.github.com/users/mynyml/starred', 'https://api.github.com/users/mynyml/repos', 'https://api.github.com/users/mynyml/events', 'https://api.github.com/users/mynyml/received_events', 0); +INSERT INTO `developer` VALUES (3915, 'tteoh-duplicate', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-26T18:18:34Z', '2016-02-26T22:35:02Z', 'https://avatars.githubusercontent.com/u/3915?v=4', 'https://api.github.com/users/tteoh-duplicate', 'https://github.com/tteoh-duplicate', 'https://api.github.com/users/tteoh-duplicate/followers', 'https://api.github.com/users/tteoh-duplicate/following', 'https://api.github.com/users/tteoh-duplicate/gists', 'https://api.github.com/users/tteoh-duplicate/starred', 'https://api.github.com/users/tteoh-duplicate/repos', 'https://api.github.com/users/tteoh-duplicate/events', 'https://api.github.com/users/tteoh-duplicate/received_events', 0); +INSERT INTO `developer` VALUES (3916, 'erikprice', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Price', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 45, 3, 0, 0, 0, '2008-03-26T18:30:54Z', '2022-10-04T15:19:12Z', 'https://avatars.githubusercontent.com/u/3916?v=4', 'https://api.github.com/users/erikprice', 'https://github.com/erikprice', 'https://api.github.com/users/erikprice/followers', 'https://api.github.com/users/erikprice/following', 'https://api.github.com/users/erikprice/gists', 'https://api.github.com/users/erikprice/starred', 'https://api.github.com/users/erikprice/repos', 'https://api.github.com/users/erikprice/events', 'https://api.github.com/users/erikprice/received_events', 0); +INSERT INTO `developer` VALUES (3917, 'lazzarello', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lee Azzarello', 'Sabbatical', 'https://blog.griftmarket.com/', 'San Francisco', 'lee@rockingtiger.com', NULL, 'Audio Research and generative AI.', NULL, 0, 0, 197, 306, 0, 0, 0, '2008-03-26T18:31:53Z', '2024-11-04T22:37:15Z', 'https://avatars.githubusercontent.com/u/3917?v=4', 'https://api.github.com/users/lazzarello', 'https://github.com/lazzarello', 'https://api.github.com/users/lazzarello/followers', 'https://api.github.com/users/lazzarello/following', 'https://api.github.com/users/lazzarello/gists', 'https://api.github.com/users/lazzarello/starred', 'https://api.github.com/users/lazzarello/repos', 'https://api.github.com/users/lazzarello/events', 'https://api.github.com/users/lazzarello/received_events', 0); +INSERT INTO `developer` VALUES (3918, 'patroy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pat Roy', 'VidCruiter Inc.', '', 'Moncton, NB', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-03-26T18:45:08Z', '2024-05-29T14:01:41Z', 'https://avatars.githubusercontent.com/u/3918?v=4', 'https://api.github.com/users/patroy', 'https://github.com/patroy', 'https://api.github.com/users/patroy/followers', 'https://api.github.com/users/patroy/following', 'https://api.github.com/users/patroy/gists', 'https://api.github.com/users/patroy/starred', 'https://api.github.com/users/patroy/repos', 'https://api.github.com/users/patroy/events', 'https://api.github.com/users/patroy/received_events', 0); +INSERT INTO `developer` VALUES (3919, 'jeremyvdw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jérémy Van de Wyngaert', '@exoscale ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 31, 41, 0, 0, 0, '2008-03-26T18:48:19Z', '2024-10-03T07:07:16Z', 'https://avatars.githubusercontent.com/u/3919?v=4', 'https://api.github.com/users/jeremyvdw', 'https://github.com/jeremyvdw', 'https://api.github.com/users/jeremyvdw/followers', 'https://api.github.com/users/jeremyvdw/following', 'https://api.github.com/users/jeremyvdw/gists', 'https://api.github.com/users/jeremyvdw/starred', 'https://api.github.com/users/jeremyvdw/repos', 'https://api.github.com/users/jeremyvdw/events', 'https://api.github.com/users/jeremyvdw/received_events', 0); +INSERT INTO `developer` VALUES (3920, 'rotty', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Rottmann', NULL, '', 'Austria', 'mail@r0tty.org', NULL, NULL, NULL, 0, 0, 44, 8, 0, 0, 0, '2008-03-26T19:16:59Z', '2024-10-01T18:33:21Z', 'https://avatars.githubusercontent.com/u/3920?v=4', 'https://api.github.com/users/rotty', 'https://github.com/rotty', 'https://api.github.com/users/rotty/followers', 'https://api.github.com/users/rotty/following', 'https://api.github.com/users/rotty/gists', 'https://api.github.com/users/rotty/starred', 'https://api.github.com/users/rotty/repos', 'https://api.github.com/users/rotty/events', 'https://api.github.com/users/rotty/received_events', 0); +INSERT INTO `developer` VALUES (3921, 'dayne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dayne Broderson', '@acep-uaf @acep-devops ', 'http://dayne.broderson.org', 'Fairbanks, Alaska', 'dayne@omg.lol', NULL, 'Teaching Through Technology! Geek around with Raspberry Pi, Ruby, Energy, Chef, Research, Geo-spatial & Remote Sensing, DevOps, IoT and Complex Systems.', 'dayne', 0, 0, 105, 220, 0, 0, 0, '2008-03-26T19:21:40Z', '2024-10-24T21:09:35Z', 'https://avatars.githubusercontent.com/u/3921?v=4', 'https://api.github.com/users/dayne', 'https://github.com/dayne', 'https://api.github.com/users/dayne/followers', 'https://api.github.com/users/dayne/following', 'https://api.github.com/users/dayne/gists', 'https://api.github.com/users/dayne/starred', 'https://api.github.com/users/dayne/repos', 'https://api.github.com/users/dayne/events', 'https://api.github.com/users/dayne/received_events', 0); +INSERT INTO `developer` VALUES (3922, 'tekkyjim', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Mitchell', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-26T19:24:31Z', '2018-01-11T22:45:57Z', 'https://avatars.githubusercontent.com/u/3922?v=4', 'https://api.github.com/users/tekkyjim', 'https://github.com/tekkyjim', 'https://api.github.com/users/tekkyjim/followers', 'https://api.github.com/users/tekkyjim/following', 'https://api.github.com/users/tekkyjim/gists', 'https://api.github.com/users/tekkyjim/starred', 'https://api.github.com/users/tekkyjim/repos', 'https://api.github.com/users/tekkyjim/events', 'https://api.github.com/users/tekkyjim/received_events', 0); +INSERT INTO `developer` VALUES (3924, 'ylh-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-26T20:24:38Z', '2018-09-02T09:41:37Z', 'https://avatars.githubusercontent.com/u/3924?v=4', 'https://api.github.com/users/ylh-zz', 'https://github.com/ylh-zz', 'https://api.github.com/users/ylh-zz/followers', 'https://api.github.com/users/ylh-zz/following', 'https://api.github.com/users/ylh-zz/gists', 'https://api.github.com/users/ylh-zz/starred', 'https://api.github.com/users/ylh-zz/repos', 'https://api.github.com/users/ylh-zz/events', 'https://api.github.com/users/ylh-zz/received_events', 0); +INSERT INTO `developer` VALUES (3925, 'chuckadams', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chuck Adams', NULL, '', 'CO, USA', 'cja987@gmail.com', 'true', NULL, NULL, 0, 0, 25, 0, 0, 0, 0, '2008-03-26T20:55:27Z', '2024-10-16T06:11:00Z', 'https://avatars.githubusercontent.com/u/3925?v=4', 'https://api.github.com/users/chuckadams', 'https://github.com/chuckadams', 'https://api.github.com/users/chuckadams/followers', 'https://api.github.com/users/chuckadams/following', 'https://api.github.com/users/chuckadams/gists', 'https://api.github.com/users/chuckadams/starred', 'https://api.github.com/users/chuckadams/repos', 'https://api.github.com/users/chuckadams/events', 'https://api.github.com/users/chuckadams/received_events', 0); +INSERT INTO `developer` VALUES (3926, 'daverankin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Rankin', 'field15, Inc.', 'https://field15.com', 'US Northeast', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-26T21:02:39Z', '2024-07-29T20:18:32Z', 'https://avatars.githubusercontent.com/u/3926?v=4', 'https://api.github.com/users/daverankin', 'https://github.com/daverankin', 'https://api.github.com/users/daverankin/followers', 'https://api.github.com/users/daverankin/following', 'https://api.github.com/users/daverankin/gists', 'https://api.github.com/users/daverankin/starred', 'https://api.github.com/users/daverankin/repos', 'https://api.github.com/users/daverankin/events', 'https://api.github.com/users/daverankin/received_events', 0); +INSERT INTO `developer` VALUES (3927, 'miriam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Miriam Goldberg', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-26T21:04:03Z', '2024-07-16T17:28:55Z', 'https://avatars.githubusercontent.com/u/3927?v=4', 'https://api.github.com/users/miriam', 'https://github.com/miriam', 'https://api.github.com/users/miriam/followers', 'https://api.github.com/users/miriam/following', 'https://api.github.com/users/miriam/gists', 'https://api.github.com/users/miriam/starred', 'https://api.github.com/users/miriam/repos', 'https://api.github.com/users/miriam/events', 'https://api.github.com/users/miriam/received_events', 0); +INSERT INTO `developer` VALUES (3931, 'nachof', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nacho Facello', 'Tarmac', '', 'Montevideo, Uruguay', 'nacho@nucleartesuji.com', NULL, NULL, NULL, 0, 0, 30, 3, 0, 0, 0, '2008-03-26T22:15:28Z', '2024-11-04T12:53:18Z', 'https://avatars.githubusercontent.com/u/3931?v=4', 'https://api.github.com/users/nachof', 'https://github.com/nachof', 'https://api.github.com/users/nachof/followers', 'https://api.github.com/users/nachof/following', 'https://api.github.com/users/nachof/gists', 'https://api.github.com/users/nachof/starred', 'https://api.github.com/users/nachof/repos', 'https://api.github.com/users/nachof/events', 'https://api.github.com/users/nachof/received_events', 0); +INSERT INTO `developer` VALUES (3934, 'prashant', 'C', 0, 0, 0, 0, 0, 0, 0, 'Prashant', 'Intridea, Inc.', '', 'Washington, DC', 'prashant@intridea.com', NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-26T22:54:39Z', '2014-11-09T13:34:28Z', 'https://avatars.githubusercontent.com/u/3934?v=4', 'https://api.github.com/users/prashant', 'https://github.com/prashant', 'https://api.github.com/users/prashant/followers', 'https://api.github.com/users/prashant/following', 'https://api.github.com/users/prashant/gists', 'https://api.github.com/users/prashant/starred', 'https://api.github.com/users/prashant/repos', 'https://api.github.com/users/prashant/events', 'https://api.github.com/users/prashant/received_events', 0); +INSERT INTO `developer` VALUES (3936, 'pete', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pete', '@RekkaLabs ', 'http://debu.gs/', 'Los Angeles, CA', 'pete@debu.gs', 'true', NULL, NULL, 0, 0, 132, 228, 0, 0, 0, '2008-03-26T23:35:15Z', '2024-10-23T18:13:48Z', 'https://avatars.githubusercontent.com/u/3936?v=4', 'https://api.github.com/users/pete', 'https://github.com/pete', 'https://api.github.com/users/pete/followers', 'https://api.github.com/users/pete/following', 'https://api.github.com/users/pete/gists', 'https://api.github.com/users/pete/starred', 'https://api.github.com/users/pete/repos', 'https://api.github.com/users/pete/events', 'https://api.github.com/users/pete/received_events', 0); +INSERT INTO `developer` VALUES (3937, 'thewalkingcity', 'C', 0, 0, 0, 0, 0, 0, 0, 'thewalkingcity', NULL, '', '未知', NULL, NULL, 'hi', NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-27T00:46:09Z', '2024-09-10T17:12:47Z', 'https://avatars.githubusercontent.com/u/3937?v=4', 'https://api.github.com/users/thewalkingcity', 'https://github.com/thewalkingcity', 'https://api.github.com/users/thewalkingcity/followers', 'https://api.github.com/users/thewalkingcity/following', 'https://api.github.com/users/thewalkingcity/gists', 'https://api.github.com/users/thewalkingcity/starred', 'https://api.github.com/users/thewalkingcity/repos', 'https://api.github.com/users/thewalkingcity/events', 'https://api.github.com/users/thewalkingcity/received_events', 0); +INSERT INTO `developer` VALUES (3938, 'leshill', 'C', 0, 0, 0, 0, 0, 0, 0, 'Les Hill', NULL, 'https://blog.leshill.org', 'Seattle, WA', 'leshill@gmail.com', NULL, NULL, NULL, 0, 0, 161, 6, 0, 0, 0, '2008-03-27T01:50:05Z', '2024-06-18T23:42:31Z', 'https://avatars.githubusercontent.com/u/3938?v=4', 'https://api.github.com/users/leshill', 'https://github.com/leshill', 'https://api.github.com/users/leshill/followers', 'https://api.github.com/users/leshill/following', 'https://api.github.com/users/leshill/gists', 'https://api.github.com/users/leshill/starred', 'https://api.github.com/users/leshill/repos', 'https://api.github.com/users/leshill/events', 'https://api.github.com/users/leshill/received_events', 0); +INSERT INTO `developer` VALUES (3940, 'vik407', 'C', 0, 0, 0, 0, 0, 0, 0, 'Víctor Hugo Hernández', 'deploythis.co', 'deploythis.co', 'Between Cali and Bogotá Colombia', 'vik407@gmail.com', NULL, NULL, NULL, 0, 0, 69, 45, 0, 0, 0, '2008-03-27T02:40:07Z', '2024-09-23T01:16:08Z', 'https://avatars.githubusercontent.com/u/3940?v=4', 'https://api.github.com/users/vik407', 'https://github.com/vik407', 'https://api.github.com/users/vik407/followers', 'https://api.github.com/users/vik407/following', 'https://api.github.com/users/vik407/gists', 'https://api.github.com/users/vik407/starred', 'https://api.github.com/users/vik407/repos', 'https://api.github.com/users/vik407/events', 'https://api.github.com/users/vik407/received_events', 0); +INSERT INTO `developer` VALUES (3941, 'nvkv', 'C', 3.559547475482415, 0, 16, 23, 287, 6, 0, 'Semyon Novikov', 'Bedlam Consulting', 'https://bedlam.io', 'Russia, Kaliningrad', NULL, NULL, NULL, NULL, 0, 0, 83, 130, 0, 0, 0, '2008-03-27T03:28:33Z', '2024-10-26T11:20:59Z', 'https://avatars.githubusercontent.com/u/3941?v=4', 'https://api.github.com/users/nvkv', 'https://github.com/nvkv', 'https://api.github.com/users/nvkv/followers', 'https://api.github.com/users/nvkv/following', 'https://api.github.com/users/nvkv/gists', 'https://api.github.com/users/nvkv/starred', 'https://api.github.com/users/nvkv/repos', 'https://api.github.com/users/nvkv/events', 'https://api.github.com/users/nvkv/received_events', 0); +INSERT INTO `developer` VALUES (3942, 'tgdavies', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'tgdavies@gmail.com', NULL, NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2008-03-27T03:38:32Z', '2024-10-21T01:58:37Z', 'https://avatars.githubusercontent.com/u/3942?v=4', 'https://api.github.com/users/tgdavies', 'https://github.com/tgdavies', 'https://api.github.com/users/tgdavies/followers', 'https://api.github.com/users/tgdavies/following', 'https://api.github.com/users/tgdavies/gists', 'https://api.github.com/users/tgdavies/starred', 'https://api.github.com/users/tgdavies/repos', 'https://api.github.com/users/tgdavies/events', 'https://api.github.com/users/tgdavies/received_events', 0); +INSERT INTO `developer` VALUES (3945, 'chrismartin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-27T07:07:16Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/3945?v=4', 'https://api.github.com/users/chrismartin', 'https://github.com/chrismartin', 'https://api.github.com/users/chrismartin/followers', 'https://api.github.com/users/chrismartin/following', 'https://api.github.com/users/chrismartin/gists', 'https://api.github.com/users/chrismartin/starred', 'https://api.github.com/users/chrismartin/repos', 'https://api.github.com/users/chrismartin/events', 'https://api.github.com/users/chrismartin/received_events', 0); +INSERT INTO `developer` VALUES (3946, 'kyc', 'C', 5.120514087444055, 0, 19, 16, 689, 5, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 9, 0, 0, 0, '2008-03-27T07:52:30Z', '2024-10-17T07:39:48Z', 'https://avatars.githubusercontent.com/u/3946?v=4', 'https://api.github.com/users/kyc', 'https://github.com/kyc', 'https://api.github.com/users/kyc/followers', 'https://api.github.com/users/kyc/following', 'https://api.github.com/users/kyc/gists', 'https://api.github.com/users/kyc/starred', 'https://api.github.com/users/kyc/repos', 'https://api.github.com/users/kyc/events', 'https://api.github.com/users/kyc/received_events', 0); +INSERT INTO `developer` VALUES (3947, 'bheylin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Heylin', 'https://www.dreamsolution.nl/', '', 'Netherlands', NULL, NULL, NULL, NULL, 0, 0, 24, 15, 0, 0, 0, '2008-03-27T08:21:59Z', '2024-10-20T19:23:45Z', 'https://avatars.githubusercontent.com/u/3947?v=4', 'https://api.github.com/users/bheylin', 'https://github.com/bheylin', 'https://api.github.com/users/bheylin/followers', 'https://api.github.com/users/bheylin/following', 'https://api.github.com/users/bheylin/gists', 'https://api.github.com/users/bheylin/starred', 'https://api.github.com/users/bheylin/repos', 'https://api.github.com/users/bheylin/events', 'https://api.github.com/users/bheylin/received_events', 0); +INSERT INTO `developer` VALUES (3948, 'arunagw', 'C', 3.9815925497921256, 0, 0, 0, 0, 0, 0, 'Arun Agrawal', NULL, 'https://arun.agrawal.io', '未知', 'arun@agrawal.io', 'true', 'Ruby Developer', 'arunagw', 0, 0, 517, 1, 0, 0, 0, '2008-03-27T08:53:57Z', '2024-10-16T09:08:16Z', 'https://avatars.githubusercontent.com/u/3948?v=4', 'https://api.github.com/users/arunagw', 'https://github.com/arunagw', 'https://api.github.com/users/arunagw/followers', 'https://api.github.com/users/arunagw/following', 'https://api.github.com/users/arunagw/gists', 'https://api.github.com/users/arunagw/starred', 'https://api.github.com/users/arunagw/repos', 'https://api.github.com/users/arunagw/events', 'https://api.github.com/users/arunagw/received_events', 0); +INSERT INTO `developer` VALUES (3950, 'youngmrcurtis', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-27T09:50:24Z', '2023-07-12T17:25:45Z', 'https://avatars.githubusercontent.com/u/3950?v=4', 'https://api.github.com/users/youngmrcurtis', 'https://github.com/youngmrcurtis', 'https://api.github.com/users/youngmrcurtis/followers', 'https://api.github.com/users/youngmrcurtis/following', 'https://api.github.com/users/youngmrcurtis/gists', 'https://api.github.com/users/youngmrcurtis/starred', 'https://api.github.com/users/youngmrcurtis/repos', 'https://api.github.com/users/youngmrcurtis/events', 'https://api.github.com/users/youngmrcurtis/received_events', 0); +INSERT INTO `developer` VALUES (3955, 'cpjobling', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris P. Jobling', 'Swansea University', 'http://blog.cpjobling.me', 'Swansea, Wales, UK', 'cpjobling@cpjobling.net', NULL, 'Senior lecturer at Swansea Engineering. Mostly dabbling with Jupyter for teaching these days.', NULL, 0, 0, 26, 39, 0, 0, 0, '2008-03-27T10:53:37Z', '2024-10-08T08:24:48Z', 'https://avatars.githubusercontent.com/u/3955?v=4', 'https://api.github.com/users/cpjobling', 'https://github.com/cpjobling', 'https://api.github.com/users/cpjobling/followers', 'https://api.github.com/users/cpjobling/following', 'https://api.github.com/users/cpjobling/gists', 'https://api.github.com/users/cpjobling/starred', 'https://api.github.com/users/cpjobling/repos', 'https://api.github.com/users/cpjobling/events', 'https://api.github.com/users/cpjobling/received_events', 0); +INSERT INTO `developer` VALUES (3956, 'idea-nickcooper', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-27T11:02:49Z', '2023-12-06T16:51:41Z', 'https://avatars.githubusercontent.com/u/3956?v=4', 'https://api.github.com/users/idea-nickcooper', 'https://github.com/idea-nickcooper', 'https://api.github.com/users/idea-nickcooper/followers', 'https://api.github.com/users/idea-nickcooper/following', 'https://api.github.com/users/idea-nickcooper/gists', 'https://api.github.com/users/idea-nickcooper/starred', 'https://api.github.com/users/idea-nickcooper/repos', 'https://api.github.com/users/idea-nickcooper/events', 'https://api.github.com/users/idea-nickcooper/received_events', 0); +INSERT INTO `developer` VALUES (3957, 'trevorg75', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-27T11:58:23Z', '2019-12-21T18:24:51Z', 'https://avatars.githubusercontent.com/u/3957?v=4', 'https://api.github.com/users/trevorg75', 'https://github.com/trevorg75', 'https://api.github.com/users/trevorg75/followers', 'https://api.github.com/users/trevorg75/following', 'https://api.github.com/users/trevorg75/gists', 'https://api.github.com/users/trevorg75/starred', 'https://api.github.com/users/trevorg75/repos', 'https://api.github.com/users/trevorg75/events', 'https://api.github.com/users/trevorg75/received_events', 0); +INSERT INTO `developer` VALUES (3958, 'ace', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrés Cirugeda', NULL, '', 'Barcelona', 'andres+gh03@cirugeda.net', NULL, NULL, NULL, 0, 0, 20, 1, 0, 0, 0, '2008-03-27T12:06:28Z', '2024-09-04T09:12:14Z', 'https://avatars.githubusercontent.com/u/3958?v=4', 'https://api.github.com/users/ace', 'https://github.com/ace', 'https://api.github.com/users/ace/followers', 'https://api.github.com/users/ace/following', 'https://api.github.com/users/ace/gists', 'https://api.github.com/users/ace/starred', 'https://api.github.com/users/ace/repos', 'https://api.github.com/users/ace/events', 'https://api.github.com/users/ace/received_events', 0); +INSERT INTO `developer` VALUES (3959, 'mrkn', 'C', 5.919375692384222, 0, 0, 0, 0, 0, 0, 'Kenta Murata', '@xica', 'http://mrkn.jp', 'Tokyo, Japan', NULL, NULL, 'I am an open-source software engineer. I am a committer to Ruby and Apache Arrow and a contributor to Julia.', 'KentaMurata', 0, 0, 630, 210, 0, 0, 0, '2008-03-27T12:56:22Z', '2024-11-02T04:09:53Z', 'https://avatars.githubusercontent.com/u/3959?v=4', 'https://api.github.com/users/mrkn', 'https://github.com/mrkn', 'https://api.github.com/users/mrkn/followers', 'https://api.github.com/users/mrkn/following', 'https://api.github.com/users/mrkn/gists', 'https://api.github.com/users/mrkn/starred', 'https://api.github.com/users/mrkn/repos', 'https://api.github.com/users/mrkn/events', 'https://api.github.com/users/mrkn/received_events', 0); +INSERT INTO `developer` VALUES (3960, 'simongroenewolt', 'C', 0, 0, 0, 0, 375, 3, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 5, 0, 0, 0, '2008-03-27T13:00:27Z', '2024-01-24T19:34:26Z', 'https://avatars.githubusercontent.com/u/3960?v=4', 'https://api.github.com/users/simongroenewolt', 'https://github.com/simongroenewolt', 'https://api.github.com/users/simongroenewolt/followers', 'https://api.github.com/users/simongroenewolt/following', 'https://api.github.com/users/simongroenewolt/gists', 'https://api.github.com/users/simongroenewolt/starred', 'https://api.github.com/users/simongroenewolt/repos', 'https://api.github.com/users/simongroenewolt/events', 'https://api.github.com/users/simongroenewolt/received_events', 0); +INSERT INTO `developer` VALUES (3961, 'zoecity', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-03-27T13:11:35Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/3961?v=4', 'https://api.github.com/users/zoecity', 'https://github.com/zoecity', 'https://api.github.com/users/zoecity/followers', 'https://api.github.com/users/zoecity/following', 'https://api.github.com/users/zoecity/gists', 'https://api.github.com/users/zoecity/starred', 'https://api.github.com/users/zoecity/repos', 'https://api.github.com/users/zoecity/events', 'https://api.github.com/users/zoecity/received_events', 0); +INSERT INTO `developer` VALUES (3962, 'coreyhaines', 'C', 9.040406948594503, 0, 0, 0, 0, 0, 0, 'Corey Haines', NULL, 'www.coreyhaines.com', 'chicago, il', 'coreyhaines@gmail.com', 'true', 'Magical!', 'coreyhaines', 0, 0, 812, 16, 0, 0, 0, '2008-03-27T13:12:53Z', '2024-07-23T14:20:37Z', 'https://avatars.githubusercontent.com/u/3962?v=4', 'https://api.github.com/users/coreyhaines', 'https://github.com/coreyhaines', 'https://api.github.com/users/coreyhaines/followers', 'https://api.github.com/users/coreyhaines/following', 'https://api.github.com/users/coreyhaines/gists', 'https://api.github.com/users/coreyhaines/starred', 'https://api.github.com/users/coreyhaines/repos', 'https://api.github.com/users/coreyhaines/events', 'https://api.github.com/users/coreyhaines/received_events', 0); +INSERT INTO `developer` VALUES (3963, 'milan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Milan', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 7, 0, 0, 0, '2008-03-27T13:19:27Z', '2024-10-01T10:37:39Z', 'https://avatars.githubusercontent.com/u/3963?v=4', 'https://api.github.com/users/milan', 'https://github.com/milan', 'https://api.github.com/users/milan/followers', 'https://api.github.com/users/milan/following', 'https://api.github.com/users/milan/gists', 'https://api.github.com/users/milan/starred', 'https://api.github.com/users/milan/repos', 'https://api.github.com/users/milan/events', 'https://api.github.com/users/milan/received_events', 0); +INSERT INTO `developer` VALUES (3965, 'simo2409', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simone Dall\'Angelo', 'Simone Dall\'Angelo', 'https://dallangelo.com', 'Italy', 'simobg@gmail.com', 'true', NULL, NULL, 0, 0, 12, 2, 0, 0, 0, '2008-03-27T13:29:24Z', '2024-10-22T09:20:59Z', 'https://avatars.githubusercontent.com/u/3965?v=4', 'https://api.github.com/users/simo2409', 'https://github.com/simo2409', 'https://api.github.com/users/simo2409/followers', 'https://api.github.com/users/simo2409/following', 'https://api.github.com/users/simo2409/gists', 'https://api.github.com/users/simo2409/starred', 'https://api.github.com/users/simo2409/repos', 'https://api.github.com/users/simo2409/events', 'https://api.github.com/users/simo2409/received_events', 0); +INSERT INTO `developer` VALUES (3966, 'djcp', 'C', 0, 0, 0, 0, 0, 0, 0, 'DJCP', 'ezCater', 'http://blog.collispuro.com/', 'Lynn, Massachusetts', 'dan@collispuro.net', NULL, NULL, NULL, 0, 0, 82, 6, 0, 0, 0, '2008-03-27T14:51:35Z', '2024-10-26T15:49:38Z', 'https://avatars.githubusercontent.com/u/3966?v=4', 'https://api.github.com/users/djcp', 'https://github.com/djcp', 'https://api.github.com/users/djcp/followers', 'https://api.github.com/users/djcp/following', 'https://api.github.com/users/djcp/gists', 'https://api.github.com/users/djcp/starred', 'https://api.github.com/users/djcp/repos', 'https://api.github.com/users/djcp/events', 'https://api.github.com/users/djcp/received_events', 0); +INSERT INTO `developer` VALUES (3968, 'jpzwarte', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeroen Zwartepoorte', '@sanomalearning ', '', 'The Netherlands', 'jeroen.zwartepoorte@gmail.com', NULL, 'Software architect, front-ender, Web Components, UX, Design, Education.', 'jpzwarte', 0, 0, 34, 2, 0, 0, 0, '2008-03-27T15:41:24Z', '2024-11-01T13:42:59Z', 'https://avatars.githubusercontent.com/u/3968?v=4', 'https://api.github.com/users/jpzwarte', 'https://github.com/jpzwarte', 'https://api.github.com/users/jpzwarte/followers', 'https://api.github.com/users/jpzwarte/following', 'https://api.github.com/users/jpzwarte/gists', 'https://api.github.com/users/jpzwarte/starred', 'https://api.github.com/users/jpzwarte/repos', 'https://api.github.com/users/jpzwarte/events', 'https://api.github.com/users/jpzwarte/received_events', 0); +INSERT INTO `developer` VALUES (3969, 'nightfall-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-27T15:41:35Z', '2016-02-26T22:35:02Z', 'https://avatars.githubusercontent.com/u/3969?v=4', 'https://api.github.com/users/nightfall-zz', 'https://github.com/nightfall-zz', 'https://api.github.com/users/nightfall-zz/followers', 'https://api.github.com/users/nightfall-zz/following', 'https://api.github.com/users/nightfall-zz/gists', 'https://api.github.com/users/nightfall-zz/starred', 'https://api.github.com/users/nightfall-zz/repos', 'https://api.github.com/users/nightfall-zz/events', 'https://api.github.com/users/nightfall-zz/received_events', 0); +INSERT INTO `developer` VALUES (3971, 'HusseinMorsy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hussein Morsy', 'morSystem GmbH', '', 'Düsseldorf, Germany', 'hussein@morsy.de', NULL, 'Professional Ruby on Rails developer since 2005', NULL, 0, 0, 67, 166, 0, 0, 0, '2008-03-27T15:42:17Z', '2024-10-29T13:15:33Z', 'https://avatars.githubusercontent.com/u/3971?v=4', 'https://api.github.com/users/HusseinMorsy', 'https://github.com/HusseinMorsy', 'https://api.github.com/users/HusseinMorsy/followers', 'https://api.github.com/users/HusseinMorsy/following', 'https://api.github.com/users/HusseinMorsy/gists', 'https://api.github.com/users/HusseinMorsy/starred', 'https://api.github.com/users/HusseinMorsy/repos', 'https://api.github.com/users/HusseinMorsy/events', 'https://api.github.com/users/HusseinMorsy/received_events', 0); +INSERT INTO `developer` VALUES (3972, 'radicalbender', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-27T15:42:26Z', '2019-11-21T19:47:51Z', 'https://avatars.githubusercontent.com/u/3972?v=4', 'https://api.github.com/users/radicalbender', 'https://github.com/radicalbender', 'https://api.github.com/users/radicalbender/followers', 'https://api.github.com/users/radicalbender/following', 'https://api.github.com/users/radicalbender/gists', 'https://api.github.com/users/radicalbender/starred', 'https://api.github.com/users/radicalbender/repos', 'https://api.github.com/users/radicalbender/events', 'https://api.github.com/users/radicalbender/received_events', 0); +INSERT INTO `developer` VALUES (3973, 'venkat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Venkat Mahalingam', NULL, 'http://venkat.io', '未知', 'venkat@venkat.io', NULL, NULL, NULL, 0, 0, 34, 0, 0, 0, 0, '2008-03-27T15:44:20Z', '2024-08-10T00:58:40Z', 'https://avatars.githubusercontent.com/u/3973?v=4', 'https://api.github.com/users/venkat', 'https://github.com/venkat', 'https://api.github.com/users/venkat/followers', 'https://api.github.com/users/venkat/following', 'https://api.github.com/users/venkat/gists', 'https://api.github.com/users/venkat/starred', 'https://api.github.com/users/venkat/repos', 'https://api.github.com/users/venkat/events', 'https://api.github.com/users/venkat/received_events', 0); +INSERT INTO `developer` VALUES (3974, 'danhigham', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Higham', 'Sysdig', 'twitter.com/danhigham', 'Portland, OR', 'dan@high.am', NULL, 'Senior Customer Solutions Architect', NULL, 0, 0, 64, 63, 0, 0, 0, '2008-03-27T15:46:06Z', '2024-02-18T08:40:18Z', 'https://avatars.githubusercontent.com/u/3974?v=4', 'https://api.github.com/users/danhigham', 'https://github.com/danhigham', 'https://api.github.com/users/danhigham/followers', 'https://api.github.com/users/danhigham/following', 'https://api.github.com/users/danhigham/gists', 'https://api.github.com/users/danhigham/starred', 'https://api.github.com/users/danhigham/repos', 'https://api.github.com/users/danhigham/events', 'https://api.github.com/users/danhigham/received_events', 0); +INSERT INTO `developer` VALUES (3975, 'carter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carter Parks', 'Carter Parks', 'http://carterparks.com', 'Wyoming', 'carter@carterparks.com', NULL, NULL, NULL, 0, 0, 15, 1, 0, 0, 0, '2008-03-27T15:48:31Z', '2024-10-18T18:57:17Z', 'https://avatars.githubusercontent.com/u/3975?v=4', 'https://api.github.com/users/carter', 'https://github.com/carter', 'https://api.github.com/users/carter/followers', 'https://api.github.com/users/carter/following', 'https://api.github.com/users/carter/gists', 'https://api.github.com/users/carter/starred', 'https://api.github.com/users/carter/repos', 'https://api.github.com/users/carter/events', 'https://api.github.com/users/carter/received_events', 0); +INSERT INTO `developer` VALUES (3976, 'jhanekom', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-27T15:49:06Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/3976?v=4', 'https://api.github.com/users/jhanekom', 'https://github.com/jhanekom', 'https://api.github.com/users/jhanekom/followers', 'https://api.github.com/users/jhanekom/following', 'https://api.github.com/users/jhanekom/gists', 'https://api.github.com/users/jhanekom/starred', 'https://api.github.com/users/jhanekom/repos', 'https://api.github.com/users/jhanekom/events', 'https://api.github.com/users/jhanekom/received_events', 0); +INSERT INTO `developer` VALUES (3977, 'tmc', 'C+', 19.741085541315464, 0, 0, 0, 0, 0, 0, 'Travis Cline', '@brevdev ', '', 'SF', 'travis.cline@gmail.com', NULL, '🚀 ', 'traviscline', 0, 0, 1436, 361, 0, 0, 0, '2008-03-27T15:49:13Z', '2024-10-26T17:06:33Z', 'https://avatars.githubusercontent.com/u/3977?v=4', 'https://api.github.com/users/tmc', 'https://github.com/tmc', 'https://api.github.com/users/tmc/followers', 'https://api.github.com/users/tmc/following', 'https://api.github.com/users/tmc/gists', 'https://api.github.com/users/tmc/starred', 'https://api.github.com/users/tmc/repos', 'https://api.github.com/users/tmc/events', 'https://api.github.com/users/tmc/received_events', 0); +INSERT INTO `developer` VALUES (3978, 'iainlowe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Iain Lowe', NULL, 'http://about.me/ilowe', 'Montreal', 'iain.lowe@gmail.com', NULL, 'Cat Herder Extraordinaire', NULL, 0, 0, 9, 2, 0, 0, 0, '2008-03-27T15:50:49Z', '2024-10-29T04:07:56Z', 'https://avatars.githubusercontent.com/u/3978?v=4', 'https://api.github.com/users/iainlowe', 'https://github.com/iainlowe', 'https://api.github.com/users/iainlowe/followers', 'https://api.github.com/users/iainlowe/following', 'https://api.github.com/users/iainlowe/gists', 'https://api.github.com/users/iainlowe/starred', 'https://api.github.com/users/iainlowe/repos', 'https://api.github.com/users/iainlowe/events', 'https://api.github.com/users/iainlowe/received_events', 0); +INSERT INTO `developer` VALUES (3979, 'LeonB', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leon Bogaert', '@omniboost ', 'http://www.vanutsteen.nl', 'Hulst, Netherlands', 'leonbogaert+github@gmail.com', NULL, NULL, NULL, 0, 0, 23, 15, 0, 0, 0, '2008-03-27T15:50:50Z', '2024-09-19T19:30:15Z', 'https://avatars.githubusercontent.com/u/3979?v=4', 'https://api.github.com/users/LeonB', 'https://github.com/LeonB', 'https://api.github.com/users/LeonB/followers', 'https://api.github.com/users/LeonB/following', 'https://api.github.com/users/LeonB/gists', 'https://api.github.com/users/LeonB/starred', 'https://api.github.com/users/LeonB/repos', 'https://api.github.com/users/LeonB/events', 'https://api.github.com/users/LeonB/received_events', 0); +INSERT INTO `developer` VALUES (3980, 'robertfeldt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Feldt', 'Chalmers University', 'http://www.cse.chalmers.se/~feldt/', 'Gothenburg, Sweden', 'robert.feldt@gmail.com', NULL, NULL, NULL, 0, 0, 48, 2, 0, 0, 0, '2008-03-27T15:51:58Z', '2024-11-05T06:47:33Z', 'https://avatars.githubusercontent.com/u/3980?v=4', 'https://api.github.com/users/robertfeldt', 'https://github.com/robertfeldt', 'https://api.github.com/users/robertfeldt/followers', 'https://api.github.com/users/robertfeldt/following', 'https://api.github.com/users/robertfeldt/gists', 'https://api.github.com/users/robertfeldt/starred', 'https://api.github.com/users/robertfeldt/repos', 'https://api.github.com/users/robertfeldt/events', 'https://api.github.com/users/robertfeldt/received_events', 0); +INSERT INTO `developer` VALUES (3981, 'techbelly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Griffiths', NULL, 'www.techbelly.com', '未知', 'bengriffiths@gmail.com', NULL, NULL, NULL, 0, 0, 65, 31, 0, 0, 0, '2008-03-27T15:53:38Z', '2024-08-02T15:06:11Z', 'https://avatars.githubusercontent.com/u/3981?v=4', 'https://api.github.com/users/techbelly', 'https://github.com/techbelly', 'https://api.github.com/users/techbelly/followers', 'https://api.github.com/users/techbelly/following', 'https://api.github.com/users/techbelly/gists', 'https://api.github.com/users/techbelly/starred', 'https://api.github.com/users/techbelly/repos', 'https://api.github.com/users/techbelly/events', 'https://api.github.com/users/techbelly/received_events', 0); +INSERT INTO `developer` VALUES (3983, 'derigel', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-27T16:00:25Z', '2015-04-02T10:37:29Z', 'https://avatars.githubusercontent.com/u/3983?v=4', 'https://api.github.com/users/derigel', 'https://github.com/derigel', 'https://api.github.com/users/derigel/followers', 'https://api.github.com/users/derigel/following', 'https://api.github.com/users/derigel/gists', 'https://api.github.com/users/derigel/starred', 'https://api.github.com/users/derigel/repos', 'https://api.github.com/users/derigel/events', 'https://api.github.com/users/derigel/received_events', 0); +INSERT INTO `developer` VALUES (3986, 'benjamineskola', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Eskola', '@unboxed', 'https://eskola.uk', '未知', NULL, NULL, NULL, NULL, 0, 0, 27, 11, 0, 0, 0, '2008-03-27T16:07:46Z', '2024-10-20T11:21:02Z', 'https://avatars.githubusercontent.com/u/3986?v=4', 'https://api.github.com/users/benjamineskola', 'https://github.com/benjamineskola', 'https://api.github.com/users/benjamineskola/followers', 'https://api.github.com/users/benjamineskola/following', 'https://api.github.com/users/benjamineskola/gists', 'https://api.github.com/users/benjamineskola/starred', 'https://api.github.com/users/benjamineskola/repos', 'https://api.github.com/users/benjamineskola/events', 'https://api.github.com/users/benjamineskola/received_events', 0); +INSERT INTO `developer` VALUES (3987, 'walker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Walker', NULL, '', 'Saint Louis, MO', NULL, 'true', 'Bikes. GIS. Making cities work.', NULL, 0, 0, 63, 74, 0, 0, 0, '2008-03-27T16:08:04Z', '2024-09-21T00:53:06Z', 'https://avatars.githubusercontent.com/u/3987?v=4', 'https://api.github.com/users/walker', 'https://github.com/walker', 'https://api.github.com/users/walker/followers', 'https://api.github.com/users/walker/following', 'https://api.github.com/users/walker/gists', 'https://api.github.com/users/walker/starred', 'https://api.github.com/users/walker/repos', 'https://api.github.com/users/walker/events', 'https://api.github.com/users/walker/received_events', 0); +INSERT INTO `developer` VALUES (3988, 'mt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathew Thomas', 'Ocrolus', '', 'NYC', NULL, NULL, NULL, NULL, 0, 0, 25, 12, 0, 0, 0, '2008-03-27T16:10:28Z', '2024-10-01T17:11:12Z', 'https://avatars.githubusercontent.com/u/3988?v=4', 'https://api.github.com/users/mt', 'https://github.com/mt', 'https://api.github.com/users/mt/followers', 'https://api.github.com/users/mt/following', 'https://api.github.com/users/mt/gists', 'https://api.github.com/users/mt/starred', 'https://api.github.com/users/mt/repos', 'https://api.github.com/users/mt/events', 'https://api.github.com/users/mt/received_events', 0); +INSERT INTO `developer` VALUES (3989, 'prashanthellina', 'C', 0, 0, 0, 0, 0, 0, 0, 'Prashanth Ellina', 'Deep Compute, LLC', 'http://blog.prashanthellina.com', 'Toronto, Canada', NULL, NULL, NULL, NULL, 0, 0, 46, 16, 0, 0, 0, '2008-03-27T16:21:50Z', '2024-01-11T13:20:01Z', 'https://avatars.githubusercontent.com/u/3989?v=4', 'https://api.github.com/users/prashanthellina', 'https://github.com/prashanthellina', 'https://api.github.com/users/prashanthellina/followers', 'https://api.github.com/users/prashanthellina/following', 'https://api.github.com/users/prashanthellina/gists', 'https://api.github.com/users/prashanthellina/starred', 'https://api.github.com/users/prashanthellina/repos', 'https://api.github.com/users/prashanthellina/events', 'https://api.github.com/users/prashanthellina/received_events', 0); +INSERT INTO `developer` VALUES (3993, 'brew', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brook Elgie', '@fourteenfish and @emisgroup', 'https://brookelgie.com', 'New Forest, UK', NULL, NULL, NULL, 'brew', 0, 0, 76, 11, 0, 0, 0, '2008-03-27T16:39:27Z', '2024-10-14T20:47:51Z', 'https://avatars.githubusercontent.com/u/3993?v=4', 'https://api.github.com/users/brew', 'https://github.com/brew', 'https://api.github.com/users/brew/followers', 'https://api.github.com/users/brew/following', 'https://api.github.com/users/brew/gists', 'https://api.github.com/users/brew/starred', 'https://api.github.com/users/brew/repos', 'https://api.github.com/users/brew/events', 'https://api.github.com/users/brew/received_events', 0); +INSERT INTO `developer` VALUES (3994, 'probablykabari', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Chicago, IL', NULL, NULL, NULL, NULL, 0, 0, 27, 33, 0, 0, 0, '2008-03-27T16:48:44Z', '2024-10-27T22:20:38Z', 'https://avatars.githubusercontent.com/u/3994?v=4', 'https://api.github.com/users/probablykabari', 'https://github.com/probablykabari', 'https://api.github.com/users/probablykabari/followers', 'https://api.github.com/users/probablykabari/following', 'https://api.github.com/users/probablykabari/gists', 'https://api.github.com/users/probablykabari/starred', 'https://api.github.com/users/probablykabari/repos', 'https://api.github.com/users/probablykabari/events', 'https://api.github.com/users/probablykabari/received_events', 0); +INSERT INTO `developer` VALUES (3996, 'timwraight', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Wraight', '@octoenergy ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-27T16:59:58Z', '2024-10-12T09:48:52Z', 'https://avatars.githubusercontent.com/u/3996?v=4', 'https://api.github.com/users/timwraight', 'https://github.com/timwraight', 'https://api.github.com/users/timwraight/followers', 'https://api.github.com/users/timwraight/following', 'https://api.github.com/users/timwraight/gists', 'https://api.github.com/users/timwraight/starred', 'https://api.github.com/users/timwraight/repos', 'https://api.github.com/users/timwraight/events', 'https://api.github.com/users/timwraight/received_events', 0); +INSERT INTO `developer` VALUES (3997, 'naruse', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Sebastian Muñoz', 'Pencil Square Games', '', 'Canada', 'naruse@gmail.com', 'true', NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-03-27T17:09:32Z', '2024-09-07T15:58:27Z', 'https://avatars.githubusercontent.com/u/3997?v=4', 'https://api.github.com/users/naruse', 'https://github.com/naruse', 'https://api.github.com/users/naruse/followers', 'https://api.github.com/users/naruse/following', 'https://api.github.com/users/naruse/gists', 'https://api.github.com/users/naruse/starred', 'https://api.github.com/users/naruse/repos', 'https://api.github.com/users/naruse/events', 'https://api.github.com/users/naruse/received_events', 0); +INSERT INTO `developer` VALUES (3998, 'srid', 'C', 9.572011173553397, 0, 0, 0, 0, 0, 0, 'Sridhar Ratnakumar', '@juspay', 'https://srid.ca/cv', 'Quebec City, QC', NULL, 'true', 'I enjoy Haskell, Rust & Nix.', 'sridca', 0, 0, 843, 111, 0, 0, 0, '2008-03-27T17:16:19Z', '2024-10-26T12:29:20Z', 'https://avatars.githubusercontent.com/u/3998?v=4', 'https://api.github.com/users/srid', 'https://github.com/srid', 'https://api.github.com/users/srid/followers', 'https://api.github.com/users/srid/following', 'https://api.github.com/users/srid/gists', 'https://api.github.com/users/srid/starred', 'https://api.github.com/users/srid/repos', 'https://api.github.com/users/srid/events', 'https://api.github.com/users/srid/received_events', 0); +INSERT INTO `developer` VALUES (4000, 'pjpartridge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Phillip Partridge', NULL, '', 'Hoofddorp, The Netherlands', NULL, NULL, NULL, 'pjpartridge', 0, 0, 3, 2, 0, 0, 0, '2008-03-27T17:20:24Z', '2023-04-07T05:30:58Z', 'https://avatars.githubusercontent.com/u/4000?v=4', 'https://api.github.com/users/pjpartridge', 'https://github.com/pjpartridge', 'https://api.github.com/users/pjpartridge/followers', 'https://api.github.com/users/pjpartridge/following', 'https://api.github.com/users/pjpartridge/gists', 'https://api.github.com/users/pjpartridge/starred', 'https://api.github.com/users/pjpartridge/repos', 'https://api.github.com/users/pjpartridge/events', 'https://api.github.com/users/pjpartridge/received_events', 0); +INSERT INTO `developer` VALUES (4003, 'shibu', 'C', 0, 0, 0, 0, 0, 0, 0, 'shibukawa yoshiki', 'I love Civic Hybrid!', 'http://www.shibu.jp', 'Japan / Tochigi', 'yoshiki at shibu.jp', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-27T17:58:53Z', '2017-01-17T20:20:04Z', 'https://avatars.githubusercontent.com/u/4003?v=4', 'https://api.github.com/users/shibu', 'https://github.com/shibu', 'https://api.github.com/users/shibu/followers', 'https://api.github.com/users/shibu/following', 'https://api.github.com/users/shibu/gists', 'https://api.github.com/users/shibu/starred', 'https://api.github.com/users/shibu/repos', 'https://api.github.com/users/shibu/events', 'https://api.github.com/users/shibu/received_events', 0); +INSERT INTO `developer` VALUES (4004, 'rikur', 'C', 0, 0, 0, 0, 0, 0, 0, 'rikur', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 23, 7, 0, 0, 0, '2008-03-27T18:08:42Z', '2024-10-30T14:25:24Z', 'https://avatars.githubusercontent.com/u/4004?v=4', 'https://api.github.com/users/rikur', 'https://github.com/rikur', 'https://api.github.com/users/rikur/followers', 'https://api.github.com/users/rikur/following', 'https://api.github.com/users/rikur/gists', 'https://api.github.com/users/rikur/starred', 'https://api.github.com/users/rikur/repos', 'https://api.github.com/users/rikur/events', 'https://api.github.com/users/rikur/received_events', 0); +INSERT INTO `developer` VALUES (4005, 'jpemberthy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Pemberthy', 'GitHub', 'http://juan.pemberthy.com/', 'MDE ✈️ SFO ✈️ BOS', 'jpemberthy@github.com', NULL, '🤖 && ☕ ', 'jpemberthy', 0, 0, 106, 25, 0, 0, 0, '2008-03-27T18:17:04Z', '2024-10-28T15:23:49Z', 'https://avatars.githubusercontent.com/u/4005?v=4', 'https://api.github.com/users/jpemberthy', 'https://github.com/jpemberthy', 'https://api.github.com/users/jpemberthy/followers', 'https://api.github.com/users/jpemberthy/following', 'https://api.github.com/users/jpemberthy/gists', 'https://api.github.com/users/jpemberthy/starred', 'https://api.github.com/users/jpemberthy/repos', 'https://api.github.com/users/jpemberthy/events', 'https://api.github.com/users/jpemberthy/received_events', 0); +INSERT INTO `developer` VALUES (4007, 'bluebox-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-27T18:22:29Z', '2016-02-26T22:35:03Z', 'https://avatars.githubusercontent.com/u/4007?v=4', 'https://api.github.com/users/bluebox-xx', 'https://github.com/bluebox-xx', 'https://api.github.com/users/bluebox-xx/followers', 'https://api.github.com/users/bluebox-xx/following', 'https://api.github.com/users/bluebox-xx/gists', 'https://api.github.com/users/bluebox-xx/starred', 'https://api.github.com/users/bluebox-xx/repos', 'https://api.github.com/users/bluebox-xx/events', 'https://api.github.com/users/bluebox-xx/received_events', 0); +INSERT INTO `developer` VALUES (4008, 'walker233', 'C', 0, 0, 0, 0, 0, 0, 0, 'Walker', 'University of Alaska Fairbanks', 'First time to use this service. Let\'s see what it\'s like.', 'Fairbanks, AK', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-03-27T18:24:03Z', '2023-01-03T05:16:07Z', 'https://avatars.githubusercontent.com/u/4008?v=4', 'https://api.github.com/users/walker233', 'https://github.com/walker233', 'https://api.github.com/users/walker233/followers', 'https://api.github.com/users/walker233/following', 'https://api.github.com/users/walker233/gists', 'https://api.github.com/users/walker233/starred', 'https://api.github.com/users/walker233/repos', 'https://api.github.com/users/walker233/events', 'https://api.github.com/users/walker233/received_events', 0); +INSERT INTO `developer` VALUES (4009, 'lordaniel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Restrepo Montoya', NULL, '', 'Colombia - Medellín', 'daniel.restrepo@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-27T18:27:10Z', '2024-02-04T13:58:02Z', 'https://avatars.githubusercontent.com/u/4009?v=4', 'https://api.github.com/users/lordaniel', 'https://github.com/lordaniel', 'https://api.github.com/users/lordaniel/followers', 'https://api.github.com/users/lordaniel/following', 'https://api.github.com/users/lordaniel/gists', 'https://api.github.com/users/lordaniel/starred', 'https://api.github.com/users/lordaniel/repos', 'https://api.github.com/users/lordaniel/events', 'https://api.github.com/users/lordaniel/received_events', 0); +INSERT INTO `developer` VALUES (4011, 'operations', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-27T18:27:40Z', '2022-06-22T07:08:45Z', 'https://avatars.githubusercontent.com/u/4011?v=4', 'https://api.github.com/users/operations', 'https://github.com/operations', 'https://api.github.com/users/operations/followers', 'https://api.github.com/users/operations/following', 'https://api.github.com/users/operations/gists', 'https://api.github.com/users/operations/starred', 'https://api.github.com/users/operations/repos', 'https://api.github.com/users/operations/events', 'https://api.github.com/users/operations/received_events', 0); +INSERT INTO `developer` VALUES (4012, 'heijmerikx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rutger Heijmerikx', NULL, 'https://thedutchlab.com/', 'Zwolle, the Netherlands', 'rutger@thedutchlab.com', 'true', NULL, NULL, 0, 0, 18, 18, 0, 0, 0, '2008-03-27T18:44:43Z', '2024-07-07T08:01:57Z', 'https://avatars.githubusercontent.com/u/4012?v=4', 'https://api.github.com/users/heijmerikx', 'https://github.com/heijmerikx', 'https://api.github.com/users/heijmerikx/followers', 'https://api.github.com/users/heijmerikx/following', 'https://api.github.com/users/heijmerikx/gists', 'https://api.github.com/users/heijmerikx/starred', 'https://api.github.com/users/heijmerikx/repos', 'https://api.github.com/users/heijmerikx/events', 'https://api.github.com/users/heijmerikx/received_events', 0); +INSERT INTO `developer` VALUES (4015, 'cnu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Srinivasan Rangarajan', NULL, 'https://cnu.name', 'Chennai, India', NULL, 'true', 'An \"Entre+gineer\" who architects and builds large-scale SaaS products full-time and work on small online products on the side.', 'cnu', 0, 0, 56, 19, 0, 0, 0, '2008-03-27T19:09:49Z', '2024-09-02T13:46:55Z', 'https://avatars.githubusercontent.com/u/4015?v=4', 'https://api.github.com/users/cnu', 'https://github.com/cnu', 'https://api.github.com/users/cnu/followers', 'https://api.github.com/users/cnu/following', 'https://api.github.com/users/cnu/gists', 'https://api.github.com/users/cnu/starred', 'https://api.github.com/users/cnu/repos', 'https://api.github.com/users/cnu/events', 'https://api.github.com/users/cnu/received_events', 0); +INSERT INTO `developer` VALUES (4017, 'jimweirich', 'C+', 24.851345510275156, 0, 0, 0, 0, 0, 0, 'Jim Weirich', 'Neo', 'http://onestepback.org', 'Cincinnati', 'jim.weirich@gmail.com', NULL, NULL, NULL, 0, 0, 1734, 0, 0, 0, 0, '2008-03-27T19:19:22Z', '2017-08-14T19:39:38Z', 'https://avatars.githubusercontent.com/u/4017?v=4', 'https://api.github.com/users/jimweirich', 'https://github.com/jimweirich', 'https://api.github.com/users/jimweirich/followers', 'https://api.github.com/users/jimweirich/following', 'https://api.github.com/users/jimweirich/gists', 'https://api.github.com/users/jimweirich/starred', 'https://api.github.com/users/jimweirich/repos', 'https://api.github.com/users/jimweirich/events', 'https://api.github.com/users/jimweirich/received_events', 0); +INSERT INTO `developer` VALUES (4018, 'pyu10055', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ping Yu', 'Google', '', 'CA', NULL, NULL, NULL, NULL, 0, 0, 159, 8, 0, 0, 0, '2008-03-27T19:28:02Z', '2024-08-21T18:30:32Z', 'https://avatars.githubusercontent.com/u/4018?v=4', 'https://api.github.com/users/pyu10055', 'https://github.com/pyu10055', 'https://api.github.com/users/pyu10055/followers', 'https://api.github.com/users/pyu10055/following', 'https://api.github.com/users/pyu10055/gists', 'https://api.github.com/users/pyu10055/starred', 'https://api.github.com/users/pyu10055/repos', 'https://api.github.com/users/pyu10055/events', 'https://api.github.com/users/pyu10055/received_events', 0); +INSERT INTO `developer` VALUES (4019, 'DougHall', 'C', 8.415666365001927, 0, 49, 27, 30, 0, 0, 'Doug Hall', NULL, '', 'Pike Road, AL USA', 'doug@jdouglashall.com', NULL, NULL, NULL, 0, 0, 9, 16, 0, 0, 0, '2008-03-27T20:09:47Z', '2024-10-25T16:07:38Z', 'https://avatars.githubusercontent.com/u/4019?v=4', 'https://api.github.com/users/DougHall', 'https://github.com/DougHall', 'https://api.github.com/users/DougHall/followers', 'https://api.github.com/users/DougHall/following', 'https://api.github.com/users/DougHall/gists', 'https://api.github.com/users/DougHall/starred', 'https://api.github.com/users/DougHall/repos', 'https://api.github.com/users/DougHall/events', 'https://api.github.com/users/DougHall/received_events', 0); +INSERT INTO `developer` VALUES (4020, 'mlwhall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Hall', 'Compass Series', 'http://www.mlwhall.com/', 'Napa, CA', 'mlwhall@gmail.com', NULL, NULL, 'mlwhall', 0, 0, 6, 2, 0, 0, 0, '2008-03-27T20:16:14Z', '2022-01-17T22:58:51Z', 'https://avatars.githubusercontent.com/u/4020?v=4', 'https://api.github.com/users/mlwhall', 'https://github.com/mlwhall', 'https://api.github.com/users/mlwhall/followers', 'https://api.github.com/users/mlwhall/following', 'https://api.github.com/users/mlwhall/gists', 'https://api.github.com/users/mlwhall/starred', 'https://api.github.com/users/mlwhall/repos', 'https://api.github.com/users/mlwhall/events', 'https://api.github.com/users/mlwhall/received_events', 0); +INSERT INTO `developer` VALUES (4022, 'dlehman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Lehman', NULL, '', '未知', 'dlehman@gmail.com', NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-27T20:27:03Z', '2023-12-28T14:24:05Z', 'https://avatars.githubusercontent.com/u/4022?v=4', 'https://api.github.com/users/dlehman', 'https://github.com/dlehman', 'https://api.github.com/users/dlehman/followers', 'https://api.github.com/users/dlehman/following', 'https://api.github.com/users/dlehman/gists', 'https://api.github.com/users/dlehman/starred', 'https://api.github.com/users/dlehman/repos', 'https://api.github.com/users/dlehman/events', 'https://api.github.com/users/dlehman/received_events', 0); +INSERT INTO `developer` VALUES (4024, 'ttyerlang', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-27T21:52:27Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4024?v=4', 'https://api.github.com/users/ttyerlang', 'https://github.com/ttyerlang', 'https://api.github.com/users/ttyerlang/followers', 'https://api.github.com/users/ttyerlang/following', 'https://api.github.com/users/ttyerlang/gists', 'https://api.github.com/users/ttyerlang/starred', 'https://api.github.com/users/ttyerlang/repos', 'https://api.github.com/users/ttyerlang/events', 'https://api.github.com/users/ttyerlang/received_events', 0); +INSERT INTO `developer` VALUES (4025, 'aulizko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Ulizko', 'Currently seeking a new opportunity', 'http://ulizko.com', 'Cherepovets, Russian Federation', 'alexander@ulizko.com', 'true', NULL, NULL, 0, 0, 27, 24, 0, 0, 0, '2008-03-27T21:57:56Z', '2024-03-16T14:11:19Z', 'https://avatars.githubusercontent.com/u/4025?v=4', 'https://api.github.com/users/aulizko', 'https://github.com/aulizko', 'https://api.github.com/users/aulizko/followers', 'https://api.github.com/users/aulizko/following', 'https://api.github.com/users/aulizko/gists', 'https://api.github.com/users/aulizko/starred', 'https://api.github.com/users/aulizko/repos', 'https://api.github.com/users/aulizko/events', 'https://api.github.com/users/aulizko/received_events', 0); +INSERT INTO `developer` VALUES (4026, 'wmorgan', 'C', 0, 0, 0, 0, 0, 0, 0, 'William Morgan', '@BuoyantIO ', 'https://buoyant.io', 'Austin, TX', NULL, NULL, '@Linkerd talky person and Chief Email Outputter at @BuoyantIO.', NULL, 0, 0, 115, 2, 0, 0, 0, '2008-03-27T22:02:38Z', '2024-08-09T03:59:02Z', 'https://avatars.githubusercontent.com/u/4026?v=4', 'https://api.github.com/users/wmorgan', 'https://github.com/wmorgan', 'https://api.github.com/users/wmorgan/followers', 'https://api.github.com/users/wmorgan/following', 'https://api.github.com/users/wmorgan/gists', 'https://api.github.com/users/wmorgan/starred', 'https://api.github.com/users/wmorgan/repos', 'https://api.github.com/users/wmorgan/events', 'https://api.github.com/users/wmorgan/received_events', 0); +INSERT INTO `developer` VALUES (4027, 'jonthewayne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jon', NULL, '', '未知', 'jonthewayne@gmail.com', NULL, NULL, NULL, 0, 0, 12, 4, 0, 0, 0, '2008-03-27T22:23:42Z', '2024-10-11T21:01:55Z', 'https://avatars.githubusercontent.com/u/4027?v=4', 'https://api.github.com/users/jonthewayne', 'https://github.com/jonthewayne', 'https://api.github.com/users/jonthewayne/followers', 'https://api.github.com/users/jonthewayne/following', 'https://api.github.com/users/jonthewayne/gists', 'https://api.github.com/users/jonthewayne/starred', 'https://api.github.com/users/jonthewayne/repos', 'https://api.github.com/users/jonthewayne/events', 'https://api.github.com/users/jonthewayne/received_events', 0); +INSERT INTO `developer` VALUES (4029, 'anarchitech', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://anarchitech.org', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-27T22:54:19Z', '2024-05-12T15:03:04Z', 'https://avatars.githubusercontent.com/u/4029?v=4', 'https://api.github.com/users/anarchitech', 'https://github.com/anarchitech', 'https://api.github.com/users/anarchitech/followers', 'https://api.github.com/users/anarchitech/following', 'https://api.github.com/users/anarchitech/gists', 'https://api.github.com/users/anarchitech/starred', 'https://api.github.com/users/anarchitech/repos', 'https://api.github.com/users/anarchitech/events', 'https://api.github.com/users/anarchitech/received_events', 0); +INSERT INTO `developer` VALUES (4030, 'tronash', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-27T22:58:53Z', '2019-12-21T18:42:39Z', 'https://avatars.githubusercontent.com/u/4030?v=4', 'https://api.github.com/users/tronash', 'https://github.com/tronash', 'https://api.github.com/users/tronash/followers', 'https://api.github.com/users/tronash/following', 'https://api.github.com/users/tronash/gists', 'https://api.github.com/users/tronash/starred', 'https://api.github.com/users/tronash/repos', 'https://api.github.com/users/tronash/events', 'https://api.github.com/users/tronash/received_events', 0); +INSERT INTO `developer` VALUES (4031, 'nick-zoecity', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-27T23:11:31Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4031?v=4', 'https://api.github.com/users/nick-zoecity', 'https://github.com/nick-zoecity', 'https://api.github.com/users/nick-zoecity/followers', 'https://api.github.com/users/nick-zoecity/following', 'https://api.github.com/users/nick-zoecity/gists', 'https://api.github.com/users/nick-zoecity/starred', 'https://api.github.com/users/nick-zoecity/repos', 'https://api.github.com/users/nick-zoecity/events', 'https://api.github.com/users/nick-zoecity/received_events', 0); +INSERT INTO `developer` VALUES (4033, 'dbgrandi', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Grandinetti', 'Yahoo!', 'http://dbgrandi.github.io', 'NYC', 'dbgrandi@gmail.com', NULL, 'Mobile Architect at Yahoo!', 'dbgrandi', 0, 0, 111, 18, 0, 0, 0, '2008-03-27T23:34:31Z', '2024-02-14T19:17:37Z', 'https://avatars.githubusercontent.com/u/4033?v=4', 'https://api.github.com/users/dbgrandi', 'https://github.com/dbgrandi', 'https://api.github.com/users/dbgrandi/followers', 'https://api.github.com/users/dbgrandi/following', 'https://api.github.com/users/dbgrandi/gists', 'https://api.github.com/users/dbgrandi/starred', 'https://api.github.com/users/dbgrandi/repos', 'https://api.github.com/users/dbgrandi/events', 'https://api.github.com/users/dbgrandi/received_events', 0); +INSERT INTO `developer` VALUES (4034, 'threebytesfull', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rufus Cable', NULL, 'threebytesfull.com', 'UK', 'rufus@threebytesfull.com', NULL, NULL, NULL, 0, 0, 28, 18, 0, 0, 0, '2008-03-27T23:38:19Z', '2024-09-19T05:22:36Z', 'https://avatars.githubusercontent.com/u/4034?v=4', 'https://api.github.com/users/threebytesfull', 'https://github.com/threebytesfull', 'https://api.github.com/users/threebytesfull/followers', 'https://api.github.com/users/threebytesfull/following', 'https://api.github.com/users/threebytesfull/gists', 'https://api.github.com/users/threebytesfull/starred', 'https://api.github.com/users/threebytesfull/repos', 'https://api.github.com/users/threebytesfull/events', 'https://api.github.com/users/threebytesfull/received_events', 0); +INSERT INTO `developer` VALUES (4035, 'kiranmeduri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kiran Meduri', '@aws (Container Services)', 'https://twitter.com/kiranmeduri', 'Seattle, WA', NULL, NULL, 'Principal Software Engineer - ECS/AppMesh/CloudMap', NULL, 0, 0, 28, 8, 0, 0, 0, '2008-03-27T23:41:17Z', '2024-09-06T15:59:45Z', 'https://avatars.githubusercontent.com/u/4035?v=4', 'https://api.github.com/users/kiranmeduri', 'https://github.com/kiranmeduri', 'https://api.github.com/users/kiranmeduri/followers', 'https://api.github.com/users/kiranmeduri/following', 'https://api.github.com/users/kiranmeduri/gists', 'https://api.github.com/users/kiranmeduri/starred', 'https://api.github.com/users/kiranmeduri/repos', 'https://api.github.com/users/kiranmeduri/events', 'https://api.github.com/users/kiranmeduri/received_events', 0); +INSERT INTO `developer` VALUES (4037, 'marcelo-zoecity', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-28T00:00:10Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4037?v=4', 'https://api.github.com/users/marcelo-zoecity', 'https://github.com/marcelo-zoecity', 'https://api.github.com/users/marcelo-zoecity/followers', 'https://api.github.com/users/marcelo-zoecity/following', 'https://api.github.com/users/marcelo-zoecity/gists', 'https://api.github.com/users/marcelo-zoecity/starred', 'https://api.github.com/users/marcelo-zoecity/repos', 'https://api.github.com/users/marcelo-zoecity/events', 'https://api.github.com/users/marcelo-zoecity/received_events', 0); +INSERT INTO `developer` VALUES (4038, 'rakan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-28T00:04:28Z', '2018-12-05T19:15:15Z', 'https://avatars.githubusercontent.com/u/4038?v=4', 'https://api.github.com/users/rakan', 'https://github.com/rakan', 'https://api.github.com/users/rakan/followers', 'https://api.github.com/users/rakan/following', 'https://api.github.com/users/rakan/gists', 'https://api.github.com/users/rakan/starred', 'https://api.github.com/users/rakan/repos', 'https://api.github.com/users/rakan/events', 'https://api.github.com/users/rakan/received_events', 0); +INSERT INTO `developer` VALUES (4039, 'Doctor-xx-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-28T00:05:21Z', '2019-12-15T03:11:48Z', 'https://avatars.githubusercontent.com/u/4039?v=4', 'https://api.github.com/users/Doctor-xx-xx', 'https://github.com/Doctor-xx-xx', 'https://api.github.com/users/Doctor-xx-xx/followers', 'https://api.github.com/users/Doctor-xx-xx/following', 'https://api.github.com/users/Doctor-xx-xx/gists', 'https://api.github.com/users/Doctor-xx-xx/starred', 'https://api.github.com/users/Doctor-xx-xx/repos', 'https://api.github.com/users/Doctor-xx-xx/events', 'https://api.github.com/users/Doctor-xx-xx/received_events', 0); +INSERT INTO `developer` VALUES (4040, 'sdudenhofer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seth Dudenhofer', NULL, '', 'Eugene, OR', 'sdudenhofer@gmail.com', 'true', 'Data Nerd | Python | SQL', NULL, 0, 0, 14, 35, 0, 0, 0, '2008-03-28T00:08:50Z', '2024-10-20T20:51:29Z', 'https://avatars.githubusercontent.com/u/4040?v=4', 'https://api.github.com/users/sdudenhofer', 'https://github.com/sdudenhofer', 'https://api.github.com/users/sdudenhofer/followers', 'https://api.github.com/users/sdudenhofer/following', 'https://api.github.com/users/sdudenhofer/gists', 'https://api.github.com/users/sdudenhofer/starred', 'https://api.github.com/users/sdudenhofer/repos', 'https://api.github.com/users/sdudenhofer/events', 'https://api.github.com/users/sdudenhofer/received_events', 0); +INSERT INTO `developer` VALUES (4041, 'joshj', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 4, 0, 0, 0, '2008-03-28T00:22:25Z', '2018-01-10T23:24:42Z', 'https://avatars.githubusercontent.com/u/4041?v=4', 'https://api.github.com/users/joshj', 'https://github.com/joshj', 'https://api.github.com/users/joshj/followers', 'https://api.github.com/users/joshj/following', 'https://api.github.com/users/joshj/gists', 'https://api.github.com/users/joshj/starred', 'https://api.github.com/users/joshj/repos', 'https://api.github.com/users/joshj/events', 'https://api.github.com/users/joshj/received_events', 0); +INSERT INTO `developer` VALUES (4042, 'anthem', 'C', 0, 0, 0, 0, 0, 0, 0, 'James', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-28T00:37:25Z', '2016-01-07T02:37:47Z', 'https://avatars.githubusercontent.com/u/4042?v=4', 'https://api.github.com/users/anthem', 'https://github.com/anthem', 'https://api.github.com/users/anthem/followers', 'https://api.github.com/users/anthem/following', 'https://api.github.com/users/anthem/gists', 'https://api.github.com/users/anthem/starred', 'https://api.github.com/users/anthem/repos', 'https://api.github.com/users/anthem/events', 'https://api.github.com/users/anthem/received_events', 0); +INSERT INTO `developer` VALUES (4043, 'anthem-duplicate', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-28T00:37:26Z', '2019-12-13T03:31:37Z', 'https://avatars.githubusercontent.com/u/4043?v=4', 'https://api.github.com/users/anthem-duplicate', 'https://github.com/anthem-duplicate', 'https://api.github.com/users/anthem-duplicate/followers', 'https://api.github.com/users/anthem-duplicate/following', 'https://api.github.com/users/anthem-duplicate/gists', 'https://api.github.com/users/anthem-duplicate/starred', 'https://api.github.com/users/anthem-duplicate/repos', 'https://api.github.com/users/anthem-duplicate/events', 'https://api.github.com/users/anthem-duplicate/received_events', 0); +INSERT INTO `developer` VALUES (4044, 'fackweb', 'C', 0, 0, 0, 0, 0, 0, 0, 'david_shi', NULL, '', 'hangzhou', 'fackweb@gmail.com', NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-03-28T00:45:02Z', '2024-10-25T02:01:39Z', 'https://avatars.githubusercontent.com/u/4044?v=4', 'https://api.github.com/users/fackweb', 'https://github.com/fackweb', 'https://api.github.com/users/fackweb/followers', 'https://api.github.com/users/fackweb/following', 'https://api.github.com/users/fackweb/gists', 'https://api.github.com/users/fackweb/starred', 'https://api.github.com/users/fackweb/repos', 'https://api.github.com/users/fackweb/events', 'https://api.github.com/users/fackweb/received_events', 0); +INSERT INTO `developer` VALUES (4045, 'zolazhou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zola Zhou', NULL, '', '未知', 'zolazhou@gmail.com', NULL, NULL, NULL, 0, 0, 43, 22, 0, 0, 0, '2008-03-28T01:00:58Z', '2024-05-13T09:29:36Z', 'https://avatars.githubusercontent.com/u/4045?v=4', 'https://api.github.com/users/zolazhou', 'https://github.com/zolazhou', 'https://api.github.com/users/zolazhou/followers', 'https://api.github.com/users/zolazhou/following', 'https://api.github.com/users/zolazhou/gists', 'https://api.github.com/users/zolazhou/starred', 'https://api.github.com/users/zolazhou/repos', 'https://api.github.com/users/zolazhou/events', 'https://api.github.com/users/zolazhou/received_events', 0); +INSERT INTO `developer` VALUES (4046, 'ihao', 'C', 0, 0, 0, 0, 0, 0, 0, 'iHao', NULL, '', 'China', NULL, NULL, NULL, NULL, 0, 0, 23, 17, 0, 0, 0, '2008-03-28T01:13:45Z', '2024-10-18T11:24:29Z', 'https://avatars.githubusercontent.com/u/4046?v=4', 'https://api.github.com/users/ihao', 'https://github.com/ihao', 'https://api.github.com/users/ihao/followers', 'https://api.github.com/users/ihao/following', 'https://api.github.com/users/ihao/gists', 'https://api.github.com/users/ihao/starred', 'https://api.github.com/users/ihao/repos', 'https://api.github.com/users/ihao/events', 'https://api.github.com/users/ihao/received_events', 0); +INSERT INTO `developer` VALUES (4047, 'iyanski', 'C', 0, 0, 0, 0, 0, 0, 0, 'iyanski', 'Codigu Technologies, Inc', 'http://iantusil.com', 'ph', NULL, NULL, NULL, NULL, 0, 0, 15, 8, 0, 0, 0, '2008-03-28T01:22:08Z', '2024-10-02T10:56:27Z', 'https://avatars.githubusercontent.com/u/4047?v=4', 'https://api.github.com/users/iyanski', 'https://github.com/iyanski', 'https://api.github.com/users/iyanski/followers', 'https://api.github.com/users/iyanski/following', 'https://api.github.com/users/iyanski/gists', 'https://api.github.com/users/iyanski/starred', 'https://api.github.com/users/iyanski/repos', 'https://api.github.com/users/iyanski/events', 'https://api.github.com/users/iyanski/received_events', 0); +INSERT INTO `developer` VALUES (4048, 'kaichen', 'C', 2.9355326232601078, 0, 0, 0, 0, 0, 0, 'Kai', '@consenlabs ', 'http://token.im', 'Earth', NULL, NULL, 'Exciting with GenAI', NULL, 0, 0, 456, 572, 0, 0, 0, '2008-03-28T01:26:26Z', '2024-11-03T02:37:14Z', 'https://avatars.githubusercontent.com/u/4048?v=4', 'https://api.github.com/users/kaichen', 'https://github.com/kaichen', 'https://api.github.com/users/kaichen/followers', 'https://api.github.com/users/kaichen/following', 'https://api.github.com/users/kaichen/gists', 'https://api.github.com/users/kaichen/starred', 'https://api.github.com/users/kaichen/repos', 'https://api.github.com/users/kaichen/events', 'https://api.github.com/users/kaichen/received_events', 0); +INSERT INTO `developer` VALUES (4049, 'dtc-build', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-28T01:32:21Z', '2012-11-23T21:42:52Z', 'https://avatars.githubusercontent.com/u/4049?v=4', 'https://api.github.com/users/dtc-build', 'https://github.com/dtc-build', 'https://api.github.com/users/dtc-build/followers', 'https://api.github.com/users/dtc-build/following', 'https://api.github.com/users/dtc-build/gists', 'https://api.github.com/users/dtc-build/starred', 'https://api.github.com/users/dtc-build/repos', 'https://api.github.com/users/dtc-build/events', 'https://api.github.com/users/dtc-build/received_events', 0); +INSERT INTO `developer` VALUES (4050, 'ClanMcKenna', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-28T01:54:20Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4050?v=4', 'https://api.github.com/users/ClanMcKenna', 'https://github.com/ClanMcKenna', 'https://api.github.com/users/ClanMcKenna/followers', 'https://api.github.com/users/ClanMcKenna/following', 'https://api.github.com/users/ClanMcKenna/gists', 'https://api.github.com/users/ClanMcKenna/starred', 'https://api.github.com/users/ClanMcKenna/repos', 'https://api.github.com/users/ClanMcKenna/events', 'https://api.github.com/users/ClanMcKenna/received_events', 0); +INSERT INTO `developer` VALUES (4051, 'tsgates', 'C', 1.9752153136569455, 0, 0, 0, 0, 0, 0, 'Taesoo Kim', 'Georgia Tech', 'taesoo.kim', 'Atlanta', 'tsgatesv@gmail.com', NULL, NULL, NULL, 0, 0, 400, 0, 0, 0, 0, '2008-03-28T02:36:13Z', '2024-10-24T01:23:43Z', 'https://avatars.githubusercontent.com/u/4051?v=4', 'https://api.github.com/users/tsgates', 'https://github.com/tsgates', 'https://api.github.com/users/tsgates/followers', 'https://api.github.com/users/tsgates/following', 'https://api.github.com/users/tsgates/gists', 'https://api.github.com/users/tsgates/starred', 'https://api.github.com/users/tsgates/repos', 'https://api.github.com/users/tsgates/events', 'https://api.github.com/users/tsgates/received_events', 0); +INSERT INTO `developer` VALUES (4052, 'aaronkhawkins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron K. Hawkins', NULL, 'aaronkhawkins.com', 'Phoenix, Arizona', 'akh@aaronkhawkins.com', NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-28T02:43:05Z', '2024-05-22T15:59:50Z', 'https://avatars.githubusercontent.com/u/4052?v=4', 'https://api.github.com/users/aaronkhawkins', 'https://github.com/aaronkhawkins', 'https://api.github.com/users/aaronkhawkins/followers', 'https://api.github.com/users/aaronkhawkins/following', 'https://api.github.com/users/aaronkhawkins/gists', 'https://api.github.com/users/aaronkhawkins/starred', 'https://api.github.com/users/aaronkhawkins/repos', 'https://api.github.com/users/aaronkhawkins/events', 'https://api.github.com/users/aaronkhawkins/received_events', 0); +INSERT INTO `developer` VALUES (4053, 'kevinoneill', 'C', 9.253276592950499, 0, 29, 55, 328, 15, 0, 'Kevin O\'Neill', NULL, 'http://kevin.oneill.id.au/', 'Melbourne, Australia', 'kevin@oneill.id.au', 'true', NULL, NULL, 0, 0, 95, 46, 0, 0, 0, '2008-03-28T03:24:52Z', '2024-11-01T22:27:10Z', 'https://avatars.githubusercontent.com/u/4053?v=4', 'https://api.github.com/users/kevinoneill', 'https://github.com/kevinoneill', 'https://api.github.com/users/kevinoneill/followers', 'https://api.github.com/users/kevinoneill/following', 'https://api.github.com/users/kevinoneill/gists', 'https://api.github.com/users/kevinoneill/starred', 'https://api.github.com/users/kevinoneill/repos', 'https://api.github.com/users/kevinoneill/events', 'https://api.github.com/users/kevinoneill/received_events', 0); +INSERT INTO `developer` VALUES (4054, 'we4tech', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hossain Khan', '@WeWork ', '', 'New York', 'hasan83bd@gmail.com', NULL, 'I enjoy reading code, debugging, and understanding systems.', 'we4tech', 0, 0, 172, 88, 0, 0, 0, '2008-03-28T04:05:16Z', '2024-10-14T22:35:43Z', 'https://avatars.githubusercontent.com/u/4054?v=4', 'https://api.github.com/users/we4tech', 'https://github.com/we4tech', 'https://api.github.com/users/we4tech/followers', 'https://api.github.com/users/we4tech/following', 'https://api.github.com/users/we4tech/gists', 'https://api.github.com/users/we4tech/starred', 'https://api.github.com/users/we4tech/repos', 'https://api.github.com/users/we4tech/events', 'https://api.github.com/users/we4tech/received_events', 0); +INSERT INTO `developer` VALUES (4055, 'mattmccray', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt McCray', 'Elucidata unLTD', 'https://blog.mattmccray.com', 'Dallas, TX', 'matthew.mccray@gmail.com', 'true', 'A writer of things. Apps. Code. Prose. Music. Obscenities. Sentence Fragments.', NULL, 0, 0, 44, 0, 0, 0, 0, '2008-03-28T04:06:40Z', '2024-08-31T20:18:34Z', 'https://avatars.githubusercontent.com/u/4055?v=4', 'https://api.github.com/users/mattmccray', 'https://github.com/mattmccray', 'https://api.github.com/users/mattmccray/followers', 'https://api.github.com/users/mattmccray/following', 'https://api.github.com/users/mattmccray/gists', 'https://api.github.com/users/mattmccray/starred', 'https://api.github.com/users/mattmccray/repos', 'https://api.github.com/users/mattmccray/events', 'https://api.github.com/users/mattmccray/received_events', 0); +INSERT INTO `developer` VALUES (4056, 'fadhlirahim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fadhli Rahim', NULL, 'https://gist.github.com/fadhlirahim', 'Malaysia', NULL, NULL, NULL, '_fadhli', 0, 0, 79, 148, 0, 0, 0, '2008-03-28T04:28:01Z', '2024-10-07T13:14:22Z', 'https://avatars.githubusercontent.com/u/4056?v=4', 'https://api.github.com/users/fadhlirahim', 'https://github.com/fadhlirahim', 'https://api.github.com/users/fadhlirahim/followers', 'https://api.github.com/users/fadhlirahim/following', 'https://api.github.com/users/fadhlirahim/gists', 'https://api.github.com/users/fadhlirahim/starred', 'https://api.github.com/users/fadhlirahim/repos', 'https://api.github.com/users/fadhlirahim/events', 'https://api.github.com/users/fadhlirahim/received_events', 0); +INSERT INTO `developer` VALUES (4057, 'tra', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Anderson', NULL, '', 'Denver', 'tom@squeat.com', NULL, NULL, NULL, 0, 0, 22, 9, 0, 0, 0, '2008-03-28T05:09:00Z', '2024-08-09T17:46:52Z', 'https://avatars.githubusercontent.com/u/4057?v=4', 'https://api.github.com/users/tra', 'https://github.com/tra', 'https://api.github.com/users/tra/followers', 'https://api.github.com/users/tra/following', 'https://api.github.com/users/tra/gists', 'https://api.github.com/users/tra/starred', 'https://api.github.com/users/tra/repos', 'https://api.github.com/users/tra/events', 'https://api.github.com/users/tra/received_events', 0); +INSERT INTO `developer` VALUES (4059, 't3lltal3', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Tempe, Arizona', NULL, NULL, NULL, NULL, 0, 0, 11, 7, 0, 0, 0, '2008-03-28T05:17:48Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4059?v=4', 'https://api.github.com/users/t3lltal3', 'https://github.com/t3lltal3', 'https://api.github.com/users/t3lltal3/followers', 'https://api.github.com/users/t3lltal3/following', 'https://api.github.com/users/t3lltal3/gists', 'https://api.github.com/users/t3lltal3/starred', 'https://api.github.com/users/t3lltal3/repos', 'https://api.github.com/users/t3lltal3/events', 'https://api.github.com/users/t3lltal3/received_events', 0); +INSERT INTO `developer` VALUES (4060, 'derailed', 'C+', 22.090433245166064, 0, 0, 0, 0, 0, 0, 'Fernand Galiana', 'Imhotep Software', 'imhotep.io', 'Colorado, US', 'fernand.galiana@gmail.com', NULL, 'Owner of Imhotep Software a consultancy specializing in architecture, cloud operations, software development and corporate training for GO and Kubernetes ', NULL, 0, 0, 1573, 5, 0, 0, 0, '2008-03-28T05:22:07Z', '2024-10-25T18:37:06Z', 'https://avatars.githubusercontent.com/u/4060?v=4', 'https://api.github.com/users/derailed', 'https://github.com/derailed', 'https://api.github.com/users/derailed/followers', 'https://api.github.com/users/derailed/following', 'https://api.github.com/users/derailed/gists', 'https://api.github.com/users/derailed/starred', 'https://api.github.com/users/derailed/repos', 'https://api.github.com/users/derailed/events', 'https://api.github.com/users/derailed/received_events', 0); +INSERT INTO `developer` VALUES (4061, 'sirn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sirn Thanabulpong', '@varnish', '', 'Tokyo, Japan', 'sirn@ogsite.net', 'true', 'Always sleeping', NULL, 0, 0, 101, 19, 0, 0, 0, '2008-03-28T05:41:48Z', '2024-11-04T16:28:01Z', 'https://avatars.githubusercontent.com/u/4061?v=4', 'https://api.github.com/users/sirn', 'https://github.com/sirn', 'https://api.github.com/users/sirn/followers', 'https://api.github.com/users/sirn/following', 'https://api.github.com/users/sirn/gists', 'https://api.github.com/users/sirn/starred', 'https://api.github.com/users/sirn/repos', 'https://api.github.com/users/sirn/events', 'https://api.github.com/users/sirn/received_events', 0); +INSERT INTO `developer` VALUES (4062, 'gumayunov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Victor Gumayunov', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 82, 75, 0, 0, 0, '2008-03-28T06:20:50Z', '2024-08-01T19:52:14Z', 'https://avatars.githubusercontent.com/u/4062?v=4', 'https://api.github.com/users/gumayunov', 'https://github.com/gumayunov', 'https://api.github.com/users/gumayunov/followers', 'https://api.github.com/users/gumayunov/following', 'https://api.github.com/users/gumayunov/gists', 'https://api.github.com/users/gumayunov/starred', 'https://api.github.com/users/gumayunov/repos', 'https://api.github.com/users/gumayunov/events', 'https://api.github.com/users/gumayunov/received_events', 0); +INSERT INTO `developer` VALUES (4063, 'chipx86', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Hammond', 'Beanbag, Inc.', 'https://www.chipx86.com/', 'Palo Alto, CA', 'christian@beanbaginc.com', NULL, 'President/CEO of Beanbag, Inc. (@beanbaginc), and co-creator of Review Board (@reviewboard).', 'chipx86', 0, 0, 90, 5, 0, 0, 0, '2008-03-28T07:16:28Z', '2024-05-11T21:47:55Z', 'https://avatars.githubusercontent.com/u/4063?v=4', 'https://api.github.com/users/chipx86', 'https://github.com/chipx86', 'https://api.github.com/users/chipx86/followers', 'https://api.github.com/users/chipx86/following', 'https://api.github.com/users/chipx86/gists', 'https://api.github.com/users/chipx86/starred', 'https://api.github.com/users/chipx86/repos', 'https://api.github.com/users/chipx86/events', 'https://api.github.com/users/chipx86/received_events', 0); +INSERT INTO `developer` VALUES (4064, 'jeffrafter', 'B', 44.69218706761195, 0, 0, 0, 0, 0, 0, 'Jeff Rafter (he/him)', 'GitHub', 'https://jeffrafter.com', 'Granville, Ohio / Redlands, California', NULL, 'true', 'https://jeffrafter.com. Writing books.', 'jeffrafter', 0, 0, 2891, 311, 0, 0, 0, '2008-03-28T09:33:08Z', '2024-10-16T13:19:44Z', 'https://avatars.githubusercontent.com/u/4064?v=4', 'https://api.github.com/users/jeffrafter', 'https://github.com/jeffrafter', 'https://api.github.com/users/jeffrafter/followers', 'https://api.github.com/users/jeffrafter/following', 'https://api.github.com/users/jeffrafter/gists', 'https://api.github.com/users/jeffrafter/starred', 'https://api.github.com/users/jeffrafter/repos', 'https://api.github.com/users/jeffrafter/events', 'https://api.github.com/users/jeffrafter/received_events', 0); +INSERT INTO `developer` VALUES (4065, 'MiloCasagrande', 'C', 0, 0, 0, 0, 0, 0, 0, 'Milo Casagrande', '@foundriesio', '', 'France', 'milo@foundries.io', NULL, 'Go big and fail or go fast and crash.\r\nItalian living on the other side of the Alps, still learning.', NULL, 0, 0, 32, 24, 0, 0, 0, '2008-03-28T10:45:44Z', '2024-11-02T13:01:54Z', 'https://avatars.githubusercontent.com/u/4065?v=4', 'https://api.github.com/users/MiloCasagrande', 'https://github.com/MiloCasagrande', 'https://api.github.com/users/MiloCasagrande/followers', 'https://api.github.com/users/MiloCasagrande/following', 'https://api.github.com/users/MiloCasagrande/gists', 'https://api.github.com/users/MiloCasagrande/starred', 'https://api.github.com/users/MiloCasagrande/repos', 'https://api.github.com/users/MiloCasagrande/events', 'https://api.github.com/users/MiloCasagrande/received_events', 0); +INSERT INTO `developer` VALUES (4067, 'jamescook', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Cook', '@Bookkeeper360', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-28T12:57:53Z', '2024-10-04T10:01:27Z', 'https://avatars.githubusercontent.com/u/4067?v=4', 'https://api.github.com/users/jamescook', 'https://github.com/jamescook', 'https://api.github.com/users/jamescook/followers', 'https://api.github.com/users/jamescook/following', 'https://api.github.com/users/jamescook/gists', 'https://api.github.com/users/jamescook/starred', 'https://api.github.com/users/jamescook/repos', 'https://api.github.com/users/jamescook/events', 'https://api.github.com/users/jamescook/received_events', 0); +INSERT INTO `developer` VALUES (4068, 'frafra', 'C', 2.8419783171503816, 0, 16, 21, 187, 7, 0, 'Francesco Frassinelli', '@NINAnor', 'frafra.eu', 'Trondheim, Norway', NULL, NULL, '🧑‍💻 Software engineer\r\n🐍 Python developer\r\n🐧 GNU/Linux user', NULL, 0, 0, 79, 41, 0, 0, 0, '2008-03-28T13:01:39Z', '2024-10-17T08:15:08Z', 'https://avatars.githubusercontent.com/u/4068?v=4', 'https://api.github.com/users/frafra', 'https://github.com/frafra', 'https://api.github.com/users/frafra/followers', 'https://api.github.com/users/frafra/following', 'https://api.github.com/users/frafra/gists', 'https://api.github.com/users/frafra/starred', 'https://api.github.com/users/frafra/repos', 'https://api.github.com/users/frafra/events', 'https://api.github.com/users/frafra/received_events', 0); +INSERT INTO `developer` VALUES (4069, 'pauek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pau Fernández', NULL, 'http://pauek.dev', 'Barcelona, Spain', 'pau.fernandez@upc.edu', 'true', NULL, NULL, 0, 0, 187, 87, 0, 0, 0, '2008-03-28T15:03:15Z', '2024-11-04T11:09:10Z', 'https://avatars.githubusercontent.com/u/4069?v=4', 'https://api.github.com/users/pauek', 'https://github.com/pauek', 'https://api.github.com/users/pauek/followers', 'https://api.github.com/users/pauek/following', 'https://api.github.com/users/pauek/gists', 'https://api.github.com/users/pauek/starred', 'https://api.github.com/users/pauek/repos', 'https://api.github.com/users/pauek/events', 'https://api.github.com/users/pauek/received_events', 0); +INSERT INTO `developer` VALUES (4070, 'csolallo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carlos Sola-Llonch', NULL, '', '未知', 'csolallo@icloud.com', NULL, NULL, NULL, 0, 0, 11, 3, 0, 0, 0, '2008-03-28T15:38:27Z', '2023-05-24T22:53:27Z', 'https://avatars.githubusercontent.com/u/4070?v=4', 'https://api.github.com/users/csolallo', 'https://github.com/csolallo', 'https://api.github.com/users/csolallo/followers', 'https://api.github.com/users/csolallo/following', 'https://api.github.com/users/csolallo/gists', 'https://api.github.com/users/csolallo/starred', 'https://api.github.com/users/csolallo/repos', 'https://api.github.com/users/csolallo/events', 'https://api.github.com/users/csolallo/received_events', 0); +INSERT INTO `developer` VALUES (4071, 'kailf', 'C', 0, 0, 0, 0, 0, 0, 0, 'kai', 'fgad.de/sign', '', 'würzburg', 'kai@fgad.de', NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2008-03-28T16:39:42Z', '2016-11-15T10:22:11Z', 'https://avatars.githubusercontent.com/u/4071?v=4', 'https://api.github.com/users/kailf', 'https://github.com/kailf', 'https://api.github.com/users/kailf/followers', 'https://api.github.com/users/kailf/following', 'https://api.github.com/users/kailf/gists', 'https://api.github.com/users/kailf/starred', 'https://api.github.com/users/kailf/repos', 'https://api.github.com/users/kailf/events', 'https://api.github.com/users/kailf/received_events', 0); +INSERT INTO `developer` VALUES (4074, 'mtarnovan', 'C', 0, 0, 0, 0, 428, 1, 0, 'Mihai Târnovan', NULL, '', 'Sibiu, Romania', 'mihai.tarnovan@gmail.com', NULL, NULL, 'mtarnovan', 0, 0, 25, 15, 0, 0, 0, '2008-03-28T18:45:41Z', '2024-10-02T12:46:48Z', 'https://avatars.githubusercontent.com/u/4074?v=4', 'https://api.github.com/users/mtarnovan', 'https://github.com/mtarnovan', 'https://api.github.com/users/mtarnovan/followers', 'https://api.github.com/users/mtarnovan/following', 'https://api.github.com/users/mtarnovan/gists', 'https://api.github.com/users/mtarnovan/starred', 'https://api.github.com/users/mtarnovan/repos', 'https://api.github.com/users/mtarnovan/events', 'https://api.github.com/users/mtarnovan/received_events', 0); +INSERT INTO `developer` VALUES (4075, 'eastmedia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eastmedia', NULL, 'http://www.eastmedia.com', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-03-28T18:51:24Z', '2023-03-14T07:07:20Z', 'https://avatars.githubusercontent.com/u/4075?v=4', 'https://api.github.com/users/eastmedia', 'https://github.com/eastmedia', 'https://api.github.com/users/eastmedia/followers', 'https://api.github.com/users/eastmedia/following', 'https://api.github.com/users/eastmedia/gists', 'https://api.github.com/users/eastmedia/starred', 'https://api.github.com/users/eastmedia/repos', 'https://api.github.com/users/eastmedia/events', 'https://api.github.com/users/eastmedia/received_events', 0); +INSERT INTO `developer` VALUES (4077, 'zacharyc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zachary Cohen', NULL, 'http://www.zacharyc.com', 'Newport, RI', 'zachary@zacharyc.com', NULL, NULL, NULL, 0, 0, 28, 25, 0, 0, 0, '2008-03-28T19:30:40Z', '2024-09-06T15:00:54Z', 'https://avatars.githubusercontent.com/u/4077?v=4', 'https://api.github.com/users/zacharyc', 'https://github.com/zacharyc', 'https://api.github.com/users/zacharyc/followers', 'https://api.github.com/users/zacharyc/following', 'https://api.github.com/users/zacharyc/gists', 'https://api.github.com/users/zacharyc/starred', 'https://api.github.com/users/zacharyc/repos', 'https://api.github.com/users/zacharyc/events', 'https://api.github.com/users/zacharyc/received_events', 0); +INSERT INTO `developer` VALUES (4079, 'Jonnotie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonno Riekwel', NULL, 'http://jonnotie.com', 'Auckland', 'jonno@riekwel.co', NULL, NULL, 'jonnotie', 0, 0, 32, 20, 0, 0, 0, '2008-03-28T19:46:48Z', '2024-11-04T19:57:44Z', 'https://avatars.githubusercontent.com/u/4079?v=4', 'https://api.github.com/users/Jonnotie', 'https://github.com/Jonnotie', 'https://api.github.com/users/Jonnotie/followers', 'https://api.github.com/users/Jonnotie/following', 'https://api.github.com/users/Jonnotie/gists', 'https://api.github.com/users/Jonnotie/starred', 'https://api.github.com/users/Jonnotie/repos', 'https://api.github.com/users/Jonnotie/events', 'https://api.github.com/users/Jonnotie/received_events', 0); +INSERT INTO `developer` VALUES (4080, 'venkata', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-28T20:40:22Z', '2021-09-11T21:21:30Z', 'https://avatars.githubusercontent.com/u/4080?v=4', 'https://api.github.com/users/venkata', 'https://github.com/venkata', 'https://api.github.com/users/venkata/followers', 'https://api.github.com/users/venkata/following', 'https://api.github.com/users/venkata/gists', 'https://api.github.com/users/venkata/starred', 'https://api.github.com/users/venkata/repos', 'https://api.github.com/users/venkata/events', 'https://api.github.com/users/venkata/received_events', 0); +INSERT INTO `developer` VALUES (4082, 'ylh888', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 12, 0, 0, 0, '2008-03-28T21:05:00Z', '2023-12-24T13:35:59Z', 'https://avatars.githubusercontent.com/u/4082?v=4', 'https://api.github.com/users/ylh888', 'https://github.com/ylh888', 'https://api.github.com/users/ylh888/followers', 'https://api.github.com/users/ylh888/following', 'https://api.github.com/users/ylh888/gists', 'https://api.github.com/users/ylh888/starred', 'https://api.github.com/users/ylh888/repos', 'https://api.github.com/users/ylh888/events', 'https://api.github.com/users/ylh888/received_events', 0); +INSERT INTO `developer` VALUES (4083, 'tvc123', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trent Cameron', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-28T21:24:13Z', '2024-07-12T17:31:06Z', 'https://avatars.githubusercontent.com/u/4083?v=4', 'https://api.github.com/users/tvc123', 'https://github.com/tvc123', 'https://api.github.com/users/tvc123/followers', 'https://api.github.com/users/tvc123/following', 'https://api.github.com/users/tvc123/gists', 'https://api.github.com/users/tvc123/starred', 'https://api.github.com/users/tvc123/repos', 'https://api.github.com/users/tvc123/events', 'https://api.github.com/users/tvc123/received_events', 0); +INSERT INTO `developer` VALUES (4084, 'ekarlsso', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Karlsson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-03-28T21:54:00Z', '2024-09-29T16:24:39Z', 'https://avatars.githubusercontent.com/u/4084?v=4', 'https://api.github.com/users/ekarlsso', 'https://github.com/ekarlsso', 'https://api.github.com/users/ekarlsso/followers', 'https://api.github.com/users/ekarlsso/following', 'https://api.github.com/users/ekarlsso/gists', 'https://api.github.com/users/ekarlsso/starred', 'https://api.github.com/users/ekarlsso/repos', 'https://api.github.com/users/ekarlsso/events', 'https://api.github.com/users/ekarlsso/received_events', 0); +INSERT INTO `developer` VALUES (4085, 'tongueroo', 'C', 0.9291553871249284, 0, 0, 0, 0, 0, 0, 'Tung Nguyen', 'boltops.com', 'tongueroo.com', 'San Francisco, CA', 'tongueroo@gmail.com', NULL, 'Creator of Jets, Terraspace, Lono, Kubes, Ufo, Cody, AWS Container Hero, Founder of BoltOps', 'tongueroo', 0, 0, 339, 80, 0, 0, 0, '2008-03-28T21:59:11Z', '2024-10-14T03:13:49Z', 'https://avatars.githubusercontent.com/u/4085?v=4', 'https://api.github.com/users/tongueroo', 'https://github.com/tongueroo', 'https://api.github.com/users/tongueroo/followers', 'https://api.github.com/users/tongueroo/following', 'https://api.github.com/users/tongueroo/gists', 'https://api.github.com/users/tongueroo/starred', 'https://api.github.com/users/tongueroo/repos', 'https://api.github.com/users/tongueroo/events', 'https://api.github.com/users/tongueroo/received_events', 0); +INSERT INTO `developer` VALUES (4086, 'jbasdf', 'C', 9.721688958361154, 0, 37, 62, 229, 0, 0, 'Justin Ball', 'Atomic Jolt', 'www.justinball.com', '未知', 'justinball@gmail.com', NULL, 'Atomic Jolt CTO where we make the world a better place by improving education.', NULL, 0, 0, 72, 23, 0, 0, 0, '2008-03-28T22:13:24Z', '2024-09-10T16:23:25Z', 'https://avatars.githubusercontent.com/u/4086?v=4', 'https://api.github.com/users/jbasdf', 'https://github.com/jbasdf', 'https://api.github.com/users/jbasdf/followers', 'https://api.github.com/users/jbasdf/following', 'https://api.github.com/users/jbasdf/gists', 'https://api.github.com/users/jbasdf/starred', 'https://api.github.com/users/jbasdf/repos', 'https://api.github.com/users/jbasdf/events', 'https://api.github.com/users/jbasdf/received_events', 0); +INSERT INTO `developer` VALUES (4087, 'Madrox', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Horn', 'Trophy', 'http://horn.gg', 'Portland, OR', 'david@d8a.me', NULL, 'My public commit history probably looks like any other developers\' that has a day job.', 'Madrox', 0, 0, 20, 9, 0, 0, 0, '2008-03-28T22:16:31Z', '2024-10-15T14:21:33Z', 'https://avatars.githubusercontent.com/u/4087?v=4', 'https://api.github.com/users/Madrox', 'https://github.com/Madrox', 'https://api.github.com/users/Madrox/followers', 'https://api.github.com/users/Madrox/following', 'https://api.github.com/users/Madrox/gists', 'https://api.github.com/users/Madrox/starred', 'https://api.github.com/users/Madrox/repos', 'https://api.github.com/users/Madrox/events', 'https://api.github.com/users/Madrox/received_events', 0); +INSERT INTO `developer` VALUES (4088, 'qzio', 'C', 0, 0, 0, 0, 0, 0, 0, 'joel hansson', 'Dulvie', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 33, 9, 0, 0, 0, '2008-03-28T22:48:04Z', '2024-10-15T19:40:14Z', 'https://avatars.githubusercontent.com/u/4088?v=4', 'https://api.github.com/users/qzio', 'https://github.com/qzio', 'https://api.github.com/users/qzio/followers', 'https://api.github.com/users/qzio/following', 'https://api.github.com/users/qzio/gists', 'https://api.github.com/users/qzio/starred', 'https://api.github.com/users/qzio/repos', 'https://api.github.com/users/qzio/events', 'https://api.github.com/users/qzio/received_events', 0); +INSERT INTO `developer` VALUES (4089, 'jrcahoon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jake Cahoon', 'Adobe', 'https://linkedin.com/in/jrcahoon', 'Alpine, UT', 'jrcahoon@gmail.com', NULL, 'Senior Engineering Manager', NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-28T22:58:33Z', '2024-10-22T15:42:42Z', 'https://avatars.githubusercontent.com/u/4089?v=4', 'https://api.github.com/users/jrcahoon', 'https://github.com/jrcahoon', 'https://api.github.com/users/jrcahoon/followers', 'https://api.github.com/users/jrcahoon/following', 'https://api.github.com/users/jrcahoon/gists', 'https://api.github.com/users/jrcahoon/starred', 'https://api.github.com/users/jrcahoon/repos', 'https://api.github.com/users/jrcahoon/events', 'https://api.github.com/users/jrcahoon/received_events', 0); +INSERT INTO `developer` VALUES (4090, 'cout', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Brannan', NULL, 'http://nonstandard-output.rubystuff.org/', 'South Carolina', 'curlypaul924@gmail.com', NULL, NULL, NULL, 0, 0, 66, 24, 0, 0, 0, '2008-03-28T23:09:32Z', '2024-09-24T18:27:24Z', 'https://avatars.githubusercontent.com/u/4090?v=4', 'https://api.github.com/users/cout', 'https://github.com/cout', 'https://api.github.com/users/cout/followers', 'https://api.github.com/users/cout/following', 'https://api.github.com/users/cout/gists', 'https://api.github.com/users/cout/starred', 'https://api.github.com/users/cout/repos', 'https://api.github.com/users/cout/events', 'https://api.github.com/users/cout/received_events', 0); +INSERT INTO `developer` VALUES (4091, 'iroach', 'C', 0, 0, 0, 0, 0, 0, 0, 'Isaac Roach', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 6, 0, 0, 0, '2008-03-28T23:53:57Z', '2024-11-02T11:18:41Z', 'https://avatars.githubusercontent.com/u/4091?v=4', 'https://api.github.com/users/iroach', 'https://github.com/iroach', 'https://api.github.com/users/iroach/followers', 'https://api.github.com/users/iroach/following', 'https://api.github.com/users/iroach/gists', 'https://api.github.com/users/iroach/starred', 'https://api.github.com/users/iroach/repos', 'https://api.github.com/users/iroach/events', 'https://api.github.com/users/iroach/received_events', 0); +INSERT INTO `developer` VALUES (4092, 'joho', 'C', 2.4896710152300687, 0, 0, 0, 0, 0, 0, 'John Barton', '@amberelectric', 'https://johnbarton.co', 'Melbourne, Australia', NULL, NULL, NULL, NULL, 0, 0, 430, 90, 0, 0, 0, '2008-03-29T00:06:09Z', '2024-10-30T23:44:04Z', 'https://avatars.githubusercontent.com/u/4092?v=4', 'https://api.github.com/users/joho', 'https://github.com/joho', 'https://api.github.com/users/joho/followers', 'https://api.github.com/users/joho/following', 'https://api.github.com/users/joho/gists', 'https://api.github.com/users/joho/starred', 'https://api.github.com/users/joho/repos', 'https://api.github.com/users/joho/events', 'https://api.github.com/users/joho/received_events', 0); +INSERT INTO `developer` VALUES (4093, 'purp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Meyer', NULL, '', 'Alameda, CA', 'jim@geekdaily.org', NULL, NULL, NULL, 0, 0, 36, 5, 0, 0, 0, '2008-03-29T00:36:19Z', '2024-10-02T19:58:14Z', 'https://avatars.githubusercontent.com/u/4093?v=4', 'https://api.github.com/users/purp', 'https://github.com/purp', 'https://api.github.com/users/purp/followers', 'https://api.github.com/users/purp/following', 'https://api.github.com/users/purp/gists', 'https://api.github.com/users/purp/starred', 'https://api.github.com/users/purp/repos', 'https://api.github.com/users/purp/events', 'https://api.github.com/users/purp/received_events', 0); +INSERT INTO `developer` VALUES (4094, 'justinbkay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin', '@inXpress-americas', 'blog.boisemovies.com', 'Boise, ID', 'justinbkay@gmail.com', NULL, NULL, 'justinbkay', 0, 0, 8, 0, 0, 0, 0, '2008-03-29T00:36:29Z', '2024-10-28T11:18:33Z', 'https://avatars.githubusercontent.com/u/4094?v=4', 'https://api.github.com/users/justinbkay', 'https://github.com/justinbkay', 'https://api.github.com/users/justinbkay/followers', 'https://api.github.com/users/justinbkay/following', 'https://api.github.com/users/justinbkay/gists', 'https://api.github.com/users/justinbkay/starred', 'https://api.github.com/users/justinbkay/repos', 'https://api.github.com/users/justinbkay/events', 'https://api.github.com/users/justinbkay/received_events', 0); +INSERT INTO `developer` VALUES (4095, 'tinomen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jake Mallory', NULL, '', 'Salt Lake City, UT', NULL, NULL, NULL, NULL, 0, 0, 53, 19, 0, 0, 0, '2008-03-29T01:16:41Z', '2024-02-23T20:40:42Z', 'https://avatars.githubusercontent.com/u/4095?v=4', 'https://api.github.com/users/tinomen', 'https://github.com/tinomen', 'https://api.github.com/users/tinomen/followers', 'https://api.github.com/users/tinomen/following', 'https://api.github.com/users/tinomen/gists', 'https://api.github.com/users/tinomen/starred', 'https://api.github.com/users/tinomen/repos', 'https://api.github.com/users/tinomen/events', 'https://api.github.com/users/tinomen/received_events', 0); +INSERT INTO `developer` VALUES (4096, 'johnnyt', 'C', 0, 0, 0, 0, 0, 0, 0, 'JohnnyT', 'Divvy', 'johnnyt.github.com', 'Salt Lake City, Utah', NULL, NULL, NULL, 'johnny_t', 0, 0, 57, 16, 0, 0, 0, '2008-03-29T01:18:01Z', '2024-10-28T21:39:20Z', 'https://avatars.githubusercontent.com/u/4096?v=4', 'https://api.github.com/users/johnnyt', 'https://github.com/johnnyt', 'https://api.github.com/users/johnnyt/followers', 'https://api.github.com/users/johnnyt/following', 'https://api.github.com/users/johnnyt/gists', 'https://api.github.com/users/johnnyt/starred', 'https://api.github.com/users/johnnyt/repos', 'https://api.github.com/users/johnnyt/events', 'https://api.github.com/users/johnnyt/received_events', 0); +INSERT INTO `developer` VALUES (4098, 'stmcallister', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott McAllister', NULL, 'stmcallister.github.io', 'Seattle, WA', 'stmcallister@gmail.com', NULL, NULL, 'stmcallister', 0, 0, 64, 25, 0, 0, 0, '2008-03-29T01:37:01Z', '2024-11-01T20:44:51Z', 'https://avatars.githubusercontent.com/u/4098?v=4', 'https://api.github.com/users/stmcallister', 'https://github.com/stmcallister', 'https://api.github.com/users/stmcallister/followers', 'https://api.github.com/users/stmcallister/following', 'https://api.github.com/users/stmcallister/gists', 'https://api.github.com/users/stmcallister/starred', 'https://api.github.com/users/stmcallister/repos', 'https://api.github.com/users/stmcallister/events', 'https://api.github.com/users/stmcallister/received_events', 0); +INSERT INTO `developer` VALUES (4099, 'raddesignsdavid', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-29T02:03:54Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4099?v=4', 'https://api.github.com/users/raddesignsdavid', 'https://github.com/raddesignsdavid', 'https://api.github.com/users/raddesignsdavid/followers', 'https://api.github.com/users/raddesignsdavid/following', 'https://api.github.com/users/raddesignsdavid/gists', 'https://api.github.com/users/raddesignsdavid/starred', 'https://api.github.com/users/raddesignsdavid/repos', 'https://api.github.com/users/raddesignsdavid/events', 'https://api.github.com/users/raddesignsdavid/received_events', 0); +INSERT INTO `developer` VALUES (4100, 'juozasg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juozas Gaigalas', NULL, '', '未知', 'juozasgaigalas@gmail.com', NULL, 'I work for Weaveworks building vscode extension for GitOps ', NULL, 0, 0, 17, 12, 0, 0, 0, '2008-03-29T02:07:52Z', '2024-10-20T11:21:03Z', 'https://avatars.githubusercontent.com/u/4100?v=4', 'https://api.github.com/users/juozasg', 'https://github.com/juozasg', 'https://api.github.com/users/juozasg/followers', 'https://api.github.com/users/juozasg/following', 'https://api.github.com/users/juozasg/gists', 'https://api.github.com/users/juozasg/starred', 'https://api.github.com/users/juozasg/repos', 'https://api.github.com/users/juozasg/events', 'https://api.github.com/users/juozasg/received_events', 0); +INSERT INTO `developer` VALUES (4101, 'spig', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Spigarelli', NULL, 'https://stevespiga.rel.li', 'South Jordan, Utah', NULL, NULL, NULL, NULL, 0, 0, 16, 14, 0, 0, 0, '2008-03-29T04:06:02Z', '2024-10-18T14:23:25Z', 'https://avatars.githubusercontent.com/u/4101?v=4', 'https://api.github.com/users/spig', 'https://github.com/spig', 'https://api.github.com/users/spig/followers', 'https://api.github.com/users/spig/following', 'https://api.github.com/users/spig/gists', 'https://api.github.com/users/spig/starred', 'https://api.github.com/users/spig/repos', 'https://api.github.com/users/spig/events', 'https://api.github.com/users/spig/received_events', 0); +INSERT INTO `developer` VALUES (4102, 'mflathers', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Flathers', 'Javasense', '', 'Salt Lake City, UT', 'mflathers@javasense.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-29T04:30:49Z', '2023-10-02T17:35:01Z', 'https://avatars.githubusercontent.com/u/4102?v=4', 'https://api.github.com/users/mflathers', 'https://github.com/mflathers', 'https://api.github.com/users/mflathers/followers', 'https://api.github.com/users/mflathers/following', 'https://api.github.com/users/mflathers/gists', 'https://api.github.com/users/mflathers/starred', 'https://api.github.com/users/mflathers/repos', 'https://api.github.com/users/mflathers/events', 'https://api.github.com/users/mflathers/received_events', 0); +INSERT INTO `developer` VALUES (4104, 'gettalong', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Leitner', NULL, 'https://gettalong.org', 'Austria', 't_leitner@gmx.at', NULL, NULL, NULL, 0, 0, 219, 0, 0, 0, 0, '2008-03-29T08:04:35Z', '2024-10-31T15:55:00Z', 'https://avatars.githubusercontent.com/u/4104?v=4', 'https://api.github.com/users/gettalong', 'https://github.com/gettalong', 'https://api.github.com/users/gettalong/followers', 'https://api.github.com/users/gettalong/following', 'https://api.github.com/users/gettalong/gists', 'https://api.github.com/users/gettalong/starred', 'https://api.github.com/users/gettalong/repos', 'https://api.github.com/users/gettalong/events', 'https://api.github.com/users/gettalong/received_events', 0); +INSERT INTO `developer` VALUES (4106, 'Juice10', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Halsall', '@recordonce ', 'https://recordonce.com/', 'Amsterdam, the Netherlands', NULL, NULL, NULL, 'juice10', 0, 0, 96, 15, 0, 0, 0, '2008-03-29T09:38:21Z', '2024-10-12T08:27:09Z', 'https://avatars.githubusercontent.com/u/4106?v=4', 'https://api.github.com/users/Juice10', 'https://github.com/Juice10', 'https://api.github.com/users/Juice10/followers', 'https://api.github.com/users/Juice10/following', 'https://api.github.com/users/Juice10/gists', 'https://api.github.com/users/Juice10/starred', 'https://api.github.com/users/Juice10/repos', 'https://api.github.com/users/Juice10/events', 'https://api.github.com/users/Juice10/received_events', 0); +INSERT INTO `developer` VALUES (4107, 'morgan-xx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-29T10:00:11Z', '2019-12-15T11:33:31Z', 'https://avatars.githubusercontent.com/u/4107?v=4', 'https://api.github.com/users/morgan-xx', 'https://github.com/morgan-xx', 'https://api.github.com/users/morgan-xx/followers', 'https://api.github.com/users/morgan-xx/following', 'https://api.github.com/users/morgan-xx/gists', 'https://api.github.com/users/morgan-xx/starred', 'https://api.github.com/users/morgan-xx/repos', 'https://api.github.com/users/morgan-xx/events', 'https://api.github.com/users/morgan-xx/received_events', 0); +INSERT INTO `developer` VALUES (4109, 'SebastianKrog', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastian Moretto Krog', 'Herlev Hospital', '', '未知', 'sebastian.krog@gmail.com', NULL, NULL, 'sebastian_krog', 0, 0, 7, 1, 0, 0, 0, '2008-03-29T11:18:01Z', '2024-08-06T07:29:23Z', 'https://avatars.githubusercontent.com/u/4109?v=4', 'https://api.github.com/users/SebastianKrog', 'https://github.com/SebastianKrog', 'https://api.github.com/users/SebastianKrog/followers', 'https://api.github.com/users/SebastianKrog/following', 'https://api.github.com/users/SebastianKrog/gists', 'https://api.github.com/users/SebastianKrog/starred', 'https://api.github.com/users/SebastianKrog/repos', 'https://api.github.com/users/SebastianKrog/events', 'https://api.github.com/users/SebastianKrog/received_events', 0); +INSERT INTO `developer` VALUES (4110, 'stereotype', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'hello@leourban.com', NULL, NULL, NULL, 0, 0, 18, 4, 0, 0, 0, '2008-03-29T13:18:17Z', '2024-04-15T13:36:42Z', 'https://avatars.githubusercontent.com/u/4110?v=4', 'https://api.github.com/users/stereotype', 'https://github.com/stereotype', 'https://api.github.com/users/stereotype/followers', 'https://api.github.com/users/stereotype/following', 'https://api.github.com/users/stereotype/gists', 'https://api.github.com/users/stereotype/starred', 'https://api.github.com/users/stereotype/repos', 'https://api.github.com/users/stereotype/events', 'https://api.github.com/users/stereotype/received_events', 0); +INSERT INTO `developer` VALUES (4111, 'torbjorn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Torbjørn Lindahl', NULL, '', '未知', 'torbjorn.lindahl@gmail.com', NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-29T13:49:58Z', '2024-10-26T15:56:30Z', 'https://avatars.githubusercontent.com/u/4111?v=4', 'https://api.github.com/users/torbjorn', 'https://github.com/torbjorn', 'https://api.github.com/users/torbjorn/followers', 'https://api.github.com/users/torbjorn/following', 'https://api.github.com/users/torbjorn/gists', 'https://api.github.com/users/torbjorn/starred', 'https://api.github.com/users/torbjorn/repos', 'https://api.github.com/users/torbjorn/events', 'https://api.github.com/users/torbjorn/received_events', 0); +INSERT INTO `developer` VALUES (4112, 'ALexanderLonsky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Lonsky', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 1, 0, 0, 0, '2008-03-29T16:25:39Z', '2024-10-16T11:08:17Z', 'https://avatars.githubusercontent.com/u/4112?v=4', 'https://api.github.com/users/ALexanderLonsky', 'https://github.com/ALexanderLonsky', 'https://api.github.com/users/ALexanderLonsky/followers', 'https://api.github.com/users/ALexanderLonsky/following', 'https://api.github.com/users/ALexanderLonsky/gists', 'https://api.github.com/users/ALexanderLonsky/starred', 'https://api.github.com/users/ALexanderLonsky/repos', 'https://api.github.com/users/ALexanderLonsky/events', 'https://api.github.com/users/ALexanderLonsky/received_events', 0); +INSERT INTO `developer` VALUES (4113, 'wzph', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zach Holt', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 8, 0, 0, 0, '2008-03-29T17:06:37Z', '2024-10-03T05:15:42Z', 'https://avatars.githubusercontent.com/u/4113?v=4', 'https://api.github.com/users/wzph', 'https://github.com/wzph', 'https://api.github.com/users/wzph/followers', 'https://api.github.com/users/wzph/following', 'https://api.github.com/users/wzph/gists', 'https://api.github.com/users/wzph/starred', 'https://api.github.com/users/wzph/repos', 'https://api.github.com/users/wzph/events', 'https://api.github.com/users/wzph/received_events', 0); +INSERT INTO `developer` VALUES (4114, 'BadMinus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mitya', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 7, 0, 0, 0, '2008-03-29T18:54:05Z', '2020-01-07T18:53:02Z', 'https://avatars.githubusercontent.com/u/4114?v=4', 'https://api.github.com/users/BadMinus', 'https://github.com/BadMinus', 'https://api.github.com/users/BadMinus/followers', 'https://api.github.com/users/BadMinus/following', 'https://api.github.com/users/BadMinus/gists', 'https://api.github.com/users/BadMinus/starred', 'https://api.github.com/users/BadMinus/repos', 'https://api.github.com/users/BadMinus/events', 'https://api.github.com/users/BadMinus/received_events', 0); +INSERT INTO `developer` VALUES (4115, 'rahul286', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rahul Bansal', '@rtcamp', 'https://rahul286.com', 'Pune, India', NULL, 'true', '♥ Food, Movies, WordPress, Nginx. || entrepreneur @rtCamp, @EasyEngine, @rtMediaWP\r\n', 'rahul286', 0, 0, 236, 30, 0, 0, 0, '2008-03-29T19:21:20Z', '2024-10-27T09:26:42Z', 'https://avatars.githubusercontent.com/u/4115?v=4', 'https://api.github.com/users/rahul286', 'https://github.com/rahul286', 'https://api.github.com/users/rahul286/followers', 'https://api.github.com/users/rahul286/following', 'https://api.github.com/users/rahul286/gists', 'https://api.github.com/users/rahul286/starred', 'https://api.github.com/users/rahul286/repos', 'https://api.github.com/users/rahul286/events', 'https://api.github.com/users/rahul286/received_events', 0); +INSERT INTO `developer` VALUES (4117, 'subtleGradient', 'C', 10.206506538826918, 0, 0, 0, 0, 0, 0, 'Tom Aylott', '@frens-app ', 'https://subtlegradient.com', 'Sarasota, Florida', 'thomas@subtlegradient.com', 'true', 'JW. Frontend 1st Full stack AI wrangler.\r\n\r\nBuilding @frens-app\r\nMaker of @ThingsThatDoStuff \r\nex @reactjs @mootools @textmate @coinbase @facebook @crazyegginc', 'subtlegradient', 0, 0, 880, 39, 0, 0, 0, '2008-03-29T19:35:04Z', '2024-10-25T05:12:30Z', 'https://avatars.githubusercontent.com/u/4117?v=4', 'https://api.github.com/users/subtleGradient', 'https://github.com/subtleGradient', 'https://api.github.com/users/subtleGradient/followers', 'https://api.github.com/users/subtleGradient/following', 'https://api.github.com/users/subtleGradient/gists', 'https://api.github.com/users/subtleGradient/starred', 'https://api.github.com/users/subtleGradient/repos', 'https://api.github.com/users/subtleGradient/events', 'https://api.github.com/users/subtleGradient/received_events', 0); +INSERT INTO `developer` VALUES (4118, 'alekenji', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexandre Kenji', 'Freelancer', '', 'São Paulo', 'alekenji@gmail.com', NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-03-29T19:45:53Z', '2020-01-25T23:31:38Z', 'https://avatars.githubusercontent.com/u/4118?v=4', 'https://api.github.com/users/alekenji', 'https://github.com/alekenji', 'https://api.github.com/users/alekenji/followers', 'https://api.github.com/users/alekenji/following', 'https://api.github.com/users/alekenji/gists', 'https://api.github.com/users/alekenji/starred', 'https://api.github.com/users/alekenji/repos', 'https://api.github.com/users/alekenji/events', 'https://api.github.com/users/alekenji/received_events', 0); +INSERT INTO `developer` VALUES (4119, 'jesperf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesper Frisk', NULL, '', 'Stockholm, Sweden', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2008-03-29T21:23:42Z', '2023-04-11T11:05:05Z', 'https://avatars.githubusercontent.com/u/4119?v=4', 'https://api.github.com/users/jesperf', 'https://github.com/jesperf', 'https://api.github.com/users/jesperf/followers', 'https://api.github.com/users/jesperf/following', 'https://api.github.com/users/jesperf/gists', 'https://api.github.com/users/jesperf/starred', 'https://api.github.com/users/jesperf/repos', 'https://api.github.com/users/jesperf/events', 'https://api.github.com/users/jesperf/received_events', 0); +INSERT INTO `developer` VALUES (4120, 'emetge', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-29T23:15:05Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4120?v=4', 'https://api.github.com/users/emetge', 'https://github.com/emetge', 'https://api.github.com/users/emetge/followers', 'https://api.github.com/users/emetge/following', 'https://api.github.com/users/emetge/gists', 'https://api.github.com/users/emetge/starred', 'https://api.github.com/users/emetge/repos', 'https://api.github.com/users/emetge/events', 'https://api.github.com/users/emetge/received_events', 0); +INSERT INTO `developer` VALUES (4121, 'dreiss', 'C', 0.7062245831099081, 0, 0, 0, 0, 0, 0, 'David Reiss', 'Facebook', '', 'Palo Alto', 'dreiss@fb.com', NULL, NULL, NULL, 0, 0, 326, 0, 0, 0, 0, '2008-03-30T02:32:16Z', '2024-09-02T16:18:18Z', 'https://avatars.githubusercontent.com/u/4121?v=4', 'https://api.github.com/users/dreiss', 'https://github.com/dreiss', 'https://api.github.com/users/dreiss/followers', 'https://api.github.com/users/dreiss/following', 'https://api.github.com/users/dreiss/gists', 'https://api.github.com/users/dreiss/starred', 'https://api.github.com/users/dreiss/repos', 'https://api.github.com/users/dreiss/events', 'https://api.github.com/users/dreiss/received_events', 0); +INSERT INTO `developer` VALUES (4122, 'pezra', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Williams', NULL, 'https://pezra.me', 'Denver', NULL, 'true', NULL, 'pezra', 0, 0, 71, 1, 0, 0, 0, '2008-03-30T04:27:50Z', '2024-09-25T16:24:35Z', 'https://avatars.githubusercontent.com/u/4122?v=4', 'https://api.github.com/users/pezra', 'https://github.com/pezra', 'https://api.github.com/users/pezra/followers', 'https://api.github.com/users/pezra/following', 'https://api.github.com/users/pezra/gists', 'https://api.github.com/users/pezra/starred', 'https://api.github.com/users/pezra/repos', 'https://api.github.com/users/pezra/events', 'https://api.github.com/users/pezra/received_events', 0); +INSERT INTO `developer` VALUES (4124, 'tthorley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tad Thorley', 'http://mozy.com', 'http://tadthorley.com', 'Utah', NULL, NULL, NULL, NULL, 0, 0, 17, 10, 0, 0, 0, '2008-03-30T04:33:24Z', '2019-12-21T19:08:12Z', 'https://avatars.githubusercontent.com/u/4124?v=4', 'https://api.github.com/users/tthorley', 'https://github.com/tthorley', 'https://api.github.com/users/tthorley/followers', 'https://api.github.com/users/tthorley/following', 'https://api.github.com/users/tthorley/gists', 'https://api.github.com/users/tthorley/starred', 'https://api.github.com/users/tthorley/repos', 'https://api.github.com/users/tthorley/events', 'https://api.github.com/users/tthorley/received_events', 0); +INSERT INTO `developer` VALUES (4125, 'FiReMaGe', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-30T05:13:29Z', '2018-03-04T02:29:28Z', 'https://avatars.githubusercontent.com/u/4125?v=4', 'https://api.github.com/users/FiReMaGe', 'https://github.com/FiReMaGe', 'https://api.github.com/users/FiReMaGe/followers', 'https://api.github.com/users/FiReMaGe/following', 'https://api.github.com/users/FiReMaGe/gists', 'https://api.github.com/users/FiReMaGe/starred', 'https://api.github.com/users/FiReMaGe/repos', 'https://api.github.com/users/FiReMaGe/events', 'https://api.github.com/users/FiReMaGe/received_events', 0); +INSERT INTO `developer` VALUES (4126, 'benatkin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Atkin', '@ResourcesCo', 'https://benatkin.com/', 'SF Bay Area', 'ben@resources.co', 'true', 'Founder & CTO of @ResourcesCo. Interests: running, reading, music, travel, coffee', NULL, 0, 0, 192, 323, 0, 0, 0, '2008-03-30T09:18:02Z', '2024-11-03T06:43:52Z', 'https://avatars.githubusercontent.com/u/4126?v=4', 'https://api.github.com/users/benatkin', 'https://github.com/benatkin', 'https://api.github.com/users/benatkin/followers', 'https://api.github.com/users/benatkin/following', 'https://api.github.com/users/benatkin/gists', 'https://api.github.com/users/benatkin/starred', 'https://api.github.com/users/benatkin/repos', 'https://api.github.com/users/benatkin/events', 'https://api.github.com/users/benatkin/received_events', 0); +INSERT INTO `developer` VALUES (4128, 'haklop', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Bellemon', 'Bywan', '', 'Paris', 'eric.bellemon@gmail.com', NULL, NULL, NULL, 0, 0, 42, 14, 0, 0, 0, '2008-03-30T12:13:16Z', '2024-10-30T12:20:36Z', 'https://avatars.githubusercontent.com/u/4128?v=4', 'https://api.github.com/users/haklop', 'https://github.com/haklop', 'https://api.github.com/users/haklop/followers', 'https://api.github.com/users/haklop/following', 'https://api.github.com/users/haklop/gists', 'https://api.github.com/users/haklop/starred', 'https://api.github.com/users/haklop/repos', 'https://api.github.com/users/haklop/events', 'https://api.github.com/users/haklop/received_events', 0); +INSERT INTO `developer` VALUES (4132, 'boldpilot', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-30T15:19:43Z', '2019-12-12T10:37:19Z', 'https://avatars.githubusercontent.com/u/4132?v=4', 'https://api.github.com/users/boldpilot', 'https://github.com/boldpilot', 'https://api.github.com/users/boldpilot/followers', 'https://api.github.com/users/boldpilot/following', 'https://api.github.com/users/boldpilot/gists', 'https://api.github.com/users/boldpilot/starred', 'https://api.github.com/users/boldpilot/repos', 'https://api.github.com/users/boldpilot/events', 'https://api.github.com/users/boldpilot/received_events', 0); +INSERT INTO `developer` VALUES (4133, 'kselman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Selman', '@sorenson-eng ', '', 'Utah', 'kselman@gmail.com', NULL, NULL, NULL, 0, 0, 29, 39, 0, 0, 0, '2008-03-30T16:35:43Z', '2024-04-02T07:19:21Z', 'https://avatars.githubusercontent.com/u/4133?v=4', 'https://api.github.com/users/kselman', 'https://github.com/kselman', 'https://api.github.com/users/kselman/followers', 'https://api.github.com/users/kselman/following', 'https://api.github.com/users/kselman/gists', 'https://api.github.com/users/kselman/starred', 'https://api.github.com/users/kselman/repos', 'https://api.github.com/users/kselman/events', 'https://api.github.com/users/kselman/received_events', 0); +INSERT INTO `developer` VALUES (4135, 'markpagna', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-30T17:25:54Z', '2024-02-28T14:43:34Z', 'https://avatars.githubusercontent.com/u/4135?v=4', 'https://api.github.com/users/markpagna', 'https://github.com/markpagna', 'https://api.github.com/users/markpagna/followers', 'https://api.github.com/users/markpagna/following', 'https://api.github.com/users/markpagna/gists', 'https://api.github.com/users/markpagna/starred', 'https://api.github.com/users/markpagna/repos', 'https://api.github.com/users/markpagna/events', 'https://api.github.com/users/markpagna/received_events', 0); +INSERT INTO `developer` VALUES (4137, 'supaspoida', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lar Van Der Jagt', 'Code Confab', 'http://www.supaspoida.com', 'Brooklyn, NY', NULL, 'true', NULL, NULL, 0, 0, 44, 20, 0, 0, 0, '2008-03-30T18:28:22Z', '2024-09-18T17:26:18Z', 'https://avatars.githubusercontent.com/u/4137?v=4', 'https://api.github.com/users/supaspoida', 'https://github.com/supaspoida', 'https://api.github.com/users/supaspoida/followers', 'https://api.github.com/users/supaspoida/following', 'https://api.github.com/users/supaspoida/gists', 'https://api.github.com/users/supaspoida/starred', 'https://api.github.com/users/supaspoida/repos', 'https://api.github.com/users/supaspoida/events', 'https://api.github.com/users/supaspoida/received_events', 0); +INSERT INTO `developer` VALUES (4140, 'jfinch3', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jack Finch', NULL, '', '未知', 'jack.finch.3@gmail.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-03-30T20:00:30Z', '2024-02-09T17:03:30Z', 'https://avatars.githubusercontent.com/u/4140?v=4', 'https://api.github.com/users/jfinch3', 'https://github.com/jfinch3', 'https://api.github.com/users/jfinch3/followers', 'https://api.github.com/users/jfinch3/following', 'https://api.github.com/users/jfinch3/gists', 'https://api.github.com/users/jfinch3/starred', 'https://api.github.com/users/jfinch3/repos', 'https://api.github.com/users/jfinch3/events', 'https://api.github.com/users/jfinch3/received_events', 0); +INSERT INTO `developer` VALUES (4143, 'mmozcelik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mehmet Ozcelik', 'Mailshake', '', 'Ankara', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-30T20:55:43Z', '2023-12-13T11:58:42Z', 'https://avatars.githubusercontent.com/u/4143?v=4', 'https://api.github.com/users/mmozcelik', 'https://github.com/mmozcelik', 'https://api.github.com/users/mmozcelik/followers', 'https://api.github.com/users/mmozcelik/following', 'https://api.github.com/users/mmozcelik/gists', 'https://api.github.com/users/mmozcelik/starred', 'https://api.github.com/users/mmozcelik/repos', 'https://api.github.com/users/mmozcelik/events', 'https://api.github.com/users/mmozcelik/received_events', 0); +INSERT INTO `developer` VALUES (4144, 'tobycox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Toby Cox', '@paloma-group', 'http://tobycox.com', 'Auckland', 'toby@palomagroup.com', 'true', 'Committing directly to the main branch since forever.', NULL, 0, 0, 18, 2, 0, 0, 0, '2008-03-30T21:09:19Z', '2024-10-21T05:07:08Z', 'https://avatars.githubusercontent.com/u/4144?v=4', 'https://api.github.com/users/tobycox', 'https://github.com/tobycox', 'https://api.github.com/users/tobycox/followers', 'https://api.github.com/users/tobycox/following', 'https://api.github.com/users/tobycox/gists', 'https://api.github.com/users/tobycox/starred', 'https://api.github.com/users/tobycox/repos', 'https://api.github.com/users/tobycox/events', 'https://api.github.com/users/tobycox/received_events', 0); +INSERT INTO `developer` VALUES (4145, 'eichert12', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Eichert', NULL, 'http://steveeichert.com/', 'Philly', 'steve.eichert@gmail.com', NULL, NULL, NULL, 0, 0, 9, 3, 0, 0, 0, '2008-03-30T21:13:48Z', '2024-10-29T18:56:56Z', 'https://avatars.githubusercontent.com/u/4145?v=4', 'https://api.github.com/users/eichert12', 'https://github.com/eichert12', 'https://api.github.com/users/eichert12/followers', 'https://api.github.com/users/eichert12/following', 'https://api.github.com/users/eichert12/gists', 'https://api.github.com/users/eichert12/starred', 'https://api.github.com/users/eichert12/repos', 'https://api.github.com/users/eichert12/events', 'https://api.github.com/users/eichert12/received_events', 0); +INSERT INTO `developer` VALUES (4146, 'iamjwc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Camerer', 'LimeWire, LLC', '', 'New York City', 'iamjwc@gmail.com', 'true', NULL, NULL, 0, 0, 50, 20, 0, 0, 0, '2008-03-30T21:53:36Z', '2024-10-21T23:01:25Z', 'https://avatars.githubusercontent.com/u/4146?v=4', 'https://api.github.com/users/iamjwc', 'https://github.com/iamjwc', 'https://api.github.com/users/iamjwc/followers', 'https://api.github.com/users/iamjwc/following', 'https://api.github.com/users/iamjwc/gists', 'https://api.github.com/users/iamjwc/starred', 'https://api.github.com/users/iamjwc/repos', 'https://api.github.com/users/iamjwc/events', 'https://api.github.com/users/iamjwc/received_events', 0); +INSERT INTO `developer` VALUES (4148, 'cmelhorn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Melhorn', NULL, 'the.dourlad.com', '未知', 'charlesm@dourlad.com', NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2008-03-30T22:16:22Z', '2022-07-12T16:26:46Z', 'https://avatars.githubusercontent.com/u/4148?v=4', 'https://api.github.com/users/cmelhorn', 'https://github.com/cmelhorn', 'https://api.github.com/users/cmelhorn/followers', 'https://api.github.com/users/cmelhorn/following', 'https://api.github.com/users/cmelhorn/gists', 'https://api.github.com/users/cmelhorn/starred', 'https://api.github.com/users/cmelhorn/repos', 'https://api.github.com/users/cmelhorn/events', 'https://api.github.com/users/cmelhorn/received_events', 0); +INSERT INTO `developer` VALUES (4150, 'box2small', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nate Royer', NULL, '', 'Where flat tires are born', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-30T22:56:12Z', '2022-12-04T15:34:15Z', 'https://avatars.githubusercontent.com/u/4150?v=4', 'https://api.github.com/users/box2small', 'https://github.com/box2small', 'https://api.github.com/users/box2small/followers', 'https://api.github.com/users/box2small/following', 'https://api.github.com/users/box2small/gists', 'https://api.github.com/users/box2small/starred', 'https://api.github.com/users/box2small/repos', 'https://api.github.com/users/box2small/events', 'https://api.github.com/users/box2small/received_events', 0); +INSERT INTO `developer` VALUES (4152, 'aaronfeng', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Feng', NULL, '', 'Atlanta', NULL, NULL, NULL, NULL, 0, 0, 82, 48, 0, 0, 0, '2008-03-31T00:45:11Z', '2024-05-02T19:18:13Z', 'https://avatars.githubusercontent.com/u/4152?v=4', 'https://api.github.com/users/aaronfeng', 'https://github.com/aaronfeng', 'https://api.github.com/users/aaronfeng/followers', 'https://api.github.com/users/aaronfeng/following', 'https://api.github.com/users/aaronfeng/gists', 'https://api.github.com/users/aaronfeng/starred', 'https://api.github.com/users/aaronfeng/repos', 'https://api.github.com/users/aaronfeng/events', 'https://api.github.com/users/aaronfeng/received_events', 0); +INSERT INTO `developer` VALUES (4153, 'hrusev', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2008-03-31T01:33:05Z', '2024-08-27T18:02:21Z', 'https://avatars.githubusercontent.com/u/4153?v=4', 'https://api.github.com/users/hrusev', 'https://github.com/hrusev', 'https://api.github.com/users/hrusev/followers', 'https://api.github.com/users/hrusev/following', 'https://api.github.com/users/hrusev/gists', 'https://api.github.com/users/hrusev/starred', 'https://api.github.com/users/hrusev/repos', 'https://api.github.com/users/hrusev/events', 'https://api.github.com/users/hrusev/received_events', 0); +INSERT INTO `developer` VALUES (4155, 'fivesenses', 'C', 0, 0, 0, 0, 0, 0, 0, 'Five Senses Coffee', NULL, 'https://www.fivesenses.com.au', 'Perth, Western Australia', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-03-31T05:39:18Z', '2023-02-17T04:03:38Z', 'https://avatars.githubusercontent.com/u/4155?v=4', 'https://api.github.com/users/fivesenses', 'https://github.com/fivesenses', 'https://api.github.com/users/fivesenses/followers', 'https://api.github.com/users/fivesenses/following', 'https://api.github.com/users/fivesenses/gists', 'https://api.github.com/users/fivesenses/starred', 'https://api.github.com/users/fivesenses/repos', 'https://api.github.com/users/fivesenses/events', 'https://api.github.com/users/fivesenses/received_events', 0); +INSERT INTO `developer` VALUES (4157, 'nikolajsen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nikolaj Nikolajsen', 'Peytz Mail A/S', 'https://about.me/nikolajsen', 'Denmark', 'nikolaj@nikolajsen.net', NULL, NULL, NULL, 0, 0, 14, 17, 0, 0, 0, '2008-03-31T08:06:05Z', '2024-10-11T15:39:56Z', 'https://avatars.githubusercontent.com/u/4157?v=4', 'https://api.github.com/users/nikolajsen', 'https://github.com/nikolajsen', 'https://api.github.com/users/nikolajsen/followers', 'https://api.github.com/users/nikolajsen/following', 'https://api.github.com/users/nikolajsen/gists', 'https://api.github.com/users/nikolajsen/starred', 'https://api.github.com/users/nikolajsen/repos', 'https://api.github.com/users/nikolajsen/events', 'https://api.github.com/users/nikolajsen/received_events', 0); +INSERT INTO `developer` VALUES (4158, 'dwabnitz', 'C', 0, 0, 0, 0, 0, 0, 0, 'dwabnitz', NULL, '', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 20, 54, 0, 0, 0, '2008-03-31T08:34:15Z', '2024-09-04T16:02:47Z', 'https://avatars.githubusercontent.com/u/4158?v=4', 'https://api.github.com/users/dwabnitz', 'https://github.com/dwabnitz', 'https://api.github.com/users/dwabnitz/followers', 'https://api.github.com/users/dwabnitz/following', 'https://api.github.com/users/dwabnitz/gists', 'https://api.github.com/users/dwabnitz/starred', 'https://api.github.com/users/dwabnitz/repos', 'https://api.github.com/users/dwabnitz/events', 'https://api.github.com/users/dwabnitz/received_events', 0); +INSERT INTO `developer` VALUES (4159, 'littleidea', 'C', 0, 0, 2, 0, 68, 6, 0, 'Andrew Clay Shafer', 'Parvus Captus', 'http://stochasticresonance.wordpress.com', 'who knows', 'andrewcshafer@gmail.com', NULL, NULL, NULL, 0, 0, 78, 8, 0, 0, 0, '2008-03-31T08:58:36Z', '2023-03-03T17:54:09Z', 'https://avatars.githubusercontent.com/u/4159?v=4', 'https://api.github.com/users/littleidea', 'https://github.com/littleidea', 'https://api.github.com/users/littleidea/followers', 'https://api.github.com/users/littleidea/following', 'https://api.github.com/users/littleidea/gists', 'https://api.github.com/users/littleidea/starred', 'https://api.github.com/users/littleidea/repos', 'https://api.github.com/users/littleidea/events', 'https://api.github.com/users/littleidea/received_events', 0); +INSERT INTO `developer` VALUES (4160, 'swemoney', 'C', 0, 0, 0, 0, 0, 0, 0, 'swemoney', NULL, 'http://swemoney.com', 'Chicago, IL', 'tehdnite@gmail.com', NULL, NULL, 'swemoney', 0, 0, 13, 1, 0, 0, 0, '2008-03-31T09:37:56Z', '2024-07-15T01:59:22Z', 'https://avatars.githubusercontent.com/u/4160?v=4', 'https://api.github.com/users/swemoney', 'https://github.com/swemoney', 'https://api.github.com/users/swemoney/followers', 'https://api.github.com/users/swemoney/following', 'https://api.github.com/users/swemoney/gists', 'https://api.github.com/users/swemoney/starred', 'https://api.github.com/users/swemoney/repos', 'https://api.github.com/users/swemoney/events', 'https://api.github.com/users/swemoney/received_events', 0); +INSERT INTO `developer` VALUES (4163, 'nnikolov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Nikolov', NULL, 'http://nrnickolov.com/', 'Ottawa', 'nrnickolov@yahoo.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-31T12:56:22Z', '2023-04-05T13:53:58Z', 'https://avatars.githubusercontent.com/u/4163?v=4', 'https://api.github.com/users/nnikolov', 'https://github.com/nnikolov', 'https://api.github.com/users/nnikolov/followers', 'https://api.github.com/users/nnikolov/following', 'https://api.github.com/users/nnikolov/gists', 'https://api.github.com/users/nnikolov/starred', 'https://api.github.com/users/nnikolov/repos', 'https://api.github.com/users/nnikolov/events', 'https://api.github.com/users/nnikolov/received_events', 0); +INSERT INTO `developer` VALUES (4164, 'chrisledet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Ledet', NULL, 'https://chrisledet.com', 'Texas', 'me@chrisledet.com', NULL, 'I work on build systems and infrastructure at a gaming company.', NULL, 0, 0, 134, 66, 0, 0, 0, '2008-03-31T14:54:57Z', '2024-10-22T03:31:23Z', 'https://avatars.githubusercontent.com/u/4164?v=4', 'https://api.github.com/users/chrisledet', 'https://github.com/chrisledet', 'https://api.github.com/users/chrisledet/followers', 'https://api.github.com/users/chrisledet/following', 'https://api.github.com/users/chrisledet/gists', 'https://api.github.com/users/chrisledet/starred', 'https://api.github.com/users/chrisledet/repos', 'https://api.github.com/users/chrisledet/events', 'https://api.github.com/users/chrisledet/received_events', 0); +INSERT INTO `developer` VALUES (4165, 'quellhorst', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Quellhorst', NULL, 'http://www.quellhorst.com/', 'Houston, Texas', 'dan@quellhorst.com', 'true', NULL, NULL, 0, 0, 26, 12, 0, 0, 0, '2008-03-31T15:02:17Z', '2023-03-21T07:09:48Z', 'https://avatars.githubusercontent.com/u/4165?v=4', 'https://api.github.com/users/quellhorst', 'https://github.com/quellhorst', 'https://api.github.com/users/quellhorst/followers', 'https://api.github.com/users/quellhorst/following', 'https://api.github.com/users/quellhorst/gists', 'https://api.github.com/users/quellhorst/starred', 'https://api.github.com/users/quellhorst/repos', 'https://api.github.com/users/quellhorst/events', 'https://api.github.com/users/quellhorst/received_events', 0); +INSERT INTO `developer` VALUES (4166, 'iamteem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Medina', NULL, 'http://www.timmedina.net', 'Sydney, Australia', 'iamteem@gmail.com', NULL, NULL, NULL, 0, 0, 108, 124, 0, 0, 0, '2008-03-31T15:18:11Z', '2024-10-20T09:22:44Z', 'https://avatars.githubusercontent.com/u/4166?v=4', 'https://api.github.com/users/iamteem', 'https://github.com/iamteem', 'https://api.github.com/users/iamteem/followers', 'https://api.github.com/users/iamteem/following', 'https://api.github.com/users/iamteem/gists', 'https://api.github.com/users/iamteem/starred', 'https://api.github.com/users/iamteem/repos', 'https://api.github.com/users/iamteem/events', 'https://api.github.com/users/iamteem/received_events', 0); +INSERT INTO `developer` VALUES (4168, 'wizardofcrowds', 'C', 0, 0, 0, 0, 0, 0, 0, 'Koichi Hirano', NULL, '', 'Earth', NULL, NULL, NULL, NULL, 0, 0, 24, 3, 0, 0, 0, '2008-03-31T15:38:29Z', '2024-05-27T19:56:18Z', 'https://avatars.githubusercontent.com/u/4168?v=4', 'https://api.github.com/users/wizardofcrowds', 'https://github.com/wizardofcrowds', 'https://api.github.com/users/wizardofcrowds/followers', 'https://api.github.com/users/wizardofcrowds/following', 'https://api.github.com/users/wizardofcrowds/gists', 'https://api.github.com/users/wizardofcrowds/starred', 'https://api.github.com/users/wizardofcrowds/repos', 'https://api.github.com/users/wizardofcrowds/events', 'https://api.github.com/users/wizardofcrowds/received_events', 0); +INSERT INTO `developer` VALUES (4169, 'voodoorai2000', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raimond Garcia', 'Freelance', '', 'Madrid', 'voodoorai2000@gmail.com', NULL, NULL, NULL, 0, 0, 123, 11, 0, 0, 0, '2008-03-31T16:10:50Z', '2024-03-27T11:43:28Z', 'https://avatars.githubusercontent.com/u/4169?v=4', 'https://api.github.com/users/voodoorai2000', 'https://github.com/voodoorai2000', 'https://api.github.com/users/voodoorai2000/followers', 'https://api.github.com/users/voodoorai2000/following', 'https://api.github.com/users/voodoorai2000/gists', 'https://api.github.com/users/voodoorai2000/starred', 'https://api.github.com/users/voodoorai2000/repos', 'https://api.github.com/users/voodoorai2000/events', 'https://api.github.com/users/voodoorai2000/received_events', 0); +INSERT INTO `developer` VALUES (4170, 'bryanduxbury', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bryan Duxbury', NULL, 'blog.bryanduxbury.com', '未知', 'bryan.duxbury@gmail.com', NULL, NULL, NULL, 0, 0, 38, 0, 0, 0, 0, '2008-03-31T16:19:48Z', '2024-09-27T15:24:56Z', 'https://avatars.githubusercontent.com/u/4170?v=4', 'https://api.github.com/users/bryanduxbury', 'https://github.com/bryanduxbury', 'https://api.github.com/users/bryanduxbury/followers', 'https://api.github.com/users/bryanduxbury/following', 'https://api.github.com/users/bryanduxbury/gists', 'https://api.github.com/users/bryanduxbury/starred', 'https://api.github.com/users/bryanduxbury/repos', 'https://api.github.com/users/bryanduxbury/events', 'https://api.github.com/users/bryanduxbury/received_events', 0); +INSERT INTO `developer` VALUES (4171, 'alfakini', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alan R. Fachini', NULL, '', 'Joinville, Brazil', NULL, 'true', NULL, 'alfakini', 0, 0, 278, 182, 0, 0, 0, '2008-03-31T16:40:27Z', '2024-10-19T18:10:47Z', 'https://avatars.githubusercontent.com/u/4171?v=4', 'https://api.github.com/users/alfakini', 'https://github.com/alfakini', 'https://api.github.com/users/alfakini/followers', 'https://api.github.com/users/alfakini/following', 'https://api.github.com/users/alfakini/gists', 'https://api.github.com/users/alfakini/starred', 'https://api.github.com/users/alfakini/repos', 'https://api.github.com/users/alfakini/events', 'https://api.github.com/users/alfakini/received_events', 0); +INSERT INTO `developer` VALUES (4172, 'flanche', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-31T16:54:46Z', '2022-04-16T12:36:08Z', 'https://avatars.githubusercontent.com/u/4172?v=4', 'https://api.github.com/users/flanche', 'https://github.com/flanche', 'https://api.github.com/users/flanche/followers', 'https://api.github.com/users/flanche/following', 'https://api.github.com/users/flanche/gists', 'https://api.github.com/users/flanche/starred', 'https://api.github.com/users/flanche/repos', 'https://api.github.com/users/flanche/events', 'https://api.github.com/users/flanche/received_events', 0); +INSERT INTO `developer` VALUES (4173, 'jlong', 'C', 0, 0, 0, 0, 0, 0, 0, 'John W. Long', 'Unstack', 'http://johnwlong.com', 'Raleigh, NC', 'me@johnwlong.com', 'true', NULL, 'johnwlong', 0, 0, 277, 12, 0, 0, 0, '2008-03-31T17:26:25Z', '2024-09-02T18:04:55Z', 'https://avatars.githubusercontent.com/u/4173?v=4', 'https://api.github.com/users/jlong', 'https://github.com/jlong', 'https://api.github.com/users/jlong/followers', 'https://api.github.com/users/jlong/following', 'https://api.github.com/users/jlong/gists', 'https://api.github.com/users/jlong/starred', 'https://api.github.com/users/jlong/repos', 'https://api.github.com/users/jlong/events', 'https://api.github.com/users/jlong/received_events', 0); +INSERT INTO `developer` VALUES (4174, 'dummied', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Vannoy', 'Shipping News', 'http://chrisvannoy.com', 'Indianapolis, IN', 'chris@chrisvannoy.com', NULL, NULL, NULL, 0, 0, 48, 10, 0, 0, 0, '2008-03-31T18:33:54Z', '2024-11-01T14:05:26Z', 'https://avatars.githubusercontent.com/u/4174?v=4', 'https://api.github.com/users/dummied', 'https://github.com/dummied', 'https://api.github.com/users/dummied/followers', 'https://api.github.com/users/dummied/following', 'https://api.github.com/users/dummied/gists', 'https://api.github.com/users/dummied/starred', 'https://api.github.com/users/dummied/repos', 'https://api.github.com/users/dummied/events', 'https://api.github.com/users/dummied/received_events', 0); +INSERT INTO `developer` VALUES (4175, 'lansing', 'C', 0, 0, 0, 0, 0, 0, 0, 'Max Lansing', NULL, '', 'Los Angeles', 'lansing@gmail.com', 'true', NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2008-03-31T18:56:32Z', '2024-08-16T20:51:44Z', 'https://avatars.githubusercontent.com/u/4175?v=4', 'https://api.github.com/users/lansing', 'https://github.com/lansing', 'https://api.github.com/users/lansing/followers', 'https://api.github.com/users/lansing/following', 'https://api.github.com/users/lansing/gists', 'https://api.github.com/users/lansing/starred', 'https://api.github.com/users/lansing/repos', 'https://api.github.com/users/lansing/events', 'https://api.github.com/users/lansing/received_events', 0); +INSERT INTO `developer` VALUES (4176, 'isaacroach', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-31T19:08:05Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4176?v=4', 'https://api.github.com/users/isaacroach', 'https://github.com/isaacroach', 'https://api.github.com/users/isaacroach/followers', 'https://api.github.com/users/isaacroach/following', 'https://api.github.com/users/isaacroach/gists', 'https://api.github.com/users/isaacroach/starred', 'https://api.github.com/users/isaacroach/repos', 'https://api.github.com/users/isaacroach/events', 'https://api.github.com/users/isaacroach/received_events', 0); +INSERT INTO `developer` VALUES (4177, 'lukfugl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob Fugal', 'Derivita, Inc.', '', 'Utah', 'lukfugl@gmail.com', NULL, NULL, NULL, 0, 0, 50, 9, 0, 0, 0, '2008-03-31T19:27:36Z', '2024-07-06T00:19:15Z', 'https://avatars.githubusercontent.com/u/4177?v=4', 'https://api.github.com/users/lukfugl', 'https://github.com/lukfugl', 'https://api.github.com/users/lukfugl/followers', 'https://api.github.com/users/lukfugl/following', 'https://api.github.com/users/lukfugl/gists', 'https://api.github.com/users/lukfugl/starred', 'https://api.github.com/users/lukfugl/repos', 'https://api.github.com/users/lukfugl/events', 'https://api.github.com/users/lukfugl/received_events', 0); +INSERT INTO `developer` VALUES (4178, 'kr', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://xph.us/', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2008-03-31T20:16:55Z', '2024-09-01T00:50:20Z', 'https://avatars.githubusercontent.com/u/4178?v=4', 'https://api.github.com/users/kr', 'https://github.com/kr', 'https://api.github.com/users/kr/followers', 'https://api.github.com/users/kr/following', 'https://api.github.com/users/kr/gists', 'https://api.github.com/users/kr/starred', 'https://api.github.com/users/kr/repos', 'https://api.github.com/users/kr/events', 'https://api.github.com/users/kr/received_events', 0); +INSERT INTO `developer` VALUES (4180, 'Rouxbe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rouxbe', NULL, 'www.rouxbe.com', 'Vancouver, BC, Canada', NULL, NULL, 'Founded in 2005, Rouxbe (\"ROO-bee\") is the world\'s leading online culinary school. ', NULL, 0, 0, 6, 0, 0, 0, 0, '2008-03-31T23:52:28Z', '2023-11-18T08:00:00Z', 'https://avatars.githubusercontent.com/u/4180?v=4', 'https://api.github.com/users/Rouxbe', 'https://github.com/Rouxbe', 'https://api.github.com/users/Rouxbe/followers', 'https://api.github.com/users/Rouxbe/following', 'https://api.github.com/users/Rouxbe/gists', 'https://api.github.com/users/Rouxbe/starred', 'https://api.github.com/users/Rouxbe/repos', 'https://api.github.com/users/Rouxbe/events', 'https://api.github.com/users/Rouxbe/received_events', 0); +INSERT INTO `developer` VALUES (4181, 'jhund', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jo Hund', NULL, '', 'Comox, BC, Canada', NULL, 'true', NULL, NULL, 0, 0, 47, 4, 0, 0, 0, '2008-03-31T23:55:09Z', '2024-10-01T23:13:09Z', 'https://avatars.githubusercontent.com/u/4181?v=4', 'https://api.github.com/users/jhund', 'https://github.com/jhund', 'https://api.github.com/users/jhund/followers', 'https://api.github.com/users/jhund/following', 'https://api.github.com/users/jhund/gists', 'https://api.github.com/users/jhund/starred', 'https://api.github.com/users/jhund/repos', 'https://api.github.com/users/jhund/events', 'https://api.github.com/users/jhund/received_events', 0); +INSERT INTO `developer` VALUES (4182, 'luislavena', 'C', 2.0609579305857992, 0, 0, 0, 0, 0, 0, 'Luis Lavena', '@area17 ', 'https://luislavena.info', 'Paris, France', NULL, NULL, 'I create stuff, mostly in Ruby and Crystal. Creator of RubyInstaller for Windows (@oneclick), @rake-compiler and many other Ruby tools for developers.', 'luislavena', 0, 0, 405, 0, 0, 0, 0, '2008-03-31T23:55:19Z', '2024-11-01T09:25:07Z', 'https://avatars.githubusercontent.com/u/4182?v=4', 'https://api.github.com/users/luislavena', 'https://github.com/luislavena', 'https://api.github.com/users/luislavena/followers', 'https://api.github.com/users/luislavena/following', 'https://api.github.com/users/luislavena/gists', 'https://api.github.com/users/luislavena/starred', 'https://api.github.com/users/luislavena/repos', 'https://api.github.com/users/luislavena/events', 'https://api.github.com/users/luislavena/received_events', 0); +INSERT INTO `developer` VALUES (4183, 'pat', 'C', 3.672919128848251, 0, 0, 0, 0, 0, 0, 'Pat Allan', NULL, 'https://freelancing-gods.com', 'Naarm / Birrarung-ga / Melbourne AU', NULL, NULL, 'Gelato connoisseur, pancake master, recovering events organiser, and web developer.', 'pat', 0, 0, 499, 10, 0, 0, 0, '2008-04-01T01:12:11Z', '2024-09-23T00:09:33Z', 'https://avatars.githubusercontent.com/u/4183?v=4', 'https://api.github.com/users/pat', 'https://github.com/pat', 'https://api.github.com/users/pat/followers', 'https://api.github.com/users/pat/following', 'https://api.github.com/users/pat/gists', 'https://api.github.com/users/pat/starred', 'https://api.github.com/users/pat/repos', 'https://api.github.com/users/pat/events', 'https://api.github.com/users/pat/received_events', 0); +INSERT INTO `developer` VALUES (4184, 'fabiooda', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fábio Oda', NULL, '', 'Maceió/AL', 'fabio.sifal@gmail.com', NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-04-01T01:15:58Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4184?v=4', 'https://api.github.com/users/fabiooda', 'https://github.com/fabiooda', 'https://api.github.com/users/fabiooda/followers', 'https://api.github.com/users/fabiooda/following', 'https://api.github.com/users/fabiooda/gists', 'https://api.github.com/users/fabiooda/starred', 'https://api.github.com/users/fabiooda/repos', 'https://api.github.com/users/fabiooda/events', 'https://api.github.com/users/fabiooda/received_events', 0); +INSERT INTO `developer` VALUES (4187, 'tongson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eduardo Tongson', NULL, '0srv.com', 'Philippines', 'propolice@gmail.com', 'true', 'Joined in April 2008.', 'tongson', 0, 0, 18, 3, 0, 0, 0, '2008-04-01T02:53:52Z', '2024-02-08T07:43:51Z', 'https://avatars.githubusercontent.com/u/4187?v=4', 'https://api.github.com/users/tongson', 'https://github.com/tongson', 'https://api.github.com/users/tongson/followers', 'https://api.github.com/users/tongson/following', 'https://api.github.com/users/tongson/gists', 'https://api.github.com/users/tongson/starred', 'https://api.github.com/users/tongson/repos', 'https://api.github.com/users/tongson/events', 'https://api.github.com/users/tongson/received_events', 0); +INSERT INTO `developer` VALUES (4188, 'roberto', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roberto Soares', '@nubank ', 'http://robertosoares.me', 'Porto Alegre, Brazil', NULL, NULL, NULL, 'bt1', 0, 0, 139, 99, 0, 0, 0, '2008-04-01T03:22:48Z', '2024-10-26T02:08:10Z', 'https://avatars.githubusercontent.com/u/4188?v=4', 'https://api.github.com/users/roberto', 'https://github.com/roberto', 'https://api.github.com/users/roberto/followers', 'https://api.github.com/users/roberto/following', 'https://api.github.com/users/roberto/gists', 'https://api.github.com/users/roberto/starred', 'https://api.github.com/users/roberto/repos', 'https://api.github.com/users/roberto/events', 'https://api.github.com/users/roberto/received_events', 0); +INSERT INTO `developer` VALUES (4189, 'fredoliveira', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fred Oliveira', NULL, 'http://helloform.com', '未知', 'hi@helloform.com', 'true', 'VP of Engineering at Capital Factory. Previously @unionvc, @gumroad, @wbs, @techcrunch.', 'f', 0, 0, 132, 1, 0, 0, 0, '2008-04-01T03:33:06Z', '2024-09-25T10:58:36Z', 'https://avatars.githubusercontent.com/u/4189?v=4', 'https://api.github.com/users/fredoliveira', 'https://github.com/fredoliveira', 'https://api.github.com/users/fredoliveira/followers', 'https://api.github.com/users/fredoliveira/following', 'https://api.github.com/users/fredoliveira/gists', 'https://api.github.com/users/fredoliveira/starred', 'https://api.github.com/users/fredoliveira/repos', 'https://api.github.com/users/fredoliveira/events', 'https://api.github.com/users/fredoliveira/received_events', 0); +INSERT INTO `developer` VALUES (4191, 'zackham', 'C', 12.371404065027457, 0, 41, 131, 72, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2008-04-01T08:48:36Z', '2024-10-15T21:44:09Z', 'https://avatars.githubusercontent.com/u/4191?v=4', 'https://api.github.com/users/zackham', 'https://github.com/zackham', 'https://api.github.com/users/zackham/followers', 'https://api.github.com/users/zackham/following', 'https://api.github.com/users/zackham/gists', 'https://api.github.com/users/zackham/starred', 'https://api.github.com/users/zackham/repos', 'https://api.github.com/users/zackham/events', 'https://api.github.com/users/zackham/received_events', 0); +INSERT INTO `developer` VALUES (4192, 'fronx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fronx', NULL, 'http://fronx.de', 'Berlin, Germany', 'fronx@wurmus.de', NULL, NULL, NULL, 0, 0, 93, 146, 0, 0, 0, '2008-04-01T11:39:31Z', '2024-10-10T20:50:36Z', 'https://avatars.githubusercontent.com/u/4192?v=4', 'https://api.github.com/users/fronx', 'https://github.com/fronx', 'https://api.github.com/users/fronx/followers', 'https://api.github.com/users/fronx/following', 'https://api.github.com/users/fronx/gists', 'https://api.github.com/users/fronx/starred', 'https://api.github.com/users/fronx/repos', 'https://api.github.com/users/fronx/events', 'https://api.github.com/users/fronx/received_events', 0); +INSERT INTO `developer` VALUES (4197, 'dillo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dillo Raju', 'Self', 'https://www.linkedin.com/in/dillo-raju', 'Atlanta, GA', NULL, NULL, 'Software Engineering | Backend | Ruby | Ruby on Rails | 15+ Years Experience', NULL, 0, 0, 13, 8, 0, 0, 0, '2008-04-01T15:31:56Z', '2024-08-24T19:56:20Z', 'https://avatars.githubusercontent.com/u/4197?v=4', 'https://api.github.com/users/dillo', 'https://github.com/dillo', 'https://api.github.com/users/dillo/followers', 'https://api.github.com/users/dillo/following', 'https://api.github.com/users/dillo/gists', 'https://api.github.com/users/dillo/starred', 'https://api.github.com/users/dillo/repos', 'https://api.github.com/users/dillo/events', 'https://api.github.com/users/dillo/received_events', 0); +INSERT INTO `developer` VALUES (4198, 'Aplusplus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Uli', NULL, 'aplusplus.org', 'San Francisco', NULL, NULL, NULL, 'aplusplus', 0, 0, 20, 24, 0, 0, 0, '2008-04-01T15:38:53Z', '2022-05-16T01:58:48Z', 'https://avatars.githubusercontent.com/u/4198?v=4', 'https://api.github.com/users/Aplusplus', 'https://github.com/Aplusplus', 'https://api.github.com/users/Aplusplus/followers', 'https://api.github.com/users/Aplusplus/following', 'https://api.github.com/users/Aplusplus/gists', 'https://api.github.com/users/Aplusplus/starred', 'https://api.github.com/users/Aplusplus/repos', 'https://api.github.com/users/Aplusplus/events', 'https://api.github.com/users/Aplusplus/received_events', 0); +INSERT INTO `developer` VALUES (4199, 'shlomiatar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shlomi Atar', NULL, '', 'Tel Aviv, San Francisco', NULL, NULL, 'Loves building things, traveling, and photography.', NULL, 0, 0, 44, 66, 0, 0, 0, '2008-04-01T15:43:27Z', '2024-10-29T19:46:33Z', 'https://avatars.githubusercontent.com/u/4199?v=4', 'https://api.github.com/users/shlomiatar', 'https://github.com/shlomiatar', 'https://api.github.com/users/shlomiatar/followers', 'https://api.github.com/users/shlomiatar/following', 'https://api.github.com/users/shlomiatar/gists', 'https://api.github.com/users/shlomiatar/starred', 'https://api.github.com/users/shlomiatar/repos', 'https://api.github.com/users/shlomiatar/events', 'https://api.github.com/users/shlomiatar/received_events', 0); +INSERT INTO `developer` VALUES (4200, 'andreascreten', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Creten', '@madewithlove', 'https://early.company', 'Belgium', 'andreas@madewithlove.com', NULL, 'I am a software engineer and an entrepreneur who loves developing apps and building teams.', 'andreascreten', 0, 0, 163, 11, 0, 0, 0, '2008-04-01T15:59:43Z', '2024-11-04T19:08:31Z', 'https://avatars.githubusercontent.com/u/4200?v=4', 'https://api.github.com/users/andreascreten', 'https://github.com/andreascreten', 'https://api.github.com/users/andreascreten/followers', 'https://api.github.com/users/andreascreten/following', 'https://api.github.com/users/andreascreten/gists', 'https://api.github.com/users/andreascreten/starred', 'https://api.github.com/users/andreascreten/repos', 'https://api.github.com/users/andreascreten/events', 'https://api.github.com/users/andreascreten/received_events', 0); +INSERT INTO `developer` VALUES (4201, 'vineet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vineet Choudhary', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 3, 0, 0, 0, '2008-04-01T16:02:13Z', '2024-07-29T20:34:50Z', 'https://avatars.githubusercontent.com/u/4201?v=4', 'https://api.github.com/users/vineet', 'https://github.com/vineet', 'https://api.github.com/users/vineet/followers', 'https://api.github.com/users/vineet/following', 'https://api.github.com/users/vineet/gists', 'https://api.github.com/users/vineet/starred', 'https://api.github.com/users/vineet/repos', 'https://api.github.com/users/vineet/events', 'https://api.github.com/users/vineet/received_events', 0); +INSERT INTO `developer` VALUES (4202, 'tpinto', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tiago Pinto', NULL, 'http://www.tiagopinto.pt/', 'Lisbon, PT', 'tp@tiagopinto.pt', NULL, 'Running an online radio streaming out of East Lisbon.', NULL, 0, 0, 68, 26, 0, 0, 0, '2008-04-01T16:26:12Z', '2024-09-24T16:56:57Z', 'https://avatars.githubusercontent.com/u/4202?v=4', 'https://api.github.com/users/tpinto', 'https://github.com/tpinto', 'https://api.github.com/users/tpinto/followers', 'https://api.github.com/users/tpinto/following', 'https://api.github.com/users/tpinto/gists', 'https://api.github.com/users/tpinto/starred', 'https://api.github.com/users/tpinto/repos', 'https://api.github.com/users/tpinto/events', 'https://api.github.com/users/tpinto/received_events', 0); +INSERT INTO `developer` VALUES (4204, 'ddipaolo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-04-01T17:14:27Z', '2024-09-04T06:35:41Z', 'https://avatars.githubusercontent.com/u/4204?v=4', 'https://api.github.com/users/ddipaolo', 'https://github.com/ddipaolo', 'https://api.github.com/users/ddipaolo/followers', 'https://api.github.com/users/ddipaolo/following', 'https://api.github.com/users/ddipaolo/gists', 'https://api.github.com/users/ddipaolo/starred', 'https://api.github.com/users/ddipaolo/repos', 'https://api.github.com/users/ddipaolo/events', 'https://api.github.com/users/ddipaolo/received_events', 0); +INSERT INTO `developer` VALUES (4205, 'cowboyd', 'C', 1.786581556413467, 0, 0, 0, 0, 0, 0, 'Charles Lowell', '@thefrontside ', 'https://frontside.com', 'Austin, TX', 'cowboyd@frontside.com', NULL, 'Secretary of State', 'cowboyd', 0, 0, 389, 129, 0, 0, 0, '2008-04-01T17:27:05Z', '2024-10-04T02:49:35Z', 'https://avatars.githubusercontent.com/u/4205?v=4', 'https://api.github.com/users/cowboyd', 'https://github.com/cowboyd', 'https://api.github.com/users/cowboyd/followers', 'https://api.github.com/users/cowboyd/following', 'https://api.github.com/users/cowboyd/gists', 'https://api.github.com/users/cowboyd/starred', 'https://api.github.com/users/cowboyd/repos', 'https://api.github.com/users/cowboyd/events', 'https://api.github.com/users/cowboyd/received_events', 0); +INSERT INTO `developer` VALUES (4206, 'kenegozi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ken Egozi', 'Google', 'http://kenegozi.com/blog', 'Bellevue, WA', 'egozi13@gmail.com', NULL, NULL, NULL, 0, 0, 36, 1, 0, 0, 0, '2008-04-01T17:30:06Z', '2024-05-14T17:07:09Z', 'https://avatars.githubusercontent.com/u/4206?v=4', 'https://api.github.com/users/kenegozi', 'https://github.com/kenegozi', 'https://api.github.com/users/kenegozi/followers', 'https://api.github.com/users/kenegozi/following', 'https://api.github.com/users/kenegozi/gists', 'https://api.github.com/users/kenegozi/starred', 'https://api.github.com/users/kenegozi/repos', 'https://api.github.com/users/kenegozi/events', 'https://api.github.com/users/kenegozi/received_events', 0); +INSERT INTO `developer` VALUES (4207, 'rburdick', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-04-01T17:52:03Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4207?v=4', 'https://api.github.com/users/rburdick', 'https://github.com/rburdick', 'https://api.github.com/users/rburdick/followers', 'https://api.github.com/users/rburdick/following', 'https://api.github.com/users/rburdick/gists', 'https://api.github.com/users/rburdick/starred', 'https://api.github.com/users/rburdick/repos', 'https://api.github.com/users/rburdick/events', 'https://api.github.com/users/rburdick/received_events', 0); +INSERT INTO `developer` VALUES (4208, 'bluemango', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg DeVore', 'ScreenSteps', 'http://blog.screensteps.com', 'McLean, VA', 'info@bluemangolearning.com', NULL, NULL, 'gdevore', 0, 0, 12, 0, 0, 0, 0, '2008-04-01T18:08:31Z', '2024-09-17T01:20:26Z', 'https://avatars.githubusercontent.com/u/4208?v=4', 'https://api.github.com/users/bluemango', 'https://github.com/bluemango', 'https://api.github.com/users/bluemango/followers', 'https://api.github.com/users/bluemango/following', 'https://api.github.com/users/bluemango/gists', 'https://api.github.com/users/bluemango/starred', 'https://api.github.com/users/bluemango/repos', 'https://api.github.com/users/bluemango/events', 'https://api.github.com/users/bluemango/received_events', 0); +INSERT INTO `developer` VALUES (4210, 'mgeimer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-04-01T18:46:59Z', '2019-11-08T22:36:38Z', 'https://avatars.githubusercontent.com/u/4210?v=4', 'https://api.github.com/users/mgeimer', 'https://github.com/mgeimer', 'https://api.github.com/users/mgeimer/followers', 'https://api.github.com/users/mgeimer/following', 'https://api.github.com/users/mgeimer/gists', 'https://api.github.com/users/mgeimer/starred', 'https://api.github.com/users/mgeimer/repos', 'https://api.github.com/users/mgeimer/events', 'https://api.github.com/users/mgeimer/received_events', 0); +INSERT INTO `developer` VALUES (4212, 'realitybender', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-04-01T19:24:41Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4212?v=4', 'https://api.github.com/users/realitybender', 'https://github.com/realitybender', 'https://api.github.com/users/realitybender/followers', 'https://api.github.com/users/realitybender/following', 'https://api.github.com/users/realitybender/gists', 'https://api.github.com/users/realitybender/starred', 'https://api.github.com/users/realitybender/repos', 'https://api.github.com/users/realitybender/events', 'https://api.github.com/users/realitybender/received_events', 0); +INSERT INTO `developer` VALUES (4213, 'brendanmetzger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brendan Metzger', 'Independant', 'brendanmetzger.com', 'Chicago', NULL, NULL, NULL, NULL, 0, 0, 13, 9, 0, 0, 0, '2008-04-01T19:56:31Z', '2024-08-28T17:03:40Z', 'https://avatars.githubusercontent.com/u/4213?v=4', 'https://api.github.com/users/brendanmetzger', 'https://github.com/brendanmetzger', 'https://api.github.com/users/brendanmetzger/followers', 'https://api.github.com/users/brendanmetzger/following', 'https://api.github.com/users/brendanmetzger/gists', 'https://api.github.com/users/brendanmetzger/starred', 'https://api.github.com/users/brendanmetzger/repos', 'https://api.github.com/users/brendanmetzger/events', 'https://api.github.com/users/brendanmetzger/received_events', 0); +INSERT INTO `developer` VALUES (4214, 'carlgaywood', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carl Gaywood', NULL, 'http://carlgaywood.com/', 'London', NULL, NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2008-04-01T20:02:47Z', '2024-01-10T09:30:14Z', 'https://avatars.githubusercontent.com/u/4214?v=4', 'https://api.github.com/users/carlgaywood', 'https://github.com/carlgaywood', 'https://api.github.com/users/carlgaywood/followers', 'https://api.github.com/users/carlgaywood/following', 'https://api.github.com/users/carlgaywood/gists', 'https://api.github.com/users/carlgaywood/starred', 'https://api.github.com/users/carlgaywood/repos', 'https://api.github.com/users/carlgaywood/events', 'https://api.github.com/users/carlgaywood/received_events', 0); +INSERT INTO `developer` VALUES (4215, 'nathos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Henderson', '@github ', 'http://nathos.com', 'Brooklyn, NY', 'nathos@github.com', 'true', 'Always thinking of, testing, and writing about ways to work better, together ❤️ 👫.', NULL, 0, 0, 255, 17, 0, 0, 0, '2008-04-01T20:26:29Z', '2024-11-04T20:12:37Z', 'https://avatars.githubusercontent.com/u/4215?v=4', 'https://api.github.com/users/nathos', 'https://github.com/nathos', 'https://api.github.com/users/nathos/followers', 'https://api.github.com/users/nathos/following', 'https://api.github.com/users/nathos/gists', 'https://api.github.com/users/nathos/starred', 'https://api.github.com/users/nathos/repos', 'https://api.github.com/users/nathos/events', 'https://api.github.com/users/nathos/received_events', 0); +INSERT INTO `developer` VALUES (4217, 'gkossakowski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Grzegorz Kossakowski', '@stripe', 'http://gkk.dev', 'San Francisco, CA', 'grzegorz.kossakowski@gmail.com', NULL, 'Proponent of dense representations. Previously: @stripe, hobo, #scala at @lightbend.', 'gkossakowski', 0, 0, 202, 19, 0, 0, 0, '2008-04-01T21:29:19Z', '2024-09-03T13:47:14Z', 'https://avatars.githubusercontent.com/u/4217?v=4', 'https://api.github.com/users/gkossakowski', 'https://github.com/gkossakowski', 'https://api.github.com/users/gkossakowski/followers', 'https://api.github.com/users/gkossakowski/following', 'https://api.github.com/users/gkossakowski/gists', 'https://api.github.com/users/gkossakowski/starred', 'https://api.github.com/users/gkossakowski/repos', 'https://api.github.com/users/gkossakowski/events', 'https://api.github.com/users/gkossakowski/received_events', 0); +INSERT INTO `developer` VALUES (4219, 'rjmooney', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Mooney', NULL, 'https://impetus.us/~rjmooney/', 'Seattle', NULL, NULL, NULL, NULL, 0, 0, 12, 24, 0, 0, 0, '2008-04-01T22:17:16Z', '2024-08-15T17:47:56Z', 'https://avatars.githubusercontent.com/u/4219?v=4', 'https://api.github.com/users/rjmooney', 'https://github.com/rjmooney', 'https://api.github.com/users/rjmooney/followers', 'https://api.github.com/users/rjmooney/following', 'https://api.github.com/users/rjmooney/gists', 'https://api.github.com/users/rjmooney/starred', 'https://api.github.com/users/rjmooney/repos', 'https://api.github.com/users/rjmooney/events', 'https://api.github.com/users/rjmooney/received_events', 0); +INSERT INTO `developer` VALUES (4220, 'lownoiseamp', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-04-01T23:38:39Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4220?v=4', 'https://api.github.com/users/lownoiseamp', 'https://github.com/lownoiseamp', 'https://api.github.com/users/lownoiseamp/followers', 'https://api.github.com/users/lownoiseamp/following', 'https://api.github.com/users/lownoiseamp/gists', 'https://api.github.com/users/lownoiseamp/starred', 'https://api.github.com/users/lownoiseamp/repos', 'https://api.github.com/users/lownoiseamp/events', 'https://api.github.com/users/lownoiseamp/received_events', 0); +INSERT INTO `developer` VALUES (4221, 'EvanFBC', 'C', 0, 0, 0, 0, 0, 0, 0, 'Evan Cancelliere', NULL, '', 'Toronto', NULL, NULL, NULL, NULL, 0, 0, 10, 4, 0, 0, 0, '2008-04-01T23:42:03Z', '2024-11-05T02:53:10Z', 'https://avatars.githubusercontent.com/u/4221?v=4', 'https://api.github.com/users/EvanFBC', 'https://github.com/EvanFBC', 'https://api.github.com/users/EvanFBC/followers', 'https://api.github.com/users/EvanFBC/following', 'https://api.github.com/users/EvanFBC/gists', 'https://api.github.com/users/EvanFBC/starred', 'https://api.github.com/users/EvanFBC/repos', 'https://api.github.com/users/EvanFBC/events', 'https://api.github.com/users/EvanFBC/received_events', 0); +INSERT INTO `developer` VALUES (4222, 'kebernet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert \"kebernet\" Cooper', '@thoughtworks', 'http://profiles.google.com/kebernet', 'Atlanta, GA', 'kebernet@gmail.com', 'true', NULL, NULL, 0, 0, 21, 2, 0, 0, 0, '2008-04-02T01:06:05Z', '2024-07-28T23:13:47Z', 'https://avatars.githubusercontent.com/u/4222?v=4', 'https://api.github.com/users/kebernet', 'https://github.com/kebernet', 'https://api.github.com/users/kebernet/followers', 'https://api.github.com/users/kebernet/following', 'https://api.github.com/users/kebernet/gists', 'https://api.github.com/users/kebernet/starred', 'https://api.github.com/users/kebernet/repos', 'https://api.github.com/users/kebernet/events', 'https://api.github.com/users/kebernet/received_events', 0); +INSERT INTO `developer` VALUES (4223, 'rails', 'B-', 29.927308432463306, 0, 0, 0, 0, 0, 0, 'Ruby on Rails', NULL, 'https://rubyonrails.org/', '未知', NULL, NULL, NULL, NULL, 0, 0, 2030, 0, 0, 0, 0, '2008-04-02T01:59:25Z', '2021-09-13T14:26:11Z', 'https://avatars.githubusercontent.com/u/4223?v=4', 'https://api.github.com/users/rails', 'https://github.com/rails', 'https://api.github.com/users/rails/followers', 'https://api.github.com/users/rails/following', 'https://api.github.com/users/rails/gists', 'https://api.github.com/users/rails/starred', 'https://api.github.com/users/rails/repos', 'https://api.github.com/users/rails/events', 'https://api.github.com/users/rails/received_events', 0); +INSERT INTO `developer` VALUES (4226, 'moonpolysoft', 'C', 0.07172921783638957, 0, 0, 0, 0, 0, 0, 'Cliff Moon', NULL, '', 'The Woods', 'jmoon@linkedin.com', NULL, NULL, NULL, 0, 0, 289, 3, 0, 0, 0, '2008-04-02T04:17:33Z', '2024-05-02T18:12:24Z', 'https://avatars.githubusercontent.com/u/4226?v=4', 'https://api.github.com/users/moonpolysoft', 'https://github.com/moonpolysoft', 'https://api.github.com/users/moonpolysoft/followers', 'https://api.github.com/users/moonpolysoft/following', 'https://api.github.com/users/moonpolysoft/gists', 'https://api.github.com/users/moonpolysoft/starred', 'https://api.github.com/users/moonpolysoft/repos', 'https://api.github.com/users/moonpolysoft/events', 'https://api.github.com/users/moonpolysoft/received_events', 0); +INSERT INTO `developer` VALUES (4227, 'bradly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bradly Feeley', '@Shopify', '', 'San Diego, California', NULL, 'true', 'Software Engineer at @Shopify. Previously at Apple, Intuit, Digitaria, Bradtrick.', NULL, 0, 0, 33, 1, 0, 0, 0, '2008-04-02T04:56:51Z', '2024-10-15T16:46:24Z', 'https://avatars.githubusercontent.com/u/4227?v=4', 'https://api.github.com/users/bradly', 'https://github.com/bradly', 'https://api.github.com/users/bradly/followers', 'https://api.github.com/users/bradly/following', 'https://api.github.com/users/bradly/gists', 'https://api.github.com/users/bradly/starred', 'https://api.github.com/users/bradly/repos', 'https://api.github.com/users/bradly/events', 'https://api.github.com/users/bradly/received_events', 0); +INSERT INTO `developer` VALUES (4228, 'roytang', 'C', 0, 0, 0, 0, 5, 0, 0, 'Roy Tang', NULL, 'https://roytang.net/', 'Quezon City, Philippines', NULL, NULL, NULL, 'roytang', 0, 0, 14, 0, 0, 0, 0, '2008-04-02T05:56:18Z', '2023-02-01T18:44:23Z', 'https://avatars.githubusercontent.com/u/4228?v=4', 'https://api.github.com/users/roytang', 'https://github.com/roytang', 'https://api.github.com/users/roytang/followers', 'https://api.github.com/users/roytang/following', 'https://api.github.com/users/roytang/gists', 'https://api.github.com/users/roytang/starred', 'https://api.github.com/users/roytang/repos', 'https://api.github.com/users/roytang/events', 'https://api.github.com/users/roytang/received_events', 0); +INSERT INTO `developer` VALUES (4229, 'zain', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zain Memon', 'Moorhead Cabbage Co.', 'https://twitter.com/zainy', 'San Francisco, CA', 'zain@inzain.net', NULL, NULL, NULL, 0, 0, 112, 3, 0, 0, 0, '2008-04-02T07:02:25Z', '2024-10-23T22:54:03Z', 'https://avatars.githubusercontent.com/u/4229?v=4', 'https://api.github.com/users/zain', 'https://github.com/zain', 'https://api.github.com/users/zain/followers', 'https://api.github.com/users/zain/following', 'https://api.github.com/users/zain/gists', 'https://api.github.com/users/zain/starred', 'https://api.github.com/users/zain/repos', 'https://api.github.com/users/zain/events', 'https://api.github.com/users/zain/received_events', 0); +INSERT INTO `developer` VALUES (4230, 'rlisagor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roman Lisagor', NULL, 'https://www.untab.io', 'Vancouver, BC', 'rlisagor@gmail.com', NULL, NULL, NULL, 0, 0, 24, 8, 0, 0, 0, '2008-04-02T07:06:28Z', '2024-10-26T12:39:43Z', 'https://avatars.githubusercontent.com/u/4230?v=4', 'https://api.github.com/users/rlisagor', 'https://github.com/rlisagor', 'https://api.github.com/users/rlisagor/followers', 'https://api.github.com/users/rlisagor/following', 'https://api.github.com/users/rlisagor/gists', 'https://api.github.com/users/rlisagor/starred', 'https://api.github.com/users/rlisagor/repos', 'https://api.github.com/users/rlisagor/events', 'https://api.github.com/users/rlisagor/received_events', 0); +INSERT INTO `developer` VALUES (4233, 'alokjain1', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 2, 0, 0, 0, '2008-04-02T11:19:41Z', '2024-08-09T01:05:34Z', 'https://avatars.githubusercontent.com/u/4233?v=4', 'https://api.github.com/users/alokjain1', 'https://github.com/alokjain1', 'https://api.github.com/users/alokjain1/followers', 'https://api.github.com/users/alokjain1/following', 'https://api.github.com/users/alokjain1/gists', 'https://api.github.com/users/alokjain1/starred', 'https://api.github.com/users/alokjain1/repos', 'https://api.github.com/users/alokjain1/events', 'https://api.github.com/users/alokjain1/received_events', 0); +INSERT INTO `developer` VALUES (4234, 'kjetilod', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kjetil Ødegaard', 'dCompany', 'kodeg.org', '未知', NULL, NULL, NULL, NULL, 0, 0, 21, 29, 0, 0, 0, '2008-04-02T12:38:34Z', '2024-07-18T07:55:33Z', 'https://avatars.githubusercontent.com/u/4234?v=4', 'https://api.github.com/users/kjetilod', 'https://github.com/kjetilod', 'https://api.github.com/users/kjetilod/followers', 'https://api.github.com/users/kjetilod/following', 'https://api.github.com/users/kjetilod/gists', 'https://api.github.com/users/kjetilod/starred', 'https://api.github.com/users/kjetilod/repos', 'https://api.github.com/users/kjetilod/events', 'https://api.github.com/users/kjetilod/received_events', 0); +INSERT INTO `developer` VALUES (4235, 'ChrisJMcCall', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris McCall', NULL, '', 'Denver, CO', 'chrisjmccall@gmail.com', NULL, NULL, NULL, 0, 0, 7, 4, 0, 0, 0, '2008-04-02T13:42:55Z', '2022-12-28T21:44:11Z', 'https://avatars.githubusercontent.com/u/4235?v=4', 'https://api.github.com/users/ChrisJMcCall', 'https://github.com/ChrisJMcCall', 'https://api.github.com/users/ChrisJMcCall/followers', 'https://api.github.com/users/ChrisJMcCall/following', 'https://api.github.com/users/ChrisJMcCall/gists', 'https://api.github.com/users/ChrisJMcCall/starred', 'https://api.github.com/users/ChrisJMcCall/repos', 'https://api.github.com/users/ChrisJMcCall/events', 'https://api.github.com/users/ChrisJMcCall/received_events', 0); +INSERT INTO `developer` VALUES (4237, 'omork', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ola Mork', 'Motiga, Inc', '', 'Seattle, WA', 'omork@mac.com', NULL, NULL, NULL, 0, 0, 19, 6, 0, 0, 0, '2008-04-02T14:23:18Z', '2020-12-01T17:51:39Z', 'https://avatars.githubusercontent.com/u/4237?v=4', 'https://api.github.com/users/omork', 'https://github.com/omork', 'https://api.github.com/users/omork/followers', 'https://api.github.com/users/omork/following', 'https://api.github.com/users/omork/gists', 'https://api.github.com/users/omork/starred', 'https://api.github.com/users/omork/repos', 'https://api.github.com/users/omork/events', 'https://api.github.com/users/omork/received_events', 0); +INSERT INTO `developer` VALUES (4238, 'jayshepherd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jay Shepherd', 'ID.me', '', 'Birmingham, AL', 'jay.shepherd@id.me', NULL, NULL, NULL, 0, 0, 22, 10, 0, 0, 0, '2008-04-02T15:08:28Z', '2024-11-04T16:16:07Z', 'https://avatars.githubusercontent.com/u/4238?v=4', 'https://api.github.com/users/jayshepherd', 'https://github.com/jayshepherd', 'https://api.github.com/users/jayshepherd/followers', 'https://api.github.com/users/jayshepherd/following', 'https://api.github.com/users/jayshepherd/gists', 'https://api.github.com/users/jayshepherd/starred', 'https://api.github.com/users/jayshepherd/repos', 'https://api.github.com/users/jayshepherd/events', 'https://api.github.com/users/jayshepherd/received_events', 0); +INSERT INTO `developer` VALUES (4240, 'elchingon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexii Carey', 'E7 Systems / Ciego Productions', '', 'Colorado', 'ciegoproductions@gmail.com', NULL, NULL, NULL, 0, 0, 25, 32, 0, 0, 0, '2008-04-02T15:16:25Z', '2024-10-15T18:55:05Z', 'https://avatars.githubusercontent.com/u/4240?v=4', 'https://api.github.com/users/elchingon', 'https://github.com/elchingon', 'https://api.github.com/users/elchingon/followers', 'https://api.github.com/users/elchingon/following', 'https://api.github.com/users/elchingon/gists', 'https://api.github.com/users/elchingon/starred', 'https://api.github.com/users/elchingon/repos', 'https://api.github.com/users/elchingon/events', 'https://api.github.com/users/elchingon/received_events', 0); +INSERT INTO `developer` VALUES (4241, 'mowli', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oliver Noack', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 3, 0, 0, 0, '2008-04-02T15:37:50Z', '2024-03-16T09:56:06Z', 'https://avatars.githubusercontent.com/u/4241?v=4', 'https://api.github.com/users/mowli', 'https://github.com/mowli', 'https://api.github.com/users/mowli/followers', 'https://api.github.com/users/mowli/following', 'https://api.github.com/users/mowli/gists', 'https://api.github.com/users/mowli/starred', 'https://api.github.com/users/mowli/repos', 'https://api.github.com/users/mowli/events', 'https://api.github.com/users/mowli/received_events', 0); +INSERT INTO `developer` VALUES (4242, 'zhware', 'C', 0, 0, 0, 0, 0, 0, 0, 'ZHware', 'ZHware Co.', 'http://d.hatena.ne.jp/zhesto/', '未知', 'zh@zhware.net', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-04-02T15:56:34Z', '2019-10-28T02:14:42Z', 'https://avatars.githubusercontent.com/u/4242?v=4', 'https://api.github.com/users/zhware', 'https://github.com/zhware', 'https://api.github.com/users/zhware/followers', 'https://api.github.com/users/zhware/following', 'https://api.github.com/users/zhware/gists', 'https://api.github.com/users/zhware/starred', 'https://api.github.com/users/zhware/repos', 'https://api.github.com/users/zhware/events', 'https://api.github.com/users/zhware/received_events', 0); +INSERT INTO `developer` VALUES (4244, 'Beladona', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen Luster', NULL, '', 'Beverly Hills, FL', 'beladona@wdnaddons.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-04-02T16:38:33Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4244?v=4', 'https://api.github.com/users/Beladona', 'https://github.com/Beladona', 'https://api.github.com/users/Beladona/followers', 'https://api.github.com/users/Beladona/following', 'https://api.github.com/users/Beladona/gists', 'https://api.github.com/users/Beladona/starred', 'https://api.github.com/users/Beladona/repos', 'https://api.github.com/users/Beladona/events', 'https://api.github.com/users/Beladona/received_events', 0); +INSERT INTO `developer` VALUES (4245, 'precision', 'C', 0, 0, 0, 0, 0, 0, 0, 'Uriah Welcome', NULL, '', 'Ann Arbor, MI', NULL, NULL, NULL, NULL, 0, 0, 29, 1, 0, 0, 0, '2008-04-02T18:21:51Z', '2024-10-15T13:43:22Z', 'https://avatars.githubusercontent.com/u/4245?v=4', 'https://api.github.com/users/precision', 'https://github.com/precision', 'https://api.github.com/users/precision/followers', 'https://api.github.com/users/precision/following', 'https://api.github.com/users/precision/gists', 'https://api.github.com/users/precision/starred', 'https://api.github.com/users/precision/repos', 'https://api.github.com/users/precision/events', 'https://api.github.com/users/precision/received_events', 0); +INSERT INTO `developer` VALUES (4246, 'krimple', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ken Rimple', NULL, '', 'Philadelphia, PA', 'ken.rimple@gmail.com', NULL, 'Developer Relationship Advocate at Honeycomb, focusing on Honeycomb Front-end Observability. ', NULL, 0, 0, 89, 8, 0, 0, 0, '2008-04-02T18:22:44Z', '2024-11-01T13:19:52Z', 'https://avatars.githubusercontent.com/u/4246?v=4', 'https://api.github.com/users/krimple', 'https://github.com/krimple', 'https://api.github.com/users/krimple/followers', 'https://api.github.com/users/krimple/following', 'https://api.github.com/users/krimple/gists', 'https://api.github.com/users/krimple/starred', 'https://api.github.com/users/krimple/repos', 'https://api.github.com/users/krimple/events', 'https://api.github.com/users/krimple/received_events', 0); +INSERT INTO `developer` VALUES (4248, 'pixelcat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kenzi Stewart', NULL, '', 'Sacramento, CA', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2008-04-02T18:23:25Z', '2024-10-30T16:32:08Z', 'https://avatars.githubusercontent.com/u/4248?v=4', 'https://api.github.com/users/pixelcat', 'https://github.com/pixelcat', 'https://api.github.com/users/pixelcat/followers', 'https://api.github.com/users/pixelcat/following', 'https://api.github.com/users/pixelcat/gists', 'https://api.github.com/users/pixelcat/starred', 'https://api.github.com/users/pixelcat/repos', 'https://api.github.com/users/pixelcat/events', 'https://api.github.com/users/pixelcat/received_events', 0); +INSERT INTO `developer` VALUES (4250, 'sbellity', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephane Bellity', 'Hull', 'http://hull.io', 'Paris, France', NULL, NULL, NULL, NULL, 0, 0, 162, 88, 0, 0, 0, '2008-04-02T18:24:06Z', '2024-10-30T18:57:53Z', 'https://avatars.githubusercontent.com/u/4250?v=4', 'https://api.github.com/users/sbellity', 'https://github.com/sbellity', 'https://api.github.com/users/sbellity/followers', 'https://api.github.com/users/sbellity/following', 'https://api.github.com/users/sbellity/gists', 'https://api.github.com/users/sbellity/starred', 'https://api.github.com/users/sbellity/repos', 'https://api.github.com/users/sbellity/events', 'https://api.github.com/users/sbellity/received_events', 0); +INSERT INTO `developer` VALUES (4251, 'Vinnl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vincent', NULL, 'https://VincentTunru.com', 'The Netherlands', NULL, NULL, 'Account mainly used for contributing to open source projects hosted on GitHub.\r\n\r\nMy main open source work happens at GitLab: https://gitlab.com/VincentTunru', NULL, 0, 0, 99, 9, 0, 0, 0, '2008-04-02T18:24:21Z', '2024-09-30T15:44:47Z', 'https://avatars.githubusercontent.com/u/4251?v=4', 'https://api.github.com/users/Vinnl', 'https://github.com/Vinnl', 'https://api.github.com/users/Vinnl/followers', 'https://api.github.com/users/Vinnl/following', 'https://api.github.com/users/Vinnl/gists', 'https://api.github.com/users/Vinnl/starred', 'https://api.github.com/users/Vinnl/repos', 'https://api.github.com/users/Vinnl/events', 'https://api.github.com/users/Vinnl/received_events', 0); +INSERT INTO `developer` VALUES (4252, 'peterberkenbosch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Berkenbosch', '@pbcbv ', 'https://pbcbv.com', 'Netherlands', 'peter@pbcbv.com', 'true', 'Development and consultancy | building bridges between customers, leadership and developers for e-Commerce companies | CXOps', 'pberkenbosch', 0, 0, 119, 27, 0, 0, 0, '2008-04-02T18:24:51Z', '2024-11-02T14:21:03Z', 'https://avatars.githubusercontent.com/u/4252?v=4', 'https://api.github.com/users/peterberkenbosch', 'https://github.com/peterberkenbosch', 'https://api.github.com/users/peterberkenbosch/followers', 'https://api.github.com/users/peterberkenbosch/following', 'https://api.github.com/users/peterberkenbosch/gists', 'https://api.github.com/users/peterberkenbosch/starred', 'https://api.github.com/users/peterberkenbosch/repos', 'https://api.github.com/users/peterberkenbosch/events', 'https://api.github.com/users/peterberkenbosch/received_events', 0); +INSERT INTO `developer` VALUES (4253, 'adkron', 'C', 0, 0, 0, 0, 0, 0, 0, 'Amos King', 'Binary Noggin', 'https://binarynoggin.com', 'Kansas City, MO USA', 'amos@binarynoggin.com', 'true', 'An Agile practitioner who loves writing great code and helping others develop ingenious solutions. Amos approaches every project with curiosity.', 'Adkron', 0, 0, 114, 22, 0, 0, 0, '2008-04-02T18:25:10Z', '2024-09-24T00:09:08Z', 'https://avatars.githubusercontent.com/u/4253?v=4', 'https://api.github.com/users/adkron', 'https://github.com/adkron', 'https://api.github.com/users/adkron/followers', 'https://api.github.com/users/adkron/following', 'https://api.github.com/users/adkron/gists', 'https://api.github.com/users/adkron/starred', 'https://api.github.com/users/adkron/repos', 'https://api.github.com/users/adkron/events', 'https://api.github.com/users/adkron/received_events', 0); +INSERT INTO `developer` VALUES (4255, 'ismail', 'C', 0, 0, 1, 0, 55, 20, 0, 'Ismail Dönmez', NULL, '', 'Germany', 'ismail@i10z.com', NULL, NULL, NULL, 0, 0, 54, 17, 0, 0, 0, '2008-04-02T18:25:31Z', '2024-10-27T16:23:18Z', 'https://avatars.githubusercontent.com/u/4255?v=4', 'https://api.github.com/users/ismail', 'https://github.com/ismail', 'https://api.github.com/users/ismail/followers', 'https://api.github.com/users/ismail/following', 'https://api.github.com/users/ismail/gists', 'https://api.github.com/users/ismail/starred', 'https://api.github.com/users/ismail/repos', 'https://api.github.com/users/ismail/events', 'https://api.github.com/users/ismail/received_events', 0); +INSERT INTO `developer` VALUES (4256, 'cobuso', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Cowan', 'Boomerang Communications', 'http://www.weareboomerang.com', 'Manchester, UK', 'tom@weareboomerang.com', NULL, NULL, NULL, 0, 0, 16, 6, 0, 0, 0, '2008-04-02T18:25:40Z', '2024-01-28T14:40:39Z', 'https://avatars.githubusercontent.com/u/4256?v=4', 'https://api.github.com/users/cobuso', 'https://github.com/cobuso', 'https://api.github.com/users/cobuso/followers', 'https://api.github.com/users/cobuso/following', 'https://api.github.com/users/cobuso/gists', 'https://api.github.com/users/cobuso/starred', 'https://api.github.com/users/cobuso/repos', 'https://api.github.com/users/cobuso/events', 'https://api.github.com/users/cobuso/received_events', 0); +INSERT INTO `developer` VALUES (4258, 'bsy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Yee', NULL, 'https://boonmedia.com', 'San Francisco, CA', 'benyee@gmail.com', 'true', NULL, 'benyee', 0, 0, 28, 37, 0, 0, 0, '2008-04-02T18:26:20Z', '2024-10-09T00:30:44Z', 'https://avatars.githubusercontent.com/u/4258?v=4', 'https://api.github.com/users/bsy', 'https://github.com/bsy', 'https://api.github.com/users/bsy/followers', 'https://api.github.com/users/bsy/following', 'https://api.github.com/users/bsy/gists', 'https://api.github.com/users/bsy/starred', 'https://api.github.com/users/bsy/repos', 'https://api.github.com/users/bsy/events', 'https://api.github.com/users/bsy/received_events', 0); +INSERT INTO `developer` VALUES (4259, 'schleyfox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Hughes', 'Notion', 'http://pixelmachine.org', 'New York, NY', 'ben@pixelmachine.org', NULL, NULL, NULL, 0, 0, 232, 10, 0, 0, 0, '2008-04-02T18:26:27Z', '2024-09-25T13:56:22Z', 'https://avatars.githubusercontent.com/u/4259?v=4', 'https://api.github.com/users/schleyfox', 'https://github.com/schleyfox', 'https://api.github.com/users/schleyfox/followers', 'https://api.github.com/users/schleyfox/following', 'https://api.github.com/users/schleyfox/gists', 'https://api.github.com/users/schleyfox/starred', 'https://api.github.com/users/schleyfox/repos', 'https://api.github.com/users/schleyfox/events', 'https://api.github.com/users/schleyfox/received_events', 0); +INSERT INTO `developer` VALUES (4262, 'justinwiley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Tyler Wiley', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 20, 19, 0, 0, 0, '2008-04-02T18:27:36Z', '2024-10-22T20:09:14Z', 'https://avatars.githubusercontent.com/u/4262?v=4', 'https://api.github.com/users/justinwiley', 'https://github.com/justinwiley', 'https://api.github.com/users/justinwiley/followers', 'https://api.github.com/users/justinwiley/following', 'https://api.github.com/users/justinwiley/gists', 'https://api.github.com/users/justinwiley/starred', 'https://api.github.com/users/justinwiley/repos', 'https://api.github.com/users/justinwiley/events', 'https://api.github.com/users/justinwiley/received_events', 0); +INSERT INTO `developer` VALUES (4263, 'cwillmor', 'C', 4.496048251365249, 0, 0, 0, 0, 0, 0, 'Chris Willmore', 'Apple', 'http://treedub.org/', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 547, 1, 0, 0, 0, '2008-04-02T18:29:28Z', '2024-10-22T17:02:14Z', 'https://avatars.githubusercontent.com/u/4263?v=4', 'https://api.github.com/users/cwillmor', 'https://github.com/cwillmor', 'https://api.github.com/users/cwillmor/followers', 'https://api.github.com/users/cwillmor/following', 'https://api.github.com/users/cwillmor/gists', 'https://api.github.com/users/cwillmor/starred', 'https://api.github.com/users/cwillmor/repos', 'https://api.github.com/users/cwillmor/events', 'https://api.github.com/users/cwillmor/received_events', 0); +INSERT INTO `developer` VALUES (4266, 'mjurincic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mauro', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 55, 182, 0, 0, 0, '2008-04-02T18:31:06Z', '2024-10-12T21:34:57Z', 'https://avatars.githubusercontent.com/u/4266?v=4', 'https://api.github.com/users/mjurincic', 'https://github.com/mjurincic', 'https://api.github.com/users/mjurincic/followers', 'https://api.github.com/users/mjurincic/following', 'https://api.github.com/users/mjurincic/gists', 'https://api.github.com/users/mjurincic/starred', 'https://api.github.com/users/mjurincic/repos', 'https://api.github.com/users/mjurincic/events', 'https://api.github.com/users/mjurincic/received_events', 0); +INSERT INTO `developer` VALUES (4267, 'mattyt', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-04-02T18:31:31Z', '2019-10-17T03:48:11Z', 'https://avatars.githubusercontent.com/u/4267?v=4', 'https://api.github.com/users/mattyt', 'https://github.com/mattyt', 'https://api.github.com/users/mattyt/followers', 'https://api.github.com/users/mattyt/following', 'https://api.github.com/users/mattyt/gists', 'https://api.github.com/users/mattyt/starred', 'https://api.github.com/users/mattyt/repos', 'https://api.github.com/users/mattyt/events', 'https://api.github.com/users/mattyt/received_events', 0); +INSERT INTO `developer` VALUES (4268, 'jaredg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jared Greeno', NULL, 'https://www.jaredg.org/', 'SF Bay Area, CA', NULL, NULL, 'previously used a computer, had concerns. enjoys beverages and sharing complaints over them.', NULL, 0, 0, 10, 2, 0, 0, 0, '2008-04-02T18:33:11Z', '2024-10-26T20:49:55Z', 'https://avatars.githubusercontent.com/u/4268?v=4', 'https://api.github.com/users/jaredg', 'https://github.com/jaredg', 'https://api.github.com/users/jaredg/followers', 'https://api.github.com/users/jaredg/following', 'https://api.github.com/users/jaredg/gists', 'https://api.github.com/users/jaredg/starred', 'https://api.github.com/users/jaredg/repos', 'https://api.github.com/users/jaredg/events', 'https://api.github.com/users/jaredg/received_events', 0); +INSERT INTO `developer` VALUES (4269, 'timkeller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Keller', 'Sunrise Productions', 'http://timkeller.me', 'Cape Town, South Africa.', NULL, NULL, 'Producer @SunriseProductions, Developer, Photographer.', NULL, 0, 0, 15, 21, 0, 0, 0, '2008-04-02T18:33:16Z', '2024-10-22T06:52:24Z', 'https://avatars.githubusercontent.com/u/4269?v=4', 'https://api.github.com/users/timkeller', 'https://github.com/timkeller', 'https://api.github.com/users/timkeller/followers', 'https://api.github.com/users/timkeller/following', 'https://api.github.com/users/timkeller/gists', 'https://api.github.com/users/timkeller/starred', 'https://api.github.com/users/timkeller/repos', 'https://api.github.com/users/timkeller/events', 'https://api.github.com/users/timkeller/received_events', 0); +INSERT INTO `developer` VALUES (4270, 'boosty', 'C', 5.928605338792345, 0, 15, 28, 540, 18, 0, 'Sebastian Röbke', NULL, '', 'Hamburg, Germany', NULL, NULL, NULL, 'boosty', 0, 0, 94, 87, 0, 0, 0, '2008-04-02T18:33:16Z', '2024-10-14T12:14:51Z', 'https://avatars.githubusercontent.com/u/4270?v=4', 'https://api.github.com/users/boosty', 'https://github.com/boosty', 'https://api.github.com/users/boosty/followers', 'https://api.github.com/users/boosty/following', 'https://api.github.com/users/boosty/gists', 'https://api.github.com/users/boosty/starred', 'https://api.github.com/users/boosty/repos', 'https://api.github.com/users/boosty/events', 'https://api.github.com/users/boosty/received_events', 0); +INSERT INTO `developer` VALUES (4271, 'saturnflyer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Gay', 'Saturn Flyer LLC', 'http://clean-ruby.com', 'Arlington, VA', NULL, 'true', 'Author of http://clean-ruby.com and http://clean-ruby.com/dsl as well as http://master-class.saturnflyer.com\r\n@saturnflyer@ruby.social', 'saturnflyer', 0, 0, 239, 1, 0, 0, 0, '2008-04-02T18:33:27Z', '2024-10-31T00:05:02Z', 'https://avatars.githubusercontent.com/u/4271?v=4', 'https://api.github.com/users/saturnflyer', 'https://github.com/saturnflyer', 'https://api.github.com/users/saturnflyer/followers', 'https://api.github.com/users/saturnflyer/following', 'https://api.github.com/users/saturnflyer/gists', 'https://api.github.com/users/saturnflyer/starred', 'https://api.github.com/users/saturnflyer/repos', 'https://api.github.com/users/saturnflyer/events', 'https://api.github.com/users/saturnflyer/received_events', 0); +INSERT INTO `developer` VALUES (4272, 'long', 'C', 0, 0, 0, 0, 0, 0, 0, 'Long Nguyen', 'Rayburst', '', '未知', 'long.nguyen@rayburst.com', NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2008-04-02T18:33:48Z', '2024-05-21T16:31:18Z', 'https://avatars.githubusercontent.com/u/4272?v=4', 'https://api.github.com/users/long', 'https://github.com/long', 'https://api.github.com/users/long/followers', 'https://api.github.com/users/long/following', 'https://api.github.com/users/long/gists', 'https://api.github.com/users/long/starred', 'https://api.github.com/users/long/repos', 'https://api.github.com/users/long/events', 'https://api.github.com/users/long/received_events', 0); +INSERT INTO `developer` VALUES (4273, 'lbadura', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lukasz Badura', 'Zendesk Sell', 'https://zendesk.com/sell', 'Krakow, Poland', NULL, NULL, 'Software Engineer @ Zendesk', NULL, 0, 0, 27, 33, 0, 0, 0, '2008-04-02T18:34:14Z', '2024-09-12T16:34:52Z', 'https://avatars.githubusercontent.com/u/4273?v=4', 'https://api.github.com/users/lbadura', 'https://github.com/lbadura', 'https://api.github.com/users/lbadura/followers', 'https://api.github.com/users/lbadura/following', 'https://api.github.com/users/lbadura/gists', 'https://api.github.com/users/lbadura/starred', 'https://api.github.com/users/lbadura/repos', 'https://api.github.com/users/lbadura/events', 'https://api.github.com/users/lbadura/received_events', 0); +INSERT INTO `developer` VALUES (4275, 'meantheory', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremiah Campbell', '@integralthread ', 'https://meantheory.com', 'Florida', NULL, NULL, NULL, NULL, 0, 0, 39, 23, 0, 0, 0, '2008-04-02T18:34:59Z', '2024-03-14T20:13:37Z', 'https://avatars.githubusercontent.com/u/4275?v=4', 'https://api.github.com/users/meantheory', 'https://github.com/meantheory', 'https://api.github.com/users/meantheory/followers', 'https://api.github.com/users/meantheory/following', 'https://api.github.com/users/meantheory/gists', 'https://api.github.com/users/meantheory/starred', 'https://api.github.com/users/meantheory/repos', 'https://api.github.com/users/meantheory/events', 'https://api.github.com/users/meantheory/received_events', 0); +INSERT INTO `developer` VALUES (4276, 'bernard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bernard Bolduc', 'Secure Logique', '', 'Montreal, Quebec, Canada', NULL, NULL, NULL, NULL, 0, 0, 18, 6, 0, 0, 0, '2008-04-02T18:35:03Z', '2024-07-09T15:32:45Z', 'https://avatars.githubusercontent.com/u/4276?v=4', 'https://api.github.com/users/bernard', 'https://github.com/bernard', 'https://api.github.com/users/bernard/followers', 'https://api.github.com/users/bernard/following', 'https://api.github.com/users/bernard/gists', 'https://api.github.com/users/bernard/starred', 'https://api.github.com/users/bernard/repos', 'https://api.github.com/users/bernard/events', 'https://api.github.com/users/bernard/received_events', 0); +INSERT INTO `developer` VALUES (4280, 'kyleridolfo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kyle Ridolfo', NULL, '', 'Boston', NULL, NULL, NULL, NULL, 0, 0, 34, 32, 0, 0, 0, '2008-04-02T18:37:50Z', '2024-07-06T14:50:36Z', 'https://avatars.githubusercontent.com/u/4280?v=4', 'https://api.github.com/users/kyleridolfo', 'https://github.com/kyleridolfo', 'https://api.github.com/users/kyleridolfo/followers', 'https://api.github.com/users/kyleridolfo/following', 'https://api.github.com/users/kyleridolfo/gists', 'https://api.github.com/users/kyleridolfo/starred', 'https://api.github.com/users/kyleridolfo/repos', 'https://api.github.com/users/kyleridolfo/events', 'https://api.github.com/users/kyleridolfo/received_events', 0); +INSERT INTO `developer` VALUES (4281, 'clanfx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-04-02T18:38:53Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4281?v=4', 'https://api.github.com/users/clanfx', 'https://github.com/clanfx', 'https://api.github.com/users/clanfx/followers', 'https://api.github.com/users/clanfx/following', 'https://api.github.com/users/clanfx/gists', 'https://api.github.com/users/clanfx/starred', 'https://api.github.com/users/clanfx/repos', 'https://api.github.com/users/clanfx/events', 'https://api.github.com/users/clanfx/received_events', 0); +INSERT INTO `developer` VALUES (4282, 'jisraelsen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeremy Israelsen', NULL, '', 'Vianen, Netherlands', 'jisraelsen@gmail.com', NULL, NULL, NULL, 0, 0, 25, 11, 0, 0, 0, '2008-04-02T18:39:12Z', '2024-10-26T20:05:43Z', 'https://avatars.githubusercontent.com/u/4282?v=4', 'https://api.github.com/users/jisraelsen', 'https://github.com/jisraelsen', 'https://api.github.com/users/jisraelsen/followers', 'https://api.github.com/users/jisraelsen/following', 'https://api.github.com/users/jisraelsen/gists', 'https://api.github.com/users/jisraelsen/starred', 'https://api.github.com/users/jisraelsen/repos', 'https://api.github.com/users/jisraelsen/events', 'https://api.github.com/users/jisraelsen/received_events', 0); +INSERT INTO `developer` VALUES (4283, 'ryw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ry Walker', 'Tembo', 'https://ossrank.com/c/189231', 'Cincinnati, Ohio', NULL, NULL, 'Coder | Founder | Investor | OSS\r\n', 'rywalker', 0, 0, 238, 376, 0, 0, 0, '2008-04-02T18:39:35Z', '2024-10-28T03:04:19Z', 'https://avatars.githubusercontent.com/u/4283?v=4', 'https://api.github.com/users/ryw', 'https://github.com/ryw', 'https://api.github.com/users/ryw/followers', 'https://api.github.com/users/ryw/following', 'https://api.github.com/users/ryw/gists', 'https://api.github.com/users/ryw/starred', 'https://api.github.com/users/ryw/repos', 'https://api.github.com/users/ryw/events', 'https://api.github.com/users/ryw/received_events', 0); +INSERT INTO `developer` VALUES (4284, 'squidmark', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-04-02T18:39:57Z', '2023-04-04T17:23:32Z', 'https://avatars.githubusercontent.com/u/4284?v=4', 'https://api.github.com/users/squidmark', 'https://github.com/squidmark', 'https://api.github.com/users/squidmark/followers', 'https://api.github.com/users/squidmark/following', 'https://api.github.com/users/squidmark/gists', 'https://api.github.com/users/squidmark/starred', 'https://api.github.com/users/squidmark/repos', 'https://api.github.com/users/squidmark/events', 'https://api.github.com/users/squidmark/received_events', 0); +INSERT INTO `developer` VALUES (4285, 'daviscabral', 'C', 0, 0, 0, 0, 0, 0, 0, 'Davis Z. Cabral', 'Kake.co', 'http://daviscabral.com.br', 'Brazil', 'eu@daviscabral.com.br', NULL, '✝️ Christian · \r\n👨🏻‍💻 Software Engineer · \r\n🐍 ancap · \r\n📦 @criptadocoach · \r\n🛫 🇧🇷🇦🇷🇵🇾🇺🇸🇪🇸🇫🇷🇳🇱', 'daviscabral', 0, 0, 95, 63, 0, 0, 0, '2008-04-02T18:40:54Z', '2024-10-27T11:19:14Z', 'https://avatars.githubusercontent.com/u/4285?v=4', 'https://api.github.com/users/daviscabral', 'https://github.com/daviscabral', 'https://api.github.com/users/daviscabral/followers', 'https://api.github.com/users/daviscabral/following', 'https://api.github.com/users/daviscabral/gists', 'https://api.github.com/users/daviscabral/starred', 'https://api.github.com/users/daviscabral/repos', 'https://api.github.com/users/daviscabral/events', 'https://api.github.com/users/daviscabral/received_events', 0); +INSERT INTO `developer` VALUES (4287, 'stevegio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Giovannetti', NULL, 'https://stevegio.net', '未知', 'stevegio@gmail.com', NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-04-02T18:42:01Z', '2022-04-22T16:14:55Z', 'https://avatars.githubusercontent.com/u/4287?v=4', 'https://api.github.com/users/stevegio', 'https://github.com/stevegio', 'https://api.github.com/users/stevegio/followers', 'https://api.github.com/users/stevegio/following', 'https://api.github.com/users/stevegio/gists', 'https://api.github.com/users/stevegio/starred', 'https://api.github.com/users/stevegio/repos', 'https://api.github.com/users/stevegio/events', 'https://api.github.com/users/stevegio/received_events', 0); +INSERT INTO `developer` VALUES (4289, 'jevon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jevon MacDonald', NULL, '', 'Canada', 'jevonm@gmail.com', NULL, '[The page intentionally left blank.]', 'jevon', 0, 0, 64, 107, 0, 0, 0, '2008-04-02T18:44:50Z', '2024-10-24T02:36:12Z', 'https://avatars.githubusercontent.com/u/4289?v=4', 'https://api.github.com/users/jevon', 'https://github.com/jevon', 'https://api.github.com/users/jevon/followers', 'https://api.github.com/users/jevon/following', 'https://api.github.com/users/jevon/gists', 'https://api.github.com/users/jevon/starred', 'https://api.github.com/users/jevon/repos', 'https://api.github.com/users/jevon/events', 'https://api.github.com/users/jevon/received_events', 0); +INSERT INTO `developer` VALUES (4290, 'cartazio', 'C', 0.6890760597241377, 0, 0, 0, 0, 0, 0, 'Carter Tazio Schonwald', 'wellposed.com ', 'www.wellposed.com', 'NYC, USA', NULL, NULL, NULL, NULL, 0, 0, 325, 27, 0, 0, 0, '2008-04-02T18:45:11Z', '2024-01-19T16:11:07Z', 'https://avatars.githubusercontent.com/u/4290?v=4', 'https://api.github.com/users/cartazio', 'https://github.com/cartazio', 'https://api.github.com/users/cartazio/followers', 'https://api.github.com/users/cartazio/following', 'https://api.github.com/users/cartazio/gists', 'https://api.github.com/users/cartazio/starred', 'https://api.github.com/users/cartazio/repos', 'https://api.github.com/users/cartazio/events', 'https://api.github.com/users/cartazio/received_events', 0); +INSERT INTO `developer` VALUES (4293, 'amir', 'C', 0, 0, 0, 0, 0, 0, 0, 'Amir M. Saeid', NULL, 'https://types.pl/@amir', 'Dublin, Ireland', 'amirsaied@gmail.com', 'true', NULL, 'gluegadget', 0, 0, 220, 911, 0, 0, 0, '2008-04-02T18:46:51Z', '2024-10-13T11:31:57Z', 'https://avatars.githubusercontent.com/u/4293?v=4', 'https://api.github.com/users/amir', 'https://github.com/amir', 'https://api.github.com/users/amir/followers', 'https://api.github.com/users/amir/following', 'https://api.github.com/users/amir/gists', 'https://api.github.com/users/amir/starred', 'https://api.github.com/users/amir/repos', 'https://api.github.com/users/amir/events', 'https://api.github.com/users/amir/received_events', 0); +INSERT INTO `developer` VALUES (4295, 'aitor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aitor García Rey', '@linkingpaths ', 'http://aitor.is', 'Bilbao - Reykjavík', 'hello@aitor.is', 'true', NULL, '_aitor', 0, 0, 100, 33, 0, 0, 0, '2008-04-02T18:50:34Z', '2024-10-28T12:21:35Z', 'https://avatars.githubusercontent.com/u/4295?v=4', 'https://api.github.com/users/aitor', 'https://github.com/aitor', 'https://api.github.com/users/aitor/followers', 'https://api.github.com/users/aitor/following', 'https://api.github.com/users/aitor/gists', 'https://api.github.com/users/aitor/starred', 'https://api.github.com/users/aitor/repos', 'https://api.github.com/users/aitor/events', 'https://api.github.com/users/aitor/received_events', 0); +INSERT INTO `developer` VALUES (4296, 'andres', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andres Paglayan', 'Tigerilla, LLC', 'paglayan.com', 'Santa Fe, NM USA', 'andres@paglayan.com', NULL, NULL, NULL, 0, 0, 13, 2, 0, 0, 0, '2008-04-02T18:51:21Z', '2024-10-23T02:54:45Z', 'https://avatars.githubusercontent.com/u/4296?v=4', 'https://api.github.com/users/andres', 'https://github.com/andres', 'https://api.github.com/users/andres/followers', 'https://api.github.com/users/andres/following', 'https://api.github.com/users/andres/gists', 'https://api.github.com/users/andres/starred', 'https://api.github.com/users/andres/repos', 'https://api.github.com/users/andres/events', 'https://api.github.com/users/andres/received_events', 0); +INSERT INTO `developer` VALUES (4298, 'ivar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ivar Vasara', 'Misc / Consultant', '', 'Vancouver', NULL, 'true', NULL, NULL, 0, 0, 28, 52, 0, 0, 0, '2008-04-02T18:51:47Z', '2024-04-30T20:51:28Z', 'https://avatars.githubusercontent.com/u/4298?v=4', 'https://api.github.com/users/ivar', 'https://github.com/ivar', 'https://api.github.com/users/ivar/followers', 'https://api.github.com/users/ivar/following', 'https://api.github.com/users/ivar/gists', 'https://api.github.com/users/ivar/starred', 'https://api.github.com/users/ivar/repos', 'https://api.github.com/users/ivar/events', 'https://api.github.com/users/ivar/received_events', 0); +INSERT INTO `developer` VALUES (4299, 'jdrew', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2008-04-02T18:52:09Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4299?v=4', 'https://api.github.com/users/jdrew', 'https://github.com/jdrew', 'https://api.github.com/users/jdrew/followers', 'https://api.github.com/users/jdrew/following', 'https://api.github.com/users/jdrew/gists', 'https://api.github.com/users/jdrew/starred', 'https://api.github.com/users/jdrew/repos', 'https://api.github.com/users/jdrew/events', 'https://api.github.com/users/jdrew/received_events', 0); +INSERT INTO `developer` VALUES (4300, 'staugaard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mick Staugaard', 'Zendesk, Podcast Machine', '', 'Auckland, New Zealand', 'mick@staugaard.com', NULL, 'Senior Principal Engineer at Zendesk', NULL, 0, 0, 61, 7, 0, 0, 0, '2008-04-02T18:53:29Z', '2024-09-14T06:12:50Z', 'https://avatars.githubusercontent.com/u/4300?v=4', 'https://api.github.com/users/staugaard', 'https://github.com/staugaard', 'https://api.github.com/users/staugaard/followers', 'https://api.github.com/users/staugaard/following', 'https://api.github.com/users/staugaard/gists', 'https://api.github.com/users/staugaard/starred', 'https://api.github.com/users/staugaard/repos', 'https://api.github.com/users/staugaard/events', 'https://api.github.com/users/staugaard/received_events', 0); +INSERT INTO `developer` VALUES (4301, 'mwalker1', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-04-02T18:53:39Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4301?v=4', 'https://api.github.com/users/mwalker1', 'https://github.com/mwalker1', 'https://api.github.com/users/mwalker1/followers', 'https://api.github.com/users/mwalker1/following', 'https://api.github.com/users/mwalker1/gists', 'https://api.github.com/users/mwalker1/starred', 'https://api.github.com/users/mwalker1/repos', 'https://api.github.com/users/mwalker1/events', 'https://api.github.com/users/mwalker1/received_events', 0); +INSERT INTO `developer` VALUES (4302, 'jleano', 'C', 0, 0, 0, 0, 0, 0, 0, 'jleano', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2008-04-02T18:53:49Z', '2023-09-15T04:30:09Z', 'https://avatars.githubusercontent.com/u/4302?v=4', 'https://api.github.com/users/jleano', 'https://github.com/jleano', 'https://api.github.com/users/jleano/followers', 'https://api.github.com/users/jleano/following', 'https://api.github.com/users/jleano/gists', 'https://api.github.com/users/jleano/starred', 'https://api.github.com/users/jleano/repos', 'https://api.github.com/users/jleano/events', 'https://api.github.com/users/jleano/received_events', 0); +INSERT INTO `developer` VALUES (4303, 'jdalton', 'A+', 87.70068371912504, 0, 0, 0, 0, 0, 0, 'John-David Dalton', 'Socket.dev', 'http://twitter.com/jdalton', 'Remote', NULL, NULL, '✨🌴🥥 Lodash creator • sometimes TC39 delegate • protecting supply chains at https://Socket.dev • Ex (Bun, Salesforce, Node core, Electron WG, Microsoft)', NULL, 0, 0, 5399, 22, 0, 0, 0, '2008-04-02T18:54:07Z', '2024-11-04T19:13:54Z', 'https://avatars.githubusercontent.com/u/4303?v=4', 'https://api.github.com/users/jdalton', 'https://github.com/jdalton', 'https://api.github.com/users/jdalton/followers', 'https://api.github.com/users/jdalton/following', 'https://api.github.com/users/jdalton/gists', 'https://api.github.com/users/jdalton/starred', 'https://api.github.com/users/jdalton/repos', 'https://api.github.com/users/jdalton/events', 'https://api.github.com/users/jdalton/received_events', 0); +INSERT INTO `developer` VALUES (4304, 'adamhjk', 'C', 1.0834920975968654, 0, 0, 0, 0, 0, 0, 'Adam Jacob', '@systeminit', 'http://systeminit.com', 'San Francisco, CA', 'adam@systeminit.com', NULL, NULL, 'adamhjk', 0, 0, 348, 2, 0, 0, 0, '2008-04-02T18:54:10Z', '2024-04-02T20:44:40Z', 'https://avatars.githubusercontent.com/u/4304?v=4', 'https://api.github.com/users/adamhjk', 'https://github.com/adamhjk', 'https://api.github.com/users/adamhjk/followers', 'https://api.github.com/users/adamhjk/following', 'https://api.github.com/users/adamhjk/gists', 'https://api.github.com/users/adamhjk/starred', 'https://api.github.com/users/adamhjk/repos', 'https://api.github.com/users/adamhjk/events', 'https://api.github.com/users/adamhjk/received_events', 0); +INSERT INTO `developer` VALUES (4305, 'rion', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2008-04-02T18:55:24Z', '2020-03-25T03:14:12Z', 'https://avatars.githubusercontent.com/u/4305?v=4', 'https://api.github.com/users/rion', 'https://github.com/rion', 'https://api.github.com/users/rion/followers', 'https://api.github.com/users/rion/following', 'https://api.github.com/users/rion/gists', 'https://api.github.com/users/rion/starred', 'https://api.github.com/users/rion/repos', 'https://api.github.com/users/rion/events', 'https://api.github.com/users/rion/received_events', 0); +INSERT INTO `developer` VALUES (4306, 'segdeha', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Hedges', '@AssistivLabs ', 'https://andrew.hedges.name', 'Portland, OR, USA', 'andrew@hedges.name', NULL, 'Professional web developer & engineering leader since 1998. Ex- Apple, Digg, Disney, & Zapier. Founder @ Assistiv Labs & The Collab Lab.', 'segdeha', 0, 0, 187, 97, 0, 0, 0, '2008-04-02T18:58:34Z', '2024-11-03T00:18:42Z', 'https://avatars.githubusercontent.com/u/4306?v=4', 'https://api.github.com/users/segdeha', 'https://github.com/segdeha', 'https://api.github.com/users/segdeha/followers', 'https://api.github.com/users/segdeha/following', 'https://api.github.com/users/segdeha/gists', 'https://api.github.com/users/segdeha/starred', 'https://api.github.com/users/segdeha/repos', 'https://api.github.com/users/segdeha/events', 'https://api.github.com/users/segdeha/received_events', 0); +INSERT INTO `developer` VALUES (4307, 'dhou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damien Hou', NULL, '', '未知', 'i@damienh.org', NULL, NULL, NULL, 0, 0, 63, 20, 0, 0, 0, '2008-04-02T19:01:34Z', '2024-10-22T19:57:51Z', 'https://avatars.githubusercontent.com/u/4307?v=4', 'https://api.github.com/users/dhou', 'https://github.com/dhou', 'https://api.github.com/users/dhou/followers', 'https://api.github.com/users/dhou/following', 'https://api.github.com/users/dhou/gists', 'https://api.github.com/users/dhou/starred', 'https://api.github.com/users/dhou/repos', 'https://api.github.com/users/dhou/events', 'https://api.github.com/users/dhou/received_events', 0); +INSERT INTO `developer` VALUES (4308, 'oddlyzen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Coates', '@bitpimpin', '', 'New England', 'nycrubypro@gmail.com', 'true', 'Sourcerer, Scrivener, Creative Conduit', NULL, 0, 0, 53, 50, 0, 0, 0, '2008-04-02T19:04:49Z', '2022-07-12T16:26:46Z', 'https://avatars.githubusercontent.com/u/4308?v=4', 'https://api.github.com/users/oddlyzen', 'https://github.com/oddlyzen', 'https://api.github.com/users/oddlyzen/followers', 'https://api.github.com/users/oddlyzen/following', 'https://api.github.com/users/oddlyzen/gists', 'https://api.github.com/users/oddlyzen/starred', 'https://api.github.com/users/oddlyzen/repos', 'https://api.github.com/users/oddlyzen/events', 'https://api.github.com/users/oddlyzen/received_events', 0); +INSERT INTO `developer` VALUES (4310, 'jcorreaes', 'C', 0, 0, 0, 0, 0, 0, 0, 'jorge.correa', 'Astara Innovation Venture Lab', 'http://jcorrea.es', 'Las Palmas de Gran Canaria', 'jcorrea.es@gmail.com', NULL, NULL, NULL, 0, 0, 33, 37, 0, 0, 0, '2008-04-02T19:06:52Z', '2024-10-24T07:59:30Z', 'https://avatars.githubusercontent.com/u/4310?v=4', 'https://api.github.com/users/jcorreaes', 'https://github.com/jcorreaes', 'https://api.github.com/users/jcorreaes/followers', 'https://api.github.com/users/jcorreaes/following', 'https://api.github.com/users/jcorreaes/gists', 'https://api.github.com/users/jcorreaes/starred', 'https://api.github.com/users/jcorreaes/repos', 'https://api.github.com/users/jcorreaes/events', 'https://api.github.com/users/jcorreaes/received_events', 0); +INSERT INTO `developer` VALUES (4311, 'clarkema', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Clarke', '@lambdafn ', 'http://www.lambdafunctions.com', 'Hull, England', NULL, 'true', NULL, NULL, 0, 0, 27, 8, 0, 0, 0, '2008-04-02T19:07:07Z', '2024-09-26T12:31:39Z', 'https://avatars.githubusercontent.com/u/4311?v=4', 'https://api.github.com/users/clarkema', 'https://github.com/clarkema', 'https://api.github.com/users/clarkema/followers', 'https://api.github.com/users/clarkema/following', 'https://api.github.com/users/clarkema/gists', 'https://api.github.com/users/clarkema/starred', 'https://api.github.com/users/clarkema/repos', 'https://api.github.com/users/clarkema/events', 'https://api.github.com/users/clarkema/received_events', 0); +INSERT INTO `developer` VALUES (4312, 'mkdynamic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Dodwell', NULL, '', 'Palo Alto, CA', NULL, NULL, NULL, NULL, 0, 0, 113, 68, 0, 0, 0, '2008-04-02T19:07:35Z', '2024-08-23T00:13:22Z', 'https://avatars.githubusercontent.com/u/4312?v=4', 'https://api.github.com/users/mkdynamic', 'https://github.com/mkdynamic', 'https://api.github.com/users/mkdynamic/followers', 'https://api.github.com/users/mkdynamic/following', 'https://api.github.com/users/mkdynamic/gists', 'https://api.github.com/users/mkdynamic/starred', 'https://api.github.com/users/mkdynamic/repos', 'https://api.github.com/users/mkdynamic/events', 'https://api.github.com/users/mkdynamic/received_events', 0); +INSERT INTO `developer` VALUES (4313, 'febeling', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Ebeling', NULL, 'http://www.florianebeling.com', 'Berlin', NULL, 'true', NULL, NULL, 0, 0, 61, 40, 0, 0, 0, '2008-04-02T19:11:59Z', '2024-09-29T14:41:25Z', 'https://avatars.githubusercontent.com/u/4313?v=4', 'https://api.github.com/users/febeling', 'https://github.com/febeling', 'https://api.github.com/users/febeling/followers', 'https://api.github.com/users/febeling/following', 'https://api.github.com/users/febeling/gists', 'https://api.github.com/users/febeling/starred', 'https://api.github.com/users/febeling/repos', 'https://api.github.com/users/febeling/events', 'https://api.github.com/users/febeling/received_events', 0); +INSERT INTO `developer` VALUES (4314, 'bbenzinger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Benzinger', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2008-04-02T19:13:02Z', '2024-09-11T17:09:27Z', 'https://avatars.githubusercontent.com/u/4314?v=4', 'https://api.github.com/users/bbenzinger', 'https://github.com/bbenzinger', 'https://api.github.com/users/bbenzinger/followers', 'https://api.github.com/users/bbenzinger/following', 'https://api.github.com/users/bbenzinger/gists', 'https://api.github.com/users/bbenzinger/starred', 'https://api.github.com/users/bbenzinger/repos', 'https://api.github.com/users/bbenzinger/events', 'https://api.github.com/users/bbenzinger/received_events', 0); +INSERT INTO `developer` VALUES (4315, 'hsribei', 'C', 0, 0, 0, 0, 0, 0, 0, 'Helder S Ribeiro', 'Agent of User', 'https://garantida.net', 'Brasil', 'git@hsr.st', NULL, 'Anfitrião do Garantida Podcast 🎧. Espameador da Renda Básica Universal. Engenharia da Computação @ Unicamp.', 'hsribei', 0, 0, 123, 189, 0, 0, 0, '2008-04-02T19:15:44Z', '2021-06-01T14:11:09Z', 'https://avatars.githubusercontent.com/u/4315?v=4', 'https://api.github.com/users/hsribei', 'https://github.com/hsribei', 'https://api.github.com/users/hsribei/followers', 'https://api.github.com/users/hsribei/following', 'https://api.github.com/users/hsribei/gists', 'https://api.github.com/users/hsribei/starred', 'https://api.github.com/users/hsribei/repos', 'https://api.github.com/users/hsribei/events', 'https://api.github.com/users/hsribei/received_events', 0); +INSERT INTO `developer` VALUES (4317, 'streppa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Treppa', NULL, '', 'Warren, MI', 'streppa@gmail.com', NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2008-04-02T19:17:54Z', '2024-06-04T19:41:04Z', 'https://avatars.githubusercontent.com/u/4317?v=4', 'https://api.github.com/users/streppa', 'https://github.com/streppa', 'https://api.github.com/users/streppa/followers', 'https://api.github.com/users/streppa/following', 'https://api.github.com/users/streppa/gists', 'https://api.github.com/users/streppa/starred', 'https://api.github.com/users/streppa/repos', 'https://api.github.com/users/streppa/events', 'https://api.github.com/users/streppa/received_events', 0); +INSERT INTO `developer` VALUES (4318, 'jashmenn', 'C', 7.119772329388175, 0, 0, 0, 0, 0, 0, 'Nate Murray', '@fullstackio', 'https://newline.co', 'San Francisco', 'nate@natemurray.com', NULL, 'Teaching ĐApp Development at https://newline.co \r\nCo-author ng-book and Fullstack React. Formerly IFTTT\r\nhttps://twitter.com/eigenjoy', NULL, 0, 0, 700, 21, 0, 0, 0, '2008-04-02T19:18:23Z', '2023-11-02T19:43:16Z', 'https://avatars.githubusercontent.com/u/4318?v=4', 'https://api.github.com/users/jashmenn', 'https://github.com/jashmenn', 'https://api.github.com/users/jashmenn/followers', 'https://api.github.com/users/jashmenn/following', 'https://api.github.com/users/jashmenn/gists', 'https://api.github.com/users/jashmenn/starred', 'https://api.github.com/users/jashmenn/repos', 'https://api.github.com/users/jashmenn/events', 'https://api.github.com/users/jashmenn/received_events', 0); +INSERT INTO `developer` VALUES (4319, 'insoshi', 'C', 0, 0, 0, 0, 0, 0, 0, 'insoshi', 'insoshi', 'http://blog.insoshi.com', '未知', 'git@insoshi.com', NULL, NULL, NULL, 0, 0, 75, 0, 0, 0, 0, '2008-04-02T19:18:24Z', '2017-08-14T19:41:08Z', 'https://avatars.githubusercontent.com/u/4319?v=4', 'https://api.github.com/users/insoshi', 'https://github.com/insoshi', 'https://api.github.com/users/insoshi/followers', 'https://api.github.com/users/insoshi/following', 'https://api.github.com/users/insoshi/gists', 'https://api.github.com/users/insoshi/starred', 'https://api.github.com/users/insoshi/repos', 'https://api.github.com/users/insoshi/events', 'https://api.github.com/users/insoshi/received_events', 0); +INSERT INTO `developer` VALUES (4320, 'TarGz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julien Terraz', NULL, 'http://www.targz.fr', 'Paris', NULL, NULL, 'Post-Digital creative. @digitaslbi_labs leader. Playing with technology in pursuit of creativy.', NULL, 0, 0, 20, 6, 0, 0, 0, '2008-04-02T19:19:01Z', '2024-10-01T16:53:41Z', 'https://avatars.githubusercontent.com/u/4320?v=4', 'https://api.github.com/users/TarGz', 'https://github.com/TarGz', 'https://api.github.com/users/TarGz/followers', 'https://api.github.com/users/TarGz/following', 'https://api.github.com/users/TarGz/gists', 'https://api.github.com/users/TarGz/starred', 'https://api.github.com/users/TarGz/repos', 'https://api.github.com/users/TarGz/events', 'https://api.github.com/users/TarGz/received_events', 0); +INSERT INTO `developer` VALUES (4321, 'jiku', 'C', 0, 0, 0, 0, 0, 0, 0, 'B.E. Henriksen', NULL, 'http://jiku.ca', 'Bergen, Norway', NULL, 'true', 'Tend to use computers to make and do stuff. Diverse background in software, automation, EE, (syn)bio(tech) and art.', NULL, 0, 0, 62, 32, 0, 0, 0, '2008-04-02T19:21:29Z', '2023-12-11T14:43:15Z', 'https://avatars.githubusercontent.com/u/4321?v=4', 'https://api.github.com/users/jiku', 'https://github.com/jiku', 'https://api.github.com/users/jiku/followers', 'https://api.github.com/users/jiku/following', 'https://api.github.com/users/jiku/gists', 'https://api.github.com/users/jiku/starred', 'https://api.github.com/users/jiku/repos', 'https://api.github.com/users/jiku/events', 'https://api.github.com/users/jiku/received_events', 0); +INSERT INTO `developer` VALUES (4322, 'dshaw', 'C+', 15.779776639202419, 0, 0, 0, 0, 0, 0, 'Dan Shaw', NULL, 'http://dshaw.com', 'San Francisco, CA', 'github@dshaw.com', NULL, 'Node.js OG. Founded @nodesource, The Node Firm. Always bet on @nodejs! ✨', 'dshaw', 0, 0, 1205, 597, 0, 0, 0, '2008-04-02T19:21:30Z', '2024-10-02T02:24:20Z', 'https://avatars.githubusercontent.com/u/4322?v=4', 'https://api.github.com/users/dshaw', 'https://github.com/dshaw', 'https://api.github.com/users/dshaw/followers', 'https://api.github.com/users/dshaw/following', 'https://api.github.com/users/dshaw/gists', 'https://api.github.com/users/dshaw/starred', 'https://api.github.com/users/dshaw/repos', 'https://api.github.com/users/dshaw/events', 'https://api.github.com/users/dshaw/received_events', 0); +INSERT INTO `developer` VALUES (4323, 'Flare183', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesse Richardson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 27, 0, 0, 0, '2008-04-02T19:23:11Z', '2024-07-03T15:08:28Z', 'https://avatars.githubusercontent.com/u/4323?v=4', 'https://api.github.com/users/Flare183', 'https://github.com/Flare183', 'https://api.github.com/users/Flare183/followers', 'https://api.github.com/users/Flare183/following', 'https://api.github.com/users/Flare183/gists', 'https://api.github.com/users/Flare183/starred', 'https://api.github.com/users/Flare183/repos', 'https://api.github.com/users/Flare183/events', 'https://api.github.com/users/Flare183/received_events', 0); +INSERT INTO `developer` VALUES (4324, 'cwalcott', 'C', 0, 0, 0, 0, 0, 0, 0, 'Costa Walcott', '@structural-health ', 'https://twitter.com/cwalcott', 'Boston, MA', NULL, NULL, 'Software Architect at Concrete Sensors', NULL, 0, 0, 50, 10, 0, 0, 0, '2008-04-02T19:33:32Z', '2024-08-30T23:46:15Z', 'https://avatars.githubusercontent.com/u/4324?v=4', 'https://api.github.com/users/cwalcott', 'https://github.com/cwalcott', 'https://api.github.com/users/cwalcott/followers', 'https://api.github.com/users/cwalcott/following', 'https://api.github.com/users/cwalcott/gists', 'https://api.github.com/users/cwalcott/starred', 'https://api.github.com/users/cwalcott/repos', 'https://api.github.com/users/cwalcott/events', 'https://api.github.com/users/cwalcott/received_events', 0); +INSERT INTO `developer` VALUES (4325, 'danm-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-04-02T19:34:18Z', '2018-10-24T17:05:37Z', 'https://avatars.githubusercontent.com/u/4325?v=4', 'https://api.github.com/users/danm-zz', 'https://github.com/danm-zz', 'https://api.github.com/users/danm-zz/followers', 'https://api.github.com/users/danm-zz/following', 'https://api.github.com/users/danm-zz/gists', 'https://api.github.com/users/danm-zz/starred', 'https://api.github.com/users/danm-zz/repos', 'https://api.github.com/users/danm-zz/events', 'https://api.github.com/users/danm-zz/received_events', 0); +INSERT INTO `developer` VALUES (4326, 'gisle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gisle Aas', '@uib', '', 'Bergen, Norway', NULL, NULL, NULL, NULL, 0, 0, 156, 25, 0, 0, 0, '2008-04-02T19:35:53Z', '2024-09-24T21:54:50Z', 'https://avatars.githubusercontent.com/u/4326?v=4', 'https://api.github.com/users/gisle', 'https://github.com/gisle', 'https://api.github.com/users/gisle/followers', 'https://api.github.com/users/gisle/following', 'https://api.github.com/users/gisle/gists', 'https://api.github.com/users/gisle/starred', 'https://api.github.com/users/gisle/repos', 'https://api.github.com/users/gisle/events', 'https://api.github.com/users/gisle/received_events', 0); +INSERT INTO `developer` VALUES (4327, 'ilya', 'C+', 16.81926226533846, 0, 64, 78, 24, 0, 0, 'Ilya', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 137, 1, 0, 0, 0, '2008-04-02T19:38:53Z', '2024-11-04T19:51:33Z', 'https://avatars.githubusercontent.com/u/4327?v=4', 'https://api.github.com/users/ilya', 'https://github.com/ilya', 'https://api.github.com/users/ilya/followers', 'https://api.github.com/users/ilya/following', 'https://api.github.com/users/ilya/gists', 'https://api.github.com/users/ilya/starred', 'https://api.github.com/users/ilya/repos', 'https://api.github.com/users/ilya/events', 'https://api.github.com/users/ilya/received_events', 0); +INSERT INTO `developer` VALUES (4328, 'tswicegood', 'C+', 13.676321042936443, 0, 2, 0, 1276, 29, 0, 'Travis Swicegood', NULL, 'http://www.travisswicegood.com', 'Austin, TX', 'travis@domain51.com', NULL, NULL, NULL, 0, 0, 521, 161, 0, 0, 0, '2008-04-02T19:39:15Z', '2024-10-30T14:56:08Z', 'https://avatars.githubusercontent.com/u/4328?v=4', 'https://api.github.com/users/tswicegood', 'https://github.com/tswicegood', 'https://api.github.com/users/tswicegood/followers', 'https://api.github.com/users/tswicegood/following', 'https://api.github.com/users/tswicegood/gists', 'https://api.github.com/users/tswicegood/starred', 'https://api.github.com/users/tswicegood/repos', 'https://api.github.com/users/tswicegood/events', 'https://api.github.com/users/tswicegood/received_events', 0); +INSERT INTO `developer` VALUES (4329, 'caillette', 'C', 0, 0, 0, 0, 0, 0, 0, 'Laurent Caillette', NULL, 'http://novelang.blogspot.com', 'Solar system', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2008-04-02T19:43:35Z', '2019-01-22T15:56:34Z', 'https://avatars.githubusercontent.com/u/4329?v=4', 'https://api.github.com/users/caillette', 'https://github.com/caillette', 'https://api.github.com/users/caillette/followers', 'https://api.github.com/users/caillette/following', 'https://api.github.com/users/caillette/gists', 'https://api.github.com/users/caillette/starred', 'https://api.github.com/users/caillette/repos', 'https://api.github.com/users/caillette/events', 'https://api.github.com/users/caillette/received_events', 0); +INSERT INTO `developer` VALUES (4331, 'pauldix', 'C', 9.109001042137587, 0, 0, 0, 0, 0, 0, 'Paul Dix', '@influxdata ', '', 'New York, NY', 'paul@pauldix.net', 'true', 'CTO and founder of InfluxData, the company behind the open source time series database InfluxDB.', 'pauldix', 0, 0, 816, 31, 0, 0, 0, '2008-04-02T19:45:42Z', '2024-10-04T12:37:23Z', 'https://avatars.githubusercontent.com/u/4331?v=4', 'https://api.github.com/users/pauldix', 'https://github.com/pauldix', 'https://api.github.com/users/pauldix/followers', 'https://api.github.com/users/pauldix/following', 'https://api.github.com/users/pauldix/gists', 'https://api.github.com/users/pauldix/starred', 'https://api.github.com/users/pauldix/repos', 'https://api.github.com/users/pauldix/events', 'https://api.github.com/users/pauldix/received_events', 0); +INSERT INTO `developer` VALUES (4332, 'ngredk', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-04-02T19:48:04Z', '2015-04-09T19:38:47Z', 'https://avatars.githubusercontent.com/u/4332?v=4', 'https://api.github.com/users/ngredk', 'https://github.com/ngredk', 'https://api.github.com/users/ngredk/followers', 'https://api.github.com/users/ngredk/following', 'https://api.github.com/users/ngredk/gists', 'https://api.github.com/users/ngredk/starred', 'https://api.github.com/users/ngredk/repos', 'https://api.github.com/users/ngredk/events', 'https://api.github.com/users/ngredk/received_events', 0); +INSERT INTO `developer` VALUES (4333, 'sandkassen', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-04-02T19:50:29Z', '2020-05-08T09:36:12Z', 'https://avatars.githubusercontent.com/u/4333?v=4', 'https://api.github.com/users/sandkassen', 'https://github.com/sandkassen', 'https://api.github.com/users/sandkassen/followers', 'https://api.github.com/users/sandkassen/following', 'https://api.github.com/users/sandkassen/gists', 'https://api.github.com/users/sandkassen/starred', 'https://api.github.com/users/sandkassen/repos', 'https://api.github.com/users/sandkassen/events', 'https://api.github.com/users/sandkassen/received_events', 0); +INSERT INTO `developer` VALUES (4335, 'nogoth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Livingood', NULL, 'nogoth.github.com', 'Montana', 'livingood@gmail.com', NULL, NULL, NULL, 0, 0, 10, 10, 0, 0, 0, '2008-04-02T19:54:33Z', '2023-05-27T16:14:08Z', 'https://avatars.githubusercontent.com/u/4335?v=4', 'https://api.github.com/users/nogoth', 'https://github.com/nogoth', 'https://api.github.com/users/nogoth/followers', 'https://api.github.com/users/nogoth/following', 'https://api.github.com/users/nogoth/gists', 'https://api.github.com/users/nogoth/starred', 'https://api.github.com/users/nogoth/repos', 'https://api.github.com/users/nogoth/events', 'https://api.github.com/users/nogoth/received_events', 0); +INSERT INTO `developer` VALUES (4336, 'vometa', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2008-04-02T19:56:33Z', '2014-05-27T18:09:42Z', 'https://avatars.githubusercontent.com/u/4336?v=4', 'https://api.github.com/users/vometa', 'https://github.com/vometa', 'https://api.github.com/users/vometa/followers', 'https://api.github.com/users/vometa/following', 'https://api.github.com/users/vometa/gists', 'https://api.github.com/users/vometa/starred', 'https://api.github.com/users/vometa/repos', 'https://api.github.com/users/vometa/events', 'https://api.github.com/users/vometa/received_events', 0); +INSERT INTO `developer` VALUES (4337, 'loopion', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emmanuel Pays', NULL, 'https://blog.loopion.com/', 'Paris, France', NULL, NULL, NULL, NULL, 0, 0, 24, 33, 0, 0, 0, '2008-04-02T20:00:52Z', '2024-11-04T12:19:37Z', 'https://avatars.githubusercontent.com/u/4337?v=4', 'https://api.github.com/users/loopion', 'https://github.com/loopion', 'https://api.github.com/users/loopion/followers', 'https://api.github.com/users/loopion/following', 'https://api.github.com/users/loopion/gists', 'https://api.github.com/users/loopion/starred', 'https://api.github.com/users/loopion/repos', 'https://api.github.com/users/loopion/events', 'https://api.github.com/users/loopion/received_events', 0); +INSERT INTO `developer` VALUES (4339, 'mattgillooly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Gillooly', NULL, 'http://mattgillooly.com', 'Providence, RI', 'matt@mattgillooly.com', 'true', NULL, NULL, 0, 0, 29, 43, 0, 0, 0, '2008-04-02T20:05:46Z', '2023-12-27T20:01:08Z', 'https://avatars.githubusercontent.com/u/4339?v=4', 'https://api.github.com/users/mattgillooly', 'https://github.com/mattgillooly', 'https://api.github.com/users/mattgillooly/followers', 'https://api.github.com/users/mattgillooly/following', 'https://api.github.com/users/mattgillooly/gists', 'https://api.github.com/users/mattgillooly/starred', 'https://api.github.com/users/mattgillooly/repos', 'https://api.github.com/users/mattgillooly/events', 'https://api.github.com/users/mattgillooly/received_events', 0); +INSERT INTO `developer` VALUES (4341, 'daved-zz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2008-04-02T20:20:54Z', '2016-02-26T22:35:06Z', 'https://avatars.githubusercontent.com/u/4341?v=4', 'https://api.github.com/users/daved-zz', 'https://github.com/daved-zz', 'https://api.github.com/users/daved-zz/followers', 'https://api.github.com/users/daved-zz/following', 'https://api.github.com/users/daved-zz/gists', 'https://api.github.com/users/daved-zz/starred', 'https://api.github.com/users/daved-zz/repos', 'https://api.github.com/users/daved-zz/events', 'https://api.github.com/users/daved-zz/received_events', 0); +INSERT INTO `developer` VALUES (4342, 'FiXato', 'C', 0, 0, 0, 0, 0, 0, 0, 'Filip H.F. \"FiXato\" Slagter', 'FiXato', 'https://fixato.org', 'Bodø, Norway', 'fixato@gmail.com', 'true', NULL, NULL, 0, 0, 42, 19, 0, 0, 0, '2008-04-02T20:27:58Z', '2024-04-18T10:27:56Z', 'https://avatars.githubusercontent.com/u/4342?v=4', 'https://api.github.com/users/FiXato', 'https://github.com/FiXato', 'https://api.github.com/users/FiXato/followers', 'https://api.github.com/users/FiXato/following', 'https://api.github.com/users/FiXato/gists', 'https://api.github.com/users/FiXato/starred', 'https://api.github.com/users/FiXato/repos', 'https://api.github.com/users/FiXato/events', 'https://api.github.com/users/FiXato/received_events', 0); +INSERT INTO `developer` VALUES (4371, 'diegoviola', 'C', 0, 0, 0, 0, 0, 0, 0, 'Diego Viola', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 58, 4, 0, 0, 0, '2008-04-02T22:09:34Z', '2024-09-26T12:51:38Z', 'https://avatars.githubusercontent.com/u/4371?v=4', 'https://api.github.com/users/diegoviola', 'https://github.com/diegoviola', 'https://api.github.com/users/diegoviola/followers', 'https://api.github.com/users/diegoviola/following', 'https://api.github.com/users/diegoviola/gists', 'https://api.github.com/users/diegoviola/starred', 'https://api.github.com/users/diegoviola/repos', 'https://api.github.com/users/diegoviola/events', 'https://api.github.com/users/diegoviola/received_events', 0); +INSERT INTO `developer` VALUES (4666, 'drewblas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Drew Blas', NULL, 'http://drewblas.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 44, 2, 0, 0, 0, '2008-04-03T19:31:11Z', '2024-10-10T14:20:14Z', 'https://avatars.githubusercontent.com/u/4666?v=4', 'https://api.github.com/users/drewblas', 'https://github.com/drewblas', 'https://api.github.com/users/drewblas/followers', 'https://api.github.com/users/drewblas/following', 'https://api.github.com/users/drewblas/gists', 'https://api.github.com/users/drewblas/starred', 'https://api.github.com/users/drewblas/repos', 'https://api.github.com/users/drewblas/events', 'https://api.github.com/users/drewblas/received_events', 0); +INSERT INTO `developer` VALUES (5470, 'Empact', 'C', 5.987969785927305, 0, 0, 0, 0, 0, 0, 'Benjamin Woosley', NULL, '', 'Austin, TX', 'Ben.Woosley@gmail.com', NULL, NULL, 'Empact', 0, 0, 634, 90, 0, 0, 0, '2008-04-06T22:28:05Z', '2024-11-05T02:17:14Z', 'https://avatars.githubusercontent.com/u/5470?v=4', 'https://api.github.com/users/Empact', 'https://github.com/Empact', 'https://api.github.com/users/Empact/followers', 'https://api.github.com/users/Empact/following', 'https://api.github.com/users/Empact/gists', 'https://api.github.com/users/Empact/starred', 'https://api.github.com/users/Empact/repos', 'https://api.github.com/users/Empact/events', 'https://api.github.com/users/Empact/received_events', 0); +INSERT INTO `developer` VALUES (5518, 'huacnlee', 'A', 80.08673933584282, 0, 0, 0, 0, 0, 0, 'Jason Lee', '@longbridgeapp ', '', 'Chengdu, China', 'huacnlee@gmail.com', NULL, 'Ruby / Go / Rust, co-founder of @ruby-china ', 'huacnlee', 0, 0, 4955, 195, 0, 0, 0, '2008-04-07T05:44:36Z', '2024-10-21T07:53:03Z', 'https://avatars.githubusercontent.com/u/5518?v=4', 'https://api.github.com/users/huacnlee', 'https://github.com/huacnlee', 'https://api.github.com/users/huacnlee/followers', 'https://api.github.com/users/huacnlee/following', 'https://api.github.com/users/huacnlee/gists', 'https://api.github.com/users/huacnlee/starred', 'https://api.github.com/users/huacnlee/repos', 'https://api.github.com/users/huacnlee/events', 'https://api.github.com/users/huacnlee/received_events', 0); +INSERT INTO `developer` VALUES (6251, 'vbehar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vincent Behar', 'Ubisoft', 'https://vincent.behar.name', 'Paris, France', 'v.behar@free.fr', NULL, 'I\'m a developer, and I love it ;-) My buzzwords of the moment are Go, Kubernetes, Observability, Continuous Delivery, and everything open-source', 'vbehar', 0, 0, 91, 0, 0, 0, 0, '2008-04-10T19:51:04Z', '2024-10-31T21:56:05Z', 'https://avatars.githubusercontent.com/u/6251?v=4', 'https://api.github.com/users/vbehar', 'https://github.com/vbehar', 'https://api.github.com/users/vbehar/followers', 'https://api.github.com/users/vbehar/following', 'https://api.github.com/users/vbehar/gists', 'https://api.github.com/users/vbehar/starred', 'https://api.github.com/users/vbehar/repos', 'https://api.github.com/users/vbehar/events', 'https://api.github.com/users/vbehar/received_events', 0); +INSERT INTO `developer` VALUES (6843, 'jinzhu', 'S', 100, 0, 20, 106, 684, 5, 0, 'Jinzhu', NULL, 'http://patreon.com/jinzhu', 'HangZhou China', 'wosmvp@gmail.com', 'true', 'Life is Art', NULL, 0, 0, 5375, 10, 0, 0, 0, '2008-04-12T01:27:32Z', '2024-10-24T19:03:37Z', 'https://avatars.githubusercontent.com/u/6843?v=4', 'https://api.github.com/users/jinzhu', 'https://github.com/jinzhu', 'https://api.github.com/users/jinzhu/followers', 'https://api.github.com/users/jinzhu/following', 'https://api.github.com/users/jinzhu/gists', 'https://api.github.com/users/jinzhu/starred', 'https://api.github.com/users/jinzhu/repos', 'https://api.github.com/users/jinzhu/events', 'https://api.github.com/users/jinzhu/received_events', 0); +INSERT INTO `developer` VALUES (6937, 'lian', 'C', 0, 0, 0, 0, 0, 0, 0, 'lian', NULL, '', 'Germany', 'meta.rb@gmail.com', NULL, NULL, NULL, 0, 0, 157, 3, 0, 0, 0, '2008-04-12T13:47:53Z', '2023-11-20T12:42:30Z', 'https://avatars.githubusercontent.com/u/6937?v=4', 'https://api.github.com/users/lian', 'https://github.com/lian', 'https://api.github.com/users/lian/followers', 'https://api.github.com/users/lian/following', 'https://api.github.com/users/lian/gists', 'https://api.github.com/users/lian/starred', 'https://api.github.com/users/lian/repos', 'https://api.github.com/users/lian/events', 'https://api.github.com/users/lian/received_events', 0); +INSERT INTO `developer` VALUES (7042, 'petertodd', 'B-', 28.521129514830108, 0, 0, 0, 0, 0, 0, 'Peter Todd', NULL, 'https://petertodd.org', 'Toronto', 'pete@petertodd.org', 'true', 'Applied Cryptography Consultant (what the cool kids call \'blockchain tech\')', NULL, 0, 0, 1948, 2, 0, 0, 0, '2008-04-13T05:35:12Z', '2024-11-01T18:23:06Z', 'https://avatars.githubusercontent.com/u/7042?v=4', 'https://api.github.com/users/petertodd', 'https://github.com/petertodd', 'https://api.github.com/users/petertodd/followers', 'https://api.github.com/users/petertodd/following', 'https://api.github.com/users/petertodd/gists', 'https://api.github.com/users/petertodd/starred', 'https://api.github.com/users/petertodd/repos', 'https://api.github.com/users/petertodd/events', 'https://api.github.com/users/petertodd/received_events', 0); +INSERT INTO `developer` VALUES (8103, 'zenwheel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Jann', 'Tightrope Media Systems', 'http://www.zenwheel.com/', 'Minneapolis, MN', 'sjann@knight-rider.org', NULL, NULL, NULL, 0, 0, 13, 2, 0, 0, 0, '2008-04-21T21:35:45Z', '2024-08-23T09:03:10Z', 'https://avatars.githubusercontent.com/u/8103?v=4', 'https://api.github.com/users/zenwheel', 'https://github.com/zenwheel', 'https://api.github.com/users/zenwheel/followers', 'https://api.github.com/users/zenwheel/following', 'https://api.github.com/users/zenwheel/gists', 'https://api.github.com/users/zenwheel/starred', 'https://api.github.com/users/zenwheel/repos', 'https://api.github.com/users/zenwheel/events', 'https://api.github.com/users/zenwheel/received_events', 0); +INSERT INTO `developer` VALUES (9654, 'dougmorato', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Morato', '@cybernetikco ', 'https://doug.cx', 'Boca Raton, FL - USA', 'dm@corp.io', 'true', 'Beloved Son of Heavenly Father, Happily Married & In Love, Father of 3, 🇧🇷🇺🇸\r\nPassionate about life. ', NULL, 0, 0, 98, 32, 0, 0, 0, '2008-05-08T03:25:04Z', '2024-10-06T04:26:58Z', 'https://avatars.githubusercontent.com/u/9654?v=4', 'https://api.github.com/users/dougmorato', 'https://github.com/dougmorato', 'https://api.github.com/users/dougmorato/followers', 'https://api.github.com/users/dougmorato/following', 'https://api.github.com/users/dougmorato/gists', 'https://api.github.com/users/dougmorato/starred', 'https://api.github.com/users/dougmorato/repos', 'https://api.github.com/users/dougmorato/events', 'https://api.github.com/users/dougmorato/received_events', 0); +INSERT INTO `developer` VALUES (9900, 'romanz', 'C', 1.3064229016118856, 0, 0, 0, 0, 0, 0, 'Roman Zeyde', NULL, 'https://romanzey.de', '未知', NULL, NULL, '15C8 C357 4AE4 F1E2 5F3F 35C5 87CA E5FA 4691 7CBB', 'roman_zeyde', 0, 0, 361, 314, 0, 0, 0, '2008-05-10T21:19:48Z', '2024-10-24T11:19:58Z', 'https://avatars.githubusercontent.com/u/9900?v=4', 'https://api.github.com/users/romanz', 'https://github.com/romanz', 'https://api.github.com/users/romanz/followers', 'https://api.github.com/users/romanz/following', 'https://api.github.com/users/romanz/gists', 'https://api.github.com/users/romanz/starred', 'https://api.github.com/users/romanz/repos', 'https://api.github.com/users/romanz/events', 'https://api.github.com/users/romanz/received_events', 0); +INSERT INTO `developer` VALUES (10217, 'Sjors', 'C', 9.520565603396086, 0, 0, 0, 0, 0, 0, 'Sjors Provoost', NULL, 'https://sprovoost.nl', 'Utrecht, The Netherlands', 'sjors@sprovoost.nl', NULL, 'Author of Bitcoin: A Work in Progress', NULL, 0, 0, 840, 12, 0, 0, 0, '2008-05-14T01:20:21Z', '2024-10-31T17:44:15Z', 'https://avatars.githubusercontent.com/u/10217?v=4', 'https://api.github.com/users/Sjors', 'https://github.com/Sjors', 'https://api.github.com/users/Sjors/followers', 'https://api.github.com/users/Sjors/following', 'https://api.github.com/users/Sjors/gists', 'https://api.github.com/users/Sjors/starred', 'https://api.github.com/users/Sjors/repos', 'https://api.github.com/users/Sjors/events', 'https://api.github.com/users/Sjors/received_events', 0); +INSERT INTO `developer` VALUES (12515, 'cradle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Glenn Murray', NULL, '', 'Victoria, Australia', NULL, NULL, NULL, NULL, 0, 0, 23, 19, 0, 0, 0, '2008-06-04T02:42:49Z', '2023-06-07T10:26:37Z', 'https://avatars.githubusercontent.com/u/12515?v=4', 'https://api.github.com/users/cradle', 'https://github.com/cradle', 'https://api.github.com/users/cradle/followers', 'https://api.github.com/users/cradle/following', 'https://api.github.com/users/cradle/gists', 'https://api.github.com/users/cradle/starred', 'https://api.github.com/users/cradle/repos', 'https://api.github.com/users/cradle/events', 'https://api.github.com/users/cradle/received_events', 0); +INSERT INTO `developer` VALUES (13550, 'mikemol', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Mol', '@google', '', 'Pittsburgh, PA', 'mikemol@gmail.com', NULL, 'DevOps engineer and mentor. Jack of all trades, master of searching, StackOverflow and letting my pipelines tell me I\'m a fool. Founder of RosettaCode.org.', 'mikemol', 0, 0, 40, 8, 0, 0, 0, '2008-06-13T00:50:28Z', '2024-08-15T20:37:25Z', 'https://avatars.githubusercontent.com/u/13550?v=4', 'https://api.github.com/users/mikemol', 'https://github.com/mikemol', 'https://api.github.com/users/mikemol/followers', 'https://api.github.com/users/mikemol/following', 'https://api.github.com/users/mikemol/gists', 'https://api.github.com/users/mikemol/starred', 'https://api.github.com/users/mikemol/repos', 'https://api.github.com/users/mikemol/events', 'https://api.github.com/users/mikemol/received_events', 0); +INSERT INTO `developer` VALUES (14386, 'martinus', 'C', 0.6204819661810543, 0, 0, 0, 0, 0, 0, 'Martin Leitner-Ankerl', '@Dynatrace', 'http://martin.ankerl.com/', 'Altenberg bei Linz, Austria', 'martin.ankerl@gmail.com', NULL, 'mostly C++ stuff. I like Bitcoin', 'sunitram', 0, 0, 321, 17, 0, 0, 0, '2008-06-20T05:10:47Z', '2024-11-03T12:19:31Z', 'https://avatars.githubusercontent.com/u/14386?v=4', 'https://api.github.com/users/martinus', 'https://github.com/martinus', 'https://api.github.com/users/martinus/followers', 'https://api.github.com/users/martinus/following', 'https://api.github.com/users/martinus/gists', 'https://api.github.com/users/martinus/starred', 'https://api.github.com/users/martinus/repos', 'https://api.github.com/users/martinus/events', 'https://api.github.com/users/martinus/received_events', 0); +INSERT INTO `developer` VALUES (14573, 'linzhm', 'C', 0, 0, 0, 0, 0, 0, 0, 'linzheming', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 29, 0, 0, 0, '2008-06-22T07:14:50Z', '2024-09-27T09:26:56Z', 'https://avatars.githubusercontent.com/u/14573?v=4', 'https://api.github.com/users/linzhm', 'https://github.com/linzhm', 'https://api.github.com/users/linzhm/followers', 'https://api.github.com/users/linzhm/following', 'https://api.github.com/users/linzhm/gists', 'https://api.github.com/users/linzhm/starred', 'https://api.github.com/users/linzhm/repos', 'https://api.github.com/users/linzhm/events', 'https://api.github.com/users/linzhm/received_events', 0); +INSERT INTO `developer` VALUES (16780, 'roderik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roderik van der Veer', '@settlemint ', 'https://settlemint.com', 'Belgium', 'roderik@settlemint.com', 'true', 'Founder & CTO at @settlemint ', 'r0derik', 0, 0, 143, 173, 0, 0, 0, '2008-07-11T13:57:56Z', '2024-09-16T20:03:06Z', 'https://avatars.githubusercontent.com/u/16780?v=4', 'https://api.github.com/users/roderik', 'https://github.com/roderik', 'https://api.github.com/users/roderik/followers', 'https://api.github.com/users/roderik/following', 'https://api.github.com/users/roderik/gists', 'https://api.github.com/users/roderik/starred', 'https://api.github.com/users/roderik/repos', 'https://api.github.com/users/roderik/events', 'https://api.github.com/users/roderik/received_events', 0); +INSERT INTO `developer` VALUES (16963, 'csexton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Sexton', '@RadiusNetworks ', 'http://www.codeography.com/', 'McLean, VA', NULL, NULL, NULL, NULL, 0, 0, 168, 14, 0, 0, 0, '2008-07-14T00:45:31Z', '2024-09-25T15:30:38Z', 'https://avatars.githubusercontent.com/u/16963?v=4', 'https://api.github.com/users/csexton', 'https://github.com/csexton', 'https://api.github.com/users/csexton/followers', 'https://api.github.com/users/csexton/following', 'https://api.github.com/users/csexton/gists', 'https://api.github.com/users/csexton/starred', 'https://api.github.com/users/csexton/repos', 'https://api.github.com/users/csexton/events', 'https://api.github.com/users/csexton/received_events', 0); +INSERT INTO `developer` VALUES (17146, 'witten', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Helfman', NULL, 'https://torsion.org/', 'Seattle, WA', 'witten@torsion.org', NULL, NULL, NULL, 0, 0, 28, 0, 0, 0, 0, '2008-07-15T20:34:04Z', '2024-04-16T20:13:26Z', 'https://avatars.githubusercontent.com/u/17146?v=4', 'https://api.github.com/users/witten', 'https://github.com/witten', 'https://api.github.com/users/witten/followers', 'https://api.github.com/users/witten/following', 'https://api.github.com/users/witten/gists', 'https://api.github.com/users/witten/starred', 'https://api.github.com/users/witten/repos', 'https://api.github.com/users/witten/events', 'https://api.github.com/users/witten/received_events', 0); +INSERT INTO `developer` VALUES (17377, 'cs278', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Smith', 'Wider Plan', 'https://www.cs278.org/', 'Redditch, UK', NULL, NULL, NULL, NULL, 0, 0, 47, 20, 0, 0, 0, '2008-07-17T19:36:59Z', '2024-10-25T08:10:48Z', 'https://avatars.githubusercontent.com/u/17377?v=4', 'https://api.github.com/users/cs278', 'https://github.com/cs278', 'https://api.github.com/users/cs278/followers', 'https://api.github.com/users/cs278/following', 'https://api.github.com/users/cs278/gists', 'https://api.github.com/users/cs278/starred', 'https://api.github.com/users/cs278/repos', 'https://api.github.com/users/cs278/events', 'https://api.github.com/users/cs278/received_events', 0); +INSERT INTO `developer` VALUES (18012, 'ycros', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ycros', NULL, '', 'Sydney, Australia', NULL, NULL, NULL, NULL, 0, 0, 34, 10, 0, 0, 0, '2008-07-22T23:24:27Z', '2024-02-05T19:55:08Z', 'https://avatars.githubusercontent.com/u/18012?v=4', 'https://api.github.com/users/ycros', 'https://github.com/ycros', 'https://api.github.com/users/ycros/followers', 'https://api.github.com/users/ycros/following', 'https://api.github.com/users/ycros/gists', 'https://api.github.com/users/ycros/starred', 'https://api.github.com/users/ycros/repos', 'https://api.github.com/users/ycros/events', 'https://api.github.com/users/ycros/received_events', 0); +INSERT INTO `developer` VALUES (18193, 'tlrobinson', 'C', 5.713593411754974, 0, 0, 0, 0, 0, 0, 'Tom Robinson', NULL, 'https://tlrobinson.net/', 'San Francisco, CA', 'tom@tlrobinson.net', 'true', NULL, 'tlrobinson', 0, 0, 618, 166, 0, 0, 0, '2008-07-23T22:04:03Z', '2023-09-14T06:10:09Z', 'https://avatars.githubusercontent.com/u/18193?v=4', 'https://api.github.com/users/tlrobinson', 'https://github.com/tlrobinson', 'https://api.github.com/users/tlrobinson/followers', 'https://api.github.com/users/tlrobinson/following', 'https://api.github.com/users/tlrobinson/gists', 'https://api.github.com/users/tlrobinson/starred', 'https://api.github.com/users/tlrobinson/repos', 'https://api.github.com/users/tlrobinson/events', 'https://api.github.com/users/tlrobinson/received_events', 0); +INSERT INTO `developer` VALUES (19967, 'nicholasf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicholas Faiz ', NULL, '', 'Melbourne', NULL, 'true', NULL, NULL, 0, 0, 99, 49, 0, 0, 0, '2008-08-08T00:59:42Z', '2024-10-29T23:00:41Z', 'https://avatars.githubusercontent.com/u/19967?v=4', 'https://api.github.com/users/nicholasf', 'https://github.com/nicholasf', 'https://api.github.com/users/nicholasf/followers', 'https://api.github.com/users/nicholasf/following', 'https://api.github.com/users/nicholasf/gists', 'https://api.github.com/users/nicholasf/starred', 'https://api.github.com/users/nicholasf/repos', 'https://api.github.com/users/nicholasf/events', 'https://api.github.com/users/nicholasf/received_events', 0); +INSERT INTO `developer` VALUES (21108, 'ento', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, 'true', 'Interests: self development, mindfulness.', NULL, 0, 0, 45, 6, 0, 0, 0, '2008-08-19T06:26:39Z', '2024-10-25T18:54:14Z', 'https://avatars.githubusercontent.com/u/21108?v=4', 'https://api.github.com/users/ento', 'https://github.com/ento', 'https://api.github.com/users/ento/followers', 'https://api.github.com/users/ento/following', 'https://api.github.com/users/ento/gists', 'https://api.github.com/users/ento/starred', 'https://api.github.com/users/ento/repos', 'https://api.github.com/users/ento/events', 'https://api.github.com/users/ento/received_events', 0); +INSERT INTO `developer` VALUES (21979, 'appleboy', 'S', 100, 0, 0, 0, 0, 0, 0, 'Bo-Yi Wu', 'Mediatek', 'https://blog.wu-boy.com', 'Hsinchu, Taiwan', 'appleboy.tw@gmail.com', 'true', 'I really believe committing every day to an open-source project is the best practice. Golang GDE (Google Developer Expert) in 2023', 'appleboy', 0, 0, 6805, 302, 0, 0, 0, '2008-08-26T02:05:56Z', '2024-10-03T11:22:04Z', 'https://avatars.githubusercontent.com/u/21979?v=4', 'https://api.github.com/users/appleboy', 'https://github.com/appleboy', 'https://api.github.com/users/appleboy/followers', 'https://api.github.com/users/appleboy/following', 'https://api.github.com/users/appleboy/gists', 'https://api.github.com/users/appleboy/starred', 'https://api.github.com/users/appleboy/repos', 'https://api.github.com/users/appleboy/events', 'https://api.github.com/users/appleboy/received_events', 0); +INSERT INTO `developer` VALUES (22009, 'mumoshu', 'C+', 15.093835703771585, 0, 0, 0, 0, 0, 0, 'Yusuke Kuoka', '@surrealdb, @freee, @actions-runner-controller', '', 'Kagawa, Japan', NULL, NULL, 'AWS Container Hero / Maintains actions-runner-controller, helmfile, etc / Wanna be a paid OSS dev someday', 'mumoshu', 0, 0, 1165, 59, 0, 0, 0, '2008-08-26T06:22:30Z', '2024-10-07T11:18:36Z', 'https://avatars.githubusercontent.com/u/22009?v=4', 'https://api.github.com/users/mumoshu', 'https://github.com/mumoshu', 'https://api.github.com/users/mumoshu/followers', 'https://api.github.com/users/mumoshu/following', 'https://api.github.com/users/mumoshu/gists', 'https://api.github.com/users/mumoshu/starred', 'https://api.github.com/users/mumoshu/repos', 'https://api.github.com/users/mumoshu/events', 'https://api.github.com/users/mumoshu/received_events', 0); +INSERT INTO `developer` VALUES (22792, 'mfontani', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marco Fontani', '@turnitin', 'https://marcofontani.it/', 'Milan, Italy / Milano', 'mf@marcofontani.it', NULL, 'Marco Fontani is a #Perl developer/sysadmin/tech lead, and a Camel and penguin whisperer in his spare time.', 'mfontani', 0, 0, 44, 15, 0, 0, 0, '2008-09-01T22:46:03Z', '2024-07-30T16:27:09Z', 'https://avatars.githubusercontent.com/u/22792?v=4', 'https://api.github.com/users/mfontani', 'https://github.com/mfontani', 'https://api.github.com/users/mfontani/followers', 'https://api.github.com/users/mfontani/following', 'https://api.github.com/users/mfontani/gists', 'https://api.github.com/users/mfontani/starred', 'https://api.github.com/users/mfontani/repos', 'https://api.github.com/users/mfontani/events', 'https://api.github.com/users/mfontani/received_events', 0); +INSERT INTO `developer` VALUES (24173, 'vegard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vegard Nossum', '@Oracle', '', 'Verneuil-sur-Vienne, France', 'vegard.nossum@gmail.com', NULL, NULL, NULL, 0, 0, 158, 11, 0, 0, 0, '2008-09-11T16:22:25Z', '2024-08-09T08:15:16Z', 'https://avatars.githubusercontent.com/u/24173?v=4', 'https://api.github.com/users/vegard', 'https://github.com/vegard', 'https://api.github.com/users/vegard/followers', 'https://api.github.com/users/vegard/following', 'https://api.github.com/users/vegard/gists', 'https://api.github.com/users/vegard/starred', 'https://api.github.com/users/vegard/repos', 'https://api.github.com/users/vegard/events', 'https://api.github.com/users/vegard/received_events', 0); +INSERT INTO `developer` VALUES (25405, 'x1ddos', 'C+', 17.786153875337597, 0, 0, 0, 0, 0, 0, 'alex', NULL, '', 'mountains', 'alex@cloudware.io', 'true', 'FDE3 E617 50E3 1F2F or 5401 89B7 56BF 5B12', 'x1ddos', 0, 0, 1322, 2, 0, 0, 0, '2008-09-19T17:37:49Z', '2024-08-08T14:52:24Z', 'https://avatars.githubusercontent.com/u/25405?v=4', 'https://api.github.com/users/x1ddos', 'https://github.com/x1ddos', 'https://api.github.com/users/x1ddos/followers', 'https://api.github.com/users/x1ddos/following', 'https://api.github.com/users/x1ddos/gists', 'https://api.github.com/users/x1ddos/starred', 'https://api.github.com/users/x1ddos/repos', 'https://api.github.com/users/x1ddos/events', 'https://api.github.com/users/x1ddos/received_events', 0); +INSERT INTO `developer` VALUES (29161, 'nobled', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 35, 4, 0, 0, 0, '2008-10-15T23:46:00Z', '2017-08-15T06:19:59Z', 'https://avatars.githubusercontent.com/u/29161?v=4', 'https://api.github.com/users/nobled', 'https://github.com/nobled', 'https://api.github.com/users/nobled/followers', 'https://api.github.com/users/nobled/following', 'https://api.github.com/users/nobled/gists', 'https://api.github.com/users/nobled/starred', 'https://api.github.com/users/nobled/repos', 'https://api.github.com/users/nobled/events', 'https://api.github.com/users/nobled/received_events', 0); +INSERT INTO `developer` VALUES (29317, 'mpokress', 'C', 0, 0, 0, 0, 5, 0, 0, 'Matt Pokress', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2008-10-16T16:33:36Z', '2024-01-31T20:08:44Z', 'https://avatars.githubusercontent.com/u/29317?v=4', 'https://api.github.com/users/mpokress', 'https://github.com/mpokress', 'https://api.github.com/users/mpokress/followers', 'https://api.github.com/users/mpokress/following', 'https://api.github.com/users/mpokress/gists', 'https://api.github.com/users/mpokress/starred', 'https://api.github.com/users/mpokress/repos', 'https://api.github.com/users/mpokress/events', 'https://api.github.com/users/mpokress/received_events', 0); +INSERT INTO `developer` VALUES (30140, 'jstrachan', 'C', 9.966427211426126, 0, 0, 0, 0, 0, 0, 'James Strachan', 'Apple', 'https://medium.com/@jstrachan/', 'Mells, UK', 'james.strachan@gmail.com', NULL, 'I work on new technologies at Apple\r\n\r\nI previously created Apache Groovy & Apache Camel and worked on Jenkins X', 'jstrachan', 0, 0, 866, 2, 0, 0, 0, '2008-10-21T12:50:55Z', '2024-11-02T09:57:35Z', 'https://avatars.githubusercontent.com/u/30140?v=4', 'https://api.github.com/users/jstrachan', 'https://github.com/jstrachan', 'https://api.github.com/users/jstrachan/followers', 'https://api.github.com/users/jstrachan/following', 'https://api.github.com/users/jstrachan/gists', 'https://api.github.com/users/jstrachan/starred', 'https://api.github.com/users/jstrachan/repos', 'https://api.github.com/users/jstrachan/events', 'https://api.github.com/users/jstrachan/received_events', 0); +INSERT INTO `developer` VALUES (30146, 'amweiss', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Weiss', 'HelixIntel', 'https://www.adamweiss.me', 'Buffalo, NY', NULL, NULL, 'Development leader with a belief that simple solutions result in better products.', NULL, 0, 0, 36, 0, 0, 0, 0, '2008-10-21T13:44:47Z', '2024-10-09T16:43:28Z', 'https://avatars.githubusercontent.com/u/30146?v=4', 'https://api.github.com/users/amweiss', 'https://github.com/amweiss', 'https://api.github.com/users/amweiss/followers', 'https://api.github.com/users/amweiss/following', 'https://api.github.com/users/amweiss/gists', 'https://api.github.com/users/amweiss/starred', 'https://api.github.com/users/amweiss/repos', 'https://api.github.com/users/amweiss/events', 'https://api.github.com/users/amweiss/received_events', 0); +INSERT INTO `developer` VALUES (30766, 'hdon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Donny Viszneki', 'Website Management Systems', 'http://codebad.com/', 'Las Vegas, NV, US', 'donny.viszneki@gmail.com', 'true', NULL, NULL, 0, 0, 15, 8, 0, 0, 0, '2008-10-24T04:13:13Z', '2021-06-19T17:00:58Z', 'https://avatars.githubusercontent.com/u/30766?v=4', 'https://api.github.com/users/hdon', 'https://github.com/hdon', 'https://api.github.com/users/hdon/followers', 'https://api.github.com/users/hdon/following', 'https://api.github.com/users/hdon/gists', 'https://api.github.com/users/hdon/starred', 'https://api.github.com/users/hdon/repos', 'https://api.github.com/users/hdon/events', 'https://api.github.com/users/hdon/received_events', 0); +INSERT INTO `developer` VALUES (32126, 'coding4food', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anatoly Medvedkov', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 9, 0, 0, 0, '2008-11-01T12:11:53Z', '2024-09-20T15:15:06Z', 'https://avatars.githubusercontent.com/u/32126?v=4', 'https://api.github.com/users/coding4food', 'https://github.com/coding4food', 'https://api.github.com/users/coding4food/followers', 'https://api.github.com/users/coding4food/following', 'https://api.github.com/users/coding4food/gists', 'https://api.github.com/users/coding4food/starred', 'https://api.github.com/users/coding4food/repos', 'https://api.github.com/users/coding4food/events', 'https://api.github.com/users/coding4food/received_events', 0); +INSERT INTO `developer` VALUES (32879, 'javiplx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Javier Palacios', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 20, 0, 0, 0, 0, '2008-11-05T22:09:47Z', '2024-10-14T15:55:58Z', 'https://avatars.githubusercontent.com/u/32879?v=4', 'https://api.github.com/users/javiplx', 'https://github.com/javiplx', 'https://api.github.com/users/javiplx/followers', 'https://api.github.com/users/javiplx/following', 'https://api.github.com/users/javiplx/gists', 'https://api.github.com/users/javiplx/starred', 'https://api.github.com/users/javiplx/repos', 'https://api.github.com/users/javiplx/events', 'https://api.github.com/users/javiplx/received_events', 0); +INSERT INTO `developer` VALUES (35170, 'nightscape', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Mauch', NULL, '', 'Regensburg, Germany', 'martin@mauch.dev', 'true', 'Big fan of Functional Programming, Scala, Idris.\r\nPassionate about meditation and neuroscience.', NULL, 0, 0, 148, 212, 0, 0, 0, '2008-11-18T10:56:18Z', '2024-10-31T15:21:53Z', 'https://avatars.githubusercontent.com/u/35170?v=4', 'https://api.github.com/users/nightscape', 'https://github.com/nightscape', 'https://api.github.com/users/nightscape/followers', 'https://api.github.com/users/nightscape/following', 'https://api.github.com/users/nightscape/gists', 'https://api.github.com/users/nightscape/starred', 'https://api.github.com/users/nightscape/repos', 'https://api.github.com/users/nightscape/events', 'https://api.github.com/users/nightscape/received_events', 0); +INSERT INTO `developer` VALUES (36502, 'heath', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, '@heathmatlock on gitlab', NULL, 0, 0, 42, 0, 0, 0, 0, '2008-11-25T05:10:11Z', '2024-05-06T15:38:17Z', 'https://avatars.githubusercontent.com/u/36502?v=4', 'https://api.github.com/users/heath', 'https://github.com/heath', 'https://api.github.com/users/heath/followers', 'https://api.github.com/users/heath/following', 'https://api.github.com/users/heath/gists', 'https://api.github.com/users/heath/starred', 'https://api.github.com/users/heath/repos', 'https://api.github.com/users/heath/events', 'https://api.github.com/users/heath/received_events', 0); +INSERT INTO `developer` VALUES (38447, 'dlo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Loewenherz', '@champifyio ', 'dlo.me', 'Austin, TX', 'dan@champify.io', NULL, 'building @champifyio ', 'dwlz', 0, 0, 196, 174, 0, 0, 0, '2008-12-05T02:46:50Z', '2024-07-21T00:56:05Z', 'https://avatars.githubusercontent.com/u/38447?v=4', 'https://api.github.com/users/dlo', 'https://github.com/dlo', 'https://api.github.com/users/dlo/followers', 'https://api.github.com/users/dlo/following', 'https://api.github.com/users/dlo/gists', 'https://api.github.com/users/dlo/starred', 'https://api.github.com/users/dlo/repos', 'https://api.github.com/users/dlo/events', 'https://api.github.com/users/dlo/received_events', 0); +INSERT INTO `developer` VALUES (38890, 'stefanha', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Hajnoczi', NULL, '', '未知', 'stefanha@gmail.com', NULL, NULL, NULL, 0, 0, 172, 3, 0, 0, 0, '2008-12-07T16:39:34Z', '2024-08-14T15:34:47Z', 'https://avatars.githubusercontent.com/u/38890?v=4', 'https://api.github.com/users/stefanha', 'https://github.com/stefanha', 'https://api.github.com/users/stefanha/followers', 'https://api.github.com/users/stefanha/following', 'https://api.github.com/users/stefanha/gists', 'https://api.github.com/users/stefanha/starred', 'https://api.github.com/users/stefanha/repos', 'https://api.github.com/users/stefanha/events', 'https://api.github.com/users/stefanha/received_events', 0); +INSERT INTO `developer` VALUES (38929, 'desaintmartin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cédric de Saint Martin', '@wiremind', 'http://twitter.com/desaintmartin', 'Paris, France', 'cedric@desaintmartin.fr', 'true', NULL, 'desaintmartin', 0, 0, 58, 26, 0, 0, 0, '2008-12-07T20:43:47Z', '2024-10-28T11:18:39Z', 'https://avatars.githubusercontent.com/u/38929?v=4', 'https://api.github.com/users/desaintmartin', 'https://github.com/desaintmartin', 'https://api.github.com/users/desaintmartin/followers', 'https://api.github.com/users/desaintmartin/following', 'https://api.github.com/users/desaintmartin/gists', 'https://api.github.com/users/desaintmartin/starred', 'https://api.github.com/users/desaintmartin/repos', 'https://api.github.com/users/desaintmartin/events', 'https://api.github.com/users/desaintmartin/received_events', 0); +INSERT INTO `developer` VALUES (41094, 'tschaub', 'C', 2.7126018192450885, 0, 0, 0, 0, 0, 0, 'Tim Schaub', 'Planet Labs', 'http://tschaub.net/', '未知', NULL, 'true', NULL, NULL, 0, 0, 443, 2, 0, 0, 0, '2008-12-17T21:32:01Z', '2024-08-06T16:10:56Z', 'https://avatars.githubusercontent.com/u/41094?v=4', 'https://api.github.com/users/tschaub', 'https://github.com/tschaub', 'https://api.github.com/users/tschaub/followers', 'https://api.github.com/users/tschaub/following', 'https://api.github.com/users/tschaub/gists', 'https://api.github.com/users/tschaub/starred', 'https://api.github.com/users/tschaub/repos', 'https://api.github.com/users/tschaub/events', 'https://api.github.com/users/tschaub/received_events', 0); +INSERT INTO `developer` VALUES (41777, 'dol', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dominic', 'SIX Group', 'snowgarden.ch', 'Switzerland', NULL, NULL, 'Lead DevOps Engineer building internal platforms', 'drdol', 0, 0, 40, 45, 0, 0, 0, '2008-12-20T12:15:54Z', '2024-10-31T06:47:34Z', 'https://avatars.githubusercontent.com/u/41777?v=4', 'https://api.github.com/users/dol', 'https://github.com/dol', 'https://api.github.com/users/dol/followers', 'https://api.github.com/users/dol/following', 'https://api.github.com/users/dol/gists', 'https://api.github.com/users/dol/starred', 'https://api.github.com/users/dol/repos', 'https://api.github.com/users/dol/events', 'https://api.github.com/users/dol/received_events', 0); +INSERT INTO `developer` VALUES (42201, 'prusnak', 'C+', 13.293240748265656, 0, 0, 0, 0, 0, 0, 'Pavol Rusnak', 'Co-Founder @SatoshiLabs', 'https://rusnak.io', '₿ pavol@rusnak.io', NULL, NULL, '✊ Strengthening individual power and independence via open-source software and hardware projects • @Bitcoin @Trezor @NixOS @TropicSquare', 'pavolrusnak', 0, 0, 1060, 0, 0, 0, 0, '2008-12-23T00:19:12Z', '2024-10-29T09:12:28Z', 'https://avatars.githubusercontent.com/u/42201?v=4', 'https://api.github.com/users/prusnak', 'https://github.com/prusnak', 'https://api.github.com/users/prusnak/followers', 'https://api.github.com/users/prusnak/following', 'https://api.github.com/users/prusnak/gists', 'https://api.github.com/users/prusnak/starred', 'https://api.github.com/users/prusnak/repos', 'https://api.github.com/users/prusnak/events', 'https://api.github.com/users/prusnak/received_events', 0); +INSERT INTO `developer` VALUES (42459, 'djpnewton', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 66, 2, 0, 0, 0, '2008-12-24T09:22:12Z', '2024-09-25T21:21:47Z', 'https://avatars.githubusercontent.com/u/42459?v=4', 'https://api.github.com/users/djpnewton', 'https://github.com/djpnewton', 'https://api.github.com/users/djpnewton/followers', 'https://api.github.com/users/djpnewton/following', 'https://api.github.com/users/djpnewton/gists', 'https://api.github.com/users/djpnewton/starred', 'https://api.github.com/users/djpnewton/repos', 'https://api.github.com/users/djpnewton/events', 'https://api.github.com/users/djpnewton/received_events', 0); +INSERT INTO `developer` VALUES (42750, 'eordano', 'C', 1.5979477991699884, 0, 0, 0, 0, 0, 0, 'Esteban Ordano', NULL, 'https://eordano.com', 'Buenos Aires, Argentina', 'esteban@decentraland.org', NULL, '✍️💻🚀', NULL, 0, 0, 378, 77, 0, 0, 0, '2008-12-26T13:16:05Z', '2024-10-26T12:28:17Z', 'https://avatars.githubusercontent.com/u/42750?v=4', 'https://api.github.com/users/eordano', 'https://github.com/eordano', 'https://api.github.com/users/eordano/followers', 'https://api.github.com/users/eordano/following', 'https://api.github.com/users/eordano/gists', 'https://api.github.com/users/eordano/starred', 'https://api.github.com/users/eordano/repos', 'https://api.github.com/users/eordano/events', 'https://api.github.com/users/eordano/received_events', 0); +INSERT INTO `developer` VALUES (43136, 'donaldguy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Donald Guy', NULL, 'https://dbgmo.de', 'Denver', 'fawkes@mit.edu', 'true', '3 years unemployed 2012 MIT CS alum. Did DevOps & k8s stuff 2014-2021. Only sometimes likes coding, preferably in Elixir, Ruby, or good-old bash. Rust? maybe.', NULL, 0, 0, 38, 14, 0, 0, 0, '2008-12-29T13:28:14Z', '2024-11-01T02:31:05Z', 'https://avatars.githubusercontent.com/u/43136?v=4', 'https://api.github.com/users/donaldguy', 'https://github.com/donaldguy', 'https://api.github.com/users/donaldguy/followers', 'https://api.github.com/users/donaldguy/following', 'https://api.github.com/users/donaldguy/gists', 'https://api.github.com/users/donaldguy/starred', 'https://api.github.com/users/donaldguy/repos', 'https://api.github.com/users/donaldguy/events', 'https://api.github.com/users/donaldguy/received_events', 0); +INSERT INTO `developer` VALUES (43689, 'chromicant', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Crichton', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2009-01-02T02:18:28Z', '2021-09-11T03:22:46Z', 'https://avatars.githubusercontent.com/u/43689?v=4', 'https://api.github.com/users/chromicant', 'https://github.com/chromicant', 'https://api.github.com/users/chromicant/followers', 'https://api.github.com/users/chromicant/following', 'https://api.github.com/users/chromicant/gists', 'https://api.github.com/users/chromicant/starred', 'https://api.github.com/users/chromicant/repos', 'https://api.github.com/users/chromicant/events', 'https://api.github.com/users/chromicant/received_events', 0); +INSERT INTO `developer` VALUES (43821, 'jordanlewis', 'C', 2.6611562490877763, 0, 0, 0, 0, 0, 0, 'Jordan Lewis', '@cockroachdb ', 'jordanlewis.org', 'Brooklyn, NY', 'jordanthelewis@gmail.com', NULL, 'Working on databases at @cockroachdb.\r\n\r\nhttps://twitch.tv/large__data__bank', 'largedatabank', 0, 0, 440, 27, 0, 0, 0, '2009-01-02T19:53:34Z', '2024-10-27T11:19:16Z', 'https://avatars.githubusercontent.com/u/43821?v=4', 'https://api.github.com/users/jordanlewis', 'https://github.com/jordanlewis', 'https://api.github.com/users/jordanlewis/followers', 'https://api.github.com/users/jordanlewis/following', 'https://api.github.com/users/jordanlewis/gists', 'https://api.github.com/users/jordanlewis/starred', 'https://api.github.com/users/jordanlewis/repos', 'https://api.github.com/users/jordanlewis/events', 'https://api.github.com/users/jordanlewis/received_events', 0); +INSERT INTO `developer` VALUES (43997, 'mndrix', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Hendricks', NULL, '', 'Wyoming, USA', 'michael@ndrix.org', NULL, NULL, NULL, 0, 0, 149, 5, 0, 0, 0, '2009-01-03T21:22:18Z', '2024-09-25T12:24:23Z', 'https://avatars.githubusercontent.com/u/43997?v=4', 'https://api.github.com/users/mndrix', 'https://github.com/mndrix', 'https://api.github.com/users/mndrix/followers', 'https://api.github.com/users/mndrix/following', 'https://api.github.com/users/mndrix/gists', 'https://api.github.com/users/mndrix/starred', 'https://api.github.com/users/mndrix/repos', 'https://api.github.com/users/mndrix/events', 'https://api.github.com/users/mndrix/received_events', 0); +INSERT INTO `developer` VALUES (44281, 'pirapira', 'C', 8.217277826077506, 0, 0, 0, 0, 0, 0, 'Yoichi Hirai', NULL, 'https://yoichihirai.com', 'Europe', 'i@yoichihirai.com', NULL, NULL, NULL, 0, 0, 764, 64, 0, 0, 0, '2009-01-05T11:47:58Z', '2024-10-07T11:19:54Z', 'https://avatars.githubusercontent.com/u/44281?v=4', 'https://api.github.com/users/pirapira', 'https://github.com/pirapira', 'https://api.github.com/users/pirapira/followers', 'https://api.github.com/users/pirapira/following', 'https://api.github.com/users/pirapira/gists', 'https://api.github.com/users/pirapira/starred', 'https://api.github.com/users/pirapira/repos', 'https://api.github.com/users/pirapira/events', 'https://api.github.com/users/pirapira/received_events', 0); +INSERT INTO `developer` VALUES (44674, 'Elbandi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andras Elso', 'Elbandi.Net', '', 'Budapest', 'ea333@freemail.hu', NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2009-01-06T21:02:37Z', '2024-07-18T09:11:34Z', 'https://avatars.githubusercontent.com/u/44674?v=4', 'https://api.github.com/users/Elbandi', 'https://github.com/Elbandi', 'https://api.github.com/users/Elbandi/followers', 'https://api.github.com/users/Elbandi/following', 'https://api.github.com/users/Elbandi/gists', 'https://api.github.com/users/Elbandi/starred', 'https://api.github.com/users/Elbandi/repos', 'https://api.github.com/users/Elbandi/events', 'https://api.github.com/users/Elbandi/received_events', 0); +INSERT INTO `developer` VALUES (48147, 'jrmithdobbs', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 19, 5, 0, 0, 0, '2009-01-21T03:48:01Z', '2022-09-14T04:13:30Z', 'https://avatars.githubusercontent.com/u/48147?v=4', 'https://api.github.com/users/jrmithdobbs', 'https://github.com/jrmithdobbs', 'https://api.github.com/users/jrmithdobbs/followers', 'https://api.github.com/users/jrmithdobbs/following', 'https://api.github.com/users/jrmithdobbs/gists', 'https://api.github.com/users/jrmithdobbs/starred', 'https://api.github.com/users/jrmithdobbs/repos', 'https://api.github.com/users/jrmithdobbs/events', 'https://api.github.com/users/jrmithdobbs/received_events', 0); +INSERT INTO `developer` VALUES (49141, 'cgestes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cedric GESTES', NULL, '', 'Paris FRANCE', 'cedric.gestes@gmail.com', 'true', NULL, NULL, 0, 0, 41, 6, 0, 0, 0, '2009-01-25T13:30:58Z', '2024-09-11T18:14:00Z', 'https://avatars.githubusercontent.com/u/49141?v=4', 'https://api.github.com/users/cgestes', 'https://github.com/cgestes', 'https://api.github.com/users/cgestes/followers', 'https://api.github.com/users/cgestes/following', 'https://api.github.com/users/cgestes/gists', 'https://api.github.com/users/cgestes/starred', 'https://api.github.com/users/cgestes/repos', 'https://api.github.com/users/cgestes/events', 'https://api.github.com/users/cgestes/received_events', 0); +INSERT INTO `developer` VALUES (49682, 'gloubibou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pierre Bernard', 'Houdah Software', 'http://www.bernard-web.com/pierre', 'Switzerland', NULL, NULL, NULL, NULL, 0, 0, 27, 0, 0, 0, 0, '2009-01-27T17:38:51Z', '2024-08-21T08:41:37Z', 'https://avatars.githubusercontent.com/u/49682?v=4', 'https://api.github.com/users/gloubibou', 'https://github.com/gloubibou', 'https://api.github.com/users/gloubibou/followers', 'https://api.github.com/users/gloubibou/following', 'https://api.github.com/users/gloubibou/gists', 'https://api.github.com/users/gloubibou/starred', 'https://api.github.com/users/gloubibou/repos', 'https://api.github.com/users/gloubibou/events', 'https://api.github.com/users/gloubibou/received_events', 0); +INSERT INTO `developer` VALUES (52489, 'osterman', 'C', 0.5518878726379709, 0, 0, 0, 0, 0, 0, 'Erik Osterman (CEO @ Cloud Posse)', 'Cloud Posse, LLC', 'http://www.cloudposse.com/', 'Los Angeles, CA', 'erik@cloudposse.com', 'true', 'Helping teams succeed today using Cloud Posse\'s Reference Architectures for AWS.', 'eosterman', 0, 0, 317, 68, 0, 0, 0, '2009-02-07T01:27:50Z', '2024-10-11T13:00:06Z', 'https://avatars.githubusercontent.com/u/52489?v=4', 'https://api.github.com/users/osterman', 'https://github.com/osterman', 'https://api.github.com/users/osterman/followers', 'https://api.github.com/users/osterman/following', 'https://api.github.com/users/osterman/gists', 'https://api.github.com/users/osterman/starred', 'https://api.github.com/users/osterman/repos', 'https://api.github.com/users/osterman/events', 'https://api.github.com/users/osterman/received_events', 0); +INSERT INTO `developer` VALUES (54232, 'ian-kelling', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Kelling', 'Free Software Foundation', 'https://iankelling.org', '未知', 'ian@iankelling.org', 'true', 'Senior Systems Administrator at FSF. Free software developer and activist.', NULL, 0, 0, 37, 3, 0, 0, 0, '2009-02-13T11:54:18Z', '2024-07-24T09:22:31Z', 'https://avatars.githubusercontent.com/u/54232?v=4', 'https://api.github.com/users/ian-kelling', 'https://github.com/ian-kelling', 'https://api.github.com/users/ian-kelling/followers', 'https://api.github.com/users/ian-kelling/following', 'https://api.github.com/users/ian-kelling/gists', 'https://api.github.com/users/ian-kelling/starred', 'https://api.github.com/users/ian-kelling/repos', 'https://api.github.com/users/ian-kelling/events', 'https://api.github.com/users/ian-kelling/received_events', 0); +INSERT INTO `developer` VALUES (54412, 'rbg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Gordon', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 30, 68, 0, 0, 0, '2009-02-14T01:30:44Z', '2024-10-19T18:48:47Z', 'https://avatars.githubusercontent.com/u/54412?v=4', 'https://api.github.com/users/rbg', 'https://github.com/rbg', 'https://api.github.com/users/rbg/followers', 'https://api.github.com/users/rbg/following', 'https://api.github.com/users/rbg/gists', 'https://api.github.com/users/rbg/starred', 'https://api.github.com/users/rbg/repos', 'https://api.github.com/users/rbg/events', 'https://api.github.com/users/rbg/received_events', 0); +INSERT INTO `developer` VALUES (54525, 'cschomburg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Constantin Schomburg', '@hero-handwerk', 'https://cschomburg.com', '未知', 'hey@cschomburg.com', NULL, NULL, NULL, 0, 0, 37, 27, 0, 0, 0, '2009-02-14T15:20:15Z', '2024-09-08T08:27:27Z', 'https://avatars.githubusercontent.com/u/54525?v=4', 'https://api.github.com/users/cschomburg', 'https://github.com/cschomburg', 'https://api.github.com/users/cschomburg/followers', 'https://api.github.com/users/cschomburg/following', 'https://api.github.com/users/cschomburg/gists', 'https://api.github.com/users/cschomburg/starred', 'https://api.github.com/users/cschomburg/repos', 'https://api.github.com/users/cschomburg/events', 'https://api.github.com/users/cschomburg/received_events', 0); +INSERT INTO `developer` VALUES (55519, 'li3p', 'C', 0, 0, 0, 0, 0, 0, 0, 'li3p', NULL, '', '未知', 'bobtern@gmail.com', NULL, NULL, NULL, 0, 0, 8, 4, 0, 0, 0, '2009-02-18T11:37:33Z', '2024-10-31T01:37:18Z', 'https://avatars.githubusercontent.com/u/55519?v=4', 'https://api.github.com/users/li3p', 'https://github.com/li3p', 'https://api.github.com/users/li3p/followers', 'https://api.github.com/users/li3p/following', 'https://api.github.com/users/li3p/gists', 'https://api.github.com/users/li3p/starred', 'https://api.github.com/users/li3p/repos', 'https://api.github.com/users/li3p/events', 'https://api.github.com/users/li3p/received_events', 0); +INSERT INTO `developer` VALUES (58784, 'dmp1ce', 'C', 0, 0, 0, 0, 0, 0, 0, 'David', NULL, 'https://daveparrish.net/', 'North Carolina', 'arbutin_gurry@aleeas.com', 'true', 'Working to make the world a better place with software. Or I just really enjoy writing code and solving problems.', 'Dave_Parrish', 0, 0, 51, 44, 0, 0, 0, '2009-02-28T05:18:26Z', '2024-09-28T13:59:17Z', 'https://avatars.githubusercontent.com/u/58784?v=4', 'https://api.github.com/users/dmp1ce', 'https://github.com/dmp1ce', 'https://api.github.com/users/dmp1ce/followers', 'https://api.github.com/users/dmp1ce/following', 'https://api.github.com/users/dmp1ce/gists', 'https://api.github.com/users/dmp1ce/starred', 'https://api.github.com/users/dmp1ce/repos', 'https://api.github.com/users/dmp1ce/events', 'https://api.github.com/users/dmp1ce/received_events', 0); +INSERT INTO `developer` VALUES (59872, 'forrestv', 'C', 0, 0, 0, 0, 0, 0, 0, 'Forrest Voight', NULL, 'http://forre.st/', 'USA', 'forrest.voight@gmail.com', NULL, NULL, NULL, 0, 0, 130, 14, 0, 0, 0, '2009-03-03T22:26:47Z', '2024-09-27T22:57:29Z', 'https://avatars.githubusercontent.com/u/59872?v=4', 'https://api.github.com/users/forrestv', 'https://github.com/forrestv', 'https://api.github.com/users/forrestv/followers', 'https://api.github.com/users/forrestv/following', 'https://api.github.com/users/forrestv/gists', 'https://api.github.com/users/forrestv/starred', 'https://api.github.com/users/forrestv/repos', 'https://api.github.com/users/forrestv/events', 'https://api.github.com/users/forrestv/received_events', 0); +INSERT INTO `developer` VALUES (60148, 'wamserma', 'C', 0, 0, 0, 0, 0, 0, 0, 'Markus Wamser', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 18, 0, 0, 0, '2009-03-04T17:38:07Z', '2024-09-19T09:50:08Z', 'https://avatars.githubusercontent.com/u/60148?v=4', 'https://api.github.com/users/wamserma', 'https://github.com/wamserma', 'https://api.github.com/users/wamserma/followers', 'https://api.github.com/users/wamserma/following', 'https://api.github.com/users/wamserma/gists', 'https://api.github.com/users/wamserma/starred', 'https://api.github.com/users/wamserma/repos', 'https://api.github.com/users/wamserma/events', 'https://api.github.com/users/wamserma/received_events', 0); +INSERT INTO `developer` VALUES (60975, 'super3', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shawn Wilkinson', 'Storj Labs Inc.', 'http://storj.io', 'Atlanta, GA', 'me@super3.org', 'true', NULL, NULL, 0, 0, 245, 34, 0, 0, 0, '2009-03-07T03:02:05Z', '2024-07-30T14:24:19Z', 'https://avatars.githubusercontent.com/u/60975?v=4', 'https://api.github.com/users/super3', 'https://github.com/super3', 'https://api.github.com/users/super3/followers', 'https://api.github.com/users/super3/following', 'https://api.github.com/users/super3/gists', 'https://api.github.com/users/super3/starred', 'https://api.github.com/users/super3/repos', 'https://api.github.com/users/super3/events', 'https://api.github.com/users/super3/received_events', 0); +INSERT INTO `developer` VALUES (61096, 'harding', 'C', 7.239811993088573, 0, 0, 0, 0, 0, 0, 'David A. Harding', NULL, 'http://dtrt.org', 'Hilo, HI, USA', 'dave@dtrt.org', NULL, 'PGP: 19E929169F3D1E6443AD315D0A3F3DCAD0DE98BD', 'hrdng', 0, 0, 707, 4, 0, 0, 0, '2009-03-07T17:47:02Z', '2024-06-13T05:55:06Z', 'https://avatars.githubusercontent.com/u/61096?v=4', 'https://api.github.com/users/harding', 'https://github.com/harding', 'https://api.github.com/users/harding/followers', 'https://api.github.com/users/harding/following', 'https://api.github.com/users/harding/gists', 'https://api.github.com/users/harding/starred', 'https://api.github.com/users/harding/repos', 'https://api.github.com/users/harding/events', 'https://api.github.com/users/harding/received_events', 0); +INSERT INTO `developer` VALUES (61834, 'jkongie', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Kong', NULL, '', 'Singapore', 'jkongie@gmail.com', NULL, NULL, NULL, 0, 0, 19, 2, 0, 0, 0, '2009-03-10T03:10:01Z', '2024-09-20T16:33:19Z', 'https://avatars.githubusercontent.com/u/61834?v=4', 'https://api.github.com/users/jkongie', 'https://github.com/jkongie', 'https://api.github.com/users/jkongie/followers', 'https://api.github.com/users/jkongie/following', 'https://api.github.com/users/jkongie/gists', 'https://api.github.com/users/jkongie/starred', 'https://api.github.com/users/jkongie/repos', 'https://api.github.com/users/jkongie/events', 'https://api.github.com/users/jkongie/received_events', 0); +INSERT INTO `developer` VALUES (63063, 'zander', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 57, 0, 0, 0, 0, '2009-03-13T09:43:04Z', '2023-08-08T20:10:31Z', 'https://avatars.githubusercontent.com/u/63063?v=4', 'https://api.github.com/users/zander', 'https://github.com/zander', 'https://api.github.com/users/zander/followers', 'https://api.github.com/users/zander/following', 'https://api.github.com/users/zander/gists', 'https://api.github.com/users/zander/starred', 'https://api.github.com/users/zander/repos', 'https://api.github.com/users/zander/events', 'https://api.github.com/users/zander/received_events', 0); +INSERT INTO `developer` VALUES (66107, 'poelzi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Poelzleithner', NULL, 'http://poelzi.org', 'Germany', NULL, 'true', NULL, 'poelzi', 0, 0, 86, 63, 0, 0, 0, '2009-03-23T15:20:18Z', '2024-09-14T11:33:08Z', 'https://avatars.githubusercontent.com/u/66107?v=4', 'https://api.github.com/users/poelzi', 'https://github.com/poelzi', 'https://api.github.com/users/poelzi/followers', 'https://api.github.com/users/poelzi/following', 'https://api.github.com/users/poelzi/gists', 'https://api.github.com/users/poelzi/starred', 'https://api.github.com/users/poelzi/repos', 'https://api.github.com/users/poelzi/events', 'https://api.github.com/users/poelzi/received_events', 0); +INSERT INTO `developer` VALUES (67036, 'alexreg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Regueiro', 'Erebor', 'http://noldorin.com/', 'London, Great Britain', 'alex@noldorin.com', 'true', 'https://about.me/alexreg', NULL, 0, 0, 53, 9, 0, 0, 0, '2009-03-25T14:34:02Z', '2024-07-08T19:09:07Z', 'https://avatars.githubusercontent.com/u/67036?v=4', 'https://api.github.com/users/alexreg', 'https://github.com/alexreg', 'https://api.github.com/users/alexreg/followers', 'https://api.github.com/users/alexreg/following', 'https://api.github.com/users/alexreg/gists', 'https://api.github.com/users/alexreg/starred', 'https://api.github.com/users/alexreg/repos', 'https://api.github.com/users/alexreg/events', 'https://api.github.com/users/alexreg/received_events', 0); +INSERT INTO `developer` VALUES (67447, 'stevehill1981', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Hill', '@resourceguru ', 'https://stevehill.xyz', 'Shareshill, West Midlands, UK', 'steve@stevehill.xyz', NULL, NULL, NULL, 0, 0, 43, 81, 0, 0, 0, '2009-03-26T14:51:12Z', '2024-10-24T16:28:41Z', 'https://avatars.githubusercontent.com/u/67447?v=4', 'https://api.github.com/users/stevehill1981', 'https://github.com/stevehill1981', 'https://api.github.com/users/stevehill1981/followers', 'https://api.github.com/users/stevehill1981/following', 'https://api.github.com/users/stevehill1981/gists', 'https://api.github.com/users/stevehill1981/starred', 'https://api.github.com/users/stevehill1981/repos', 'https://api.github.com/users/stevehill1981/events', 'https://api.github.com/users/stevehill1981/received_events', 0); +INSERT INTO `developer` VALUES (67560, 'mwarkentin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Warkentin', '@getsentry', 'http://til.tobalabs.com', 'Toronto, Ontario', 'mwarkentin@hey.com', NULL, 'Senior SRE @getsentry\r\nPreviously OpsEng @waveaccounting', 'mwarkentin', 0, 0, 104, 37, 0, 0, 0, '2009-03-26T19:48:49Z', '2024-10-31T12:21:02Z', 'https://avatars.githubusercontent.com/u/67560?v=4', 'https://api.github.com/users/mwarkentin', 'https://github.com/mwarkentin', 'https://api.github.com/users/mwarkentin/followers', 'https://api.github.com/users/mwarkentin/following', 'https://api.github.com/users/mwarkentin/gists', 'https://api.github.com/users/mwarkentin/starred', 'https://api.github.com/users/mwarkentin/repos', 'https://api.github.com/users/mwarkentin/events', 'https://api.github.com/users/mwarkentin/received_events', 0); +INSERT INTO `developer` VALUES (69154, 'maaku', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Friedenbach', NULL, '', 'San José, CA', 'mark@friedenbach.org', NULL, NULL, NULL, 0, 0, 150, 3, 0, 0, 0, '2009-03-31T23:43:37Z', '2024-10-26T15:33:58Z', 'https://avatars.githubusercontent.com/u/69154?v=4', 'https://api.github.com/users/maaku', 'https://github.com/maaku', 'https://api.github.com/users/maaku/followers', 'https://api.github.com/users/maaku/following', 'https://api.github.com/users/maaku/gists', 'https://api.github.com/users/maaku/starred', 'https://api.github.com/users/maaku/repos', 'https://api.github.com/users/maaku/events', 'https://api.github.com/users/maaku/received_events', 0); +INSERT INTO `developer` VALUES (70804, 'tylerstillwater', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tyler Stillwater', '@outdoorsy ', '', 'US', NULL, NULL, 'Co-Founder and Backend Lead at @outdoorsy ', NULL, 0, 0, 138, 4, 0, 0, 0, '2009-04-05T22:03:50Z', '2024-03-07T22:40:50Z', 'https://avatars.githubusercontent.com/u/70804?v=4', 'https://api.github.com/users/tylerstillwater', 'https://github.com/tylerstillwater', 'https://api.github.com/users/tylerstillwater/followers', 'https://api.github.com/users/tylerstillwater/following', 'https://api.github.com/users/tylerstillwater/gists', 'https://api.github.com/users/tylerstillwater/starred', 'https://api.github.com/users/tylerstillwater/repos', 'https://api.github.com/users/tylerstillwater/events', 'https://api.github.com/users/tylerstillwater/received_events', 0); +INSERT INTO `developer` VALUES (73197, 'jamesob', 'C', 8.32016896639213, 0, 0, 0, 0, 0, 0, 'jamesob', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 770, 60, 0, 0, 0, '2009-04-13T07:14:48Z', '2024-10-07T11:34:23Z', 'https://avatars.githubusercontent.com/u/73197?v=4', 'https://api.github.com/users/jamesob', 'https://github.com/jamesob', 'https://api.github.com/users/jamesob/followers', 'https://api.github.com/users/jamesob/following', 'https://api.github.com/users/jamesob/gists', 'https://api.github.com/users/jamesob/starred', 'https://api.github.com/users/jamesob/repos', 'https://api.github.com/users/jamesob/events', 'https://api.github.com/users/jamesob/received_events', 0); +INSERT INTO `developer` VALUES (73843, 'Juu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julien Reitzel', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 7, 3, 0, 0, 0, '2009-04-14T22:38:42Z', '2024-10-24T12:05:46Z', 'https://avatars.githubusercontent.com/u/73843?v=4', 'https://api.github.com/users/Juu', 'https://github.com/Juu', 'https://api.github.com/users/Juu/followers', 'https://api.github.com/users/Juu/following', 'https://api.github.com/users/Juu/gists', 'https://api.github.com/users/Juu/starred', 'https://api.github.com/users/Juu/repos', 'https://api.github.com/users/Juu/events', 'https://api.github.com/users/Juu/received_events', 0); +INSERT INTO `developer` VALUES (73976, 'canthefason', 'C', 0, 0, 0, 0, 0, 0, 0, 'Can Yucel', 'DoorDash', '', 'San Francisco', 'can.yucel@gmail.com', NULL, NULL, NULL, 0, 0, 78, 44, 0, 0, 0, '2009-04-15T08:53:19Z', '2024-08-19T19:59:22Z', 'https://avatars.githubusercontent.com/u/73976?v=4', 'https://api.github.com/users/canthefason', 'https://github.com/canthefason', 'https://api.github.com/users/canthefason/followers', 'https://api.github.com/users/canthefason/following', 'https://api.github.com/users/canthefason/gists', 'https://api.github.com/users/canthefason/starred', 'https://api.github.com/users/canthefason/repos', 'https://api.github.com/users/canthefason/events', 'https://api.github.com/users/canthefason/received_events', 0); +INSERT INTO `developer` VALUES (74102, 'xiangfu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Xiangfu Liu', 'PoEx Co., Ltd', 'https://poex.io', 'Blockchain', NULL, NULL, NULL, NULL, 0, 0, 74, 26, 0, 0, 0, '2009-04-15T15:20:29Z', '2024-08-28T21:48:07Z', 'https://avatars.githubusercontent.com/u/74102?v=4', 'https://api.github.com/users/xiangfu', 'https://github.com/xiangfu', 'https://api.github.com/users/xiangfu/followers', 'https://api.github.com/users/xiangfu/following', 'https://api.github.com/users/xiangfu/gists', 'https://api.github.com/users/xiangfu/starred', 'https://api.github.com/users/xiangfu/repos', 'https://api.github.com/users/xiangfu/events', 'https://api.github.com/users/xiangfu/received_events', 0); +INSERT INTO `developer` VALUES (78502, 'xor-freenet', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://freenetproject.org', '未知', NULL, NULL, 'Developer of @hyphanet\'s WebOfTrust & Freetalk for ~ 14 years.\r\nMail: xor@freenetproject.org\r\nDonations are welcome: https://git.io/vh4BU', NULL, 0, 0, 36, 2, 0, 0, 0, '2009-04-27T20:33:47Z', '2023-09-30T14:14:24Z', 'https://avatars.githubusercontent.com/u/78502?v=4', 'https://api.github.com/users/xor-freenet', 'https://github.com/xor-freenet', 'https://api.github.com/users/xor-freenet/followers', 'https://api.github.com/users/xor-freenet/following', 'https://api.github.com/users/xor-freenet/gists', 'https://api.github.com/users/xor-freenet/starred', 'https://api.github.com/users/xor-freenet/repos', 'https://api.github.com/users/xor-freenet/events', 'https://api.github.com/users/xor-freenet/received_events', 0); +INSERT INTO `developer` VALUES (79169, 'lcowell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Cowell', NULL, '', 'Vancouver, BC', 'lcowell@gmail.com', NULL, NULL, NULL, 0, 0, 19, 8, 0, 0, 0, '2009-04-29T14:03:16Z', '2023-06-20T13:22:53Z', 'https://avatars.githubusercontent.com/u/79169?v=4', 'https://api.github.com/users/lcowell', 'https://github.com/lcowell', 'https://api.github.com/users/lcowell/followers', 'https://api.github.com/users/lcowell/following', 'https://api.github.com/users/lcowell/gists', 'https://api.github.com/users/lcowell/starred', 'https://api.github.com/users/lcowell/repos', 'https://api.github.com/users/lcowell/events', 'https://api.github.com/users/lcowell/received_events', 0); +INSERT INTO `developer` VALUES (79869, 'evgkrsk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Evgenii Tereshkov', 'Ozon', '', 'Somewhere', NULL, 'true', 'Делаю всё, чтобы ничего не делать', NULL, 0, 0, 18, 38, 0, 0, 0, '2009-05-01T08:37:24Z', '2024-09-12T13:38:27Z', 'https://avatars.githubusercontent.com/u/79869?v=4', 'https://api.github.com/users/evgkrsk', 'https://github.com/evgkrsk', 'https://api.github.com/users/evgkrsk/followers', 'https://api.github.com/users/evgkrsk/following', 'https://api.github.com/users/evgkrsk/gists', 'https://api.github.com/users/evgkrsk/starred', 'https://api.github.com/users/evgkrsk/repos', 'https://api.github.com/users/evgkrsk/events', 'https://api.github.com/users/evgkrsk/received_events', 0); +INSERT INTO `developer` VALUES (80253, 'haakonn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Haakon', NULL, '', 'Norway', NULL, 'true', NULL, NULL, 0, 0, 19, 7, 0, 0, 0, '2009-05-02T17:31:57Z', '2024-11-02T09:29:02Z', 'https://avatars.githubusercontent.com/u/80253?v=4', 'https://api.github.com/users/haakonn', 'https://github.com/haakonn', 'https://api.github.com/users/haakonn/followers', 'https://api.github.com/users/haakonn/following', 'https://api.github.com/users/haakonn/gists', 'https://api.github.com/users/haakonn/starred', 'https://api.github.com/users/haakonn/repos', 'https://api.github.com/users/haakonn/events', 'https://api.github.com/users/haakonn/received_events', 0); +INSERT INTO `developer` VALUES (84076, 'jimjag', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Jagielski', NULL, 'http://www.jimjag.com/', 'Sol 3', 'jimjag@gmail.com', NULL, 'Developer / Visionary / Apache Guy / FOSS Expert / Director o\' Many Boards \r\n\r\n#OpenSource #InnerSource #Cloud #Web\r\n\r\n@jimjag', 'jimjag', 0, 0, 141, 16, 0, 0, 0, '2009-05-13T12:57:58Z', '2024-11-04T21:55:52Z', 'https://avatars.githubusercontent.com/u/84076?v=4', 'https://api.github.com/users/jimjag', 'https://github.com/jimjag', 'https://api.github.com/users/jimjag/followers', 'https://api.github.com/users/jimjag/following', 'https://api.github.com/users/jimjag/gists', 'https://api.github.com/users/jimjag/starred', 'https://api.github.com/users/jimjag/repos', 'https://api.github.com/users/jimjag/events', 'https://api.github.com/users/jimjag/received_events', 0); +INSERT INTO `developer` VALUES (84245, 'danra', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Raviv', 'Sound Radix', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 25, 2, 0, 0, 0, '2009-05-13T20:04:12Z', '2024-10-28T11:18:48Z', 'https://avatars.githubusercontent.com/u/84245?v=4', 'https://api.github.com/users/danra', 'https://github.com/danra', 'https://api.github.com/users/danra/followers', 'https://api.github.com/users/danra/following', 'https://api.github.com/users/danra/gists', 'https://api.github.com/users/danra/starred', 'https://api.github.com/users/danra/repos', 'https://api.github.com/users/danra/events', 'https://api.github.com/users/danra/received_events', 0); +INSERT INTO `developer` VALUES (84321, 'kevinjqiu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin J. Qiu', '@instacart ', 'https://blog.idempotent.ca', 'GTA, Ontario', NULL, NULL, NULL, NULL, 0, 0, 92, 26, 0, 0, 0, '2009-05-13T23:57:58Z', '2024-09-10T22:22:41Z', 'https://avatars.githubusercontent.com/u/84321?v=4', 'https://api.github.com/users/kevinjqiu', 'https://github.com/kevinjqiu', 'https://api.github.com/users/kevinjqiu/followers', 'https://api.github.com/users/kevinjqiu/following', 'https://api.github.com/users/kevinjqiu/gists', 'https://api.github.com/users/kevinjqiu/starred', 'https://api.github.com/users/kevinjqiu/repos', 'https://api.github.com/users/kevinjqiu/events', 'https://api.github.com/users/kevinjqiu/received_events', 0); +INSERT INTO `developer` VALUES (86657, 'dark', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marco Leogrande', NULL, '', 'San Francisco Bay Area, CA, USA', 'dark.knight.ita@gmail.com', NULL, NULL, NULL, 0, 0, 137, 38, 0, 0, 0, '2009-05-20T09:59:09Z', '2024-10-24T02:21:17Z', 'https://avatars.githubusercontent.com/u/86657?v=4', 'https://api.github.com/users/dark', 'https://github.com/dark', 'https://api.github.com/users/dark/followers', 'https://api.github.com/users/dark/following', 'https://api.github.com/users/dark/gists', 'https://api.github.com/users/dark/starred', 'https://api.github.com/users/dark/repos', 'https://api.github.com/users/dark/events', 'https://api.github.com/users/dark/received_events', 0); +INSERT INTO `developer` VALUES (88295, 'hasantayyar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hasan Tayyar Beşik', 'SumUp', 'http://hasantayyar.net', 'Berlin, Germany', 'tayyar.besik@gmail.com', 'true', NULL, 'htayyar', 0, 0, 194, 249, 0, 0, 0, '2009-05-25T12:06:23Z', '2024-09-29T10:40:57Z', 'https://avatars.githubusercontent.com/u/88295?v=4', 'https://api.github.com/users/hasantayyar', 'https://github.com/hasantayyar', 'https://api.github.com/users/hasantayyar/followers', 'https://api.github.com/users/hasantayyar/following', 'https://api.github.com/users/hasantayyar/gists', 'https://api.github.com/users/hasantayyar/starred', 'https://api.github.com/users/hasantayyar/repos', 'https://api.github.com/users/hasantayyar/events', 'https://api.github.com/users/hasantayyar/received_events', 0); +INSERT INTO `developer` VALUES (89979, 'gandrewstone', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Stone', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 72, 5, 0, 0, 0, '2009-05-29T18:19:47Z', '2024-10-09T18:45:05Z', 'https://avatars.githubusercontent.com/u/89979?v=4', 'https://api.github.com/users/gandrewstone', 'https://github.com/gandrewstone', 'https://api.github.com/users/gandrewstone/followers', 'https://api.github.com/users/gandrewstone/following', 'https://api.github.com/users/gandrewstone/gists', 'https://api.github.com/users/gandrewstone/starred', 'https://api.github.com/users/gandrewstone/repos', 'https://api.github.com/users/gandrewstone/events', 'https://api.github.com/users/gandrewstone/received_events', 0); +INSERT INTO `developer` VALUES (92707, 'dagurval', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dagur Valberg', 'Valberg Consulting AS', 'https://valbergconsulting.no', '未知', NULL, NULL, 'I\'m currently more active on gitlab (https://gitlab.com/dagurval)', 'dagur', 0, 0, 50, 28, 0, 0, 0, '2009-06-07T00:20:05Z', '2024-10-15T11:18:53Z', 'https://avatars.githubusercontent.com/u/92707?v=4', 'https://api.github.com/users/dagurval', 'https://github.com/dagurval', 'https://api.github.com/users/dagurval/followers', 'https://api.github.com/users/dagurval/following', 'https://api.github.com/users/dagurval/gists', 'https://api.github.com/users/dagurval/starred', 'https://api.github.com/users/dagurval/repos', 'https://api.github.com/users/dagurval/events', 'https://api.github.com/users/dagurval/received_events', 0); +INSERT INTO `developer` VALUES (93300, 'JonasJurczok', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonas', NULL, '', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 18, 8, 0, 0, 0, '2009-06-08T19:30:56Z', '2024-10-23T11:34:57Z', 'https://avatars.githubusercontent.com/u/93300?v=4', 'https://api.github.com/users/JonasJurczok', 'https://github.com/JonasJurczok', 'https://api.github.com/users/JonasJurczok/followers', 'https://api.github.com/users/JonasJurczok/following', 'https://api.github.com/users/JonasJurczok/gists', 'https://api.github.com/users/JonasJurczok/starred', 'https://api.github.com/users/JonasJurczok/repos', 'https://api.github.com/users/JonasJurczok/events', 'https://api.github.com/users/JonasJurczok/received_events', 0); +INSERT INTO `developer` VALUES (93665, 'wtogami', 'C', 0, 0, 0, 0, 0, 0, 0, 'Warren Togami', NULL, 'wtogami.blogspot.com', '未知', 'wtogami@gmail.com', NULL, NULL, NULL, 0, 0, 186, 1, 0, 0, 0, '2009-06-09T18:10:41Z', '2024-09-20T08:42:06Z', 'https://avatars.githubusercontent.com/u/93665?v=4', 'https://api.github.com/users/wtogami', 'https://github.com/wtogami', 'https://api.github.com/users/wtogami/followers', 'https://api.github.com/users/wtogami/following', 'https://api.github.com/users/wtogami/gists', 'https://api.github.com/users/wtogami/starred', 'https://api.github.com/users/wtogami/repos', 'https://api.github.com/users/wtogami/events', 'https://api.github.com/users/wtogami/received_events', 0); +INSERT INTO `developer` VALUES (99377, 'dlitz', 'C', 0.9291553871249284, 0, 0, 0, 0, 0, 0, 'Darsey Litzenberger', NULL, 'https://www.dlitz.net/', 'Vancouver, BC, Canada', 'dlitz@dlitz.net', NULL, NULL, 'DLitz', 0, 0, 339, 5, 0, 0, 0, '2009-06-27T01:49:39Z', '2024-10-24T05:06:46Z', 'https://avatars.githubusercontent.com/u/99377?v=4', 'https://api.github.com/users/dlitz', 'https://github.com/dlitz', 'https://api.github.com/users/dlitz/followers', 'https://api.github.com/users/dlitz/following', 'https://api.github.com/users/dlitz/gists', 'https://api.github.com/users/dlitz/starred', 'https://api.github.com/users/dlitz/repos', 'https://api.github.com/users/dlitz/events', 'https://api.github.com/users/dlitz/received_events', 0); +INSERT INTO `developer` VALUES (101238, 'kanzure', 'C', 4.358860064279082, 0, 0, 0, 0, 0, 0, 'Bryan Bishop', NULL, '', 'Austin, Texas', 'kanzure@gmail.com', NULL, NULL, 'kanzure', 0, 0, 539, 665, 0, 0, 0, '2009-07-03T01:20:04Z', '2024-04-24T18:47:16Z', 'https://avatars.githubusercontent.com/u/101238?v=4', 'https://api.github.com/users/kanzure', 'https://github.com/kanzure', 'https://api.github.com/users/kanzure/followers', 'https://api.github.com/users/kanzure/following', 'https://api.github.com/users/kanzure/gists', 'https://api.github.com/users/kanzure/starred', 'https://api.github.com/users/kanzure/repos', 'https://api.github.com/users/kanzure/events', 'https://api.github.com/users/kanzure/received_events', 0); +INSERT INTO `developer` VALUES (102052, 'codler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Han Lin Yap', NULL, 'https://yap.nu', 'Sweden', NULL, NULL, NULL, NULL, 0, 0, 192, 43, 0, 0, 0, '2009-07-06T08:32:06Z', '2024-05-29T06:46:20Z', 'https://avatars.githubusercontent.com/u/102052?v=4', 'https://api.github.com/users/codler', 'https://github.com/codler', 'https://api.github.com/users/codler/followers', 'https://api.github.com/users/codler/following', 'https://api.github.com/users/codler/gists', 'https://api.github.com/users/codler/starred', 'https://api.github.com/users/codler/repos', 'https://api.github.com/users/codler/events', 'https://api.github.com/users/codler/received_events', 0); +INSERT INTO `developer` VALUES (102175, 'invadersmustdie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rene Lengwinat', 'inovex', 'https://twitter.com/rlengwinat', 'Hamburg, Germany', 'rene.lengwinat@gmail.com', NULL, NULL, NULL, 0, 0, 60, 123, 0, 0, 0, '2009-07-06T15:29:34Z', '2024-10-18T08:39:03Z', 'https://avatars.githubusercontent.com/u/102175?v=4', 'https://api.github.com/users/invadersmustdie', 'https://github.com/invadersmustdie', 'https://api.github.com/users/invadersmustdie/followers', 'https://api.github.com/users/invadersmustdie/following', 'https://api.github.com/users/invadersmustdie/gists', 'https://api.github.com/users/invadersmustdie/starred', 'https://api.github.com/users/invadersmustdie/repos', 'https://api.github.com/users/invadersmustdie/events', 'https://api.github.com/users/invadersmustdie/received_events', 0); +INSERT INTO `developer` VALUES (102556, 'cross', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Ross', NULL, '', 'Maryland, US', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2009-07-07T15:59:45Z', '2024-10-30T19:10:04Z', 'https://avatars.githubusercontent.com/u/102556?v=4', 'https://api.github.com/users/cross', 'https://github.com/cross', 'https://api.github.com/users/cross/followers', 'https://api.github.com/users/cross/following', 'https://api.github.com/users/cross/gists', 'https://api.github.com/users/cross/starred', 'https://api.github.com/users/cross/repos', 'https://api.github.com/users/cross/events', 'https://api.github.com/users/cross/received_events', 0); +INSERT INTO `developer` VALUES (103828, 'tdonia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Travis Donia', NULL, 'https://tdonia.org', 'Brooklyn', 'travis@likestripes.com', NULL, NULL, NULL, 0, 0, 16, 16, 0, 0, 0, '2009-07-11T05:11:19Z', '2024-04-12T02:56:21Z', 'https://avatars.githubusercontent.com/u/103828?v=4', 'https://api.github.com/users/tdonia', 'https://github.com/tdonia', 'https://api.github.com/users/tdonia/followers', 'https://api.github.com/users/tdonia/following', 'https://api.github.com/users/tdonia/gists', 'https://api.github.com/users/tdonia/starred', 'https://api.github.com/users/tdonia/repos', 'https://api.github.com/users/tdonia/events', 'https://api.github.com/users/tdonia/received_events', 0); +INSERT INTO `developer` VALUES (105565, 'amiryal', 'C', 0, 0, 0, 0, 0, 0, 0, 'Amir Yalon', NULL, '', 'Israel', NULL, NULL, NULL, NULL, 0, 0, 18, 2, 0, 0, 0, '2009-07-16T09:27:06Z', '2024-08-27T12:11:13Z', 'https://avatars.githubusercontent.com/u/105565?v=4', 'https://api.github.com/users/amiryal', 'https://github.com/amiryal', 'https://api.github.com/users/amiryal/followers', 'https://api.github.com/users/amiryal/following', 'https://api.github.com/users/amiryal/gists', 'https://api.github.com/users/amiryal/starred', 'https://api.github.com/users/amiryal/repos', 'https://api.github.com/users/amiryal/events', 'https://api.github.com/users/amiryal/received_events', 0); +INSERT INTO `developer` VALUES (106988, 'L2G', 'C', 0, 0, 0, 0, 0, 0, 0, 'Larry Gilbert', 'Worldwide Fishladder & Sons', 'http://l2g.github.io/', 'Long Beach, CA, US', 'larry+github@l2g.to', NULL, NULL, NULL, 0, 0, 39, 17, 0, 0, 0, '2009-07-20T19:30:00Z', '2016-02-26T22:48:54Z', 'https://avatars.githubusercontent.com/u/106988?v=4', 'https://api.github.com/users/L2G', 'https://github.com/L2G', 'https://api.github.com/users/L2G/followers', 'https://api.github.com/users/L2G/following', 'https://api.github.com/users/L2G/gists', 'https://api.github.com/users/L2G/starred', 'https://api.github.com/users/L2G/repos', 'https://api.github.com/users/L2G/events', 'https://api.github.com/users/L2G/received_events', 0); +INSERT INTO `developer` VALUES (107096, 'devrandom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dev Random', NULL, 'https://gitian.org/', '未知', NULL, NULL, NULL, NULL, 0, 0, 242, 6, 0, 0, 0, '2009-07-21T01:36:35Z', '2024-10-26T16:47:47Z', 'https://avatars.githubusercontent.com/u/107096?v=4', 'https://api.github.com/users/devrandom', 'https://github.com/devrandom', 'https://api.github.com/users/devrandom/followers', 'https://api.github.com/users/devrandom/following', 'https://api.github.com/users/devrandom/gists', 'https://api.github.com/users/devrandom/starred', 'https://api.github.com/users/devrandom/repos', 'https://api.github.com/users/devrandom/events', 'https://api.github.com/users/devrandom/received_events', 0); +INSERT INTO `developer` VALUES (107825, 'ansel1', 'C', 0, 0, 0, 0, 0, 0, 0, 'Russ Egan', '@Thales', '', 'Austin, TX', 'russellegan@gmail.com', NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2009-07-23T02:05:20Z', '2024-10-30T22:15:00Z', 'https://avatars.githubusercontent.com/u/107825?v=4', 'https://api.github.com/users/ansel1', 'https://github.com/ansel1', 'https://api.github.com/users/ansel1/followers', 'https://api.github.com/users/ansel1/following', 'https://api.github.com/users/ansel1/gists', 'https://api.github.com/users/ansel1/starred', 'https://api.github.com/users/ansel1/repos', 'https://api.github.com/users/ansel1/events', 'https://api.github.com/users/ansel1/received_events', 0); +INSERT INTO `developer` VALUES (108836, 'andytom', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas O\'Donnell', NULL, '', 'EU', NULL, NULL, NULL, NULL, 0, 0, 36, 0, 0, 0, 0, '2009-07-26T15:25:36Z', '2024-09-04T18:59:40Z', 'https://avatars.githubusercontent.com/u/108836?v=4', 'https://api.github.com/users/andytom', 'https://github.com/andytom', 'https://api.github.com/users/andytom/followers', 'https://api.github.com/users/andytom/following', 'https://api.github.com/users/andytom/gists', 'https://api.github.com/users/andytom/starred', 'https://api.github.com/users/andytom/repos', 'https://api.github.com/users/andytom/events', 'https://api.github.com/users/andytom/received_events', 0); +INSERT INTO `developer` VALUES (109604, 'forsberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Erik Forsberg', 'Ferroamp', 'http://efod.se/', '未知', 'forsberg@efod.se', NULL, NULL, NULL, 0, 0, 15, 2, 0, 0, 0, '2009-07-28T20:27:37Z', '2024-08-05T09:51:09Z', 'https://avatars.githubusercontent.com/u/109604?v=4', 'https://api.github.com/users/forsberg', 'https://github.com/forsberg', 'https://api.github.com/users/forsberg/followers', 'https://api.github.com/users/forsberg/following', 'https://api.github.com/users/forsberg/gists', 'https://api.github.com/users/forsberg/starred', 'https://api.github.com/users/forsberg/repos', 'https://api.github.com/users/forsberg/events', 'https://api.github.com/users/forsberg/received_events', 0); +INSERT INTO `developer` VALUES (110235, 'emiddleton', 'C', 0, 0, 0, 1, 391, 22, 0, 'Edward Middleton', 'Freelance Developer', 'https://hachyderm.io/@e14n', 'Japan', 'edward.middleton@vortorus.net', 'true', 'Software Engineer, Entrepreneur, President of Tokyo Linux User Group, Husband, Father of two, He/Him.', 'Eonprog', 0, 0, 36, 28, 0, 0, 0, '2009-07-30T11:50:44Z', '2024-09-12T13:49:43Z', 'https://avatars.githubusercontent.com/u/110235?v=4', 'https://api.github.com/users/emiddleton', 'https://github.com/emiddleton', 'https://api.github.com/users/emiddleton/followers', 'https://api.github.com/users/emiddleton/following', 'https://api.github.com/users/emiddleton/gists', 'https://api.github.com/users/emiddleton/starred', 'https://api.github.com/users/emiddleton/repos', 'https://api.github.com/users/emiddleton/events', 'https://api.github.com/users/emiddleton/received_events', 0); +INSERT INTO `developer` VALUES (110829, 'dsamarin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Devin Samarin', 'OFTN Inc. @oftn-oswg ', '', 'United States', NULL, 'true', NULL, NULL, 0, 0, 39, 8, 0, 0, 0, '2009-08-01T06:22:23Z', '2024-10-23T18:23:38Z', 'https://avatars.githubusercontent.com/u/110829?v=4', 'https://api.github.com/users/dsamarin', 'https://github.com/dsamarin', 'https://api.github.com/users/dsamarin/followers', 'https://api.github.com/users/dsamarin/following', 'https://api.github.com/users/dsamarin/gists', 'https://api.github.com/users/dsamarin/starred', 'https://api.github.com/users/dsamarin/repos', 'https://api.github.com/users/dsamarin/events', 'https://api.github.com/users/dsamarin/received_events', 0); +INSERT INTO `developer` VALUES (115502, 'fikander', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tomek', NULL, 'fikander.github.io', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 10, 0, 0, 0, '2009-08-15T00:29:04Z', '2024-10-10T19:08:09Z', 'https://avatars.githubusercontent.com/u/115502?v=4', 'https://api.github.com/users/fikander', 'https://github.com/fikander', 'https://api.github.com/users/fikander/followers', 'https://api.github.com/users/fikander/following', 'https://api.github.com/users/fikander/gists', 'https://api.github.com/users/fikander/starred', 'https://api.github.com/users/fikander/repos', 'https://api.github.com/users/fikander/events', 'https://api.github.com/users/fikander/received_events', 0); +INSERT INTO `developer` VALUES (115564, 'davcamer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dave Cameron', 'DigitalOcean', 'http://intwoplacesatonce.com', 'NYC', 'dave.bc+github@gmail.com', NULL, NULL, 'davcamer', 0, 0, 40, 30, 0, 0, 0, '2009-08-15T07:11:16Z', '2024-09-26T17:27:40Z', 'https://avatars.githubusercontent.com/u/115564?v=4', 'https://api.github.com/users/davcamer', 'https://github.com/davcamer', 'https://api.github.com/users/davcamer/followers', 'https://api.github.com/users/davcamer/following', 'https://api.github.com/users/davcamer/gists', 'https://api.github.com/users/davcamer/starred', 'https://api.github.com/users/davcamer/repos', 'https://api.github.com/users/davcamer/events', 'https://api.github.com/users/davcamer/received_events', 0); +INSERT INTO `developer` VALUES (116037, 'p2k', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://p2k-network.org', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 46, 0, 0, 0, 0, '2009-08-17T09:31:11Z', '2024-08-21T13:57:47Z', 'https://avatars.githubusercontent.com/u/116037?v=4', 'https://api.github.com/users/p2k', 'https://github.com/p2k', 'https://api.github.com/users/p2k/followers', 'https://api.github.com/users/p2k/following', 'https://api.github.com/users/p2k/gists', 'https://api.github.com/users/p2k/starred', 'https://api.github.com/users/p2k/repos', 'https://api.github.com/users/p2k/events', 'https://api.github.com/users/p2k/received_events', 0); +INSERT INTO `developer` VALUES (118362, 'willglynn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Will Glynn', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 61, 13, 0, 0, 0, '2009-08-22T20:25:17Z', '2024-09-19T16:45:55Z', 'https://avatars.githubusercontent.com/u/118362?v=4', 'https://api.github.com/users/willglynn', 'https://github.com/willglynn', 'https://api.github.com/users/willglynn/followers', 'https://api.github.com/users/willglynn/following', 'https://api.github.com/users/willglynn/gists', 'https://api.github.com/users/willglynn/starred', 'https://api.github.com/users/willglynn/repos', 'https://api.github.com/users/willglynn/events', 'https://api.github.com/users/willglynn/received_events', 0); +INSERT INTO `developer` VALUES (120117, 'cdecker', 'C', 5.0276524763241435, 0, 0, 0, 0, 0, 0, 'Christian Decker', '@Blockstream ', 'http://snyke.net', 'Zurich, Switzerland', NULL, NULL, NULL, 'Snyke', 0, 0, 578, 21, 0, 0, 0, '2009-08-27T12:40:25Z', '2024-10-02T10:07:32Z', 'https://avatars.githubusercontent.com/u/120117?v=4', 'https://api.github.com/users/cdecker', 'https://github.com/cdecker', 'https://api.github.com/users/cdecker/followers', 'https://api.github.com/users/cdecker/following', 'https://api.github.com/users/cdecker/gists', 'https://api.github.com/users/cdecker/starred', 'https://api.github.com/users/cdecker/repos', 'https://api.github.com/users/cdecker/events', 'https://api.github.com/users/cdecker/received_events', 0); +INSERT INTO `developer` VALUES (120598, 'stoned', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2009-08-28T17:33:40Z', '2024-06-16T18:59:53Z', 'https://avatars.githubusercontent.com/u/120598?v=4', 'https://api.github.com/users/stoned', 'https://github.com/stoned', 'https://api.github.com/users/stoned/followers', 'https://api.github.com/users/stoned/following', 'https://api.github.com/users/stoned/gists', 'https://api.github.com/users/stoned/starred', 'https://api.github.com/users/stoned/repos', 'https://api.github.com/users/stoned/events', 'https://api.github.com/users/stoned/received_events', 0); +INSERT INTO `developer` VALUES (121129, 'baijum', 'C', 0.9291553871249284, 0, 0, 0, 0, 0, 0, 'Baiju Muthukadan', 'Red Hat', '', 'India', 'baiju.m.mail@gmail.com', NULL, 'Senior Software Engineer, Red Hat', NULL, 0, 0, 339, 0, 0, 0, 0, '2009-08-30T15:19:42Z', '2024-10-17T11:12:57Z', 'https://avatars.githubusercontent.com/u/121129?v=4', 'https://api.github.com/users/baijum', 'https://github.com/baijum', 'https://api.github.com/users/baijum/followers', 'https://api.github.com/users/baijum/following', 'https://api.github.com/users/baijum/gists', 'https://api.github.com/users/baijum/starred', 'https://api.github.com/users/baijum/repos', 'https://api.github.com/users/baijum/events', 'https://api.github.com/users/baijum/received_events', 0); +INSERT INTO `developer` VALUES (121683, 'djp3', 'C', 0, 0, 0, 0, 0, 0, 0, 'Donald J. Patterson', 'Blockpliance Inc.', 'https://www.djp3.net', 'Santa Barbara, CA', 'd_j_p_3@djp3.net', 'true', 'I am an entrepreneur, computer scientist and professor who develops people and ideas, sometimes that requires code.', NULL, 0, 0, 44, 0, 0, 0, 0, '2009-08-31T23:26:26Z', '2024-07-26T23:13:03Z', 'https://avatars.githubusercontent.com/u/121683?v=4', 'https://api.github.com/users/djp3', 'https://github.com/djp3', 'https://api.github.com/users/djp3/followers', 'https://api.github.com/users/djp3/following', 'https://api.github.com/users/djp3/gists', 'https://api.github.com/users/djp3/starred', 'https://api.github.com/users/djp3/repos', 'https://api.github.com/users/djp3/events', 'https://api.github.com/users/djp3/received_events', 0); +INSERT INTO `developer` VALUES (122267, 'mdaisuke', 'C', 0, 0, 0, 0, 0, 0, 0, 'mdaisuke', NULL, '', '未知', NULL, 'true', 'tokyo', NULL, 0, 0, 56, 175, 0, 0, 0, '2009-09-02T07:45:27Z', '2024-06-28T07:02:48Z', 'https://avatars.githubusercontent.com/u/122267?v=4', 'https://api.github.com/users/mdaisuke', 'https://github.com/mdaisuke', 'https://api.github.com/users/mdaisuke/followers', 'https://api.github.com/users/mdaisuke/following', 'https://api.github.com/users/mdaisuke/gists', 'https://api.github.com/users/mdaisuke/starred', 'https://api.github.com/users/mdaisuke/repos', 'https://api.github.com/users/mdaisuke/events', 'https://api.github.com/users/mdaisuke/received_events', 0); +INSERT INTO `developer` VALUES (123014, 'maoueh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthieu Vachon', '@dfuse-io @eoscanada @streamingfastio', '', 'Montréal, Canada', NULL, NULL, NULL, NULL, 0, 0, 52, 0, 0, 0, 0, '2009-09-03T21:51:33Z', '2024-11-01T17:09:42Z', 'https://avatars.githubusercontent.com/u/123014?v=4', 'https://api.github.com/users/maoueh', 'https://github.com/maoueh', 'https://api.github.com/users/maoueh/followers', 'https://api.github.com/users/maoueh/following', 'https://api.github.com/users/maoueh/gists', 'https://api.github.com/users/maoueh/starred', 'https://api.github.com/users/maoueh/repos', 'https://api.github.com/users/maoueh/events', 'https://api.github.com/users/maoueh/received_events', 0); +INSERT INTO `developer` VALUES (123708, 'arlolra', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arlo Breault', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 236, 16, 0, 0, 0, '2009-09-06T03:00:34Z', '2024-05-29T22:08:00Z', 'https://avatars.githubusercontent.com/u/123708?v=4', 'https://api.github.com/users/arlolra', 'https://github.com/arlolra', 'https://api.github.com/users/arlolra/followers', 'https://api.github.com/users/arlolra/following', 'https://api.github.com/users/arlolra/gists', 'https://api.github.com/users/arlolra/starred', 'https://api.github.com/users/arlolra/repos', 'https://api.github.com/users/arlolra/events', 'https://api.github.com/users/arlolra/received_events', 0); +INSERT INTO `developer` VALUES (124390, 'robsonpeixoto', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robson Roberto Souza Peixoto', '@stone-payments ', '', 'Salvador, Bahia, Brasil', NULL, NULL, 'Staff Software Engineer', 'robinhopeixoto', 0, 0, 149, 168, 0, 0, 0, '2009-09-08T06:00:13Z', '2024-10-18T10:46:34Z', 'https://avatars.githubusercontent.com/u/124390?v=4', 'https://api.github.com/users/robsonpeixoto', 'https://github.com/robsonpeixoto', 'https://api.github.com/users/robsonpeixoto/followers', 'https://api.github.com/users/robsonpeixoto/following', 'https://api.github.com/users/robsonpeixoto/gists', 'https://api.github.com/users/robsonpeixoto/starred', 'https://api.github.com/users/robsonpeixoto/repos', 'https://api.github.com/users/robsonpeixoto/events', 'https://api.github.com/users/robsonpeixoto/received_events', 0); +INSERT INTO `developer` VALUES (126313, 'athurg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Athurg Gooth', NULL, 'https://www.gooth.org', 'China', NULL, 'true', 'Gopher, Linux', NULL, 0, 0, 43, 14, 0, 0, 0, '2009-09-13T05:40:46Z', '2024-10-28T11:18:54Z', 'https://avatars.githubusercontent.com/u/126313?v=4', 'https://api.github.com/users/athurg', 'https://github.com/athurg', 'https://api.github.com/users/athurg/followers', 'https://api.github.com/users/athurg/following', 'https://api.github.com/users/athurg/gists', 'https://api.github.com/users/athurg/starred', 'https://api.github.com/users/athurg/repos', 'https://api.github.com/users/athurg/events', 'https://api.github.com/users/athurg/received_events', 0); +INSERT INTO `developer` VALUES (126646, 'laanwj', 'A-', 64.43013748463412, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'The Netherlands', NULL, NULL, NULL, NULL, 0, 0, 4042, 6, 0, 0, 0, '2009-09-14T08:32:17Z', '2024-11-01T17:39:05Z', 'https://avatars.githubusercontent.com/u/126646?v=4', 'https://api.github.com/users/laanwj', 'https://github.com/laanwj', 'https://api.github.com/users/laanwj/followers', 'https://api.github.com/users/laanwj/following', 'https://api.github.com/users/laanwj/gists', 'https://api.github.com/users/laanwj/starred', 'https://api.github.com/users/laanwj/repos', 'https://api.github.com/users/laanwj/events', 'https://api.github.com/users/laanwj/received_events', 0); +INSERT INTO `developer` VALUES (127186, 'ajtowns', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anthony Towns', NULL, 'www.erisian.com.au/wordpress', 'Brisbane, Australia', 'aj@erisian.com.au', NULL, 'Donation address: 1E9nGC81XmryvyrUJkxibUWUtudwLxFMZp', 'ajtowns', 0, 0, 205, 0, 0, 0, 0, '2009-09-15T10:00:20Z', '2024-08-29T18:11:41Z', 'https://avatars.githubusercontent.com/u/127186?v=4', 'https://api.github.com/users/ajtowns', 'https://github.com/ajtowns', 'https://api.github.com/users/ajtowns/followers', 'https://api.github.com/users/ajtowns/following', 'https://api.github.com/users/ajtowns/gists', 'https://api.github.com/users/ajtowns/starred', 'https://api.github.com/users/ajtowns/repos', 'https://api.github.com/users/ajtowns/events', 'https://api.github.com/users/ajtowns/received_events', 0); +INSERT INTO `developer` VALUES (127552, 'xslidian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dian \"XS\" Li', NULL, 'http://lidian.info', 'Sanjianfang, Beijing, China', 'd@ddshome.cn', 'true', NULL, NULL, 0, 0, 31, 11, 0, 0, 0, '2009-09-16T04:01:55Z', '2022-05-06T12:16:02Z', 'https://avatars.githubusercontent.com/u/127552?v=4', 'https://api.github.com/users/xslidian', 'https://github.com/xslidian', 'https://api.github.com/users/xslidian/followers', 'https://api.github.com/users/xslidian/following', 'https://api.github.com/users/xslidian/gists', 'https://api.github.com/users/xslidian/starred', 'https://api.github.com/users/xslidian/repos', 'https://api.github.com/users/xslidian/events', 'https://api.github.com/users/xslidian/received_events', 0); +INSERT INTO `developer` VALUES (127790, 'dscho', 'C', 11.046784184729685, 0, 0, 0, 0, 0, 0, 'Johannes Schindelin', '@Microsoft', '', '未知', 'johannes.schindelin@gmx.de', 'true', '@git-for-windows maintainer.', NULL, 0, 0, 929, 1, 0, 0, 0, '2009-09-16T16:04:04Z', '2024-10-17T11:21:34Z', 'https://avatars.githubusercontent.com/u/127790?v=4', 'https://api.github.com/users/dscho', 'https://github.com/dscho', 'https://api.github.com/users/dscho/followers', 'https://api.github.com/users/dscho/following', 'https://api.github.com/users/dscho/gists', 'https://api.github.com/users/dscho/starred', 'https://api.github.com/users/dscho/repos', 'https://api.github.com/users/dscho/events', 'https://api.github.com/users/dscho/received_events', 0); +INSERT INTO `developer` VALUES (128020, 'mxey', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maximilian Gaß', '@babiel ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 46, 26, 0, 0, 0, '2009-09-17T07:49:05Z', '2024-09-02T16:38:17Z', 'https://avatars.githubusercontent.com/u/128020?v=4', 'https://api.github.com/users/mxey', 'https://github.com/mxey', 'https://api.github.com/users/mxey/followers', 'https://api.github.com/users/mxey/following', 'https://api.github.com/users/mxey/gists', 'https://api.github.com/users/mxey/starred', 'https://api.github.com/users/mxey/repos', 'https://api.github.com/users/mxey/events', 'https://api.github.com/users/mxey/received_events', 0); +INSERT INTO `developer` VALUES (129536, 'dolmen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Olivier Mengué', NULL, 'https://dolmen.github.io', 'Paris, France', 'dolmen@cpan.org', 'true', 'Professional Go engineer.\r\nFluent in many other programming languages.\r\nFormer Perl 5 toolchain contributor.\r\nAFOL.', 'omengue', 0, 0, 139, 139, 0, 0, 0, '2009-09-21T13:51:51Z', '2024-10-31T13:29:07Z', 'https://avatars.githubusercontent.com/u/129536?v=4', 'https://api.github.com/users/dolmen', 'https://github.com/dolmen', 'https://api.github.com/users/dolmen/followers', 'https://api.github.com/users/dolmen/following', 'https://api.github.com/users/dolmen/gists', 'https://api.github.com/users/dolmen/starred', 'https://api.github.com/users/dolmen/repos', 'https://api.github.com/users/dolmen/events', 'https://api.github.com/users/dolmen/received_events', 0); +INSERT INTO `developer` VALUES (134535, 'KarolBedkowski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karol Będkowski', NULL, '', 'Poland', NULL, NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2009-10-03T10:36:39Z', '2024-07-26T09:44:26Z', 'https://avatars.githubusercontent.com/u/134535?v=4', 'https://api.github.com/users/KarolBedkowski', 'https://github.com/KarolBedkowski', 'https://api.github.com/users/KarolBedkowski/followers', 'https://api.github.com/users/KarolBedkowski/following', 'https://api.github.com/users/KarolBedkowski/gists', 'https://api.github.com/users/KarolBedkowski/starred', 'https://api.github.com/users/KarolBedkowski/repos', 'https://api.github.com/users/KarolBedkowski/events', 'https://api.github.com/users/KarolBedkowski/received_events', 0); +INSERT INTO `developer` VALUES (135378, 'zenovich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dmitry Zenovich', NULL, 'http://zenovich.blogspot.com', 'Germany', 'dzenovich@gmail.com', 'true', NULL, NULL, 0, 0, 54, 10, 0, 0, 0, '2009-10-05T17:11:43Z', '2024-10-16T14:54:41Z', 'https://avatars.githubusercontent.com/u/135378?v=4', 'https://api.github.com/users/zenovich', 'https://github.com/zenovich', 'https://api.github.com/users/zenovich/followers', 'https://api.github.com/users/zenovich/following', 'https://api.github.com/users/zenovich/gists', 'https://api.github.com/users/zenovich/starred', 'https://api.github.com/users/zenovich/repos', 'https://api.github.com/users/zenovich/events', 'https://api.github.com/users/zenovich/received_events', 0); +INSERT INTO `developer` VALUES (135644, 'haruyama', 'C', 0, 0, 0, 0, 0, 0, 0, 'HARUYAMA Seigo', 'Tankyu LLC.', 'https://www.unixuser.org/~haruyama/', 'Tokyo, Japan', NULL, 'true', 'https://gitlab.com/haruyama/experience', 'haruyama', 0, 0, 70, 1, 0, 0, 0, '2009-10-06T06:35:52Z', '2024-10-28T01:23:51Z', 'https://avatars.githubusercontent.com/u/135644?v=4', 'https://api.github.com/users/haruyama', 'https://github.com/haruyama', 'https://api.github.com/users/haruyama/followers', 'https://api.github.com/users/haruyama/following', 'https://api.github.com/users/haruyama/gists', 'https://api.github.com/users/haruyama/starred', 'https://api.github.com/users/haruyama/repos', 'https://api.github.com/users/haruyama/events', 'https://api.github.com/users/haruyama/received_events', 0); +INSERT INTO `developer` VALUES (136512, 'danielnaab', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Naab', 'Flexion | GSA/TTS/10x | Personal', 'http://www.crushingpennies.com/', 'Madison, WI', 'danielnaab@gmail.com', 'true', 'At @flexion I\'ve helped on @gsa-tts, @CMSgov, and @usgs projects', NULL, 0, 0, 34, 5, 0, 0, 0, '2009-10-07T20:17:56Z', '2024-10-30T20:19:23Z', 'https://avatars.githubusercontent.com/u/136512?v=4', 'https://api.github.com/users/danielnaab', 'https://github.com/danielnaab', 'https://api.github.com/users/danielnaab/followers', 'https://api.github.com/users/danielnaab/following', 'https://api.github.com/users/danielnaab/gists', 'https://api.github.com/users/danielnaab/starred', 'https://api.github.com/users/danielnaab/repos', 'https://api.github.com/users/danielnaab/events', 'https://api.github.com/users/danielnaab/received_events', 0); +INSERT INTO `developer` VALUES (138426, 'federicobond', 'C', 0.17462035815101457, 0, 0, 0, 0, 0, 0, 'Federico Bond', NULL, 'https://federicobond.com/', 'Buenos Aires, Argentina', 'federicobond@gmail.com', NULL, NULL, NULL, 0, 0, 295, 119, 0, 0, 0, '2009-10-12T00:58:21Z', '2024-11-03T22:33:30Z', 'https://avatars.githubusercontent.com/u/138426?v=4', 'https://api.github.com/users/federicobond', 'https://github.com/federicobond', 'https://api.github.com/users/federicobond/followers', 'https://api.github.com/users/federicobond/following', 'https://api.github.com/users/federicobond/gists', 'https://api.github.com/users/federicobond/starred', 'https://api.github.com/users/federicobond/repos', 'https://api.github.com/users/federicobond/events', 'https://api.github.com/users/federicobond/received_events', 0); +INSERT INTO `developer` VALUES (140159, 'prashantv', 'C', 1.683690416098842, 0, 0, 0, 0, 0, 0, 'Prashant Varanasi', '@chronosphereio (prev @uber)', 'http://prashantv.com', 'San Francisco, CA', NULL, NULL, NULL, 'prashantv', 0, 0, 383, 6, 0, 0, 0, '2009-10-15T12:59:32Z', '2024-10-08T03:28:38Z', 'https://avatars.githubusercontent.com/u/140159?v=4', 'https://api.github.com/users/prashantv', 'https://github.com/prashantv', 'https://api.github.com/users/prashantv/followers', 'https://api.github.com/users/prashantv/following', 'https://api.github.com/users/prashantv/gists', 'https://api.github.com/users/prashantv/starred', 'https://api.github.com/users/prashantv/repos', 'https://api.github.com/users/prashantv/events', 'https://api.github.com/users/prashantv/received_events', 0); +INSERT INTO `developer` VALUES (140790, 'steeve85', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steeve Barbeau', NULL, 'blog.sbarbeau.fr', 'San Francisco', NULL, 'true', NULL, NULL, 0, 0, 68, 31, 0, 0, 0, '2009-10-16T19:16:13Z', '2024-10-22T11:18:42Z', 'https://avatars.githubusercontent.com/u/140790?v=4', 'https://api.github.com/users/steeve85', 'https://github.com/steeve85', 'https://api.github.com/users/steeve85/followers', 'https://api.github.com/users/steeve85/following', 'https://api.github.com/users/steeve85/gists', 'https://api.github.com/users/steeve85/starred', 'https://api.github.com/users/steeve85/repos', 'https://api.github.com/users/steeve85/events', 'https://api.github.com/users/steeve85/received_events', 0); +INSERT INTO `developer` VALUES (141983, 'bencxr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benedict Chan', 'Chainlink', '', 'United States', 'bencxr@fragnetics.com', NULL, NULL, NULL, 0, 0, 75, 4, 0, 0, 0, '2009-10-20T06:02:01Z', '2024-10-04T15:03:12Z', 'https://avatars.githubusercontent.com/u/141983?v=4', 'https://api.github.com/users/bencxr', 'https://github.com/bencxr', 'https://api.github.com/users/bencxr/followers', 'https://api.github.com/users/bencxr/following', 'https://api.github.com/users/bencxr/gists', 'https://api.github.com/users/bencxr/starred', 'https://api.github.com/users/bencxr/repos', 'https://api.github.com/users/bencxr/events', 'https://api.github.com/users/bencxr/received_events', 0); +INSERT INTO `developer` VALUES (143982, 'cstrahan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Strahan', 'Backtrace', '', 'Dallas, TX', 'charles@cstrahan.com', NULL, 'NixOS contributor. OSS enthusiast. Prefers hacking in Rust.', NULL, 0, 0, 111, 33, 0, 0, 0, '2009-10-24T07:42:27Z', '2024-10-30T18:33:22Z', 'https://avatars.githubusercontent.com/u/143982?v=4', 'https://api.github.com/users/cstrahan', 'https://github.com/cstrahan', 'https://api.github.com/users/cstrahan/followers', 'https://api.github.com/users/cstrahan/following', 'https://api.github.com/users/cstrahan/gists', 'https://api.github.com/users/cstrahan/starred', 'https://api.github.com/users/cstrahan/repos', 'https://api.github.com/users/cstrahan/events', 'https://api.github.com/users/cstrahan/received_events', 0); +INSERT INTO `developer` VALUES (146378, 'muesli', 'B', 46.835752490833286, 0, 0, 0, 0, 0, 0, 'Christian Muehlhaeuser', NULL, 'https://fribbledom.com', '未知', 'muesli@gmail.com', 'true', 'I hack on @charmbracelet.\r\n\r\nGeek, Gopher, Software Developer, Maker, Opensource Advocate, Tech Enthusiast, Photographer, Board and Card Gamer.', 'mueslix', 0, 0, 3016, 443, 0, 0, 0, '2009-10-29T17:26:19Z', '2024-09-22T00:13:14Z', 'https://avatars.githubusercontent.com/u/146378?v=4', 'https://api.github.com/users/muesli', 'https://github.com/muesli', 'https://api.github.com/users/muesli/followers', 'https://api.github.com/users/muesli/following', 'https://api.github.com/users/muesli/gists', 'https://api.github.com/users/muesli/starred', 'https://api.github.com/users/muesli/repos', 'https://api.github.com/users/muesli/events', 'https://api.github.com/users/muesli/received_events', 0); +INSERT INTO `developer` VALUES (148059, 'jaromil', 'C', 2.0952549773573406, 0, 0, 0, 0, 0, 0, 'Jaromil', '@dyne', 'https://jaromil.dyne.org', 'Amsterdam', 'J@dyne.org', NULL, 'Software releases in @dyne.\r\nAvatar courtesy of 4chan.', 'jaromil', 0, 0, 407, 143, 0, 0, 0, '2009-11-03T01:11:28Z', '2024-10-30T07:56:10Z', 'https://avatars.githubusercontent.com/u/148059?v=4', 'https://api.github.com/users/jaromil', 'https://github.com/jaromil', 'https://api.github.com/users/jaromil/followers', 'https://api.github.com/users/jaromil/following', 'https://api.github.com/users/jaromil/gists', 'https://api.github.com/users/jaromil/starred', 'https://api.github.com/users/jaromil/repos', 'https://api.github.com/users/jaromil/events', 'https://api.github.com/users/jaromil/received_events', 0); +INSERT INTO `developer` VALUES (150935, 'TBeijen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tibo Beijen', 'Fullstaq', 'https://www.tibobeijen.nl/', 'NL', 'tibobeijen@gmail.com', NULL, 'DevOps, Python and JS developer/architect. UX \r\nenthusiast. Coffee addict. Loud music aficionado. Runner. Dad.', 'TBeijen', 0, 0, 20, 8, 0, 0, 0, '2009-11-09T19:45:44Z', '2024-10-03T13:48:12Z', 'https://avatars.githubusercontent.com/u/150935?v=4', 'https://api.github.com/users/TBeijen', 'https://github.com/TBeijen', 'https://api.github.com/users/TBeijen/followers', 'https://api.github.com/users/TBeijen/following', 'https://api.github.com/users/TBeijen/gists', 'https://api.github.com/users/TBeijen/starred', 'https://api.github.com/users/TBeijen/repos', 'https://api.github.com/users/TBeijen/events', 'https://api.github.com/users/TBeijen/received_events', 0); +INSERT INTO `developer` VALUES (154109, 'jglick', 'C', 2.8154929595597133, 0, 0, 0, 0, 0, 0, 'Jesse Glick', '@cloudbees', '', 'Chapel Hill NC', 'jglick@cloudbees.com', NULL, NULL, 'tyvole', 0, 0, 449, 2, 0, 0, 0, '2009-11-16T23:06:38Z', '2024-10-16T17:12:31Z', 'https://avatars.githubusercontent.com/u/154109?v=4', 'https://api.github.com/users/jglick', 'https://github.com/jglick', 'https://api.github.com/users/jglick/followers', 'https://api.github.com/users/jglick/following', 'https://api.github.com/users/jglick/gists', 'https://api.github.com/users/jglick/starred', 'https://api.github.com/users/jglick/repos', 'https://api.github.com/users/jglick/events', 'https://api.github.com/users/jglick/received_events', 0); +INSERT INTO `developer` VALUES (154671, 'gevans', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 54, 33, 0, 0, 0, '2009-11-18T03:39:41Z', '2020-01-25T23:35:27Z', 'https://avatars.githubusercontent.com/u/154671?v=4', 'https://api.github.com/users/gevans', 'https://github.com/gevans', 'https://api.github.com/users/gevans/followers', 'https://api.github.com/users/gevans/following', 'https://api.github.com/users/gevans/gists', 'https://api.github.com/users/gevans/starred', 'https://api.github.com/users/gevans/repos', 'https://api.github.com/users/gevans/events', 'https://api.github.com/users/gevans/received_events', 0); +INSERT INTO `developer` VALUES (154998, 'ayadav', 'C', 0, 0, 0, 0, 0, 0, 0, 'Amit Yadav', 'JoshLabs', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2009-11-18T19:17:50Z', '2024-08-29T11:30:16Z', 'https://avatars.githubusercontent.com/u/154998?v=4', 'https://api.github.com/users/ayadav', 'https://github.com/ayadav', 'https://api.github.com/users/ayadav/followers', 'https://api.github.com/users/ayadav/following', 'https://api.github.com/users/ayadav/gists', 'https://api.github.com/users/ayadav/starred', 'https://api.github.com/users/ayadav/repos', 'https://api.github.com/users/ayadav/events', 'https://api.github.com/users/ayadav/received_events', 0); +INSERT INTO `developer` VALUES (156964, 'tboerger', 'C', 0.2089174049225559, 0, 0, 0, 0, 0, 0, 'Thomas Boerger', 'Cloudpunks GmbH', '', 'Nuremberg, Germany', NULL, NULL, 'Cloud Engineer at Cloudpunks GmbH, open source contributor, go evangelist and proud to be a Webhippie.', 'tboerger', 0, 0, 297, 19, 0, 0, 0, '2009-11-23T10:38:41Z', '2024-09-15T15:45:36Z', 'https://avatars.githubusercontent.com/u/156964?v=4', 'https://api.github.com/users/tboerger', 'https://github.com/tboerger', 'https://api.github.com/users/tboerger/followers', 'https://api.github.com/users/tboerger/following', 'https://api.github.com/users/tboerger/gists', 'https://api.github.com/users/tboerger/starred', 'https://api.github.com/users/tboerger/repos', 'https://api.github.com/users/tboerger/events', 'https://api.github.com/users/tboerger/received_events', 0); +INSERT INTO `developer` VALUES (158418, 'cortex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joakim Lundborg', NULL, '', '未知', 'joakim.lundborg@gmail.com', NULL, NULL, NULL, 0, 0, 49, 8, 0, 0, 0, '2009-11-26T08:09:53Z', '2024-10-29T22:17:20Z', 'https://avatars.githubusercontent.com/u/158418?v=4', 'https://api.github.com/users/cortex', 'https://github.com/cortex', 'https://api.github.com/users/cortex/followers', 'https://api.github.com/users/cortex/following', 'https://api.github.com/users/cortex/gists', 'https://api.github.com/users/cortex/starred', 'https://api.github.com/users/cortex/repos', 'https://api.github.com/users/cortex/events', 'https://api.github.com/users/cortex/received_events', 0); +INSERT INTO `developer` VALUES (158550, 'eperdeme', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Flynn', 'William Hill ', 'www.eper.net', 'Leeds, UK', 'eper@eper.net', NULL, 'A technical tinkerer ', NULL, 0, 0, 9, 1, 0, 0, 0, '2009-11-26T15:06:12Z', '2024-09-13T12:50:22Z', 'https://avatars.githubusercontent.com/u/158550?v=4', 'https://api.github.com/users/eperdeme', 'https://github.com/eperdeme', 'https://api.github.com/users/eperdeme/followers', 'https://api.github.com/users/eperdeme/following', 'https://api.github.com/users/eperdeme/gists', 'https://api.github.com/users/eperdeme/starred', 'https://api.github.com/users/eperdeme/repos', 'https://api.github.com/users/eperdeme/events', 'https://api.github.com/users/eperdeme/received_events', 0); +INSERT INTO `developer` VALUES (159209, 'ahmetb', 'S', 100, 0, 0, 0, 0, 0, 0, 'Ahmet Alp Balkan', '@linkedin ', 'https://ahmet.dev', 'Seattle, WA', 'github@ahmet.im', 'true', 'Working on compute orchestration with Kubernetes at large fleets.', 'ahmetb', 0, 0, 8216, 34, 0, 0, 0, '2009-11-28T14:59:59Z', '2024-10-23T03:23:02Z', 'https://avatars.githubusercontent.com/u/159209?v=4', 'https://api.github.com/users/ahmetb', 'https://github.com/ahmetb', 'https://api.github.com/users/ahmetb/followers', 'https://api.github.com/users/ahmetb/following', 'https://api.github.com/users/ahmetb/gists', 'https://api.github.com/users/ahmetb/starred', 'https://api.github.com/users/ahmetb/repos', 'https://api.github.com/users/ahmetb/events', 'https://api.github.com/users/ahmetb/received_events', 0); +INSERT INTO `developer` VALUES (159528, 'nickperry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Perry', NULL, 'https://www.linkedin.com/in/nwperry/', 'United Kingdom', NULL, NULL, NULL, NULL, 0, 0, 20, 8, 0, 0, 0, '2009-11-29T18:10:46Z', '2024-06-04T22:07:11Z', 'https://avatars.githubusercontent.com/u/159528?v=4', 'https://api.github.com/users/nickperry', 'https://github.com/nickperry', 'https://api.github.com/users/nickperry/followers', 'https://api.github.com/users/nickperry/following', 'https://api.github.com/users/nickperry/gists', 'https://api.github.com/users/nickperry/starred', 'https://api.github.com/users/nickperry/repos', 'https://api.github.com/users/nickperry/events', 'https://api.github.com/users/nickperry/received_events', 0); +INSERT INTO `developer` VALUES (159842, 'Xiol', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dane', NULL, '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 20, 11, 0, 0, 0, '2009-11-30T11:37:44Z', '2024-10-19T12:13:57Z', 'https://avatars.githubusercontent.com/u/159842?v=4', 'https://api.github.com/users/Xiol', 'https://github.com/Xiol', 'https://api.github.com/users/Xiol/followers', 'https://api.github.com/users/Xiol/following', 'https://api.github.com/users/Xiol/gists', 'https://api.github.com/users/Xiol/starred', 'https://api.github.com/users/Xiol/repos', 'https://api.github.com/users/Xiol/events', 'https://api.github.com/users/Xiol/received_events', 0); +INSERT INTO `developer` VALUES (160627, 'bramp', 'C+', 17.535218224907172, 0, 28, 84, 283, 9, 0, 'Andrew Brampton', '@Google ', 'https://blog.bramp.net', 'Redwood City', 'github@bramp.net', 'true', NULL, NULL, 0, 0, 536, 14, 0, 0, 0, '2009-12-02T01:24:46Z', '2024-09-12T01:18:08Z', 'https://avatars.githubusercontent.com/u/160627?v=4', 'https://api.github.com/users/bramp', 'https://github.com/bramp', 'https://api.github.com/users/bramp/followers', 'https://api.github.com/users/bramp/following', 'https://api.github.com/users/bramp/gists', 'https://api.github.com/users/bramp/starred', 'https://api.github.com/users/bramp/repos', 'https://api.github.com/users/bramp/events', 'https://api.github.com/users/bramp/received_events', 0); +INSERT INTO `developer` VALUES (160859, 'femaref', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Kiel, Germany', NULL, NULL, NULL, NULL, 0, 0, 8, 3, 0, 0, 0, '2009-12-02T13:31:46Z', '2024-06-24T11:56:54Z', 'https://avatars.githubusercontent.com/u/160859?v=4', 'https://api.github.com/users/femaref', 'https://github.com/femaref', 'https://api.github.com/users/femaref/followers', 'https://api.github.com/users/femaref/following', 'https://api.github.com/users/femaref/gists', 'https://api.github.com/users/femaref/starred', 'https://api.github.com/users/femaref/repos', 'https://api.github.com/users/femaref/events', 'https://api.github.com/users/femaref/received_events', 0); +INSERT INTO `developer` VALUES (160975, 'victornoel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Victor Noël', 'Brennus Analytics', 'http://www.irit.fr/~Victor.Noel/', 'Toulouse, France', NULL, NULL, NULL, NULL, 0, 0, 57, 5, 0, 0, 0, '2009-12-02T17:51:22Z', '2024-09-26T21:06:09Z', 'https://avatars.githubusercontent.com/u/160975?v=4', 'https://api.github.com/users/victornoel', 'https://github.com/victornoel', 'https://api.github.com/users/victornoel/followers', 'https://api.github.com/users/victornoel/following', 'https://api.github.com/users/victornoel/gists', 'https://api.github.com/users/victornoel/starred', 'https://api.github.com/users/victornoel/repos', 'https://api.github.com/users/victornoel/events', 'https://api.github.com/users/victornoel/received_events', 0); +INSERT INTO `developer` VALUES (161566, 'ethernomad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Brown', '@acuity-social ', '', '未知', 'jbrown@acuity.social', NULL, NULL, NULL, 0, 0, 79, 12, 0, 0, 0, '2009-12-03T20:18:22Z', '2024-10-02T07:28:27Z', 'https://avatars.githubusercontent.com/u/161566?v=4', 'https://api.github.com/users/ethernomad', 'https://github.com/ethernomad', 'https://api.github.com/users/ethernomad/followers', 'https://api.github.com/users/ethernomad/following', 'https://api.github.com/users/ethernomad/gists', 'https://api.github.com/users/ethernomad/starred', 'https://api.github.com/users/ethernomad/repos', 'https://api.github.com/users/ethernomad/events', 'https://api.github.com/users/ethernomad/received_events', 0); +INSERT INTO `developer` VALUES (162737, 'joshtriplett', 'C+', 14.407894768340753, 0, 0, 0, 0, 0, 0, 'Josh Triplett', NULL, 'https://joshtriplett.org', '未知', 'josh@joshtriplett.org', NULL, 'Free and Open Source Software developer. @rust-lang developer.', 'josh_triplett', 0, 0, 1125, 6, 0, 0, 0, '2009-12-05T09:18:40Z', '2024-10-29T10:36:55Z', 'https://avatars.githubusercontent.com/u/162737?v=4', 'https://api.github.com/users/joshtriplett', 'https://github.com/joshtriplett', 'https://api.github.com/users/joshtriplett/followers', 'https://api.github.com/users/joshtriplett/following', 'https://api.github.com/users/joshtriplett/gists', 'https://api.github.com/users/joshtriplett/starred', 'https://api.github.com/users/joshtriplett/repos', 'https://api.github.com/users/joshtriplett/events', 'https://api.github.com/users/joshtriplett/received_events', 0); +INSERT INTO `developer` VALUES (163977, 'gubatron', 'C', 0, 0, 0, 0, 0, 0, 0, 'Angel Leon', 'frostwire.com', 'https://gubatron.com/blog', 'USA', NULL, NULL, 'FrostWire/Wordpress\r\n\r\nAt this point I\'m happy to keep playing with rust, java, python and bash.', 'gubatron', 0, 0, 208, 461, 0, 0, 0, '2009-12-07T21:27:26Z', '2024-10-07T18:25:47Z', 'https://avatars.githubusercontent.com/u/163977?v=4', 'https://api.github.com/users/gubatron', 'https://github.com/gubatron', 'https://api.github.com/users/gubatron/followers', 'https://api.github.com/users/gubatron/following', 'https://api.github.com/users/gubatron/gists', 'https://api.github.com/users/gubatron/starred', 'https://api.github.com/users/gubatron/repos', 'https://api.github.com/users/gubatron/events', 'https://api.github.com/users/gubatron/received_events', 0); +INSERT INTO `developer` VALUES (165111, 'bencrouse', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Crouse', '@convictional ', '', 'Philadelphia, PA', NULL, NULL, 'Principal Engineer @ Convictional', 'bencrouse', 0, 0, 33, 22, 0, 0, 0, '2009-12-09T16:45:14Z', '2024-05-31T19:11:22Z', 'https://avatars.githubusercontent.com/u/165111?v=4', 'https://api.github.com/users/bencrouse', 'https://github.com/bencrouse', 'https://api.github.com/users/bencrouse/followers', 'https://api.github.com/users/bencrouse/following', 'https://api.github.com/users/bencrouse/gists', 'https://api.github.com/users/bencrouse/starred', 'https://api.github.com/users/bencrouse/repos', 'https://api.github.com/users/bencrouse/events', 'https://api.github.com/users/bencrouse/received_events', 0); +INSERT INTO `developer` VALUES (166367, 'dvalentiate', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Valentiate', 'Bluedrop Performance Learning', 'http://davidv.ca', 'Ottawa', 'david@bluedrop.com', NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2009-12-11T21:25:33Z', '2024-09-24T13:23:44Z', 'https://avatars.githubusercontent.com/u/166367?v=4', 'https://api.github.com/users/dvalentiate', 'https://github.com/dvalentiate', 'https://api.github.com/users/dvalentiate/followers', 'https://api.github.com/users/dvalentiate/following', 'https://api.github.com/users/dvalentiate/gists', 'https://api.github.com/users/dvalentiate/starred', 'https://api.github.com/users/dvalentiate/repos', 'https://api.github.com/users/dvalentiate/events', 'https://api.github.com/users/dvalentiate/received_events', 0); +INSERT INTO `developer` VALUES (168449, 'mhanne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marius Hanne', NULL, '', 'Munich, Germany', 'marius.hanne@sourceagency.org', 'true', NULL, NULL, 0, 0, 42, 32, 0, 0, 0, '2009-12-16T15:33:57Z', '2017-02-24T16:02:02Z', 'https://avatars.githubusercontent.com/u/168449?v=4', 'https://api.github.com/users/mhanne', 'https://github.com/mhanne', 'https://api.github.com/users/mhanne/followers', 'https://api.github.com/users/mhanne/following', 'https://api.github.com/users/mhanne/gists', 'https://api.github.com/users/mhanne/starred', 'https://api.github.com/users/mhanne/repos', 'https://api.github.com/users/mhanne/events', 'https://api.github.com/users/mhanne/received_events', 0); +INSERT INTO `developer` VALUES (168610, 'wizeman', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 33, 0, 0, 0, 0, '2009-12-16T21:16:28Z', '2024-02-23T15:59:34Z', 'https://avatars.githubusercontent.com/u/168610?v=4', 'https://api.github.com/users/wizeman', 'https://github.com/wizeman', 'https://api.github.com/users/wizeman/followers', 'https://api.github.com/users/wizeman/following', 'https://api.github.com/users/wizeman/gists', 'https://api.github.com/users/wizeman/starred', 'https://api.github.com/users/wizeman/repos', 'https://api.github.com/users/wizeman/events', 'https://api.github.com/users/wizeman/received_events', 0); +INSERT INTO `developer` VALUES (170308, 'xee5ch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Al', NULL, '', '未知', 'xee5ch@member.fsf.org', NULL, 'Security engineer or developer or DevSecOps person or whatever. I love OSCAL, I run oscal.club.', NULL, 0, 0, 43, 22, 0, 0, 0, '2009-12-21T01:34:33Z', '2024-10-23T17:16:50Z', 'https://avatars.githubusercontent.com/u/170308?v=4', 'https://api.github.com/users/xee5ch', 'https://github.com/xee5ch', 'https://api.github.com/users/xee5ch/followers', 'https://api.github.com/users/xee5ch/following', 'https://api.github.com/users/xee5ch/gists', 'https://api.github.com/users/xee5ch/starred', 'https://api.github.com/users/xee5ch/repos', 'https://api.github.com/users/xee5ch/events', 'https://api.github.com/users/xee5ch/received_events', 0); +INSERT INTO `developer` VALUES (171419, 'EricJ2190', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2009-12-23T16:08:57Z', '2024-09-13T16:10:48Z', 'https://avatars.githubusercontent.com/u/171419?v=4', 'https://api.github.com/users/EricJ2190', 'https://github.com/EricJ2190', 'https://api.github.com/users/EricJ2190/followers', 'https://api.github.com/users/EricJ2190/following', 'https://api.github.com/users/EricJ2190/gists', 'https://api.github.com/users/EricJ2190/starred', 'https://api.github.com/users/EricJ2190/repos', 'https://api.github.com/users/EricJ2190/events', 'https://api.github.com/users/EricJ2190/received_events', 0); +INSERT INTO `developer` VALUES (173697, 'vgarvardt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vladimir Garvardt', '@Qubit-9 ', 'http://itskrig.com/', 'Berlin, Germany', 'vgarvardt@gmail.com', NULL, NULL, 'vgarvardt', 0, 0, 105, 0, 0, 0, 0, '2009-12-29T16:10:15Z', '2024-10-23T15:06:48Z', 'https://avatars.githubusercontent.com/u/173697?v=4', 'https://api.github.com/users/vgarvardt', 'https://github.com/vgarvardt', 'https://api.github.com/users/vgarvardt/followers', 'https://api.github.com/users/vgarvardt/following', 'https://api.github.com/users/vgarvardt/gists', 'https://api.github.com/users/vgarvardt/starred', 'https://api.github.com/users/vgarvardt/repos', 'https://api.github.com/users/vgarvardt/events', 'https://api.github.com/users/vgarvardt/received_events', 0); +INSERT INTO `developer` VALUES (177213, 'shirou', 'C', 3.501433894990544, 0, 0, 0, 0, 0, 0, 'shirou', NULL, 'http://tdoc.info/en/blog/', 'Tokyo', 'shirou.faw@gmail.com', 'true', NULL, 'r_rudi', 0, 0, 489, 0, 0, 0, 0, '2010-01-06T07:28:08Z', '2024-11-02T11:18:52Z', 'https://avatars.githubusercontent.com/u/177213?v=4', 'https://api.github.com/users/shirou', 'https://github.com/shirou', 'https://api.github.com/users/shirou/followers', 'https://api.github.com/users/shirou/following', 'https://api.github.com/users/shirou/gists', 'https://api.github.com/users/shirou/starred', 'https://api.github.com/users/shirou/repos', 'https://api.github.com/users/shirou/events', 'https://api.github.com/users/shirou/received_events', 0); +INSERT INTO `developer` VALUES (177732, 'mattfinlayson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Finlayson', '@cloudability ', 'https://www.partiallypeaceful.com', 'Portland, OR', 'matt@unsure.org', NULL, NULL, NULL, 0, 0, 25, 22, 0, 0, 0, '2010-01-07T02:02:20Z', '2024-07-25T16:59:12Z', 'https://avatars.githubusercontent.com/u/177732?v=4', 'https://api.github.com/users/mattfinlayson', 'https://github.com/mattfinlayson', 'https://api.github.com/users/mattfinlayson/followers', 'https://api.github.com/users/mattfinlayson/following', 'https://api.github.com/users/mattfinlayson/gists', 'https://api.github.com/users/mattfinlayson/starred', 'https://api.github.com/users/mattfinlayson/repos', 'https://api.github.com/users/mattfinlayson/events', 'https://api.github.com/users/mattfinlayson/received_events', 0); +INSERT INTO `developer` VALUES (178154, 'sryabkov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergei Ryabkov', NULL, '', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 21, 7, 0, 0, 0, '2010-01-07T19:51:06Z', '2024-10-24T15:29:32Z', 'https://avatars.githubusercontent.com/u/178154?v=4', 'https://api.github.com/users/sryabkov', 'https://github.com/sryabkov', 'https://api.github.com/users/sryabkov/followers', 'https://api.github.com/users/sryabkov/following', 'https://api.github.com/users/sryabkov/gists', 'https://api.github.com/users/sryabkov/starred', 'https://api.github.com/users/sryabkov/repos', 'https://api.github.com/users/sryabkov/events', 'https://api.github.com/users/sryabkov/received_events', 0); +INSERT INTO `developer` VALUES (178464, 'jonasschnelli', 'C+', 17.889045015652226, 0, 0, 0, 0, 0, 0, 'Jonas Schnelli', 'Bitcoin Core', 'bitcoin.jonasschnelli.ch', 'World', NULL, NULL, 'Former Bitcoin Core Developer & Maintainer (2013-2021)', '_jonasschnelli_', 0, 0, 1328, 6, 0, 0, 0, '2010-01-08T10:39:45Z', '2024-10-28T20:40:32Z', 'https://avatars.githubusercontent.com/u/178464?v=4', 'https://api.github.com/users/jonasschnelli', 'https://github.com/jonasschnelli', 'https://api.github.com/users/jonasschnelli/followers', 'https://api.github.com/users/jonasschnelli/following', 'https://api.github.com/users/jonasschnelli/gists', 'https://api.github.com/users/jonasschnelli/starred', 'https://api.github.com/users/jonasschnelli/repos', 'https://api.github.com/users/jonasschnelli/events', 'https://api.github.com/users/jonasschnelli/received_events', 0); +INSERT INTO `developer` VALUES (179920, 'arnuschky', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'Cryptosphere Systems', 'http://cryptosphere-systems.com', 'Cryptoland', NULL, NULL, NULL, NULL, 0, 0, 13, 2, 0, 0, 0, '2010-01-11T10:13:17Z', '2024-10-21T08:51:29Z', 'https://avatars.githubusercontent.com/u/179920?v=4', 'https://api.github.com/users/arnuschky', 'https://github.com/arnuschky', 'https://api.github.com/users/arnuschky/followers', 'https://api.github.com/users/arnuschky/following', 'https://api.github.com/users/arnuschky/gists', 'https://api.github.com/users/arnuschky/starred', 'https://api.github.com/users/arnuschky/repos', 'https://api.github.com/users/arnuschky/events', 'https://api.github.com/users/arnuschky/received_events', 0); +INSERT INTO `developer` VALUES (181308, 'htdvisser', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hylke Visser', '@1password ', '', 'The Hague, The Netherlands', 'hi@htdvisser.dev', NULL, NULL, NULL, 0, 0, 124, 30, 0, 0, 0, '2010-01-13T08:56:55Z', '2024-04-19T09:24:35Z', 'https://avatars.githubusercontent.com/u/181308?v=4', 'https://api.github.com/users/htdvisser', 'https://github.com/htdvisser', 'https://api.github.com/users/htdvisser/followers', 'https://api.github.com/users/htdvisser/following', 'https://api.github.com/users/htdvisser/gists', 'https://api.github.com/users/htdvisser/starred', 'https://api.github.com/users/htdvisser/repos', 'https://api.github.com/users/htdvisser/events', 'https://api.github.com/users/htdvisser/received_events', 0); +INSERT INTO `developer` VALUES (181413, 'sile', 'C', 2.198146117671966, 0, 0, 0, 0, 0, 0, 'Takeru Ohta', NULL, '', 'Tokyo, Japan', 'phjgt308@gmail.com', NULL, NULL, NULL, 0, 0, 413, 8, 0, 0, 0, '2010-01-13T13:18:41Z', '2024-10-29T04:49:47Z', 'https://avatars.githubusercontent.com/u/181413?v=4', 'https://api.github.com/users/sile', 'https://github.com/sile', 'https://api.github.com/users/sile/followers', 'https://api.github.com/users/sile/following', 'https://api.github.com/users/sile/gists', 'https://api.github.com/users/sile/starred', 'https://api.github.com/users/sile/repos', 'https://api.github.com/users/sile/events', 'https://api.github.com/users/sile/received_events', 0); +INSERT INTO `developer` VALUES (182024, 'larsr', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 4, 0, 0, 0, '2010-01-14T08:28:29Z', '2024-10-07T17:54:30Z', 'https://avatars.githubusercontent.com/u/182024?v=4', 'https://api.github.com/users/larsr', 'https://github.com/larsr', 'https://api.github.com/users/larsr/followers', 'https://api.github.com/users/larsr/following', 'https://api.github.com/users/larsr/gists', 'https://api.github.com/users/larsr/starred', 'https://api.github.com/users/larsr/repos', 'https://api.github.com/users/larsr/events', 'https://api.github.com/users/larsr/received_events', 0); +INSERT INTO `developer` VALUES (184479, 'setkeh', 'C', 0, 0, 0, 0, 0, 0, 0, 'James (setkeh) Griffis', '@thesetkehproject ', 'HTTP://SETKEH.COM', 'Australia', NULL, 'true', NULL, NULL, 0, 0, 44, 26, 0, 0, 0, '2010-01-18T09:25:01Z', '2024-10-05T09:58:26Z', 'https://avatars.githubusercontent.com/u/184479?v=4', 'https://api.github.com/users/setkeh', 'https://github.com/setkeh', 'https://api.github.com/users/setkeh/followers', 'https://api.github.com/users/setkeh/following', 'https://api.github.com/users/setkeh/gists', 'https://api.github.com/users/setkeh/starred', 'https://api.github.com/users/setkeh/repos', 'https://api.github.com/users/setkeh/events', 'https://api.github.com/users/setkeh/received_events', 0); +INSERT INTO `developer` VALUES (185122, 'chrispat', 'C', 2.8857499040670445, 0, 0, 0, 59, 5, 0, 'Chris Patterson', '@github ', '', 'Cary, NC', 'chrispat@github.com', NULL, 'Product @ GitHub', 'chrisrpatterson', 0, 0, 417, 20, 0, 0, 0, '2010-01-19T03:36:01Z', '2024-10-30T00:28:52Z', 'https://avatars.githubusercontent.com/u/185122?v=4', 'https://api.github.com/users/chrispat', 'https://github.com/chrispat', 'https://api.github.com/users/chrispat/followers', 'https://api.github.com/users/chrispat/following', 'https://api.github.com/users/chrispat/gists', 'https://api.github.com/users/chrispat/starred', 'https://api.github.com/users/chrispat/repos', 'https://api.github.com/users/chrispat/events', 'https://api.github.com/users/chrispat/received_events', 0); +INSERT INTO `developer` VALUES (190779, 'ohhmm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Serg Kryvonos', 'openmind', 'https://www.linkedin.com/in/sergii-k-59414816', '未知', NULL, NULL, NULL, 'inventingNames', 0, 0, 31, 79, 0, 0, 0, '2010-01-27T10:15:04Z', '2024-08-24T17:43:13Z', 'https://avatars.githubusercontent.com/u/190779?v=4', 'https://api.github.com/users/ohhmm', 'https://github.com/ohhmm', 'https://api.github.com/users/ohhmm/followers', 'https://api.github.com/users/ohhmm/following', 'https://api.github.com/users/ohhmm/gists', 'https://api.github.com/users/ohhmm/starred', 'https://api.github.com/users/ohhmm/repos', 'https://api.github.com/users/ohhmm/events', 'https://api.github.com/users/ohhmm/received_events', 0); +INSERT INTO `developer` VALUES (190833, 'Golodhros', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcos Iglesias', NULL, 'http://www.marcosiglesias.com', 'Barcelona, Spain', NULL, NULL, 'Staff Engineer | OSS, D3.js, Web Performance | Speaker and Author of \"Pro D3.js\" | Creator of Britecharts | Core maintainer of Amundsen', 'golodhros', 0, 0, 100, 11, 0, 0, 0, '2010-01-27T12:06:29Z', '2024-10-22T09:56:52Z', 'https://avatars.githubusercontent.com/u/190833?v=4', 'https://api.github.com/users/Golodhros', 'https://github.com/Golodhros', 'https://api.github.com/users/Golodhros/followers', 'https://api.github.com/users/Golodhros/following', 'https://api.github.com/users/Golodhros/gists', 'https://api.github.com/users/Golodhros/starred', 'https://api.github.com/users/Golodhros/repos', 'https://api.github.com/users/Golodhros/events', 'https://api.github.com/users/Golodhros/received_events', 0); +INSERT INTO `developer` VALUES (192336, 'AMeng', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Meng', NULL, 'https://medium.com/@alexbmeng', 'Denver, CO', 'alexbmeng@gmail.com', 'true', NULL, NULL, 0, 0, 23, 19, 0, 0, 0, '2010-01-29T16:02:48Z', '2024-10-25T15:55:19Z', 'https://avatars.githubusercontent.com/u/192336?v=4', 'https://api.github.com/users/AMeng', 'https://github.com/AMeng', 'https://api.github.com/users/AMeng/followers', 'https://api.github.com/users/AMeng/following', 'https://api.github.com/users/AMeng/gists', 'https://api.github.com/users/AMeng/starred', 'https://api.github.com/users/AMeng/repos', 'https://api.github.com/users/AMeng/events', 'https://api.github.com/users/AMeng/received_events', 0); +INSERT INTO `developer` VALUES (192728, 'maclennann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Norm MacLennan', NULL, 'https://iwritethe.codes', 'Boston-ish, MA', 'norm@iwritethe.codes', NULL, NULL, NULL, 0, 0, 22, 4, 0, 0, 0, '2010-01-30T06:09:05Z', '2024-05-16T16:55:05Z', 'https://avatars.githubusercontent.com/u/192728?v=4', 'https://api.github.com/users/maclennann', 'https://github.com/maclennann', 'https://api.github.com/users/maclennann/followers', 'https://api.github.com/users/maclennann/following', 'https://api.github.com/users/maclennann/gists', 'https://api.github.com/users/maclennann/starred', 'https://api.github.com/users/maclennann/repos', 'https://api.github.com/users/maclennann/events', 'https://api.github.com/users/maclennann/received_events', 0); +INSERT INTO `developer` VALUES (193408, 'kwk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Konrad Kleine', 'Red Hat', '', 'Germany', 'kkleine@redhat.com', 'true', 'Senior software engineer at Red Hat working on LLVM.', NULL, 0, 0, 149, 41, 0, 0, 0, '2010-01-31T18:46:01Z', '2024-10-20T11:21:58Z', 'https://avatars.githubusercontent.com/u/193408?v=4', 'https://api.github.com/users/kwk', 'https://github.com/kwk', 'https://api.github.com/users/kwk/followers', 'https://api.github.com/users/kwk/following', 'https://api.github.com/users/kwk/gists', 'https://api.github.com/users/kwk/starred', 'https://api.github.com/users/kwk/repos', 'https://api.github.com/users/kwk/events', 'https://api.github.com/users/kwk/received_events', 0); +INSERT INTO `developer` VALUES (194979, 'bitcartel', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 69, 4, 0, 0, 0, '2010-02-03T01:22:00Z', '2024-08-22T02:05:33Z', 'https://avatars.githubusercontent.com/u/194979?v=4', 'https://api.github.com/users/bitcartel', 'https://github.com/bitcartel', 'https://api.github.com/users/bitcartel/followers', 'https://api.github.com/users/bitcartel/following', 'https://api.github.com/users/bitcartel/gists', 'https://api.github.com/users/bitcartel/starred', 'https://api.github.com/users/bitcartel/repos', 'https://api.github.com/users/bitcartel/events', 'https://api.github.com/users/bitcartel/received_events', 0); +INSERT INTO `developer` VALUES (195041, 'tpounds', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trevor Pounds', NULL, 'tpounds.dev', '未知', NULL, NULL, NULL, NULL, 0, 0, 45, 72, 0, 0, 0, '2010-02-03T02:55:15Z', '2024-10-16T15:46:50Z', 'https://avatars.githubusercontent.com/u/195041?v=4', 'https://api.github.com/users/tpounds', 'https://github.com/tpounds', 'https://api.github.com/users/tpounds/followers', 'https://api.github.com/users/tpounds/following', 'https://api.github.com/users/tpounds/gists', 'https://api.github.com/users/tpounds/starred', 'https://api.github.com/users/tpounds/repos', 'https://api.github.com/users/tpounds/events', 'https://api.github.com/users/tpounds/received_events', 0); +INSERT INTO `developer` VALUES (195381, 'sergray', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergey Panfilov', NULL, '', 'Netherlands', NULL, NULL, NULL, NULL, 0, 0, 30, 68, 0, 0, 0, '2010-02-03T10:22:57Z', '2024-10-25T08:19:38Z', 'https://avatars.githubusercontent.com/u/195381?v=4', 'https://api.github.com/users/sergray', 'https://github.com/sergray', 'https://api.github.com/users/sergray/followers', 'https://api.github.com/users/sergray/following', 'https://api.github.com/users/sergray/gists', 'https://api.github.com/users/sergray/starred', 'https://api.github.com/users/sergray/repos', 'https://api.github.com/users/sergray/events', 'https://api.github.com/users/sergray/received_events', 0); +INSERT INTO `developer` VALUES (195769, 'skeees', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesse Cohen', NULL, '', 'New York, NY', 'jc@jc.lol', NULL, NULL, NULL, 0, 0, 124, 9, 0, 0, 0, '2010-02-03T16:19:08Z', '2024-06-20T01:32:56Z', 'https://avatars.githubusercontent.com/u/195769?v=4', 'https://api.github.com/users/skeees', 'https://github.com/skeees', 'https://api.github.com/users/skeees/followers', 'https://api.github.com/users/skeees/following', 'https://api.github.com/users/skeees/gists', 'https://api.github.com/users/skeees/starred', 'https://api.github.com/users/skeees/repos', 'https://api.github.com/users/skeees/events', 'https://api.github.com/users/skeees/received_events', 0); +INSERT INTO `developer` VALUES (197224, 'colindean', 'C', 0, 0, 0, 0, 0, 0, 0, 'Colin Dean', '@codeandsupply; @MetaMesh; @target; @Homebrew ', 'https://cad.cx', 'Pittsburgh, PA, USA', NULL, 'true', 'Scholar, bon vivant, champion of the oppressed.', NULL, 0, 0, 225, 66, 0, 0, 0, '2010-02-05T00:23:10Z', '2024-10-26T16:27:58Z', 'https://avatars.githubusercontent.com/u/197224?v=4', 'https://api.github.com/users/colindean', 'https://github.com/colindean', 'https://api.github.com/users/colindean/followers', 'https://api.github.com/users/colindean/following', 'https://api.github.com/users/colindean/gists', 'https://api.github.com/users/colindean/starred', 'https://api.github.com/users/colindean/repos', 'https://api.github.com/users/colindean/events', 'https://api.github.com/users/colindean/received_events', 0); +INSERT INTO `developer` VALUES (197274, 'jhenninger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johannes Henninger', NULL, '', 'Bavaria, Germany', NULL, NULL, NULL, NULL, 0, 0, 18, 10, 0, 0, 0, '2010-02-05T01:39:11Z', '2024-11-04T09:08:31Z', 'https://avatars.githubusercontent.com/u/197274?v=4', 'https://api.github.com/users/jhenninger', 'https://github.com/jhenninger', 'https://api.github.com/users/jhenninger/followers', 'https://api.github.com/users/jhenninger/following', 'https://api.github.com/users/jhenninger/gists', 'https://api.github.com/users/jhenninger/starred', 'https://api.github.com/users/jhenninger/repos', 'https://api.github.com/users/jhenninger/events', 'https://api.github.com/users/jhenninger/received_events', 0); +INSERT INTO `developer` VALUES (197660, 'sipsorcery', 'C', 0.48329377909488824, 0, 0, 0, 0, 0, 0, 'Aaron Clauson', 'NoFrixion', '', 'Dublin, Ireland', 'aaron@sipsorcery.com', NULL, NULL, 'sipsorcery', 0, 0, 313, 11, 0, 0, 0, '2010-02-05T12:39:19Z', '2024-09-29T22:24:21Z', 'https://avatars.githubusercontent.com/u/197660?v=4', 'https://api.github.com/users/sipsorcery', 'https://github.com/sipsorcery', 'https://api.github.com/users/sipsorcery/followers', 'https://api.github.com/users/sipsorcery/following', 'https://api.github.com/users/sipsorcery/gists', 'https://api.github.com/users/sipsorcery/starred', 'https://api.github.com/users/sipsorcery/repos', 'https://api.github.com/users/sipsorcery/events', 'https://api.github.com/users/sipsorcery/received_events', 0); +INSERT INTO `developer` VALUES (197954, 'ltran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Louis Tran', NULL, '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 13, 16, 0, 0, 0, '2010-02-05T19:36:09Z', '2024-02-26T03:32:05Z', 'https://avatars.githubusercontent.com/u/197954?v=4', 'https://api.github.com/users/ltran', 'https://github.com/ltran', 'https://api.github.com/users/ltran/followers', 'https://api.github.com/users/ltran/following', 'https://api.github.com/users/ltran/gists', 'https://api.github.com/users/ltran/starred', 'https://api.github.com/users/ltran/repos', 'https://api.github.com/users/ltran/events', 'https://api.github.com/users/ltran/received_events', 0); +INSERT INTO `developer` VALUES (198793, 'kupnu4x', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2010-02-07T05:05:33Z', '2024-05-15T10:27:39Z', 'https://avatars.githubusercontent.com/u/198793?v=4', 'https://api.github.com/users/kupnu4x', 'https://github.com/kupnu4x', 'https://api.github.com/users/kupnu4x/followers', 'https://api.github.com/users/kupnu4x/following', 'https://api.github.com/users/kupnu4x/gists', 'https://api.github.com/users/kupnu4x/starred', 'https://api.github.com/users/kupnu4x/repos', 'https://api.github.com/users/kupnu4x/events', 'https://api.github.com/users/kupnu4x/received_events', 0); +INSERT INTO `developer` VALUES (200123, 'philomory', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Gardner', '@magicmemories ', '', 'Hawaii', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2010-02-09T09:34:23Z', '2024-08-19T06:14:48Z', 'https://avatars.githubusercontent.com/u/200123?v=4', 'https://api.github.com/users/philomory', 'https://github.com/philomory', 'https://api.github.com/users/philomory/followers', 'https://api.github.com/users/philomory/following', 'https://api.github.com/users/philomory/gists', 'https://api.github.com/users/philomory/starred', 'https://api.github.com/users/philomory/repos', 'https://api.github.com/users/philomory/events', 'https://api.github.com/users/philomory/received_events', 0); +INSERT INTO `developer` VALUES (202728, 'champo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Pablo Civile', '@muun ', 'https://twitter.com/elchampo', 'Buenos Aires, Argentina', NULL, NULL, 'Making crypto work @ Muun', NULL, 0, 0, 73, 35, 0, 0, 0, '2010-02-12T21:42:56Z', '2023-12-29T21:01:32Z', 'https://avatars.githubusercontent.com/u/202728?v=4', 'https://api.github.com/users/champo', 'https://github.com/champo', 'https://api.github.com/users/champo/followers', 'https://api.github.com/users/champo/following', 'https://api.github.com/users/champo/gists', 'https://api.github.com/users/champo/starred', 'https://api.github.com/users/champo/repos', 'https://api.github.com/users/champo/events', 'https://api.github.com/users/champo/received_events', 0); +INSERT INTO `developer` VALUES (203604, 'kaznovac', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marko Kaznovac', '@byteout ', 'https://kaznovac.com', 'Belgrade, Serbia', NULL, 'true', 'Simplicity is the ultimate form of sophistication.', 'kznvc', 0, 0, 63, 438, 0, 0, 0, '2010-02-14T20:34:17Z', '2024-06-10T20:32:56Z', 'https://avatars.githubusercontent.com/u/203604?v=4', 'https://api.github.com/users/kaznovac', 'https://github.com/kaznovac', 'https://api.github.com/users/kaznovac/followers', 'https://api.github.com/users/kaznovac/following', 'https://api.github.com/users/kaznovac/gists', 'https://api.github.com/users/kaznovac/starred', 'https://api.github.com/users/kaznovac/repos', 'https://api.github.com/users/kaznovac/events', 'https://api.github.com/users/kaznovac/received_events', 0); +INSERT INTO `developer` VALUES (205553, 'hendrikhalkow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hendrik M Halkow', 'Forward H', 'https://halkow.com', 'Hamburg, Germany', NULL, 'true', NULL, 'hendrikhalkow', 0, 0, 22, 23, 0, 0, 0, '2010-02-17T21:15:43Z', '2024-10-28T11:19:08Z', 'https://avatars.githubusercontent.com/u/205553?v=4', 'https://api.github.com/users/hendrikhalkow', 'https://github.com/hendrikhalkow', 'https://api.github.com/users/hendrikhalkow/followers', 'https://api.github.com/users/hendrikhalkow/following', 'https://api.github.com/users/hendrikhalkow/gists', 'https://api.github.com/users/hendrikhalkow/starred', 'https://api.github.com/users/hendrikhalkow/repos', 'https://api.github.com/users/hendrikhalkow/events', 'https://api.github.com/users/hendrikhalkow/received_events', 0); +INSERT INTO `developer` VALUES (205573, 'projectgus', 'C', 3.4842853716047726, 0, 0, 0, 0, 0, 0, 'Angus Gratton', NULL, 'http://www.projectgus.com/', 'Castlemaine, Australia', NULL, NULL, NULL, NULL, 0, 0, 488, 41, 0, 0, 0, '2010-02-17T21:45:37Z', '2024-10-05T01:43:14Z', 'https://avatars.githubusercontent.com/u/205573?v=4', 'https://api.github.com/users/projectgus', 'https://github.com/projectgus', 'https://api.github.com/users/projectgus/followers', 'https://api.github.com/users/projectgus/following', 'https://api.github.com/users/projectgus/gists', 'https://api.github.com/users/projectgus/starred', 'https://api.github.com/users/projectgus/repos', 'https://api.github.com/users/projectgus/events', 'https://api.github.com/users/projectgus/received_events', 0); +INSERT INTO `developer` VALUES (211316, 'drizzt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timothy Redaelli', 'Red Hat', 'https://redaelli.eu/', 'Italy', NULL, 'true', 'Software Engineer at @RedHatOfficial and Fedora packager.\r\nCivil hacking at @emergenzeHack.\r\n@fsfe volunteer.', NULL, 0, 0, 113, 12, 0, 0, 0, '2010-02-26T10:35:50Z', '2024-10-26T12:59:40Z', 'https://avatars.githubusercontent.com/u/211316?v=4', 'https://api.github.com/users/drizzt', 'https://github.com/drizzt', 'https://api.github.com/users/drizzt/followers', 'https://api.github.com/users/drizzt/following', 'https://api.github.com/users/drizzt/gists', 'https://api.github.com/users/drizzt/starred', 'https://api.github.com/users/drizzt/repos', 'https://api.github.com/users/drizzt/events', 'https://api.github.com/users/drizzt/received_events', 0); +INSERT INTO `developer` VALUES (213740, 'schancel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shammah Chancellor', '@givelotus ', 'http://shablag.com', 'United States', NULL, 'true', NULL, NULL, 0, 0, 59, 15, 0, 0, 0, '2010-03-02T08:23:39Z', '2024-10-14T17:48:53Z', 'https://avatars.githubusercontent.com/u/213740?v=4', 'https://api.github.com/users/schancel', 'https://github.com/schancel', 'https://api.github.com/users/schancel/followers', 'https://api.github.com/users/schancel/following', 'https://api.github.com/users/schancel/gists', 'https://api.github.com/users/schancel/starred', 'https://api.github.com/users/schancel/repos', 'https://api.github.com/users/schancel/events', 'https://api.github.com/users/schancel/received_events', 0); +INSERT INTO `developer` VALUES (214252, 'sje397', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Ellis', 'Zuora', '', 'Melbourne, AU', NULL, NULL, NULL, NULL, 0, 0, 42, 22, 0, 0, 0, '2010-03-02T22:10:16Z', '2024-07-16T06:40:10Z', 'https://avatars.githubusercontent.com/u/214252?v=4', 'https://api.github.com/users/sje397', 'https://github.com/sje397', 'https://api.github.com/users/sje397/followers', 'https://api.github.com/users/sje397/following', 'https://api.github.com/users/sje397/gists', 'https://api.github.com/users/sje397/starred', 'https://api.github.com/users/sje397/repos', 'https://api.github.com/users/sje397/events', 'https://api.github.com/users/sje397/received_events', 0); +INSERT INTO `developer` VALUES (216917, 'sime', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Males', '@trezor', 'https://sime.net.au/', 'Prague', NULL, 'true', 'Business Savvy Web Developer', 'simonmales', 0, 0, 39, 17, 0, 0, 0, '2010-03-06T01:06:12Z', '2024-11-03T10:13:23Z', 'https://avatars.githubusercontent.com/u/216917?v=4', 'https://api.github.com/users/sime', 'https://github.com/sime', 'https://api.github.com/users/sime/followers', 'https://api.github.com/users/sime/following', 'https://api.github.com/users/sime/gists', 'https://api.github.com/users/sime/starred', 'https://api.github.com/users/sime/repos', 'https://api.github.com/users/sime/events', 'https://api.github.com/users/sime/received_events', 0); +INSERT INTO `developer` VALUES (217874, 'dorianj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dorian Johnson', NULL, '', 'San Francisco', NULL, NULL, NULL, 'dorianj', 0, 0, 50, 9, 0, 0, 0, '2010-03-07T18:00:43Z', '2024-10-31T16:55:02Z', 'https://avatars.githubusercontent.com/u/217874?v=4', 'https://api.github.com/users/dorianj', 'https://github.com/dorianj', 'https://api.github.com/users/dorianj/followers', 'https://api.github.com/users/dorianj/following', 'https://api.github.com/users/dorianj/gists', 'https://api.github.com/users/dorianj/starred', 'https://api.github.com/users/dorianj/repos', 'https://api.github.com/users/dorianj/events', 'https://api.github.com/users/dorianj/received_events', 0); +INSERT INTO `developer` VALUES (220838, 'aaronweaver', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Weaver', 'OWASP', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 59, 3, 0, 0, 0, '2010-03-11T19:54:19Z', '2024-10-19T01:25:45Z', 'https://avatars.githubusercontent.com/u/220838?v=4', 'https://api.github.com/users/aaronweaver', 'https://github.com/aaronweaver', 'https://api.github.com/users/aaronweaver/followers', 'https://api.github.com/users/aaronweaver/following', 'https://api.github.com/users/aaronweaver/gists', 'https://api.github.com/users/aaronweaver/starred', 'https://api.github.com/users/aaronweaver/repos', 'https://api.github.com/users/aaronweaver/events', 'https://api.github.com/users/aaronweaver/received_events', 0); +INSERT INTO `developer` VALUES (221872, 'maddie', 'C', 0, 0, 0, 0, 0, 0, 0, 'maddie', NULL, '', 'Shenzhen, China', NULL, NULL, 'Always learning.', NULL, 0, 0, 41, 35, 0, 0, 0, '2010-03-13T11:47:16Z', '2024-09-10T15:39:43Z', 'https://avatars.githubusercontent.com/u/221872?v=4', 'https://api.github.com/users/maddie', 'https://github.com/maddie', 'https://api.github.com/users/maddie/followers', 'https://api.github.com/users/maddie/following', 'https://api.github.com/users/maddie/gists', 'https://api.github.com/users/maddie/starred', 'https://api.github.com/users/maddie/repos', 'https://api.github.com/users/maddie/events', 'https://api.github.com/users/maddie/received_events', 0); +INSERT INTO `developer` VALUES (222581, 'posita', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Bogosian', NULL, '', '未知', 'eb3f73+github+com@yaymail.com', NULL, NULL, NULL, 0, 0, 54, 0, 0, 0, 0, '2010-03-14T19:31:39Z', '2024-11-03T23:15:56Z', 'https://avatars.githubusercontent.com/u/222581?v=4', 'https://api.github.com/users/posita', 'https://github.com/posita', 'https://api.github.com/users/posita/followers', 'https://api.github.com/users/posita/following', 'https://api.github.com/users/posita/gists', 'https://api.github.com/users/posita/starred', 'https://api.github.com/users/posita/repos', 'https://api.github.com/users/posita/events', 'https://api.github.com/users/posita/received_events', 0); +INSERT INTO `developer` VALUES (227442, 'rex4539', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dimitris Apostolou', NULL, 'https://dimitrisapostolou.eth.limo', '未知', NULL, NULL, 'G(r)eek­', NULL, 0, 0, 104, 0, 0, 0, 0, '2010-03-21T19:30:06Z', '2024-11-03T19:35:09Z', 'https://avatars.githubusercontent.com/u/227442?v=4', 'https://api.github.com/users/rex4539', 'https://github.com/rex4539', 'https://api.github.com/users/rex4539/followers', 'https://api.github.com/users/rex4539/following', 'https://api.github.com/users/rex4539/gists', 'https://api.github.com/users/rex4539/starred', 'https://api.github.com/users/rex4539/repos', 'https://api.github.com/users/rex4539/events', 'https://api.github.com/users/rex4539/received_events', 0); +INSERT INTO `developer` VALUES (228433, 'mgiuca', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Giuca', NULL, 'https://mgiuca.itch.io/', 'Sydney, Australia', 'matt.giuca@gmail.com', NULL, 'Game developer.\r\n\r\nPast lives: PhD in programming language design. Chrome, ChromeOS and web platform engineer at Google.', NULL, 0, 0, 125, 0, 0, 0, 0, '2010-03-23T06:06:36Z', '2024-10-08T12:00:43Z', 'https://avatars.githubusercontent.com/u/228433?v=4', 'https://api.github.com/users/mgiuca', 'https://github.com/mgiuca', 'https://api.github.com/users/mgiuca/followers', 'https://api.github.com/users/mgiuca/following', 'https://api.github.com/users/mgiuca/gists', 'https://api.github.com/users/mgiuca/starred', 'https://api.github.com/users/mgiuca/repos', 'https://api.github.com/users/mgiuca/events', 'https://api.github.com/users/mgiuca/received_events', 0); +INSERT INTO `developer` VALUES (232249, 'ckolivas', 'C', 5.662147841597661, 0, 0, 0, 0, 0, 0, 'Con Kolivas', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 615, 0, 0, 0, 0, '2010-03-28T22:54:40Z', '2024-06-01T04:30:26Z', 'https://avatars.githubusercontent.com/u/232249?v=4', 'https://api.github.com/users/ckolivas', 'https://github.com/ckolivas', 'https://api.github.com/users/ckolivas/followers', 'https://api.github.com/users/ckolivas/following', 'https://api.github.com/users/ckolivas/gists', 'https://api.github.com/users/ckolivas/starred', 'https://api.github.com/users/ckolivas/repos', 'https://api.github.com/users/ckolivas/events', 'https://api.github.com/users/ckolivas/received_events', 0); +INSERT INTO `developer` VALUES (232590, 'chrissicool', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, 'chrissicool', 0, 0, 31, 24, 0, 0, 0, '2010-03-29T12:56:26Z', '2024-10-30T22:31:21Z', 'https://avatars.githubusercontent.com/u/232590?v=4', 'https://api.github.com/users/chrissicool', 'https://github.com/chrissicool', 'https://api.github.com/users/chrissicool/followers', 'https://api.github.com/users/chrissicool/following', 'https://api.github.com/users/chrissicool/gists', 'https://api.github.com/users/chrissicool/starred', 'https://api.github.com/users/chrissicool/repos', 'https://api.github.com/users/chrissicool/events', 'https://api.github.com/users/chrissicool/received_events', 0); +INSERT INTO `developer` VALUES (233694, 'grendel513', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jay Paz', 'DefectDojo, Inc.', '', 'Austin, TX', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2010-03-30T21:36:21Z', '2024-09-03T22:56:59Z', 'https://avatars.githubusercontent.com/u/233694?v=4', 'https://api.github.com/users/grendel513', 'https://github.com/grendel513', 'https://api.github.com/users/grendel513/followers', 'https://api.github.com/users/grendel513/following', 'https://api.github.com/users/grendel513/gists', 'https://api.github.com/users/grendel513/starred', 'https://api.github.com/users/grendel513/repos', 'https://api.github.com/users/grendel513/events', 'https://api.github.com/users/grendel513/received_events', 0); +INSERT INTO `developer` VALUES (250224, 'kallewoof', 'C', 6.845395955215844, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 684, 9, 0, 0, 0, '2010-04-22T20:50:36Z', '2024-11-05T00:39:48Z', 'https://avatars.githubusercontent.com/u/250224?v=4', 'https://api.github.com/users/kallewoof', 'https://github.com/kallewoof', 'https://api.github.com/users/kallewoof/followers', 'https://api.github.com/users/kallewoof/following', 'https://api.github.com/users/kallewoof/gists', 'https://api.github.com/users/kallewoof/starred', 'https://api.github.com/users/kallewoof/repos', 'https://api.github.com/users/kallewoof/events', 'https://api.github.com/users/kallewoof/received_events', 0); +INSERT INTO `developer` VALUES (253664, 'pygeek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clinton', NULL, 'https://pygeek.com', 'Boston, MA', NULL, 'true', NULL, NULL, 0, 0, 45, 34, 0, 0, 0, '2010-04-27T02:17:47Z', '2024-10-13T18:07:03Z', 'https://avatars.githubusercontent.com/u/253664?v=4', 'https://api.github.com/users/pygeek', 'https://github.com/pygeek', 'https://api.github.com/users/pygeek/followers', 'https://api.github.com/users/pygeek/following', 'https://api.github.com/users/pygeek/gists', 'https://api.github.com/users/pygeek/starred', 'https://api.github.com/users/pygeek/repos', 'https://api.github.com/users/pygeek/events', 'https://api.github.com/users/pygeek/received_events', 0); +INSERT INTO `developer` VALUES (263299, 'zw', 'C', 0, 0, 0, 0, 0, 0, 0, 'ZW', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 23, 0, 0, 0, 0, '2010-05-03T17:17:03Z', '2021-01-10T16:05:47Z', 'https://avatars.githubusercontent.com/u/263299?v=4', 'https://api.github.com/users/zw', 'https://github.com/zw', 'https://api.github.com/users/zw/followers', 'https://api.github.com/users/zw/following', 'https://api.github.com/users/zw/gists', 'https://api.github.com/users/zw/starred', 'https://api.github.com/users/zw/repos', 'https://api.github.com/users/zw/events', 'https://api.github.com/users/zw/received_events', 0); +INSERT INTO `developer` VALUES (263448, 'hikhvar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christoph Petrausch', NULL, 'https://journal.petrausch.info', '未知', NULL, NULL, NULL, 'hikhvar', 0, 0, 48, 3, 0, 0, 0, '2010-05-03T20:01:11Z', '2024-06-07T04:36:36Z', 'https://avatars.githubusercontent.com/u/263448?v=4', 'https://api.github.com/users/hikhvar', 'https://github.com/hikhvar', 'https://api.github.com/users/hikhvar/followers', 'https://api.github.com/users/hikhvar/following', 'https://api.github.com/users/hikhvar/gists', 'https://api.github.com/users/hikhvar/starred', 'https://api.github.com/users/hikhvar/repos', 'https://api.github.com/users/hikhvar/events', 'https://api.github.com/users/hikhvar/received_events', 0); +INSERT INTO `developer` VALUES (266018, 'itscaro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Quan TRAN', '@its-caro ', 'https://gitter.im/itscaro/contact', 'Paris, France', NULL, 'true', 'DevOps', NULL, 0, 0, 25, 5, 0, 0, 0, '2010-05-05T23:08:35Z', '2024-10-22T09:16:50Z', 'https://avatars.githubusercontent.com/u/266018?v=4', 'https://api.github.com/users/itscaro', 'https://github.com/itscaro', 'https://api.github.com/users/itscaro/followers', 'https://api.github.com/users/itscaro/following', 'https://api.github.com/users/itscaro/gists', 'https://api.github.com/users/itscaro/starred', 'https://api.github.com/users/itscaro/repos', 'https://api.github.com/users/itscaro/events', 'https://api.github.com/users/itscaro/received_events', 0); +INSERT INTO `developer` VALUES (266627, 'cculianu', 'C', 0.9790022247329336, 0, 7, 40, 25, 0, 0, 'Calin Culianu', NULL, 'http://www.c3-soft.com', '未知', NULL, 'true', 'aka NilacTheGrim aka Void Pointer', NULL, 0, 0, 113, 1, 0, 0, 0, '2010-05-06T15:27:22Z', '2024-11-04T02:20:01Z', 'https://avatars.githubusercontent.com/u/266627?v=4', 'https://api.github.com/users/cculianu', 'https://github.com/cculianu', 'https://api.github.com/users/cculianu/followers', 'https://api.github.com/users/cculianu/following', 'https://api.github.com/users/cculianu/gists', 'https://api.github.com/users/cculianu/starred', 'https://api.github.com/users/cculianu/repos', 'https://api.github.com/users/cculianu/events', 'https://api.github.com/users/cculianu/received_events', 0); +INSERT INTO `developer` VALUES (273683, 'fpelliccioni', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fernando Pelliccioni', 'https://tipb.ch/fernando', 'https://componentsprogramming.com', '未知', 'fpelliccioni@gmail.com', NULL, 'Systems programmer - C++ expert - Bitcoin developer', NULL, 0, 0, 45, 16, 0, 0, 0, '2010-05-11T19:22:36Z', '2024-08-14T13:55:25Z', 'https://avatars.githubusercontent.com/u/273683?v=4', 'https://api.github.com/users/fpelliccioni', 'https://github.com/fpelliccioni', 'https://api.github.com/users/fpelliccioni/followers', 'https://api.github.com/users/fpelliccioni/following', 'https://api.github.com/users/fpelliccioni/gists', 'https://api.github.com/users/fpelliccioni/starred', 'https://api.github.com/users/fpelliccioni/repos', 'https://api.github.com/users/fpelliccioni/events', 'https://api.github.com/users/fpelliccioni/received_events', 0); +INSERT INTO `developer` VALUES (273837, 'akavel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mateusz Czapliński', NULL, 'https://akavel.com', '未知', NULL, 'true', NULL, NULL, 0, 0, 244, 10, 0, 0, 0, '2010-05-11T22:29:44Z', '2024-10-31T07:39:59Z', 'https://avatars.githubusercontent.com/u/273837?v=4', 'https://api.github.com/users/akavel', 'https://github.com/akavel', 'https://api.github.com/users/akavel/followers', 'https://api.github.com/users/akavel/following', 'https://api.github.com/users/akavel/gists', 'https://api.github.com/users/akavel/starred', 'https://api.github.com/users/akavel/repos', 'https://api.github.com/users/akavel/events', 'https://api.github.com/users/akavel/received_events', 0); +INSERT INTO `developer` VALUES (274814, 'EthanHeilman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ethan Heilman', '@cloudflare', 'https://ethanheilman.com', '未知', 'ethan.r.heilman@gmail.com', NULL, 'Network Security/Crypto Researcher looking at Bitcoin and the RPKI.', NULL, 0, 0, 211, 94, 0, 0, 0, '2010-05-12T20:40:50Z', '2024-11-04T12:56:12Z', 'https://avatars.githubusercontent.com/u/274814?v=4', 'https://api.github.com/users/EthanHeilman', 'https://github.com/EthanHeilman', 'https://api.github.com/users/EthanHeilman/followers', 'https://api.github.com/users/EthanHeilman/following', 'https://api.github.com/users/EthanHeilman/gists', 'https://api.github.com/users/EthanHeilman/starred', 'https://api.github.com/users/EthanHeilman/repos', 'https://api.github.com/users/EthanHeilman/events', 'https://api.github.com/users/EthanHeilman/received_events', 0); +INSERT INTO `developer` VALUES (283533, 'OttoAllmendinger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Otto Allmendinger', NULL, '', 'Karlsruhe', 'otto.allmendinger@gmail.com', NULL, NULL, NULL, 0, 0, 68, 5, 0, 0, 0, '2010-05-21T16:54:07Z', '2024-09-03T08:23:00Z', 'https://avatars.githubusercontent.com/u/283533?v=4', 'https://api.github.com/users/OttoAllmendinger', 'https://github.com/OttoAllmendinger', 'https://api.github.com/users/OttoAllmendinger/followers', 'https://api.github.com/users/OttoAllmendinger/following', 'https://api.github.com/users/OttoAllmendinger/gists', 'https://api.github.com/users/OttoAllmendinger/starred', 'https://api.github.com/users/OttoAllmendinger/repos', 'https://api.github.com/users/OttoAllmendinger/events', 'https://api.github.com/users/OttoAllmendinger/received_events', 0); +INSERT INTO `developer` VALUES (283663, 'fleger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Léger', NULL, '', 'France', NULL, NULL, NULL, NULL, 0, 0, 13, 17, 0, 0, 0, '2010-05-21T19:39:36Z', '2024-02-14T17:36:55Z', 'https://avatars.githubusercontent.com/u/283663?v=4', 'https://api.github.com/users/fleger', 'https://github.com/fleger', 'https://api.github.com/users/fleger/followers', 'https://api.github.com/users/fleger/following', 'https://api.github.com/users/fleger/gists', 'https://api.github.com/users/fleger/starred', 'https://api.github.com/users/fleger/repos', 'https://api.github.com/users/fleger/events', 'https://api.github.com/users/fleger/received_events', 0); +INSERT INTO `developer` VALUES (287189, 'maraoz', 'C', 7.068326759230864, 0, 0, 0, 0, 0, 0, 'maraoz', NULL, 'https://maraoz.com', 'Planet Earth', NULL, 'true', NULL, NULL, 0, 0, 697, 97, 0, 0, 0, '2010-05-26T00:32:58Z', '2024-10-16T13:59:22Z', 'https://avatars.githubusercontent.com/u/287189?v=4', 'https://api.github.com/users/maraoz', 'https://github.com/maraoz', 'https://api.github.com/users/maraoz/followers', 'https://api.github.com/users/maraoz/following', 'https://api.github.com/users/maraoz/gists', 'https://api.github.com/users/maraoz/starred', 'https://api.github.com/users/maraoz/repos', 'https://api.github.com/users/maraoz/events', 'https://api.github.com/users/maraoz/received_events', 0); +INSERT INTO `developer` VALUES (287824, 'joshmg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Green', 'Software Verde, LLC', '', 'Columbus, OH', 'josh@softwareverde.com', NULL, NULL, NULL, 0, 0, 23, 6, 0, 0, 0, '2010-05-26T16:40:12Z', '2024-08-15T14:15:49Z', 'https://avatars.githubusercontent.com/u/287824?v=4', 'https://api.github.com/users/joshmg', 'https://github.com/joshmg', 'https://api.github.com/users/joshmg/followers', 'https://api.github.com/users/joshmg/following', 'https://api.github.com/users/joshmg/gists', 'https://api.github.com/users/joshmg/starred', 'https://api.github.com/users/joshmg/repos', 'https://api.github.com/users/joshmg/events', 'https://api.github.com/users/joshmg/received_events', 0); +INSERT INTO `developer` VALUES (288011, 'jlopp', 'C+', 14.665122619127317, 0, 0, 0, 0, 0, 0, 'Jameson Lopp', 'Casa', 'https://www.lopp.net', 'United States', NULL, NULL, 'Cypherpunk\r\nnpub17u5dneh8qjp43ecfxr6u5e9sjamsmxyuekrg2nlxrrk6nj9rsyrqywt4tp', 'lopp', 0, 0, 1140, 0, 0, 0, 0, '2010-05-26T20:12:00Z', '2024-11-01T11:08:18Z', 'https://avatars.githubusercontent.com/u/288011?v=4', 'https://api.github.com/users/jlopp', 'https://github.com/jlopp', 'https://api.github.com/users/jlopp/followers', 'https://api.github.com/users/jlopp/following', 'https://api.github.com/users/jlopp/gists', 'https://api.github.com/users/jlopp/starred', 'https://api.github.com/users/jlopp/repos', 'https://api.github.com/users/jlopp/events', 'https://api.github.com/users/jlopp/received_events', 0); +INSERT INTO `developer` VALUES (292174, 'ofpiyush', 'C', 0, 0, 0, 0, 0, 0, 0, 'Piyush', NULL, '', '未知', NULL, 'true', NULL, 'ofpiyush', 0, 0, 62, 21, 0, 0, 0, '2010-05-31T10:15:23Z', '2024-11-04T19:15:52Z', 'https://avatars.githubusercontent.com/u/292174?v=4', 'https://api.github.com/users/ofpiyush', 'https://github.com/ofpiyush', 'https://api.github.com/users/ofpiyush/followers', 'https://api.github.com/users/ofpiyush/following', 'https://api.github.com/users/ofpiyush/gists', 'https://api.github.com/users/ofpiyush/starred', 'https://api.github.com/users/ofpiyush/repos', 'https://api.github.com/users/ofpiyush/events', 'https://api.github.com/users/ofpiyush/received_events', 0); +INSERT INTO `developer` VALUES (295376, 'rightjoin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2010-06-03T11:13:09Z', '2024-08-04T03:39:24Z', 'https://avatars.githubusercontent.com/u/295376?v=4', 'https://api.github.com/users/rightjoin', 'https://github.com/rightjoin', 'https://api.github.com/users/rightjoin/followers', 'https://api.github.com/users/rightjoin/following', 'https://api.github.com/users/rightjoin/gists', 'https://api.github.com/users/rightjoin/starred', 'https://api.github.com/users/rightjoin/repos', 'https://api.github.com/users/rightjoin/events', 'https://api.github.com/users/rightjoin/received_events', 0); +INSERT INTO `developer` VALUES (295504, 'scravy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julian Bertram', NULL, 'https://www.scravy.de/', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 124, 30, 0, 0, 0, '2010-06-03T13:36:55Z', '2024-04-07T00:24:56Z', 'https://avatars.githubusercontent.com/u/295504?v=4', 'https://api.github.com/users/scravy', 'https://github.com/scravy', 'https://api.github.com/users/scravy/followers', 'https://api.github.com/users/scravy/following', 'https://api.github.com/users/scravy/gists', 'https://api.github.com/users/scravy/starred', 'https://api.github.com/users/scravy/repos', 'https://api.github.com/users/scravy/events', 'https://api.github.com/users/scravy/received_events', 0); +INSERT INTO `developer` VALUES (296540, 'Flavien', 'C', 0, 0, 0, 0, 0, 0, 0, 'Flavien Charlon', 'Toast', '', 'Dublin, Ireland', NULL, NULL, NULL, NULL, 0, 0, 184, 1, 0, 0, 0, '2010-06-04T12:54:10Z', '2024-10-11T22:47:20Z', 'https://avatars.githubusercontent.com/u/296540?v=4', 'https://api.github.com/users/Flavien', 'https://github.com/Flavien', 'https://api.github.com/users/Flavien/followers', 'https://api.github.com/users/Flavien/following', 'https://api.github.com/users/Flavien/gists', 'https://api.github.com/users/Flavien/starred', 'https://api.github.com/users/Flavien/repos', 'https://api.github.com/users/Flavien/events', 'https://api.github.com/users/Flavien/received_events', 0); +INSERT INTO `developer` VALUES (299404, 'mseashor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Seashore', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2010-06-08T01:16:29Z', '2024-10-30T06:19:42Z', 'https://avatars.githubusercontent.com/u/299404?v=4', 'https://api.github.com/users/mseashor', 'https://github.com/mseashor', 'https://api.github.com/users/mseashor/followers', 'https://api.github.com/users/mseashor/following', 'https://api.github.com/users/mseashor/gists', 'https://api.github.com/users/mseashor/starred', 'https://api.github.com/users/mseashor/repos', 'https://api.github.com/users/mseashor/events', 'https://api.github.com/users/mseashor/received_events', 0); +INSERT INTO `developer` VALUES (300805, 'D4nte', 'C', 0, 0, 0, 0, 0, 0, 0, 'Franck R.', '@status-im', '', '未知', NULL, NULL, 'new account: @fryorcraken', 'fryorcraken', 0, 0, 35, 2, 0, 0, 0, '2010-06-09T12:05:47Z', '2024-03-13T02:59:31Z', 'https://avatars.githubusercontent.com/u/300805?v=4', 'https://api.github.com/users/D4nte', 'https://github.com/D4nte', 'https://api.github.com/users/D4nte/followers', 'https://api.github.com/users/D4nte/following', 'https://api.github.com/users/D4nte/gists', 'https://api.github.com/users/D4nte/starred', 'https://api.github.com/users/D4nte/repos', 'https://api.github.com/users/D4nte/events', 'https://api.github.com/users/D4nte/received_events', 0); +INSERT INTO `developer` VALUES (301810, 'cbeams', 'C', 8.06294111560557, 0, 0, 0, 0, 0, 0, 'cbeams', NULL, 'cbea.ms', '未知', NULL, NULL, NULL, 'cbeams', 0, 0, 755, 0, 0, 0, 0, '2010-06-10T12:30:20Z', '2024-10-15T09:12:26Z', 'https://avatars.githubusercontent.com/u/301810?v=4', 'https://api.github.com/users/cbeams', 'https://github.com/cbeams', 'https://api.github.com/users/cbeams/followers', 'https://api.github.com/users/cbeams/following', 'https://api.github.com/users/cbeams/gists', 'https://api.github.com/users/cbeams/starred', 'https://api.github.com/users/cbeams/repos', 'https://api.github.com/users/cbeams/events', 'https://api.github.com/users/cbeams/received_events', 0); +INSERT INTO `developer` VALUES (302268, 'farproc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Bateman', NULL, 'http://farproc.github.com/', '未知', NULL, 'true', NULL, NULL, 0, 0, 12, 3, 0, 0, 0, '2010-06-10T21:45:40Z', '2024-10-25T19:31:12Z', 'https://avatars.githubusercontent.com/u/302268?v=4', 'https://api.github.com/users/farproc', 'https://github.com/farproc', 'https://api.github.com/users/farproc/followers', 'https://api.github.com/users/farproc/following', 'https://api.github.com/users/farproc/gists', 'https://api.github.com/users/farproc/starred', 'https://api.github.com/users/farproc/repos', 'https://api.github.com/users/farproc/events', 'https://api.github.com/users/farproc/received_events', 0); +INSERT INTO `developer` VALUES (303819, 'celil-kj', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2010-06-12T22:57:05Z', '2016-02-26T23:13:37Z', 'https://avatars.githubusercontent.com/u/303819?v=4', 'https://api.github.com/users/celil-kj', 'https://github.com/celil-kj', 'https://api.github.com/users/celil-kj/followers', 'https://api.github.com/users/celil-kj/following', 'https://api.github.com/users/celil-kj/gists', 'https://api.github.com/users/celil-kj/starred', 'https://api.github.com/users/celil-kj/repos', 'https://api.github.com/users/celil-kj/events', 'https://api.github.com/users/celil-kj/received_events', 0); +INSERT INTO `developer` VALUES (304383, 'jasonharrison', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason', 'Stanley Black & Decker', 'https://www.jasonharrison.us/?from=github', 'Loveland, Colorado', 'me@jasonh.dev', NULL, NULL, NULL, 0, 0, 32, 16, 0, 0, 0, '2010-06-13T22:23:05Z', '2024-10-29T19:55:53Z', 'https://avatars.githubusercontent.com/u/304383?v=4', 'https://api.github.com/users/jasonharrison', 'https://github.com/jasonharrison', 'https://api.github.com/users/jasonharrison/followers', 'https://api.github.com/users/jasonharrison/following', 'https://api.github.com/users/jasonharrison/gists', 'https://api.github.com/users/jasonharrison/starred', 'https://api.github.com/users/jasonharrison/repos', 'https://api.github.com/users/jasonharrison/events', 'https://api.github.com/users/jasonharrison/received_events', 0); +INSERT INTO `developer` VALUES (305278, 'dnathe4th', 'C+', 12.784042192938724, 0, 19, 221, 16, 0, 0, 'Dom Narducci', 'Uber', '', '未知', 'dom@uber.com', NULL, NULL, NULL, 0, 0, 78, 0, 0, 0, 0, '2010-06-14T22:50:40Z', '2024-08-19T07:36:35Z', 'https://avatars.githubusercontent.com/u/305278?v=4', 'https://api.github.com/users/dnathe4th', 'https://github.com/dnathe4th', 'https://api.github.com/users/dnathe4th/followers', 'https://api.github.com/users/dnathe4th/following', 'https://api.github.com/users/dnathe4th/gists', 'https://api.github.com/users/dnathe4th/starred', 'https://api.github.com/users/dnathe4th/repos', 'https://api.github.com/users/dnathe4th/events', 'https://api.github.com/users/dnathe4th/received_events', 0); +INSERT INTO `developer` VALUES (307681, 'CyberLeo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2010-06-17T13:14:53Z', '2024-09-13T16:37:28Z', 'https://avatars.githubusercontent.com/u/307681?v=4', 'https://api.github.com/users/CyberLeo', 'https://github.com/CyberLeo', 'https://api.github.com/users/CyberLeo/followers', 'https://api.github.com/users/CyberLeo/following', 'https://api.github.com/users/CyberLeo/gists', 'https://api.github.com/users/CyberLeo/starred', 'https://api.github.com/users/CyberLeo/repos', 'https://api.github.com/users/CyberLeo/events', 'https://api.github.com/users/CyberLeo/received_events', 0); +INSERT INTO `developer` VALUES (309628, 'ppiotr3k', 'C', 0, 0, 0, 0, 0, 0, 0, 'Piotr PAWLICKI', NULL, '', 'Earth > France > Paris', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2010-06-19T21:00:38Z', '2024-10-28T11:19:22Z', 'https://avatars.githubusercontent.com/u/309628?v=4', 'https://api.github.com/users/ppiotr3k', 'https://github.com/ppiotr3k', 'https://api.github.com/users/ppiotr3k/followers', 'https://api.github.com/users/ppiotr3k/following', 'https://api.github.com/users/ppiotr3k/gists', 'https://api.github.com/users/ppiotr3k/starred', 'https://api.github.com/users/ppiotr3k/repos', 'https://api.github.com/users/ppiotr3k/events', 'https://api.github.com/users/ppiotr3k/received_events', 0); +INSERT INTO `developer` VALUES (320064, 'andygrunwald', 'C', 2.9698296700316495, 0, 0, 0, 0, 0, 0, 'Andy Grunwald', '@aiven @sourcectl', 'https://andygrunwald.com/', 'Duisburg, Germany', 'andygrunwald@gmail.com', NULL, 'I solve problems and put things into production.', 'andygrunwald', 0, 0, 458, 189, 0, 0, 0, '2010-07-01T13:27:14Z', '2024-11-04T12:20:04Z', 'https://avatars.githubusercontent.com/u/320064?v=4', 'https://api.github.com/users/andygrunwald', 'https://github.com/andygrunwald', 'https://api.github.com/users/andygrunwald/followers', 'https://api.github.com/users/andygrunwald/following', 'https://api.github.com/users/andygrunwald/gists', 'https://api.github.com/users/andygrunwald/starred', 'https://api.github.com/users/andygrunwald/repos', 'https://api.github.com/users/andygrunwald/events', 'https://api.github.com/users/andygrunwald/received_events', 0); +INSERT INTO `developer` VALUES (326929, 'Flydiverny', 'C', 0, 0, 0, 0, 0, 0, 0, 'Markus Maga', '@doktor-se', 'https://markusmaga.se', 'Sweden', 'github@markusmaga.se', NULL, 'FullStack dev playing in DevOps land and improving DevExp with internal toys!', 'flydiverny', 0, 0, 38, 37, 0, 0, 0, '2010-07-09T00:13:48Z', '2024-10-28T11:19:23Z', 'https://avatars.githubusercontent.com/u/326929?v=4', 'https://api.github.com/users/Flydiverny', 'https://github.com/Flydiverny', 'https://api.github.com/users/Flydiverny/followers', 'https://api.github.com/users/Flydiverny/following', 'https://api.github.com/users/Flydiverny/gists', 'https://api.github.com/users/Flydiverny/starred', 'https://api.github.com/users/Flydiverny/repos', 'https://api.github.com/users/Flydiverny/events', 'https://api.github.com/users/Flydiverny/received_events', 0); +INSERT INTO `developer` VALUES (329248, 'crystalin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alan Sapede', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 45, 1, 0, 0, 0, '2010-07-12T06:01:40Z', '2024-10-17T15:03:56Z', 'https://avatars.githubusercontent.com/u/329248?v=4', 'https://api.github.com/users/crystalin', 'https://github.com/crystalin', 'https://api.github.com/users/crystalin/followers', 'https://api.github.com/users/crystalin/following', 'https://api.github.com/users/crystalin/gists', 'https://api.github.com/users/crystalin/starred', 'https://api.github.com/users/crystalin/repos', 'https://api.github.com/users/crystalin/events', 'https://api.github.com/users/crystalin/received_events', 0); +INSERT INTO `developer` VALUES (329265, 'Gallardot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gallardot', '@apache, @cncf, XPENG Motors', '', 'Guangzhou, China', 'gallardot@apache.org', NULL, NULL, 'Gallardot68112', 0, 0, 47, 4, 0, 0, 0, '2010-07-12T06:39:53Z', '2024-10-22T11:19:01Z', 'https://avatars.githubusercontent.com/u/329265?v=4', 'https://api.github.com/users/Gallardot', 'https://github.com/Gallardot', 'https://api.github.com/users/Gallardot/followers', 'https://api.github.com/users/Gallardot/following', 'https://api.github.com/users/Gallardot/gists', 'https://api.github.com/users/Gallardot/starred', 'https://api.github.com/users/Gallardot/repos', 'https://api.github.com/users/Gallardot/events', 'https://api.github.com/users/Gallardot/received_events', 0); +INSERT INTO `developer` VALUES (331997, 'gavinandresen', 'B-', 34.351627465992166, 0, 0, 0, 0, 0, 0, 'Gavin Andresen', 'Clearwing Software', 'http://gavinthink.blogspot.com', 'Amherst, MA', 'gavinandresen@gmail.com', NULL, NULL, NULL, 0, 0, 2288, 0, 0, 0, 0, '2010-07-14T14:49:54Z', '2024-09-23T20:51:06Z', 'https://avatars.githubusercontent.com/u/331997?v=4', 'https://api.github.com/users/gavinandresen', 'https://github.com/gavinandresen', 'https://api.github.com/users/gavinandresen/followers', 'https://api.github.com/users/gavinandresen/following', 'https://api.github.com/users/gavinandresen/gists', 'https://api.github.com/users/gavinandresen/starred', 'https://api.github.com/users/gavinandresen/repos', 'https://api.github.com/users/gavinandresen/events', 'https://api.github.com/users/gavinandresen/received_events', 0); +INSERT INTO `developer` VALUES (334661, 'dmacthedestroyer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel McDonald', NULL, '', 'Tacoma, WA', 'mcdonald.daniel.james@gmail.com', NULL, NULL, NULL, 0, 0, 8, 5, 0, 0, 0, '2010-07-17T04:53:25Z', '2024-11-01T11:21:22Z', 'https://avatars.githubusercontent.com/u/334661?v=4', 'https://api.github.com/users/dmacthedestroyer', 'https://github.com/dmacthedestroyer', 'https://api.github.com/users/dmacthedestroyer/followers', 'https://api.github.com/users/dmacthedestroyer/following', 'https://api.github.com/users/dmacthedestroyer/gists', 'https://api.github.com/users/dmacthedestroyer/starred', 'https://api.github.com/users/dmacthedestroyer/repos', 'https://api.github.com/users/dmacthedestroyer/events', 'https://api.github.com/users/dmacthedestroyer/received_events', 0); +INSERT INTO `developer` VALUES (335173, 'irvingruan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Irving Ruan', NULL, 'http://irvingruan.com', 'Bay Area, CA', 'irvingruan@gmail.com', NULL, NULL, NULL, 0, 0, 27, 38, 0, 0, 0, '2010-07-17T23:02:28Z', '2020-03-05T18:21:57Z', 'https://avatars.githubusercontent.com/u/335173?v=4', 'https://api.github.com/users/irvingruan', 'https://github.com/irvingruan', 'https://api.github.com/users/irvingruan/followers', 'https://api.github.com/users/irvingruan/following', 'https://api.github.com/users/irvingruan/gists', 'https://api.github.com/users/irvingruan/starred', 'https://api.github.com/users/irvingruan/repos', 'https://api.github.com/users/irvingruan/events', 'https://api.github.com/users/irvingruan/received_events', 0); +INSERT INTO `developer` VALUES (339369, 'alexanderkjeldaas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Kjeldaas', 'Founder of a startup', '', 'Scandinavia', NULL, 'true', NULL, NULL, 0, 0, 29, 3, 0, 0, 0, '2010-07-21T06:34:37Z', '2024-10-30T18:13:28Z', 'https://avatars.githubusercontent.com/u/339369?v=4', 'https://api.github.com/users/alexanderkjeldaas', 'https://github.com/alexanderkjeldaas', 'https://api.github.com/users/alexanderkjeldaas/followers', 'https://api.github.com/users/alexanderkjeldaas/following', 'https://api.github.com/users/alexanderkjeldaas/gists', 'https://api.github.com/users/alexanderkjeldaas/starred', 'https://api.github.com/users/alexanderkjeldaas/repos', 'https://api.github.com/users/alexanderkjeldaas/events', 'https://api.github.com/users/alexanderkjeldaas/received_events', 0); +INSERT INTO `developer` VALUES (340093, 'MattLud', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt L. ', NULL, '', 'Austin, TX', NULL, NULL, NULL, NULL, 0, 0, 6, 3, 0, 0, 0, '2010-07-21T19:53:24Z', '2024-07-12T15:30:56Z', 'https://avatars.githubusercontent.com/u/340093?v=4', 'https://api.github.com/users/MattLud', 'https://github.com/MattLud', 'https://api.github.com/users/MattLud/followers', 'https://api.github.com/users/MattLud/following', 'https://api.github.com/users/MattLud/gists', 'https://api.github.com/users/MattLud/starred', 'https://api.github.com/users/MattLud/repos', 'https://api.github.com/users/MattLud/events', 'https://api.github.com/users/MattLud/received_events', 0); +INSERT INTO `developer` VALUES (344071, 'j16r', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Barker', NULL, '', 'Colorado', 'gh@j16r.net', NULL, '', NULL, 0, 0, 88, 63, 0, 0, 0, '2010-07-26T05:46:25Z', '2024-10-28T02:25:52Z', 'https://avatars.githubusercontent.com/u/344071?v=4', 'https://api.github.com/users/j16r', 'https://github.com/j16r', 'https://api.github.com/users/j16r/followers', 'https://api.github.com/users/j16r/following', 'https://api.github.com/users/j16r/gists', 'https://api.github.com/users/j16r/starred', 'https://api.github.com/users/j16r/repos', 'https://api.github.com/users/j16r/events', 'https://api.github.com/users/j16r/received_events', 0); +INSERT INTO `developer` VALUES (344326, 'jlyheden', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johan Lyheden', NULL, 'http://www.lyheden.com', 'Sweden', NULL, NULL, NULL, NULL, 0, 0, 11, 12, 0, 0, 0, '2010-07-26T10:42:23Z', '2024-09-30T07:33:34Z', 'https://avatars.githubusercontent.com/u/344326?v=4', 'https://api.github.com/users/jlyheden', 'https://github.com/jlyheden', 'https://api.github.com/users/jlyheden/followers', 'https://api.github.com/users/jlyheden/following', 'https://api.github.com/users/jlyheden/gists', 'https://api.github.com/users/jlyheden/starred', 'https://api.github.com/users/jlyheden/repos', 'https://api.github.com/users/jlyheden/events', 'https://api.github.com/users/jlyheden/received_events', 0); +INSERT INTO `developer` VALUES (347290, 'bytemaster', 'B', 49.52807066239931, 0, 0, 0, 0, 0, 0, 'Daniel Larimer', NULL, 'moreequalanimals.com', 'Virginia', NULL, NULL, NULL, 'bytemaster7', 0, 0, 3173, 1, 0, 0, 0, '2010-07-28T18:27:15Z', '2023-06-10T00:25:38Z', 'https://avatars.githubusercontent.com/u/347290?v=4', 'https://api.github.com/users/bytemaster', 'https://github.com/bytemaster', 'https://api.github.com/users/bytemaster/followers', 'https://api.github.com/users/bytemaster/following', 'https://api.github.com/users/bytemaster/gists', 'https://api.github.com/users/bytemaster/starred', 'https://api.github.com/users/bytemaster/repos', 'https://api.github.com/users/bytemaster/events', 'https://api.github.com/users/bytemaster/received_events', 0); +INSERT INTO `developer` VALUES (347481, 'lachesis', 'C', 0, 0, 0, 1, 156, 0, 0, 'Eric Swanson', NULL, 'https://alloscomp.com/', 'Cincinnati, OH', NULL, NULL, NULL, NULL, 0, 0, 117, 0, 0, 0, 0, '2010-07-28T22:19:09Z', '2024-07-29T17:07:40Z', 'https://avatars.githubusercontent.com/u/347481?v=4', 'https://api.github.com/users/lachesis', 'https://github.com/lachesis', 'https://api.github.com/users/lachesis/followers', 'https://api.github.com/users/lachesis/following', 'https://api.github.com/users/lachesis/gists', 'https://api.github.com/users/lachesis/starred', 'https://api.github.com/users/lachesis/repos', 'https://api.github.com/users/lachesis/events', 'https://api.github.com/users/lachesis/received_events', 0); +INSERT INTO `developer` VALUES (348922, 'genjix', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 252, 3, 0, 0, 0, '2010-07-30T04:37:03Z', '2024-08-05T07:31:59Z', 'https://avatars.githubusercontent.com/u/348922?v=4', 'https://api.github.com/users/genjix', 'https://github.com/genjix', 'https://api.github.com/users/genjix/followers', 'https://api.github.com/users/genjix/following', 'https://api.github.com/users/genjix/gists', 'https://api.github.com/users/genjix/starred', 'https://api.github.com/users/genjix/repos', 'https://api.github.com/users/genjix/events', 'https://api.github.com/users/genjix/received_events', 0); +INSERT INTO `developer` VALUES (349931, 'junhuif', 'C', 0, 0, 0, 0, 0, 0, 0, 'junhuif', '@theplant ', '', 'HangZhou China', 'junhuif@theplant.jp', NULL, NULL, NULL, 0, 0, 14, 33, 0, 0, 0, '2010-07-31T06:48:12Z', '2024-10-17T03:23:50Z', 'https://avatars.githubusercontent.com/u/349931?v=4', 'https://api.github.com/users/junhuif', 'https://github.com/junhuif', 'https://api.github.com/users/junhuif/followers', 'https://api.github.com/users/junhuif/following', 'https://api.github.com/users/junhuif/gists', 'https://api.github.com/users/junhuif/starred', 'https://api.github.com/users/junhuif/repos', 'https://api.github.com/users/junhuif/events', 'https://api.github.com/users/junhuif/received_events', 0); +INSERT INTO `developer` VALUES (350735, 'hno', 'C', 0, 0, 0, 0, 0, 0, 0, 'Henrik Nordström', 'Addiva Elektronik AB', 'www.henriknordstrom.net', 'Surahammar, Västmanland, Sweden', 'henrik@henriknordstrom.net', NULL, NULL, NULL, 0, 0, 136, 7, 0, 0, 0, '2010-08-01T12:48:12Z', '2024-06-28T11:29:46Z', 'https://avatars.githubusercontent.com/u/350735?v=4', 'https://api.github.com/users/hno', 'https://github.com/hno', 'https://api.github.com/users/hno/followers', 'https://api.github.com/users/hno/following', 'https://api.github.com/users/hno/gists', 'https://api.github.com/users/hno/starred', 'https://api.github.com/users/hno/repos', 'https://api.github.com/users/hno/events', 'https://api.github.com/users/hno/received_events', 0); +INSERT INTO `developer` VALUES (354641, 'cdhowie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Howie', 'Gideo', 'http://www.chrishowie.com', '未知', 'me@chrishowie.com', NULL, 'I like to make things.\r\n\r\nIf you appreciate my projects and contributions, Bitcoin tips are accepted at bc1qv8e0x0ja8gdxv9sxfef4t6kctunpfjfwh6leu6.', NULL, 0, 0, 32, 0, 0, 0, 0, '2010-08-05T01:49:55Z', '2024-10-22T21:50:54Z', 'https://avatars.githubusercontent.com/u/354641?v=4', 'https://api.github.com/users/cdhowie', 'https://github.com/cdhowie', 'https://api.github.com/users/cdhowie/followers', 'https://api.github.com/users/cdhowie/following', 'https://api.github.com/users/cdhowie/gists', 'https://api.github.com/users/cdhowie/starred', 'https://api.github.com/users/cdhowie/repos', 'https://api.github.com/users/cdhowie/events', 'https://api.github.com/users/cdhowie/received_events', 0); +INSERT INTO `developer` VALUES (355264, 'brunoro', 'C', 0, 0, 0, 1, 357, 19, 0, 'Gustavo Brunoro', NULL, 'hitnail.net', '未知', NULL, NULL, NULL, NULL, 0, 0, 44, 37, 0, 0, 0, '2010-08-05T14:43:42Z', '2024-10-24T14:12:36Z', 'https://avatars.githubusercontent.com/u/355264?v=4', 'https://api.github.com/users/brunoro', 'https://github.com/brunoro', 'https://api.github.com/users/brunoro/followers', 'https://api.github.com/users/brunoro/following', 'https://api.github.com/users/brunoro/gists', 'https://api.github.com/users/brunoro/starred', 'https://api.github.com/users/brunoro/repos', 'https://api.github.com/users/brunoro/events', 'https://api.github.com/users/brunoro/received_events', 0); +INSERT INTO `developer` VALUES (355646, 'llonchj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jordi Llonch', NULL, '', 'Victoria / Australia', 'llonchj@gmail.com', 'true', NULL, NULL, 0, 0, 33, 19, 0, 0, 0, '2010-08-05T21:39:01Z', '2024-09-27T20:58:11Z', 'https://avatars.githubusercontent.com/u/355646?v=4', 'https://api.github.com/users/llonchj', 'https://github.com/llonchj', 'https://api.github.com/users/llonchj/followers', 'https://api.github.com/users/llonchj/following', 'https://api.github.com/users/llonchj/gists', 'https://api.github.com/users/llonchj/starred', 'https://api.github.com/users/llonchj/repos', 'https://api.github.com/users/llonchj/events', 'https://api.github.com/users/llonchj/received_events', 0); +INSERT INTO `developer` VALUES (358936, 'lonoami', 'C', 0, 0, 0, 0, 0, 0, 0, 'johan', NULL, '', '未知', 'lonoami@gmail.com', NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2010-08-09T18:25:17Z', '2024-01-24T22:09:04Z', 'https://avatars.githubusercontent.com/u/358936?v=4', 'https://api.github.com/users/lonoami', 'https://github.com/lonoami', 'https://api.github.com/users/lonoami/followers', 'https://api.github.com/users/lonoami/following', 'https://api.github.com/users/lonoami/gists', 'https://api.github.com/users/lonoami/starred', 'https://api.github.com/users/lonoami/repos', 'https://api.github.com/users/lonoami/events', 'https://api.github.com/users/lonoami/received_events', 0); +INSERT INTO `developer` VALUES (363932, 'ReSTARTR', 'C', 0, 0, 0, 0, 0, 0, 0, 'Masaki Yoshida', 'Freelance Software Engineer', 'https://medium.com/@restartr', 'Tokyo, Japan', NULL, 'true', '\r\n since 2006\r\n', 'restartr', 0, 0, 21, 34, 0, 0, 0, '2010-08-13T23:44:42Z', '2024-10-22T23:10:22Z', 'https://avatars.githubusercontent.com/u/363932?v=4', 'https://api.github.com/users/ReSTARTR', 'https://github.com/ReSTARTR', 'https://api.github.com/users/ReSTARTR/followers', 'https://api.github.com/users/ReSTARTR/following', 'https://api.github.com/users/ReSTARTR/gists', 'https://api.github.com/users/ReSTARTR/starred', 'https://api.github.com/users/ReSTARTR/repos', 'https://api.github.com/users/ReSTARTR/events', 'https://api.github.com/users/ReSTARTR/received_events', 0); +INSERT INTO `developer` VALUES (365690, 'Mischi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fabian Raetz', NULL, '', 'Germany, Dortmund', 'fabian.raetz@gmail.com', NULL, NULL, NULL, 0, 0, 36, 94, 0, 0, 0, '2010-08-16T08:44:06Z', '2024-10-01T18:02:21Z', 'https://avatars.githubusercontent.com/u/365690?v=4', 'https://api.github.com/users/Mischi', 'https://github.com/Mischi', 'https://api.github.com/users/Mischi/followers', 'https://api.github.com/users/Mischi/following', 'https://api.github.com/users/Mischi/gists', 'https://api.github.com/users/Mischi/starred', 'https://api.github.com/users/Mischi/repos', 'https://api.github.com/users/Mischi/events', 'https://api.github.com/users/Mischi/received_events', 0); +INSERT INTO `developer` VALUES (368986, 'zingo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zingo Andersen', 'CrazyCapy', 'http://www.zingo.org', 'Lund, Sweden', 'zingo@zingo.org', NULL, 'Happy hacker both at home and at work at ARM', 'ninjazingo', 0, 0, 6, 6, 0, 0, 0, '2010-08-18T22:16:21Z', '2024-10-28T10:50:57Z', 'https://avatars.githubusercontent.com/u/368986?v=4', 'https://api.github.com/users/zingo', 'https://github.com/zingo', 'https://api.github.com/users/zingo/followers', 'https://api.github.com/users/zingo/following', 'https://api.github.com/users/zingo/gists', 'https://api.github.com/users/zingo/starred', 'https://api.github.com/users/zingo/repos', 'https://api.github.com/users/zingo/events', 'https://api.github.com/users/zingo/received_events', 0); +INSERT INTO `developer` VALUES (371222, 'Earlz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ash Earlz', '@earlgreytech and @qtumproject ', '', 'Denver, Colorado', NULL, NULL, 'idk', NULL, 0, 0, 102, 0, 0, 0, 0, '2010-08-20T19:23:40Z', '2024-10-25T22:04:40Z', 'https://avatars.githubusercontent.com/u/371222?v=4', 'https://api.github.com/users/Earlz', 'https://github.com/Earlz', 'https://api.github.com/users/Earlz/followers', 'https://api.github.com/users/Earlz/following', 'https://api.github.com/users/Earlz/gists', 'https://api.github.com/users/Earlz/starred', 'https://api.github.com/users/Earlz/repos', 'https://api.github.com/users/Earlz/events', 'https://api.github.com/users/Earlz/received_events', 0); +INSERT INTO `developer` VALUES (372034, 'dr-orlovsky', 'C', 3.518582418376315, 0, 0, 0, 0, 0, 0, 'Dr. Maxim Orlovsky', '@Pandora-Prime', 'https://dr.orlovsky.ch', 'Zug', NULL, NULL, 'Researcher, engineer, transhumanist. @RGB-WG @BP-WG @LNP-WG @Cyphernet-Labs @AluVM @Strict-Types creator & lead engineer. // MD, PhD (Neuroscience)', 'dr_orlovsky', 0, 0, 490, 335, 0, 0, 0, '2010-08-21T20:19:38Z', '2024-11-02T21:10:14Z', 'https://avatars.githubusercontent.com/u/372034?v=4', 'https://api.github.com/users/dr-orlovsky', 'https://github.com/dr-orlovsky', 'https://api.github.com/users/dr-orlovsky/followers', 'https://api.github.com/users/dr-orlovsky/following', 'https://api.github.com/users/dr-orlovsky/gists', 'https://api.github.com/users/dr-orlovsky/starred', 'https://api.github.com/users/dr-orlovsky/repos', 'https://api.github.com/users/dr-orlovsky/events', 'https://api.github.com/users/dr-orlovsky/received_events', 0); +INSERT INTO `developer` VALUES (372794, 'glb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Geoff Baskwill', NULL, '', 'Canada', NULL, NULL, 'Learning daily.', NULL, 0, 0, 15, 1, 0, 0, 0, '2010-08-22T21:16:44Z', '2024-10-26T16:51:46Z', 'https://avatars.githubusercontent.com/u/372794?v=4', 'https://api.github.com/users/glb', 'https://github.com/glb', 'https://api.github.com/users/glb/followers', 'https://api.github.com/users/glb/following', 'https://api.github.com/users/glb/gists', 'https://api.github.com/users/glb/starred', 'https://api.github.com/users/glb/repos', 'https://api.github.com/users/glb/events', 'https://api.github.com/users/glb/received_events', 0); +INSERT INTO `developer` VALUES (375258, 'itchyny', 'C+', 14.71656818928463, 0, 0, 0, 0, 0, 0, 'itchyny', 'Cybozu, Inc.', '', 'Kyoto, Japan', NULL, NULL, 'Professional of jq.', NULL, 0, 0, 1143, 0, 0, 0, 0, '2010-08-25T02:08:41Z', '2024-11-05T00:11:39Z', 'https://avatars.githubusercontent.com/u/375258?v=4', 'https://api.github.com/users/itchyny', 'https://github.com/itchyny', 'https://api.github.com/users/itchyny/followers', 'https://api.github.com/users/itchyny/following', 'https://api.github.com/users/itchyny/gists', 'https://api.github.com/users/itchyny/starred', 'https://api.github.com/users/itchyny/repos', 'https://api.github.com/users/itchyny/events', 'https://api.github.com/users/itchyny/received_events', 0); +INSERT INTO `developer` VALUES (379820, 'zaneli', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shunsuke Otani', '@zauel', 'https://www.zaneli.com/', 'Tokyo, Japan', 'shun.otani@gmail.com', NULL, NULL, 'so_zaneli', 0, 0, 31, 0, 0, 0, 0, '2010-08-29T15:48:41Z', '2024-09-24T02:45:11Z', 'https://avatars.githubusercontent.com/u/379820?v=4', 'https://api.github.com/users/zaneli', 'https://github.com/zaneli', 'https://api.github.com/users/zaneli/followers', 'https://api.github.com/users/zaneli/following', 'https://api.github.com/users/zaneli/gists', 'https://api.github.com/users/zaneli/starred', 'https://api.github.com/users/zaneli/repos', 'https://api.github.com/users/zaneli/events', 'https://api.github.com/users/zaneli/received_events', 0); +INSERT INTO `developer` VALUES (392473, 'wuurrd', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Emanuel Buchmann', 'Nøyd AS', '', 'Oslo, Norway', 'david.buchmann@gmail.com', NULL, NULL, NULL, 0, 0, 15, 4, 0, 0, 0, '2010-09-08T19:23:09Z', '2024-08-16T18:20:40Z', 'https://avatars.githubusercontent.com/u/392473?v=4', 'https://api.github.com/users/wuurrd', 'https://github.com/wuurrd', 'https://api.github.com/users/wuurrd/followers', 'https://api.github.com/users/wuurrd/following', 'https://api.github.com/users/wuurrd/gists', 'https://api.github.com/users/wuurrd/starred', 'https://api.github.com/users/wuurrd/repos', 'https://api.github.com/users/wuurrd/events', 'https://api.github.com/users/wuurrd/received_events', 0); +INSERT INTO `developer` VALUES (402332, 'torusJKL', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gal Buki', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 22, 1, 0, 0, 0, '2010-09-16T12:26:14Z', '2024-08-24T12:56:32Z', 'https://avatars.githubusercontent.com/u/402332?v=4', 'https://api.github.com/users/torusJKL', 'https://github.com/torusJKL', 'https://api.github.com/users/torusJKL/followers', 'https://api.github.com/users/torusJKL/following', 'https://api.github.com/users/torusJKL/gists', 'https://api.github.com/users/torusJKL/starred', 'https://api.github.com/users/torusJKL/repos', 'https://api.github.com/users/torusJKL/events', 'https://api.github.com/users/torusJKL/received_events', 0); +INSERT INTO `developer` VALUES (403067, 'drakedevel', 'C', 10.841945061762427, 0, 63, 2, 30, 0, 0, 'Andrew Drake', '@frontapp', 'https://adrake.org', 'San Francisco, CA', 'adrake@adrake.org', NULL, NULL, NULL, 0, 0, 36, 3, 0, 0, 0, '2010-09-16T18:00:33Z', '2024-10-30T18:17:45Z', 'https://avatars.githubusercontent.com/u/403067?v=4', 'https://api.github.com/users/drakedevel', 'https://github.com/drakedevel', 'https://api.github.com/users/drakedevel/followers', 'https://api.github.com/users/drakedevel/following', 'https://api.github.com/users/drakedevel/gists', 'https://api.github.com/users/drakedevel/starred', 'https://api.github.com/users/drakedevel/repos', 'https://api.github.com/users/drakedevel/events', 'https://api.github.com/users/drakedevel/received_events', 0); +INSERT INTO `developer` VALUES (406223, 'jgriffiths', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 53, 0, 0, 0, 0, '2010-09-18T18:41:43Z', '2024-09-17T23:13:39Z', 'https://avatars.githubusercontent.com/u/406223?v=4', 'https://api.github.com/users/jgriffiths', 'https://github.com/jgriffiths', 'https://api.github.com/users/jgriffiths/followers', 'https://api.github.com/users/jgriffiths/following', 'https://api.github.com/users/jgriffiths/gists', 'https://api.github.com/users/jgriffiths/starred', 'https://api.github.com/users/jgriffiths/repos', 'https://api.github.com/users/jgriffiths/events', 'https://api.github.com/users/jgriffiths/received_events', 0); +INSERT INTO `developer` VALUES (406916, 'smacker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maxim Sukharev', 'Fujitsu Launchpad', '', 'Singapore', 'max@smacker.ru', NULL, NULL, NULL, 0, 0, 67, 0, 0, 0, 0, '2010-09-19T10:51:31Z', '2024-10-14T03:14:14Z', 'https://avatars.githubusercontent.com/u/406916?v=4', 'https://api.github.com/users/smacker', 'https://github.com/smacker', 'https://api.github.com/users/smacker/followers', 'https://api.github.com/users/smacker/following', 'https://api.github.com/users/smacker/gists', 'https://api.github.com/users/smacker/starred', 'https://api.github.com/users/smacker/repos', 'https://api.github.com/users/smacker/events', 'https://api.github.com/users/smacker/received_events', 0); +INSERT INTO `developer` VALUES (407342, 'wendorf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Wendorf', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2010-09-19T19:15:38Z', '2024-07-18T15:22:27Z', 'https://avatars.githubusercontent.com/u/407342?v=4', 'https://api.github.com/users/wendorf', 'https://github.com/wendorf', 'https://api.github.com/users/wendorf/followers', 'https://api.github.com/users/wendorf/following', 'https://api.github.com/users/wendorf/gists', 'https://api.github.com/users/wendorf/starred', 'https://api.github.com/users/wendorf/repos', 'https://api.github.com/users/wendorf/events', 'https://api.github.com/users/wendorf/received_events', 0); +INSERT INTO `developer` VALUES (413395, 'dcousens', 'C', 2.6097106789304636, 0, 0, 0, 0, 0, 0, 'Daniel Cousens', 'Thinkmill', 'https://dcousens.com', 'Australia', NULL, 'true', NULL, NULL, 0, 0, 437, 100, 0, 0, 0, '2010-09-23T19:12:37Z', '2024-10-28T10:54:32Z', 'https://avatars.githubusercontent.com/u/413395?v=4', 'https://api.github.com/users/dcousens', 'https://github.com/dcousens', 'https://api.github.com/users/dcousens/followers', 'https://api.github.com/users/dcousens/following', 'https://api.github.com/users/dcousens/gists', 'https://api.github.com/users/dcousens/starred', 'https://api.github.com/users/dcousens/repos', 'https://api.github.com/users/dcousens/events', 'https://api.github.com/users/dcousens/received_events', 0); +INSERT INTO `developer` VALUES (414366, 'bastianeicher', 'C', 6.327756658840937, 0, 43, 5, 44, 0, 0, 'Bastian Eicher', NULL, 'https://bastian.eicher.net/', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 33, 4, 0, 0, 0, '2010-09-24T12:36:53Z', '2024-11-01T17:17:09Z', 'https://avatars.githubusercontent.com/u/414366?v=4', 'https://api.github.com/users/bastianeicher', 'https://github.com/bastianeicher', 'https://api.github.com/users/bastianeicher/followers', 'https://api.github.com/users/bastianeicher/following', 'https://api.github.com/users/bastianeicher/gists', 'https://api.github.com/users/bastianeicher/starred', 'https://api.github.com/users/bastianeicher/repos', 'https://api.github.com/users/bastianeicher/events', 'https://api.github.com/users/bastianeicher/received_events', 0); +INSERT INTO `developer` VALUES (415000, 'Tamerz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tames McTigue', NULL, 'http://www.tamerz.com', 'Doha, Qatar', 'tames@tamerz.com', NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2010-09-24T22:52:46Z', '2024-10-17T10:09:36Z', 'https://avatars.githubusercontent.com/u/415000?v=4', 'https://api.github.com/users/Tamerz', 'https://github.com/Tamerz', 'https://api.github.com/users/Tamerz/followers', 'https://api.github.com/users/Tamerz/following', 'https://api.github.com/users/Tamerz/gists', 'https://api.github.com/users/Tamerz/starred', 'https://api.github.com/users/Tamerz/repos', 'https://api.github.com/users/Tamerz/events', 'https://api.github.com/users/Tamerz/received_events', 0); +INSERT INTO `developer` VALUES (416477, 'ScottBrenner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Brenner', NULL, 'https://www.scottbrenner.me/', 'San Francisco, CA', 'scott@scottbrenner.me', NULL, 'NoDevSecNetGitSysChatTestOps', NULL, 0, 0, 91, 79, 0, 0, 0, '2010-09-26T15:22:12Z', '2024-08-29T22:14:00Z', 'https://avatars.githubusercontent.com/u/416477?v=4', 'https://api.github.com/users/ScottBrenner', 'https://github.com/ScottBrenner', 'https://api.github.com/users/ScottBrenner/followers', 'https://api.github.com/users/ScottBrenner/following', 'https://api.github.com/users/ScottBrenner/gists', 'https://api.github.com/users/ScottBrenner/starred', 'https://api.github.com/users/ScottBrenner/repos', 'https://api.github.com/users/ScottBrenner/events', 'https://api.github.com/users/ScottBrenner/received_events', 0); +INSERT INTO `developer` VALUES (417043, 'theuni', 'C+', 13.550468599052218, 0, 0, 0, 0, 0, 0, 'Cory Fields', NULL, 'http://coryfields.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 1075, 1, 0, 0, 0, '2010-09-27T03:18:12Z', '2024-10-31T13:26:35Z', 'https://avatars.githubusercontent.com/u/417043?v=4', 'https://api.github.com/users/theuni', 'https://github.com/theuni', 'https://api.github.com/users/theuni/followers', 'https://api.github.com/users/theuni/following', 'https://api.github.com/users/theuni/gists', 'https://api.github.com/users/theuni/starred', 'https://api.github.com/users/theuni/repos', 'https://api.github.com/users/theuni/events', 'https://api.github.com/users/theuni/received_events', 0); +INSERT INTO `developer` VALUES (420132, 'aboyett', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Boyett', 'CloudPhysics', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2010-09-29T02:54:05Z', '2024-10-21T01:21:43Z', 'https://avatars.githubusercontent.com/u/420132?v=4', 'https://api.github.com/users/aboyett', 'https://github.com/aboyett', 'https://api.github.com/users/aboyett/followers', 'https://api.github.com/users/aboyett/following', 'https://api.github.com/users/aboyett/gists', 'https://api.github.com/users/aboyett/starred', 'https://api.github.com/users/aboyett/repos', 'https://api.github.com/users/aboyett/events', 'https://api.github.com/users/aboyett/received_events', 0); +INSERT INTO `developer` VALUES (424153, 'maqifrnswa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Howard', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 32, 0, 0, 0, 0, '2010-10-02T02:38:36Z', '2024-08-22T01:43:59Z', 'https://avatars.githubusercontent.com/u/424153?v=4', 'https://api.github.com/users/maqifrnswa', 'https://github.com/maqifrnswa', 'https://api.github.com/users/maqifrnswa/followers', 'https://api.github.com/users/maqifrnswa/following', 'https://api.github.com/users/maqifrnswa/gists', 'https://api.github.com/users/maqifrnswa/starred', 'https://api.github.com/users/maqifrnswa/repos', 'https://api.github.com/users/maqifrnswa/events', 'https://api.github.com/users/maqifrnswa/received_events', 0); +INSERT INTO `developer` VALUES (426340, 'rtfb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vytautas Šaltenis', NULL, 'https://rtfb.lt', 'Vilnius', 'vytas@rtfb.lt', NULL, NULL, NULL, 0, 0, 30, 3, 0, 0, 0, '2010-10-04T11:58:27Z', '2024-08-02T21:16:23Z', 'https://avatars.githubusercontent.com/u/426340?v=4', 'https://api.github.com/users/rtfb', 'https://github.com/rtfb', 'https://api.github.com/users/rtfb/followers', 'https://api.github.com/users/rtfb/following', 'https://api.github.com/users/rtfb/gists', 'https://api.github.com/users/rtfb/starred', 'https://api.github.com/users/rtfb/repos', 'https://api.github.com/users/rtfb/events', 'https://api.github.com/users/rtfb/received_events', 0); +INSERT INTO `developer` VALUES (426803, 'dholbert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Holbert', 'Mozilla Corporation', '', 'California, USA', NULL, NULL, 'Platform engineer at @mozilla, working mostly on Firefox internals for handling layout, CSS, and SVG.', 'CodingExon', 0, 0, 59, 3, 0, 0, 0, '2010-10-04T17:22:42Z', '2024-08-21T05:18:47Z', 'https://avatars.githubusercontent.com/u/426803?v=4', 'https://api.github.com/users/dholbert', 'https://github.com/dholbert', 'https://api.github.com/users/dholbert/followers', 'https://api.github.com/users/dholbert/following', 'https://api.github.com/users/dholbert/gists', 'https://api.github.com/users/dholbert/starred', 'https://api.github.com/users/dholbert/repos', 'https://api.github.com/users/dholbert/events', 'https://api.github.com/users/dholbert/received_events', 0); +INSERT INTO `developer` VALUES (427450, 'blakejakopovic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Blake Jakopovic', NULL, '', 'GMT', 'blake.jakopovic@gmail.com', NULL, NULL, NULL, 0, 0, 72, 84, 0, 0, 0, '2010-10-05T03:26:25Z', '2024-10-07T07:22:47Z', 'https://avatars.githubusercontent.com/u/427450?v=4', 'https://api.github.com/users/blakejakopovic', 'https://github.com/blakejakopovic', 'https://api.github.com/users/blakejakopovic/followers', 'https://api.github.com/users/blakejakopovic/following', 'https://api.github.com/users/blakejakopovic/gists', 'https://api.github.com/users/blakejakopovic/starred', 'https://api.github.com/users/blakejakopovic/repos', 'https://api.github.com/users/blakejakopovic/events', 'https://api.github.com/users/blakejakopovic/received_events', 0); +INSERT INTO `developer` VALUES (429961, 'PRabahy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Rabahy', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 2, 0, 0, 0, '2010-10-06T18:29:01Z', '2024-10-28T02:48:44Z', 'https://avatars.githubusercontent.com/u/429961?v=4', 'https://api.github.com/users/PRabahy', 'https://github.com/PRabahy', 'https://api.github.com/users/PRabahy/followers', 'https://api.github.com/users/PRabahy/following', 'https://api.github.com/users/PRabahy/gists', 'https://api.github.com/users/PRabahy/starred', 'https://api.github.com/users/PRabahy/repos', 'https://api.github.com/users/PRabahy/events', 'https://api.github.com/users/PRabahy/received_events', 0); +INSERT INTO `developer` VALUES (430315, 'ajweiss', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Weiss', NULL, '', 'Brooklyn, NY', 'adam@signal11.com', NULL, 'Tinkering...', NULL, 0, 0, 21, 8, 0, 0, 0, '2010-10-07T00:14:33Z', '2024-10-29T21:38:32Z', 'https://avatars.githubusercontent.com/u/430315?v=4', 'https://api.github.com/users/ajweiss', 'https://github.com/ajweiss', 'https://api.github.com/users/ajweiss/followers', 'https://api.github.com/users/ajweiss/following', 'https://api.github.com/users/ajweiss/gists', 'https://api.github.com/users/ajweiss/starred', 'https://api.github.com/users/ajweiss/repos', 'https://api.github.com/users/ajweiss/events', 'https://api.github.com/users/ajweiss/received_events', 0); +INSERT INTO `developer` VALUES (432385, 'Flowdalic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Schmaus', NULL, 'geekplace.eu/flow', '未知', 'flo@geekplace.eu', NULL, NULL, NULL, 0, 0, 187, 1, 0, 0, 0, '2010-10-08T13:21:19Z', '2024-11-04T14:24:57Z', 'https://avatars.githubusercontent.com/u/432385?v=4', 'https://api.github.com/users/Flowdalic', 'https://github.com/Flowdalic', 'https://api.github.com/users/Flowdalic/followers', 'https://api.github.com/users/Flowdalic/following', 'https://api.github.com/users/Flowdalic/gists', 'https://api.github.com/users/Flowdalic/starred', 'https://api.github.com/users/Flowdalic/repos', 'https://api.github.com/users/Flowdalic/events', 'https://api.github.com/users/Flowdalic/received_events', 0); +INSERT INTO `developer` VALUES (432904, 'xyziemba', 'C', 0, 0, 0, 0, 0, 0, 0, 'Xy Ziemba', '@google', '', 'Seattle, WA', 'xy.ziemba@gmail.com', NULL, NULL, NULL, 0, 0, 16, 1, 0, 0, 0, '2010-10-08T21:02:12Z', '2024-10-24T17:04:23Z', 'https://avatars.githubusercontent.com/u/432904?v=4', 'https://api.github.com/users/xyziemba', 'https://github.com/xyziemba', 'https://api.github.com/users/xyziemba/followers', 'https://api.github.com/users/xyziemba/following', 'https://api.github.com/users/xyziemba/gists', 'https://api.github.com/users/xyziemba/starred', 'https://api.github.com/users/xyziemba/repos', 'https://api.github.com/users/xyziemba/events', 'https://api.github.com/users/xyziemba/received_events', 0); +INSERT INTO `developer` VALUES (435652, 'jaytaylor', 'C', 0, 0, 0, 0, 0, 0, 0, 'J. Elliot Taylor', '@gigawattio ', 'https://jaytaylor.com/', 'Palo Alto, CA', 'outtatime+github@gmail.com', NULL, NULL, NULL, 0, 0, 85, 33, 0, 0, 0, '2010-10-11T17:37:49Z', '2024-10-20T17:59:20Z', 'https://avatars.githubusercontent.com/u/435652?v=4', 'https://api.github.com/users/jaytaylor', 'https://github.com/jaytaylor', 'https://api.github.com/users/jaytaylor/followers', 'https://api.github.com/users/jaytaylor/following', 'https://api.github.com/users/jaytaylor/gists', 'https://api.github.com/users/jaytaylor/starred', 'https://api.github.com/users/jaytaylor/repos', 'https://api.github.com/users/jaytaylor/events', 'https://api.github.com/users/jaytaylor/received_events', 0); +INSERT INTO `developer` VALUES (438648, 'pwaller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Waller', NULL, '', 'Manchester, UK', 'p@pwaller.net', NULL, 'This is my personal account, my views and actions are my own and do not relate to my employer.', NULL, 0, 0, 239, 48, 0, 0, 0, '2010-10-13T23:27:53Z', '2024-10-18T16:00:33Z', 'https://avatars.githubusercontent.com/u/438648?v=4', 'https://api.github.com/users/pwaller', 'https://github.com/pwaller', 'https://api.github.com/users/pwaller/followers', 'https://api.github.com/users/pwaller/following', 'https://api.github.com/users/pwaller/gists', 'https://api.github.com/users/pwaller/starred', 'https://api.github.com/users/pwaller/repos', 'https://api.github.com/users/pwaller/events', 'https://api.github.com/users/pwaller/received_events', 0); +INSERT INTO `developer` VALUES (439279, 'deronnax', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathieu Dupuy', 'GitGuardian', '', 'Paris, France', NULL, 'true', 'I write python and deploy stuffs in managed clouds', NULL, 0, 0, 37, 27, 0, 0, 0, '2010-10-14T12:10:11Z', '2024-10-23T08:36:56Z', 'https://avatars.githubusercontent.com/u/439279?v=4', 'https://api.github.com/users/deronnax', 'https://github.com/deronnax', 'https://api.github.com/users/deronnax/followers', 'https://api.github.com/users/deronnax/following', 'https://api.github.com/users/deronnax/gists', 'https://api.github.com/users/deronnax/starred', 'https://api.github.com/users/deronnax/repos', 'https://api.github.com/users/deronnax/events', 'https://api.github.com/users/deronnax/received_events', 0); +INSERT INTO `developer` VALUES (441326, 'chrjsorg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher', '@inovex ', '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 16, 15, 0, 0, 0, '2010-10-15T22:09:48Z', '2024-10-05T10:00:17Z', 'https://avatars.githubusercontent.com/u/441326?v=4', 'https://api.github.com/users/chrjsorg', 'https://github.com/chrjsorg', 'https://api.github.com/users/chrjsorg/followers', 'https://api.github.com/users/chrjsorg/following', 'https://api.github.com/users/chrjsorg/gists', 'https://api.github.com/users/chrjsorg/starred', 'https://api.github.com/users/chrjsorg/repos', 'https://api.github.com/users/chrjsorg/events', 'https://api.github.com/users/chrjsorg/received_events', 0); +INSERT INTO `developer` VALUES (446380, 'benmathews', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Mathews', NULL, '', '未知', 'ben@mathews2000.com', NULL, NULL, NULL, 0, 0, 4, 5, 0, 0, 0, '2010-10-20T03:53:06Z', '2024-09-17T19:19:21Z', 'https://avatars.githubusercontent.com/u/446380?v=4', 'https://api.github.com/users/benmathews', 'https://github.com/benmathews', 'https://api.github.com/users/benmathews/followers', 'https://api.github.com/users/benmathews/following', 'https://api.github.com/users/benmathews/gists', 'https://api.github.com/users/benmathews/starred', 'https://api.github.com/users/benmathews/repos', 'https://api.github.com/users/benmathews/events', 'https://api.github.com/users/benmathews/received_events', 0); +INSERT INTO `developer` VALUES (450140, 'ivpusic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ivan Pusic', '@mantro ', 'www.linkedin.com/in/ivan-pusic', 'Zagreb, Croatia', NULL, NULL, NULL, NULL, 0, 0, 232, 41, 0, 0, 0, '2010-10-22T18:37:29Z', '2024-10-28T10:46:35Z', 'https://avatars.githubusercontent.com/u/450140?v=4', 'https://api.github.com/users/ivpusic', 'https://github.com/ivpusic', 'https://api.github.com/users/ivpusic/followers', 'https://api.github.com/users/ivpusic/following', 'https://api.github.com/users/ivpusic/gists', 'https://api.github.com/users/ivpusic/starred', 'https://api.github.com/users/ivpusic/repos', 'https://api.github.com/users/ivpusic/events', 'https://api.github.com/users/ivpusic/received_events', 0); +INSERT INTO `developer` VALUES (451660, 'kostaz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2010-10-24T08:33:07Z', '2024-08-04T14:19:26Z', 'https://avatars.githubusercontent.com/u/451660?v=4', 'https://api.github.com/users/kostaz', 'https://github.com/kostaz', 'https://api.github.com/users/kostaz/followers', 'https://api.github.com/users/kostaz/following', 'https://api.github.com/users/kostaz/gists', 'https://api.github.com/users/kostaz/starred', 'https://api.github.com/users/kostaz/repos', 'https://api.github.com/users/kostaz/events', 'https://api.github.com/users/kostaz/received_events', 0); +INSERT INTO `developer` VALUES (452568, 'akuseru', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Smith', NULL, '', '未知', NULL, NULL, 'I break things.', NULL, 0, 0, 15, 5, 0, 0, 0, '2010-10-25T05:23:40Z', '2024-09-30T06:49:12Z', 'https://avatars.githubusercontent.com/u/452568?v=4', 'https://api.github.com/users/akuseru', 'https://github.com/akuseru', 'https://api.github.com/users/akuseru/followers', 'https://api.github.com/users/akuseru/following', 'https://api.github.com/users/akuseru/gists', 'https://api.github.com/users/akuseru/starred', 'https://api.github.com/users/akuseru/repos', 'https://api.github.com/users/akuseru/events', 'https://api.github.com/users/akuseru/received_events', 0); +INSERT INTO `developer` VALUES (458997, 'gwillen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Glenn Willen', NULL, '', 'SF Bay Area, California', 'gwillen@nerdnet.org', NULL, 'Have you tried turning it off and on again?', NULL, 0, 0, 107, 9, 0, 0, 0, '2010-10-29T03:18:17Z', '2024-09-04T00:02:24Z', 'https://avatars.githubusercontent.com/u/458997?v=4', 'https://api.github.com/users/gwillen', 'https://github.com/gwillen', 'https://api.github.com/users/gwillen/followers', 'https://api.github.com/users/gwillen/following', 'https://api.github.com/users/gwillen/gists', 'https://api.github.com/users/gwillen/starred', 'https://api.github.com/users/gwillen/repos', 'https://api.github.com/users/gwillen/events', 'https://api.github.com/users/gwillen/received_events', 0); +INSERT INTO `developer` VALUES (459505, 'bom-d-van', 'C', 0, 0, 0, 0, 0, 0, 0, 'Xiaofan Hu', NULL, 'https://www.xhu.buzz', 'China', 'bom.d.van@gmail.com', 'true', NULL, 'bom_d_van', 0, 0, 148, 2080, 0, 0, 0, '2010-10-29T13:25:01Z', '2024-10-23T11:18:21Z', 'https://avatars.githubusercontent.com/u/459505?v=4', 'https://api.github.com/users/bom-d-van', 'https://github.com/bom-d-van', 'https://api.github.com/users/bom-d-van/followers', 'https://api.github.com/users/bom-d-van/following', 'https://api.github.com/users/bom-d-van/gists', 'https://api.github.com/users/bom-d-van/starred', 'https://api.github.com/users/bom-d-van/repos', 'https://api.github.com/users/bom-d-van/events', 'https://api.github.com/users/bom-d-van/received_events', 0); +INSERT INTO `developer` VALUES (474438, 'jeffandersen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Andersen', NULL, '', 'Halifax, NS', NULL, NULL, NULL, NULL, 0, 0, 63, 39, 0, 0, 0, '2010-11-09T17:39:59Z', '2024-01-22T15:20:41Z', 'https://avatars.githubusercontent.com/u/474438?v=4', 'https://api.github.com/users/jeffandersen', 'https://github.com/jeffandersen', 'https://api.github.com/users/jeffandersen/followers', 'https://api.github.com/users/jeffandersen/following', 'https://api.github.com/users/jeffandersen/gists', 'https://api.github.com/users/jeffandersen/starred', 'https://api.github.com/users/jeffandersen/repos', 'https://api.github.com/users/jeffandersen/events', 'https://api.github.com/users/jeffandersen/received_events', 0); +INSERT INTO `developer` VALUES (475017, 'jayschwa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jay Petacat', '@CatacombGames', 'https://jayschwa.net', 'Colorado', 'jay@jayschwa.net', NULL, NULL, NULL, 0, 0, 198, 110, 0, 0, 0, '2010-11-10T01:48:43Z', '2024-10-09T14:01:11Z', 'https://avatars.githubusercontent.com/u/475017?v=4', 'https://api.github.com/users/jayschwa', 'https://github.com/jayschwa', 'https://api.github.com/users/jayschwa/followers', 'https://api.github.com/users/jayschwa/following', 'https://api.github.com/users/jayschwa/gists', 'https://api.github.com/users/jayschwa/starred', 'https://api.github.com/users/jayschwa/repos', 'https://api.github.com/users/jayschwa/events', 'https://api.github.com/users/jayschwa/received_events', 0); +INSERT INTO `developer` VALUES (477982, 'flah00', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philip Champon', NULL, '', 'Brooklyn, NY', 'pchampon@gmail.com', NULL, NULL, NULL, 0, 0, 10, 5, 0, 0, 0, '2010-11-11T22:00:03Z', '2024-09-26T19:35:15Z', 'https://avatars.githubusercontent.com/u/477982?v=4', 'https://api.github.com/users/flah00', 'https://github.com/flah00', 'https://api.github.com/users/flah00/followers', 'https://api.github.com/users/flah00/following', 'https://api.github.com/users/flah00/gists', 'https://api.github.com/users/flah00/starred', 'https://api.github.com/users/flah00/repos', 'https://api.github.com/users/flah00/events', 'https://api.github.com/users/flah00/received_events', 0); +INSERT INTO `developer` VALUES (478926, 'cpswan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Swan', '@atsign-company ', 'https://chris.swanz.net/', '未知', NULL, NULL, 'Engineer at Atsign, Dart GDE, Cloud Editor at InfoQ, Raspberry Pi, Arduino and RC2014 tinkerer', NULL, 0, 0, 120, 0, 0, 0, 0, '2010-11-12T14:41:37Z', '2024-10-25T05:56:11Z', 'https://avatars.githubusercontent.com/u/478926?v=4', 'https://api.github.com/users/cpswan', 'https://github.com/cpswan', 'https://api.github.com/users/cpswan/followers', 'https://api.github.com/users/cpswan/following', 'https://api.github.com/users/cpswan/gists', 'https://api.github.com/users/cpswan/starred', 'https://api.github.com/users/cpswan/repos', 'https://api.github.com/users/cpswan/events', 'https://api.github.com/users/cpswan/received_events', 0); +INSERT INTO `developer` VALUES (479055, 'deoxxa', 'C', 0.6890760597241377, 0, 0, 0, 0, 0, 0, 'Conrad Pankoff', 'Serious Business', 'https://www.fknsrs.biz/', 'Melbourne, Australia', 'deoxxa@fknsrs.biz', 'true', NULL, NULL, 0, 0, 325, 54, 0, 0, 0, '2010-11-12T16:22:12Z', '2024-10-15T23:09:28Z', 'https://avatars.githubusercontent.com/u/479055?v=4', 'https://api.github.com/users/deoxxa', 'https://github.com/deoxxa', 'https://api.github.com/users/deoxxa/followers', 'https://api.github.com/users/deoxxa/following', 'https://api.github.com/users/deoxxa/gists', 'https://api.github.com/users/deoxxa/starred', 'https://api.github.com/users/deoxxa/repos', 'https://api.github.com/users/deoxxa/events', 'https://api.github.com/users/deoxxa/received_events', 0); +INSERT INTO `developer` VALUES (480915, 'jspricke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jochen Sprickerhof', NULL, 'https://jochen.sprickerhof.de', '未知', 'github@jochen.sprickerhof.de', NULL, NULL, NULL, 0, 0, 220, 0, 0, 0, 0, '2010-11-14T09:59:51Z', '2024-10-21T08:27:32Z', 'https://avatars.githubusercontent.com/u/480915?v=4', 'https://api.github.com/users/jspricke', 'https://github.com/jspricke', 'https://api.github.com/users/jspricke/followers', 'https://api.github.com/users/jspricke/following', 'https://api.github.com/users/jspricke/gists', 'https://api.github.com/users/jspricke/starred', 'https://api.github.com/users/jspricke/repos', 'https://api.github.com/users/jspricke/events', 'https://api.github.com/users/jspricke/received_events', 0); +INSERT INTO `developer` VALUES (482364, 'justincormack', 'C+', 12.727339476535219, 0, 0, 0, 0, 0, 0, 'Justin Cormack', '@docker', 'https://www.cloudatomiclab.com/', 'Suffolk, UK', 'justin@specialbusservice.com', NULL, 'CTO at @docker', 'justincormack', 0, 0, 1027, 15, 0, 0, 0, '2010-11-15T15:02:38Z', '2024-01-28T17:08:17Z', 'https://avatars.githubusercontent.com/u/482364?v=4', 'https://api.github.com/users/justincormack', 'https://github.com/justincormack', 'https://api.github.com/users/justincormack/followers', 'https://api.github.com/users/justincormack/following', 'https://api.github.com/users/justincormack/gists', 'https://api.github.com/users/justincormack/starred', 'https://api.github.com/users/justincormack/repos', 'https://api.github.com/users/justincormack/events', 'https://api.github.com/users/justincormack/received_events', 0); +INSERT INTO `developer` VALUES (484066, 'muggenhor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Giel van Schijndel', '@tomtom-international', 'https://blog.mortis.eu', '未知', NULL, NULL, NULL, NULL, 0, 0, 51, 4, 0, 0, 0, '2010-11-16T16:06:46Z', '2024-10-21T14:33:00Z', 'https://avatars.githubusercontent.com/u/484066?v=4', 'https://api.github.com/users/muggenhor', 'https://github.com/muggenhor', 'https://api.github.com/users/muggenhor/followers', 'https://api.github.com/users/muggenhor/following', 'https://api.github.com/users/muggenhor/gists', 'https://api.github.com/users/muggenhor/starred', 'https://api.github.com/users/muggenhor/repos', 'https://api.github.com/users/muggenhor/events', 'https://api.github.com/users/muggenhor/received_events', 0); +INSERT INTO `developer` VALUES (492603, 'westonplatter', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'westonplattergithub@gmail.com', 'true', 'software/data/quant engineer. Fascinated by option markets, financial time series, and risk.\r\n', NULL, 0, 0, 159, 8, 0, 0, 0, '2010-11-22T23:45:58Z', '2024-08-26T17:55:51Z', 'https://avatars.githubusercontent.com/u/492603?v=4', 'https://api.github.com/users/westonplatter', 'https://github.com/westonplatter', 'https://api.github.com/users/westonplatter/followers', 'https://api.github.com/users/westonplatter/following', 'https://api.github.com/users/westonplatter/gists', 'https://api.github.com/users/westonplatter/starred', 'https://api.github.com/users/westonplatter/repos', 'https://api.github.com/users/westonplatter/events', 'https://api.github.com/users/westonplatter/received_events', 0); +INSERT INTO `developer` VALUES (494259, 'cedric-lamalle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cédric Lamalle', 'Basis TI', 'https://cedric-lamalle.github.io', 'Brazil', NULL, NULL, NULL, NULL, 0, 0, 43, 3, 0, 0, 0, '2010-11-24T01:16:22Z', '2024-09-08T12:58:15Z', 'https://avatars.githubusercontent.com/u/494259?v=4', 'https://api.github.com/users/cedric-lamalle', 'https://github.com/cedric-lamalle', 'https://api.github.com/users/cedric-lamalle/followers', 'https://api.github.com/users/cedric-lamalle/following', 'https://api.github.com/users/cedric-lamalle/gists', 'https://api.github.com/users/cedric-lamalle/starred', 'https://api.github.com/users/cedric-lamalle/repos', 'https://api.github.com/users/cedric-lamalle/events', 'https://api.github.com/users/cedric-lamalle/received_events', 0); +INSERT INTO `developer` VALUES (494411, 'jgarzik', 'C', 11.3897546524451, 0, 0, 0, 0, 0, 0, 'Jeff Garzik', NULL, '', 'Atlanta, GA', 'jeff@bloq.com', NULL, NULL, 'jgarzik', 0, 0, 949, 0, 0, 0, 0, '2010-11-24T04:34:36Z', '2024-11-04T13:30:19Z', 'https://avatars.githubusercontent.com/u/494411?v=4', 'https://api.github.com/users/jgarzik', 'https://github.com/jgarzik', 'https://api.github.com/users/jgarzik/followers', 'https://api.github.com/users/jgarzik/following', 'https://api.github.com/users/jgarzik/gists', 'https://api.github.com/users/jgarzik/starred', 'https://api.github.com/users/jgarzik/repos', 'https://api.github.com/users/jgarzik/events', 'https://api.github.com/users/jgarzik/received_events', 0); +INSERT INTO `developer` VALUES (499678, 'rbtcollins', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Collins', '@cognitedata ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 163, 17, 0, 0, 0, '2010-11-28T05:00:52Z', '2024-10-18T10:59:18Z', 'https://avatars.githubusercontent.com/u/499678?v=4', 'https://api.github.com/users/rbtcollins', 'https://github.com/rbtcollins', 'https://api.github.com/users/rbtcollins/followers', 'https://api.github.com/users/rbtcollins/following', 'https://api.github.com/users/rbtcollins/gists', 'https://api.github.com/users/rbtcollins/starred', 'https://api.github.com/users/rbtcollins/repos', 'https://api.github.com/users/rbtcollins/events', 'https://api.github.com/users/rbtcollins/received_events', 0); +INSERT INTO `developer` VALUES (500869, 'ayeowch', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2010-11-29T00:17:05Z', '2024-10-26T04:58:30Z', 'https://avatars.githubusercontent.com/u/500869?v=4', 'https://api.github.com/users/ayeowch', 'https://github.com/ayeowch', 'https://api.github.com/users/ayeowch/followers', 'https://api.github.com/users/ayeowch/following', 'https://api.github.com/users/ayeowch/gists', 'https://api.github.com/users/ayeowch/starred', 'https://api.github.com/users/ayeowch/repos', 'https://api.github.com/users/ayeowch/events', 'https://api.github.com/users/ayeowch/received_events', 0); +INSERT INTO `developer` VALUES (501976, 'andrew-waters', 'C', 2.2395452249432544, 0, 11, 0, 619, 3, 0, 'Andrew Waters', 'Ctrl Hub', 'https://andon.dev', 'Europe', NULL, NULL, 'CTO @ctrl-hub ', NULL, 0, 0, 40, 10, 0, 0, 0, '2010-11-29T15:27:22Z', '2024-10-23T10:57:01Z', 'https://avatars.githubusercontent.com/u/501976?v=4', 'https://api.github.com/users/andrew-waters', 'https://github.com/andrew-waters', 'https://api.github.com/users/andrew-waters/followers', 'https://api.github.com/users/andrew-waters/following', 'https://api.github.com/users/andrew-waters/gists', 'https://api.github.com/users/andrew-waters/starred', 'https://api.github.com/users/andrew-waters/repos', 'https://api.github.com/users/andrew-waters/events', 'https://api.github.com/users/andrew-waters/received_events', 0); +INSERT INTO `developer` VALUES (502170, 'dhilipsiva', 'C', 0, 0, 0, 0, 0, 0, 0, 'dhilipsiva', '@NuFlights & @colligence-research', 'https://dhilipsiva.com', 'Bangalore', 'dhilipsiva@pm.me', 'true', 'Principal Software Architect. An Optimistic Nihilist who loves Science, Python, Rust, FOSS, WebAssembly, WebRTC & Distributed Systems.', 'dhilipsiva', 0, 0, 229, 91, 0, 0, 0, '2010-11-29T17:52:16Z', '2024-10-24T15:57:13Z', 'https://avatars.githubusercontent.com/u/502170?v=4', 'https://api.github.com/users/dhilipsiva', 'https://github.com/dhilipsiva', 'https://api.github.com/users/dhilipsiva/followers', 'https://api.github.com/users/dhilipsiva/following', 'https://api.github.com/users/dhilipsiva/gists', 'https://api.github.com/users/dhilipsiva/starred', 'https://api.github.com/users/dhilipsiva/repos', 'https://api.github.com/users/dhilipsiva/events', 'https://api.github.com/users/dhilipsiva/received_events', 0); +INSERT INTO `developer` VALUES (505366, 'globalcitizen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Walter Stanish', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2010-12-01T18:31:04Z', '2024-08-29T00:22:38Z', 'https://avatars.githubusercontent.com/u/505366?v=4', 'https://api.github.com/users/globalcitizen', 'https://github.com/globalcitizen', 'https://api.github.com/users/globalcitizen/followers', 'https://api.github.com/users/globalcitizen/following', 'https://api.github.com/users/globalcitizen/gists', 'https://api.github.com/users/globalcitizen/starred', 'https://api.github.com/users/globalcitizen/repos', 'https://api.github.com/users/globalcitizen/events', 'https://api.github.com/users/globalcitizen/received_events', 0); +INSERT INTO `developer` VALUES (508192, 'trini', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Rini', 'Konsulko Group', 'https://floss.social/@trini', '未知', 'trini@konsulko.com', 'true', NULL, NULL, 0, 0, 94, 3, 0, 0, 0, '2010-12-03T16:07:38Z', '2024-10-24T02:09:58Z', 'https://avatars.githubusercontent.com/u/508192?v=4', 'https://api.github.com/users/trini', 'https://github.com/trini', 'https://api.github.com/users/trini/followers', 'https://api.github.com/users/trini/following', 'https://api.github.com/users/trini/gists', 'https://api.github.com/users/trini/starred', 'https://api.github.com/users/trini/repos', 'https://api.github.com/users/trini/events', 'https://api.github.com/users/trini/received_events', 0); +INSERT INTO `developer` VALUES (523218, 'roques', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian von Roques', 'z12 GmbH', '', 'Luzern; Switzerland', 'roques@z12.ch', NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2010-12-14T20:01:37Z', '2017-12-31T13:21:32Z', 'https://avatars.githubusercontent.com/u/523218?v=4', 'https://api.github.com/users/roques', 'https://github.com/roques', 'https://api.github.com/users/roques/followers', 'https://api.github.com/users/roques/following', 'https://api.github.com/users/roques/gists', 'https://api.github.com/users/roques/starred', 'https://api.github.com/users/roques/repos', 'https://api.github.com/users/roques/events', 'https://api.github.com/users/roques/received_events', 0); +INSERT INTO `developer` VALUES (523991, 'AKoetsier', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andres Koetsier', 'Oblivion B.V.', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2010-12-15T08:31:32Z', '2023-06-02T09:48:45Z', 'https://avatars.githubusercontent.com/u/523991?v=4', 'https://api.github.com/users/AKoetsier', 'https://github.com/AKoetsier', 'https://api.github.com/users/AKoetsier/followers', 'https://api.github.com/users/AKoetsier/following', 'https://api.github.com/users/AKoetsier/gists', 'https://api.github.com/users/AKoetsier/starred', 'https://api.github.com/users/AKoetsier/repos', 'https://api.github.com/users/AKoetsier/events', 'https://api.github.com/users/AKoetsier/received_events', 0); +INSERT INTO `developer` VALUES (529626, 'ius', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 106, 0, 0, 0, 0, '2010-12-19T17:59:03Z', '2024-02-27T09:30:22Z', 'https://avatars.githubusercontent.com/u/529626?v=4', 'https://api.github.com/users/ius', 'https://github.com/ius', 'https://api.github.com/users/ius/followers', 'https://api.github.com/users/ius/following', 'https://api.github.com/users/ius/gists', 'https://api.github.com/users/ius/starred', 'https://api.github.com/users/ius/repos', 'https://api.github.com/users/ius/events', 'https://api.github.com/users/ius/received_events', 0); +INSERT INTO `developer` VALUES (534388, 'tomasvdw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tomas van der Wansem', NULL, '', 'Amsterdam', NULL, NULL, NULL, NULL, 0, 0, 30, 2, 0, 0, 0, '2010-12-23T10:08:13Z', '2024-09-19T08:19:15Z', 'https://avatars.githubusercontent.com/u/534388?v=4', 'https://api.github.com/users/tomasvdw', 'https://github.com/tomasvdw', 'https://api.github.com/users/tomasvdw/followers', 'https://api.github.com/users/tomasvdw/following', 'https://api.github.com/users/tomasvdw/gists', 'https://api.github.com/users/tomasvdw/starred', 'https://api.github.com/users/tomasvdw/repos', 'https://api.github.com/users/tomasvdw/events', 'https://api.github.com/users/tomasvdw/received_events', 0); +INSERT INTO `developer` VALUES (534649, 'yciabaud', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yoann Ciabaud', '@sonoralabs ', 'http://www.yoann-ciabaud.fr', 'Marseille, France', NULL, NULL, NULL, NULL, 0, 0, 25, 15, 0, 0, 0, '2010-12-23T14:59:14Z', '2024-10-29T14:18:49Z', 'https://avatars.githubusercontent.com/u/534649?v=4', 'https://api.github.com/users/yciabaud', 'https://github.com/yciabaud', 'https://api.github.com/users/yciabaud/followers', 'https://api.github.com/users/yciabaud/following', 'https://api.github.com/users/yciabaud/gists', 'https://api.github.com/users/yciabaud/starred', 'https://api.github.com/users/yciabaud/repos', 'https://api.github.com/users/yciabaud/events', 'https://api.github.com/users/yciabaud/received_events', 0); +INSERT INTO `developer` VALUES (536306, 'twmbx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Twaambo Haamucenje', NULL, 'twmbx.com', 'Ndola, Zambia', 'twaambo@outlook.com', 'true', 'I build things @realmdigital & @Mvesesani. I believe in solving African problems with African solutions. ', NULL, 0, 0, 97, 136, 0, 0, 0, '2010-12-25T15:16:42Z', '2024-09-29T16:37:23Z', 'https://avatars.githubusercontent.com/u/536306?v=4', 'https://api.github.com/users/twmbx', 'https://github.com/twmbx', 'https://api.github.com/users/twmbx/followers', 'https://api.github.com/users/twmbx/following', 'https://api.github.com/users/twmbx/gists', 'https://api.github.com/users/twmbx/starred', 'https://api.github.com/users/twmbx/repos', 'https://api.github.com/users/twmbx/events', 'https://api.github.com/users/twmbx/received_events', 0); +INSERT INTO `developer` VALUES (536667, 'Konboi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryosuke Yabuki', 'Launchable inc,', 'https://blog.konboi.com', 'Fukushima, Japan', 'ryosuke.yabuki+gh@gmail.com', 'true', 'Software Engineer\r\n', 'Konboi', 0, 0, 74, 179, 0, 0, 0, '2010-12-26T04:33:41Z', '2024-10-24T13:37:32Z', 'https://avatars.githubusercontent.com/u/536667?v=4', 'https://api.github.com/users/Konboi', 'https://github.com/Konboi', 'https://api.github.com/users/Konboi/followers', 'https://api.github.com/users/Konboi/following', 'https://api.github.com/users/Konboi/gists', 'https://api.github.com/users/Konboi/starred', 'https://api.github.com/users/Konboi/repos', 'https://api.github.com/users/Konboi/events', 'https://api.github.com/users/Konboi/received_events', 0); +INSERT INTO `developer` VALUES (541066, 'arowser', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 62, 203, 0, 0, 0, '2010-12-30T01:17:17Z', '2024-10-30T00:59:49Z', 'https://avatars.githubusercontent.com/u/541066?v=4', 'https://api.github.com/users/arowser', 'https://github.com/arowser', 'https://api.github.com/users/arowser/followers', 'https://api.github.com/users/arowser/following', 'https://api.github.com/users/arowser/gists', 'https://api.github.com/users/arowser/starred', 'https://api.github.com/users/arowser/repos', 'https://api.github.com/users/arowser/events', 'https://api.github.com/users/arowser/received_events', 0); +INSERT INTO `developer` VALUES (546911, 'soeren-b-c', 'C', 0, 0, 0, 0, 0, 0, 0, 'Søren Bredlund Caspersen', NULL, 'https://soerenbredlundcaspersen.dk', 'Denmark', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2011-01-04T12:22:50Z', '2024-09-18T07:17:04Z', 'https://avatars.githubusercontent.com/u/546911?v=4', 'https://api.github.com/users/soeren-b-c', 'https://github.com/soeren-b-c', 'https://api.github.com/users/soeren-b-c/followers', 'https://api.github.com/users/soeren-b-c/following', 'https://api.github.com/users/soeren-b-c/gists', 'https://api.github.com/users/soeren-b-c/starred', 'https://api.github.com/users/soeren-b-c/repos', 'https://api.github.com/users/soeren-b-c/events', 'https://api.github.com/users/soeren-b-c/received_events', 0); +INSERT INTO `developer` VALUES (547135, 'cdevienne', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christophe de Vienne', '@orus-io ', 'https://orus.io', 'Rennes - France', NULL, NULL, NULL, NULL, 0, 0, 21, 3, 0, 0, 0, '2011-01-04T15:23:50Z', '2024-10-28T17:39:47Z', 'https://avatars.githubusercontent.com/u/547135?v=4', 'https://api.github.com/users/cdevienne', 'https://github.com/cdevienne', 'https://api.github.com/users/cdevienne/followers', 'https://api.github.com/users/cdevienne/following', 'https://api.github.com/users/cdevienne/gists', 'https://api.github.com/users/cdevienne/starred', 'https://api.github.com/users/cdevienne/repos', 'https://api.github.com/users/cdevienne/events', 'https://api.github.com/users/cdevienne/received_events', 0); +INSERT INTO `developer` VALUES (548488, 'sipa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pieter Wuille', '@chaincodelabs', '', '未知', 'pieter@wuille.net', NULL, '@Bitcoin developer at @chaincodelabs. Formerly @Blockstream.', 'pwuille', 0, 0, 0, 0, 0, 0, 0, '2011-01-05T11:11:02Z', '2024-10-18T19:36:01Z', 'https://avatars.githubusercontent.com/u/548488?v=4', 'https://api.github.com/users/sipa', 'https://github.com/sipa', 'https://api.github.com/users/sipa/followers', 'https://api.github.com/users/sipa/following', 'https://api.github.com/users/sipa/gists', 'https://api.github.com/users/sipa/starred', 'https://api.github.com/users/sipa/repos', 'https://api.github.com/users/sipa/events', 'https://api.github.com/users/sipa/received_events', 0); +INSERT INTO `developer` VALUES (549484, 'ashleyholman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ashley Holman', NULL, '', 'Sydney, Australia', NULL, NULL, NULL, NULL, 0, 0, 19, 0, 0, 0, 0, '2011-01-05T23:43:58Z', '2024-06-17T23:17:47Z', 'https://avatars.githubusercontent.com/u/549484?v=4', 'https://api.github.com/users/ashleyholman', 'https://github.com/ashleyholman', 'https://api.github.com/users/ashleyholman/followers', 'https://api.github.com/users/ashleyholman/following', 'https://api.github.com/users/ashleyholman/gists', 'https://api.github.com/users/ashleyholman/starred', 'https://api.github.com/users/ashleyholman/repos', 'https://api.github.com/users/ashleyholman/events', 'https://api.github.com/users/ashleyholman/received_events', 0); +INSERT INTO `developer` VALUES (551068, 'FelixWeis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Felix Weis', NULL, '', '未知', NULL, NULL, NULL, 'FelixWeis', 0, 0, 89, 189, 0, 0, 0, '2011-01-06T22:30:53Z', '2024-11-05T01:22:35Z', 'https://avatars.githubusercontent.com/u/551068?v=4', 'https://api.github.com/users/FelixWeis', 'https://github.com/FelixWeis', 'https://api.github.com/users/FelixWeis/followers', 'https://api.github.com/users/FelixWeis/following', 'https://api.github.com/users/FelixWeis/gists', 'https://api.github.com/users/FelixWeis/starred', 'https://api.github.com/users/FelixWeis/repos', 'https://api.github.com/users/FelixWeis/events', 'https://api.github.com/users/FelixWeis/received_events', 0); +INSERT INTO `developer` VALUES (556105, 'fillup', 'C', 0, 0, 0, 0, 0, 0, 0, 'Phillip Shipley', '@treno-io ', 'https://fillup.io', 'Waxhaw, NC', NULL, NULL, NULL, NULL, 0, 0, 47, 11, 0, 0, 0, '2011-01-10T19:00:35Z', '2024-08-22T15:07:20Z', 'https://avatars.githubusercontent.com/u/556105?v=4', 'https://api.github.com/users/fillup', 'https://github.com/fillup', 'https://api.github.com/users/fillup/followers', 'https://api.github.com/users/fillup/following', 'https://api.github.com/users/fillup/gists', 'https://api.github.com/users/fillup/starred', 'https://api.github.com/users/fillup/repos', 'https://api.github.com/users/fillup/events', 'https://api.github.com/users/fillup/received_events', 0); +INSERT INTO `developer` VALUES (570513, 'Ciemon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ciemon', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 6, 0, 0, 0, '2011-01-18T11:12:33Z', '2024-10-22T06:02:50Z', 'https://avatars.githubusercontent.com/u/570513?v=4', 'https://api.github.com/users/Ciemon', 'https://github.com/Ciemon', 'https://api.github.com/users/Ciemon/followers', 'https://api.github.com/users/Ciemon/following', 'https://api.github.com/users/Ciemon/gists', 'https://api.github.com/users/Ciemon/starred', 'https://api.github.com/users/Ciemon/repos', 'https://api.github.com/users/Ciemon/events', 'https://api.github.com/users/Ciemon/received_events', 0); +INSERT INTO `developer` VALUES (573356, 'dooglus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Moore', NULL, 'https://just-dice.com', 'Canada', 'dooglus@gmail.com', NULL, NULL, NULL, 0, 0, 152, 2, 0, 0, 0, '2011-01-19T21:06:45Z', '2024-09-12T09:52:34Z', 'https://avatars.githubusercontent.com/u/573356?v=4', 'https://api.github.com/users/dooglus', 'https://github.com/dooglus', 'https://api.github.com/users/dooglus/followers', 'https://api.github.com/users/dooglus/following', 'https://api.github.com/users/dooglus/gists', 'https://api.github.com/users/dooglus/starred', 'https://api.github.com/users/dooglus/repos', 'https://api.github.com/users/dooglus/events', 'https://api.github.com/users/dooglus/received_events', 0); +INSERT INTO `developer` VALUES (573529, 'mibe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Bemmerl', NULL, '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 19, 3, 0, 0, 0, '2011-01-19T22:47:24Z', '2024-08-27T20:09:16Z', 'https://avatars.githubusercontent.com/u/573529?v=4', 'https://api.github.com/users/mibe', 'https://github.com/mibe', 'https://api.github.com/users/mibe/followers', 'https://api.github.com/users/mibe/following', 'https://api.github.com/users/mibe/gists', 'https://api.github.com/users/mibe/starred', 'https://api.github.com/users/mibe/repos', 'https://api.github.com/users/mibe/events', 'https://api.github.com/users/mibe/received_events', 0); +INSERT INTO `developer` VALUES (573827, 'se3000', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Ellis', 'SmartContract.com', '', '未知', 'webmaster@steveell.is', NULL, NULL, NULL, 0, 0, 237, 57, 0, 0, 0, '2011-01-20T02:59:40Z', '2024-10-23T13:09:58Z', 'https://avatars.githubusercontent.com/u/573827?v=4', 'https://api.github.com/users/se3000', 'https://github.com/se3000', 'https://api.github.com/users/se3000/followers', 'https://api.github.com/users/se3000/following', 'https://api.github.com/users/se3000/gists', 'https://api.github.com/users/se3000/starred', 'https://api.github.com/users/se3000/repos', 'https://api.github.com/users/se3000/events', 'https://api.github.com/users/se3000/received_events', 0); +INSERT INTO `developer` VALUES (574334, 'KalleDK', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kalle Møller', NULL, 'kalledk.github.io', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 2, 0, 0, 0, '2011-01-20T11:12:00Z', '2024-11-01T11:58:12Z', 'https://avatars.githubusercontent.com/u/574334?v=4', 'https://api.github.com/users/KalleDK', 'https://github.com/KalleDK', 'https://api.github.com/users/KalleDK/followers', 'https://api.github.com/users/KalleDK/following', 'https://api.github.com/users/KalleDK/gists', 'https://api.github.com/users/KalleDK/starred', 'https://api.github.com/users/KalleDK/repos', 'https://api.github.com/users/KalleDK/events', 'https://api.github.com/users/KalleDK/received_events', 0); +INSERT INTO `developer` VALUES (580817, 'ace03uec', 'C', 0, 0, 0, 0, 0, 0, 0, 'Manivannan Giridharan', NULL, 'https://blog.giri.im', 'Bengaluru', NULL, 'true', 'Golang, Kubernetes, Life and Philosophy ', '_dforce', 0, 0, 74, 90, 0, 0, 0, '2011-01-24T14:05:51Z', '2024-09-27T04:58:35Z', 'https://avatars.githubusercontent.com/u/580817?v=4', 'https://api.github.com/users/ace03uec', 'https://github.com/ace03uec', 'https://api.github.com/users/ace03uec/followers', 'https://api.github.com/users/ace03uec/following', 'https://api.github.com/users/ace03uec/gists', 'https://api.github.com/users/ace03uec/starred', 'https://api.github.com/users/ace03uec/repos', 'https://api.github.com/users/ace03uec/events', 'https://api.github.com/users/ace03uec/received_events', 0); +INSERT INTO `developer` VALUES (584253, 'captn3m0', 'B-', 26.669088989166863, 0, 0, 0, 0, 0, 0, 'Nemo', NULL, 'https://captnemo.in', 'Bangalore, India', 'github.contact@captnemo.in', NULL, 'Making and Breaking things, sometimes intentionally', 'captn3m0', 0, 0, 1840, 786, 0, 0, 0, '2011-01-26T08:56:27Z', '2024-10-31T16:58:26Z', 'https://avatars.githubusercontent.com/u/584253?v=4', 'https://api.github.com/users/captn3m0', 'https://github.com/captn3m0', 'https://api.github.com/users/captn3m0/followers', 'https://api.github.com/users/captn3m0/following', 'https://api.github.com/users/captn3m0/gists', 'https://api.github.com/users/captn3m0/starred', 'https://api.github.com/users/captn3m0/repos', 'https://api.github.com/users/captn3m0/events', 'https://api.github.com/users/captn3m0/received_events', 0); +INSERT INTO `developer` VALUES (585223, 'tonistiigi', 'C', 8.234426349463279, 0, 0, 0, 0, 0, 0, 'Tõnis Tiigi', 'Docker', '', 'San Francisco', 'tonistiigi@gmail.com', NULL, NULL, NULL, 0, 0, 765, 3, 0, 0, 0, '2011-01-26T19:58:17Z', '2024-10-01T05:24:04Z', 'https://avatars.githubusercontent.com/u/585223?v=4', 'https://api.github.com/users/tonistiigi', 'https://github.com/tonistiigi', 'https://api.github.com/users/tonistiigi/followers', 'https://api.github.com/users/tonistiigi/following', 'https://api.github.com/users/tonistiigi/gists', 'https://api.github.com/users/tonistiigi/starred', 'https://api.github.com/users/tonistiigi/repos', 'https://api.github.com/users/tonistiigi/events', 'https://api.github.com/users/tonistiigi/received_events', 0); +INSERT INTO `developer` VALUES (586516, 'dougmoscrop', 'C', 0, 0, 0, 0, 0, 0, 0, 'Doug Moscrop', NULL, '', 'Ontario, Canada', 'doug.moscrop@gmail.com', NULL, NULL, 'dougmoscrop', 0, 0, 143, 20, 0, 0, 0, '2011-01-27T13:55:45Z', '2024-10-31T01:54:23Z', 'https://avatars.githubusercontent.com/u/586516?v=4', 'https://api.github.com/users/dougmoscrop', 'https://github.com/dougmoscrop', 'https://api.github.com/users/dougmoscrop/followers', 'https://api.github.com/users/dougmoscrop/following', 'https://api.github.com/users/dougmoscrop/gists', 'https://api.github.com/users/dougmoscrop/starred', 'https://api.github.com/users/dougmoscrop/repos', 'https://api.github.com/users/dougmoscrop/events', 'https://api.github.com/users/dougmoscrop/received_events', 0); +INSERT INTO `developer` VALUES (587332, 'Phylu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Janosch Braukmann', '@ottonova', 'https://janosch-braukmann.de', 'Munich', 'janosch.braukmann@gmail.com', 'true', 'Team Lead System Engineering & Information Security Officer @ Ottonova\r\n--\r\nSecurity, Saas, Terraform, Kubernetes, Python', 'Phylu', 0, 0, 38, 26, 0, 0, 0, '2011-01-27T22:15:21Z', '2024-10-23T13:52:20Z', 'https://avatars.githubusercontent.com/u/587332?v=4', 'https://api.github.com/users/Phylu', 'https://github.com/Phylu', 'https://api.github.com/users/Phylu/followers', 'https://api.github.com/users/Phylu/following', 'https://api.github.com/users/Phylu/gists', 'https://api.github.com/users/Phylu/starred', 'https://api.github.com/users/Phylu/repos', 'https://api.github.com/users/Phylu/events', 'https://api.github.com/users/Phylu/received_events', 0); +INSERT INTO `developer` VALUES (587471, 'jamoes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen McCarthy', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 21, 9, 0, 0, 0, '2011-01-27T23:48:30Z', '2024-01-03T19:52:17Z', 'https://avatars.githubusercontent.com/u/587471?v=4', 'https://api.github.com/users/jamoes', 'https://github.com/jamoes', 'https://api.github.com/users/jamoes/followers', 'https://api.github.com/users/jamoes/following', 'https://api.github.com/users/jamoes/gists', 'https://api.github.com/users/jamoes/starred', 'https://api.github.com/users/jamoes/repos', 'https://api.github.com/users/jamoes/events', 'https://api.github.com/users/jamoes/received_events', 0); +INSERT INTO `developer` VALUES (591127, 'ccojocar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cosmin Cojocar', 'Google', '', 'Swizerland', NULL, NULL, NULL, NULL, 0, 0, 124, 0, 0, 0, 0, '2011-01-30T11:52:26Z', '2024-09-13T11:32:29Z', 'https://avatars.githubusercontent.com/u/591127?v=4', 'https://api.github.com/users/ccojocar', 'https://github.com/ccojocar', 'https://api.github.com/users/ccojocar/followers', 'https://api.github.com/users/ccojocar/following', 'https://api.github.com/users/ccojocar/gists', 'https://api.github.com/users/ccojocar/starred', 'https://api.github.com/users/ccojocar/repos', 'https://api.github.com/users/ccojocar/events', 'https://api.github.com/users/ccojocar/received_events', 0); +INSERT INTO `developer` VALUES (596384, 'jgchristian', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Christian', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2011-02-02T08:21:53Z', '2024-09-05T16:52:46Z', 'https://avatars.githubusercontent.com/u/596384?v=4', 'https://api.github.com/users/jgchristian', 'https://github.com/jgchristian', 'https://api.github.com/users/jgchristian/followers', 'https://api.github.com/users/jgchristian/following', 'https://api.github.com/users/jgchristian/gists', 'https://api.github.com/users/jgchristian/starred', 'https://api.github.com/users/jgchristian/repos', 'https://api.github.com/users/jgchristian/events', 'https://api.github.com/users/jgchristian/received_events', 0); +INSERT INTO `developer` VALUES (597137, 'henriquemenezes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Henrique Menezes', NULL, '', 'Recife, Brazil', NULL, NULL, 'Computer Engineer and MSc in Machine Learning', NULL, 0, 0, 95, 169, 0, 0, 0, '2011-02-02T17:15:34Z', '2024-10-18T17:37:27Z', 'https://avatars.githubusercontent.com/u/597137?v=4', 'https://api.github.com/users/henriquemenezes', 'https://github.com/henriquemenezes', 'https://api.github.com/users/henriquemenezes/followers', 'https://api.github.com/users/henriquemenezes/following', 'https://api.github.com/users/henriquemenezes/gists', 'https://api.github.com/users/henriquemenezes/starred', 'https://api.github.com/users/henriquemenezes/repos', 'https://api.github.com/users/henriquemenezes/events', 'https://api.github.com/users/henriquemenezes/received_events', 0); +INSERT INTO `developer` VALUES (597616, 'jalkjaer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johannes Alkjær', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2011-02-02T22:06:16Z', '2024-10-30T08:05:38Z', 'https://avatars.githubusercontent.com/u/597616?v=4', 'https://api.github.com/users/jalkjaer', 'https://github.com/jalkjaer', 'https://api.github.com/users/jalkjaer/followers', 'https://api.github.com/users/jalkjaer/following', 'https://api.github.com/users/jalkjaer/gists', 'https://api.github.com/users/jalkjaer/starred', 'https://api.github.com/users/jalkjaer/repos', 'https://api.github.com/users/jalkjaer/events', 'https://api.github.com/users/jalkjaer/received_events', 0); +INSERT INTO `developer` VALUES (599706, 'trumant', 'C', 0, 0, 0, 0, 0, 0, 0, 'Travis Truman', '@samsara-dev ', '', 'Philadelphia, PA USA', 'trumant@gmail.com', 'true', NULL, NULL, 0, 0, 49, 54, 0, 0, 0, '2011-02-04T01:36:01Z', '2024-04-05T21:39:39Z', 'https://avatars.githubusercontent.com/u/599706?v=4', 'https://api.github.com/users/trumant', 'https://github.com/trumant', 'https://api.github.com/users/trumant/followers', 'https://api.github.com/users/trumant/following', 'https://api.github.com/users/trumant/gists', 'https://api.github.com/users/trumant/starred', 'https://api.github.com/users/trumant/repos', 'https://api.github.com/users/trumant/events', 'https://api.github.com/users/trumant/received_events', 0); +INSERT INTO `developer` VALUES (600464, 'svdm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan van der Meer', '@PrivacyCompany ', '', 'NL', NULL, NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2011-02-04T13:45:48Z', '2024-10-27T11:19:51Z', 'https://avatars.githubusercontent.com/u/600464?v=4', 'https://api.github.com/users/svdm', 'https://github.com/svdm', 'https://api.github.com/users/svdm/followers', 'https://api.github.com/users/svdm/following', 'https://api.github.com/users/svdm/gists', 'https://api.github.com/users/svdm/starred', 'https://api.github.com/users/svdm/repos', 'https://api.github.com/users/svdm/events', 'https://api.github.com/users/svdm/received_events', 0); +INSERT INTO `developer` VALUES (602513, 'jasonbcox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason B. Cox', NULL, 'www.jasonbcox.com', '未知', 'contact@jasonbcox.com', NULL, 'PGP Fingerprint: 3BB1 6D00 D9A6 D281 591B DC76 E448 6356 E7A8 1D2C', 'jasonbcox0', 0, 0, 0, 0, 0, 0, 0, '2011-02-05T22:12:37Z', '2024-02-29T23:56:09Z', 'https://avatars.githubusercontent.com/u/602513?v=4', 'https://api.github.com/users/jasonbcox', 'https://github.com/jasonbcox', 'https://api.github.com/users/jasonbcox/followers', 'https://api.github.com/users/jasonbcox/following', 'https://api.github.com/users/jasonbcox/gists', 'https://api.github.com/users/jasonbcox/starred', 'https://api.github.com/users/jasonbcox/repos', 'https://api.github.com/users/jasonbcox/events', 'https://api.github.com/users/jasonbcox/received_events', 0); +INSERT INTO `developer` VALUES (617942, 'ellman121', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elliott', 'NewStore GmbH', 'https://elliottrarden.me', 'Berlin', NULL, NULL, 'Gamer with a coding problem', NULL, 0, 0, 2, 8, 0, 0, 0, '2011-02-14T20:10:14Z', '2024-08-24T15:51:06Z', 'https://avatars.githubusercontent.com/u/617942?v=4', 'https://api.github.com/users/ellman121', 'https://github.com/ellman121', 'https://api.github.com/users/ellman121/followers', 'https://api.github.com/users/ellman121/following', 'https://api.github.com/users/ellman121/gists', 'https://api.github.com/users/ellman121/starred', 'https://api.github.com/users/ellman121/repos', 'https://api.github.com/users/ellman121/events', 'https://api.github.com/users/ellman121/received_events', 0); +INSERT INTO `developer` VALUES (620611, 'pstratem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Strateman', NULL, 'https://strateman.ninja/', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 73, 0, 0, 0, 0, '2011-02-16T06:26:07Z', '2024-05-28T17:46:01Z', 'https://avatars.githubusercontent.com/u/620611?v=4', 'https://api.github.com/users/pstratem', 'https://github.com/pstratem', 'https://api.github.com/users/pstratem/followers', 'https://api.github.com/users/pstratem/following', 'https://api.github.com/users/pstratem/gists', 'https://api.github.com/users/pstratem/starred', 'https://api.github.com/users/pstratem/repos', 'https://api.github.com/users/pstratem/events', 'https://api.github.com/users/pstratem/received_events', 0); +INSERT INTO `developer` VALUES (626427, 'joshes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joshua Hansen', '@PsiQ ', '', 'Canada', 'j4ah4n@gmail.com', 'true', 'Director, Applications Systems Engineering @PsiQ ', 'bytecode', 0, 0, 16, 21, 0, 0, 0, '2011-02-19T04:45:29Z', '2024-09-28T17:26:07Z', 'https://avatars.githubusercontent.com/u/626427?v=4', 'https://api.github.com/users/joshes', 'https://github.com/joshes', 'https://api.github.com/users/joshes/followers', 'https://api.github.com/users/joshes/following', 'https://api.github.com/users/joshes/gists', 'https://api.github.com/users/joshes/starred', 'https://api.github.com/users/joshes/repos', 'https://api.github.com/users/joshes/events', 'https://api.github.com/users/joshes/received_events', 0); +INSERT INTO `developer` VALUES (630679, 'Raulo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raulo', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2011-02-21T20:46:57Z', '2023-02-05T11:15:38Z', 'https://avatars.githubusercontent.com/u/630679?v=4', 'https://api.github.com/users/Raulo', 'https://github.com/Raulo', 'https://api.github.com/users/Raulo/followers', 'https://api.github.com/users/Raulo/following', 'https://api.github.com/users/Raulo/gists', 'https://api.github.com/users/Raulo/starred', 'https://api.github.com/users/Raulo/repos', 'https://api.github.com/users/Raulo/events', 'https://api.github.com/users/Raulo/received_events', 0); +INSERT INTO `developer` VALUES (637706, 'randy-waterhouse', 'C', 0, 0, 0, 0, 0, 0, 0, 'randy-waterhouse', NULL, 'https://github.com/randy-waterhouse', 'https://webchat.freenode.net/?channels=opentransactions&uio=d4', NULL, NULL, NULL, NULL, 0, 0, 35, 0, 0, 0, 0, '2011-02-25T10:18:45Z', '2024-01-25T02:14:11Z', 'https://avatars.githubusercontent.com/u/637706?v=4', 'https://api.github.com/users/randy-waterhouse', 'https://github.com/randy-waterhouse', 'https://api.github.com/users/randy-waterhouse/followers', 'https://api.github.com/users/randy-waterhouse/following', 'https://api.github.com/users/randy-waterhouse/gists', 'https://api.github.com/users/randy-waterhouse/starred', 'https://api.github.com/users/randy-waterhouse/repos', 'https://api.github.com/users/randy-waterhouse/events', 'https://api.github.com/users/randy-waterhouse/received_events', 0); +INSERT INTO `developer` VALUES (639247, 'ldm5180', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lenny Maiorani', NULL, '', 'Denver, CO', NULL, NULL, NULL, 'lennymaiorani', 0, 0, 19, 10, 0, 0, 0, '2011-02-26T06:44:34Z', '2024-08-25T02:25:05Z', 'https://avatars.githubusercontent.com/u/639247?v=4', 'https://api.github.com/users/ldm5180', 'https://github.com/ldm5180', 'https://api.github.com/users/ldm5180/followers', 'https://api.github.com/users/ldm5180/following', 'https://api.github.com/users/ldm5180/gists', 'https://api.github.com/users/ldm5180/starred', 'https://api.github.com/users/ldm5180/repos', 'https://api.github.com/users/ldm5180/events', 'https://api.github.com/users/ldm5180/received_events', 0); +INSERT INTO `developer` VALUES (640746, 'nanjj', 'C', 0, 0, 0, 0, 0, 0, 0, 'JUN JIE NAN', NULL, 'https://nanjj.github.io', '未知', 'nanjunjie@gmail.com', NULL, NULL, NULL, 0, 0, 17, 2, 0, 0, 0, '2011-02-27T12:27:10Z', '2024-08-03T02:16:23Z', 'https://avatars.githubusercontent.com/u/640746?v=4', 'https://api.github.com/users/nanjj', 'https://github.com/nanjj', 'https://api.github.com/users/nanjj/followers', 'https://api.github.com/users/nanjj/following', 'https://api.github.com/users/nanjj/gists', 'https://api.github.com/users/nanjj/starred', 'https://api.github.com/users/nanjj/repos', 'https://api.github.com/users/nanjj/events', 'https://api.github.com/users/nanjj/received_events', 0); +INSERT INTO `developer` VALUES (641790, 'geekmug', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Dial', NULL, '', '未知', 'scott@scottdial.com', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2011-02-28T05:42:18Z', '2024-07-03T15:58:54Z', 'https://avatars.githubusercontent.com/u/641790?v=4', 'https://api.github.com/users/geekmug', 'https://github.com/geekmug', 'https://api.github.com/users/geekmug/followers', 'https://api.github.com/users/geekmug/following', 'https://api.github.com/users/geekmug/gists', 'https://api.github.com/users/geekmug/starred', 'https://api.github.com/users/geekmug/repos', 'https://api.github.com/users/geekmug/events', 'https://api.github.com/users/geekmug/received_events', 0); +INSERT INTO `developer` VALUES (643204, 'daira', 'C', 7.788564741433237, 0, 0, 0, 0, 0, 0, 'Daira-Emma Hopwood', NULL, '', '未知', NULL, NULL, 'R&D Engineering Manager at Electric Coin Company', NULL, 0, 0, 739, 8, 0, 0, 0, '2011-02-28T18:49:05Z', '2024-09-21T15:19:54Z', 'https://avatars.githubusercontent.com/u/643204?v=4', 'https://api.github.com/users/daira', 'https://github.com/daira', 'https://api.github.com/users/daira/followers', 'https://api.github.com/users/daira/following', 'https://api.github.com/users/daira/gists', 'https://api.github.com/users/daira/starred', 'https://api.github.com/users/daira/repos', 'https://api.github.com/users/daira/events', 'https://api.github.com/users/daira/received_events', 0); +INSERT INTO `developer` VALUES (643960, 'MiguelMoll', 'C', 0, 0, 0, 0, 0, 0, 0, 'Miguel Moll', NULL, 'https://miguel.moll.ninja', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 2, 0, 0, 0, '2011-03-01T03:37:32Z', '2024-10-24T16:32:28Z', 'https://avatars.githubusercontent.com/u/643960?v=4', 'https://api.github.com/users/MiguelMoll', 'https://github.com/MiguelMoll', 'https://api.github.com/users/MiguelMoll/followers', 'https://api.github.com/users/MiguelMoll/following', 'https://api.github.com/users/MiguelMoll/gists', 'https://api.github.com/users/MiguelMoll/starred', 'https://api.github.com/users/MiguelMoll/repos', 'https://api.github.com/users/MiguelMoll/events', 'https://api.github.com/users/MiguelMoll/received_events', 0); +INSERT INTO `developer` VALUES (644416, 'HostFat', 'C', 0, 0, 0, 0, 0, 0, 0, 'HostFat', NULL, '', 'Italy', NULL, NULL, NULL, NULL, 0, 0, 141, 61, 0, 0, 0, '2011-03-01T09:44:08Z', '2024-10-17T13:50:06Z', 'https://avatars.githubusercontent.com/u/644416?v=4', 'https://api.github.com/users/HostFat', 'https://github.com/HostFat', 'https://api.github.com/users/HostFat/followers', 'https://api.github.com/users/HostFat/following', 'https://api.github.com/users/HostFat/gists', 'https://api.github.com/users/HostFat/starred', 'https://api.github.com/users/HostFat/repos', 'https://api.github.com/users/HostFat/events', 'https://api.github.com/users/HostFat/received_events', 0); +INSERT INTO `developer` VALUES (646638, 'jbfm', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Mick', '@360player ', 'jmick.se', 'Stockholm, Sweden', 'john@jmick.se', NULL, NULL, NULL, 0, 0, 6, 4, 0, 0, 0, '2011-03-02T10:18:27Z', '2024-10-21T07:29:13Z', 'https://avatars.githubusercontent.com/u/646638?v=4', 'https://api.github.com/users/jbfm', 'https://github.com/jbfm', 'https://api.github.com/users/jbfm/followers', 'https://api.github.com/users/jbfm/following', 'https://api.github.com/users/jbfm/gists', 'https://api.github.com/users/jbfm/starred', 'https://api.github.com/users/jbfm/repos', 'https://api.github.com/users/jbfm/events', 'https://api.github.com/users/jbfm/received_events', 0); +INSERT INTO `developer` VALUES (649160, 'rubensayshi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ruben de Vries', NULL, '', 'Amsterdam, Netherlands', 'ruben@rubensayshi.com', NULL, NULL, NULL, 0, 0, 160, 12, 0, 0, 0, '2011-03-03T15:04:07Z', '2024-06-18T12:53:43Z', 'https://avatars.githubusercontent.com/u/649160?v=4', 'https://api.github.com/users/rubensayshi', 'https://github.com/rubensayshi', 'https://api.github.com/users/rubensayshi/followers', 'https://api.github.com/users/rubensayshi/following', 'https://api.github.com/users/rubensayshi/gists', 'https://api.github.com/users/rubensayshi/starred', 'https://api.github.com/users/rubensayshi/repos', 'https://api.github.com/users/rubensayshi/events', 'https://api.github.com/users/rubensayshi/received_events', 0); +INSERT INTO `developer` VALUES (649246, 'TheBlueMatt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Corallo', NULL, 'https://git.bitcoin.ninja', '未知', NULL, NULL, 'Many repos moved, see https://git.bitcoin.ninja.', NULL, 0, 0, 0, 0, 0, 0, 0, '2011-03-03T15:49:31Z', '2024-09-30T14:20:21Z', 'https://avatars.githubusercontent.com/u/649246?v=4', 'https://api.github.com/users/TheBlueMatt', 'https://github.com/TheBlueMatt', 'https://api.github.com/users/TheBlueMatt/followers', 'https://api.github.com/users/TheBlueMatt/following', 'https://api.github.com/users/TheBlueMatt/gists', 'https://api.github.com/users/TheBlueMatt/starred', 'https://api.github.com/users/TheBlueMatt/repos', 'https://api.github.com/users/TheBlueMatt/events', 'https://api.github.com/users/TheBlueMatt/received_events', 0); +INSERT INTO `developer` VALUES (651970, 'ali1234', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alistair Buxton', '@ali1234@mastodon.social', 'https://mastodon.social/@ali1234', 'United Kingdom', 'a.j.buxton@gmail.com', 'true', NULL, NULL, 0, 0, 78, 10, 0, 0, 0, '2011-03-05T01:37:44Z', '2024-06-21T06:10:05Z', 'https://avatars.githubusercontent.com/u/651970?v=4', 'https://api.github.com/users/ali1234', 'https://github.com/ali1234', 'https://api.github.com/users/ali1234/followers', 'https://api.github.com/users/ali1234/following', 'https://api.github.com/users/ali1234/gists', 'https://api.github.com/users/ali1234/starred', 'https://api.github.com/users/ali1234/repos', 'https://api.github.com/users/ali1234/events', 'https://api.github.com/users/ali1234/received_events', 0); +INSERT INTO `developer` VALUES (652268, 'marklundeberg', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2011-03-05T08:39:03Z', '2016-06-21T09:08:45Z', 'https://avatars.githubusercontent.com/u/652268?v=4', 'https://api.github.com/users/marklundeberg', 'https://github.com/marklundeberg', 'https://api.github.com/users/marklundeberg/followers', 'https://api.github.com/users/marklundeberg/following', 'https://api.github.com/users/marklundeberg/gists', 'https://api.github.com/users/marklundeberg/starred', 'https://api.github.com/users/marklundeberg/repos', 'https://api.github.com/users/marklundeberg/events', 'https://api.github.com/users/marklundeberg/received_events', 0); +INSERT INTO `developer` VALUES (657615, 'legik', 'C', 0, 0, 0, 0, 0, 0, 0, 'O.o', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 20, 0, 0, 0, '2011-03-08T12:21:53Z', '2024-10-04T19:48:06Z', 'https://avatars.githubusercontent.com/u/657615?v=4', 'https://api.github.com/users/legik', 'https://github.com/legik', 'https://api.github.com/users/legik/followers', 'https://api.github.com/users/legik/following', 'https://api.github.com/users/legik/gists', 'https://api.github.com/users/legik/starred', 'https://api.github.com/users/legik/repos', 'https://api.github.com/users/legik/events', 'https://api.github.com/users/legik/received_events', 0); +INSERT INTO `developer` VALUES (662419, 'justAnotherDev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Casey', 'Scribd', '', '未知', NULL, NULL, '🧗‍♂️ + 🪂 ', NULL, 0, 0, 6, 4, 0, 0, 0, '2011-03-10T17:20:38Z', '2024-09-04T22:17:52Z', 'https://avatars.githubusercontent.com/u/662419?v=4', 'https://api.github.com/users/justAnotherDev', 'https://github.com/justAnotherDev', 'https://api.github.com/users/justAnotherDev/followers', 'https://api.github.com/users/justAnotherDev/following', 'https://api.github.com/users/justAnotherDev/gists', 'https://api.github.com/users/justAnotherDev/starred', 'https://api.github.com/users/justAnotherDev/repos', 'https://api.github.com/users/justAnotherDev/events', 'https://api.github.com/users/justAnotherDev/received_events', 0); +INSERT INTO `developer` VALUES (663217, 'iongchun', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ang Iongchun', NULL, '', '未知', 'angiongchun@gmail.com', NULL, NULL, NULL, 0, 0, 17, 1, 0, 0, 0, '2011-03-11T01:32:34Z', '2024-10-10T23:49:10Z', 'https://avatars.githubusercontent.com/u/663217?v=4', 'https://api.github.com/users/iongchun', 'https://github.com/iongchun', 'https://api.github.com/users/iongchun/followers', 'https://api.github.com/users/iongchun/following', 'https://api.github.com/users/iongchun/gists', 'https://api.github.com/users/iongchun/starred', 'https://api.github.com/users/iongchun/repos', 'https://api.github.com/users/iongchun/events', 'https://api.github.com/users/iongchun/received_events', 0); +INSERT INTO `developer` VALUES (665854, 'josephbisch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joseph Bisch', NULL, 'josephbisch.com', '未知', 'joseph.bisch@gmail.com', NULL, NULL, NULL, 0, 0, 45, 6, 0, 0, 0, '2011-03-12T16:14:29Z', '2023-09-28T14:45:13Z', 'https://avatars.githubusercontent.com/u/665854?v=4', 'https://api.github.com/users/josephbisch', 'https://github.com/josephbisch', 'https://api.github.com/users/josephbisch/followers', 'https://api.github.com/users/josephbisch/following', 'https://api.github.com/users/josephbisch/gists', 'https://api.github.com/users/josephbisch/starred', 'https://api.github.com/users/josephbisch/repos', 'https://api.github.com/users/josephbisch/events', 'https://api.github.com/users/josephbisch/received_events', 0); +INSERT INTO `developer` VALUES (666297, 'donny-dont', 'C', 0, 0, 0, 0, 0, 0, 0, 'Don Olmstead', 'Sony Interactive Entertainment', '', 'San Francisco, CA', NULL, NULL, NULL, 'don_olmstead', 0, 0, 61, 4, 0, 0, 0, '2011-03-12T23:15:53Z', '2024-10-26T01:36:01Z', 'https://avatars.githubusercontent.com/u/666297?v=4', 'https://api.github.com/users/donny-dont', 'https://github.com/donny-dont', 'https://api.github.com/users/donny-dont/followers', 'https://api.github.com/users/donny-dont/following', 'https://api.github.com/users/donny-dont/gists', 'https://api.github.com/users/donny-dont/starred', 'https://api.github.com/users/donny-dont/repos', 'https://api.github.com/users/donny-dont/events', 'https://api.github.com/users/donny-dont/received_events', 0); +INSERT INTO `developer` VALUES (672405, 'cameronbraid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cameron Braid', 'DriveNow Pty Ltd', 'https://www.drivenow.com.au', '未知', 'cameron@drivenow.com.au', NULL, NULL, NULL, 0, 0, 12, 12, 0, 0, 0, '2011-03-16T04:49:16Z', '2024-07-24T05:53:13Z', 'https://avatars.githubusercontent.com/u/672405?v=4', 'https://api.github.com/users/cameronbraid', 'https://github.com/cameronbraid', 'https://api.github.com/users/cameronbraid/followers', 'https://api.github.com/users/cameronbraid/following', 'https://api.github.com/users/cameronbraid/gists', 'https://api.github.com/users/cameronbraid/starred', 'https://api.github.com/users/cameronbraid/repos', 'https://api.github.com/users/cameronbraid/events', 'https://api.github.com/users/cameronbraid/received_events', 0); +INSERT INTO `developer` VALUES (673912, 'spiechu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dawid Spiechowicz', NULL, '', 'Poland', 'spiechu@gmail.com', NULL, NULL, NULL, 0, 0, 23, 21, 0, 0, 0, '2011-03-16T20:56:56Z', '2024-05-05T17:34:52Z', 'https://avatars.githubusercontent.com/u/673912?v=4', 'https://api.github.com/users/spiechu', 'https://github.com/spiechu', 'https://api.github.com/users/spiechu/followers', 'https://api.github.com/users/spiechu/following', 'https://api.github.com/users/spiechu/gists', 'https://api.github.com/users/spiechu/starred', 'https://api.github.com/users/spiechu/repos', 'https://api.github.com/users/spiechu/events', 'https://api.github.com/users/spiechu/received_events', 0); +INSERT INTO `developer` VALUES (674134, 'gnawhleinad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Hwang', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 148, 41, 0, 0, 0, '2011-03-17T00:00:27Z', '2024-09-07T21:08:47Z', 'https://avatars.githubusercontent.com/u/674134?v=4', 'https://api.github.com/users/gnawhleinad', 'https://github.com/gnawhleinad', 'https://api.github.com/users/gnawhleinad/followers', 'https://api.github.com/users/gnawhleinad/following', 'https://api.github.com/users/gnawhleinad/gists', 'https://api.github.com/users/gnawhleinad/starred', 'https://api.github.com/users/gnawhleinad/repos', 'https://api.github.com/users/gnawhleinad/events', 'https://api.github.com/users/gnawhleinad/received_events', 0); +INSERT INTO `developer` VALUES (677252, 'jugglinmike', 'C', 0.6890760597241377, 0, 0, 0, 0, 0, 0, NULL, 'bocoup', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 325, 4, 0, 0, 0, '2011-03-18T14:53:23Z', '2024-10-09T03:05:40Z', 'https://avatars.githubusercontent.com/u/677252?v=4', 'https://api.github.com/users/jugglinmike', 'https://github.com/jugglinmike', 'https://api.github.com/users/jugglinmike/followers', 'https://api.github.com/users/jugglinmike/following', 'https://api.github.com/users/jugglinmike/gists', 'https://api.github.com/users/jugglinmike/starred', 'https://api.github.com/users/jugglinmike/repos', 'https://api.github.com/users/jugglinmike/events', 'https://api.github.com/users/jugglinmike/received_events', 0); +INSERT INTO `developer` VALUES (683170, 'd6o', 'C', 0, 0, 0, 0, 0, 0, 0, 'Diego', NULL, 'diego.dev', '未知', 'mail@diego.dev', NULL, '\r\n A Computer Engineer - A Passionate Backend Developer\r\n', NULL, 0, 0, 213, 99, 0, 0, 0, '2011-03-22T05:18:27Z', '2024-10-26T05:34:17Z', 'https://avatars.githubusercontent.com/u/683170?v=4', 'https://api.github.com/users/d6o', 'https://github.com/d6o', 'https://api.github.com/users/d6o/followers', 'https://api.github.com/users/d6o/following', 'https://api.github.com/users/d6o/gists', 'https://api.github.com/users/d6o/starred', 'https://api.github.com/users/d6o/repos', 'https://api.github.com/users/d6o/events', 'https://api.github.com/users/d6o/received_events', 0); +INSERT INTO `developer` VALUES (684180, 'stroborobo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bo', NULL, 'https://kbct.de/', 'Lübeck, Germany', 'bo@kbct.de', NULL, NULL, NULL, 0, 0, 27, 21, 0, 0, 0, '2011-03-22T16:11:50Z', '2024-06-12T08:31:33Z', 'https://avatars.githubusercontent.com/u/684180?v=4', 'https://api.github.com/users/stroborobo', 'https://github.com/stroborobo', 'https://api.github.com/users/stroborobo/followers', 'https://api.github.com/users/stroborobo/following', 'https://api.github.com/users/stroborobo/gists', 'https://api.github.com/users/stroborobo/starred', 'https://api.github.com/users/stroborobo/repos', 'https://api.github.com/users/stroborobo/events', 'https://api.github.com/users/stroborobo/received_events', 0); +INSERT INTO `developer` VALUES (689872, 'anddam', 'C', 0, 0, 0, 0, 0, 0, 0, 'anddam', NULL, 'http://www.brapi.net', 'Italy', NULL, NULL, NULL, NULL, 0, 0, 14, 1, 0, 0, 0, '2011-03-25T08:04:24Z', '2024-03-27T21:43:03Z', 'https://avatars.githubusercontent.com/u/689872?v=4', 'https://api.github.com/users/anddam', 'https://github.com/anddam', 'https://api.github.com/users/anddam/followers', 'https://api.github.com/users/anddam/following', 'https://api.github.com/users/anddam/gists', 'https://api.github.com/users/anddam/starred', 'https://api.github.com/users/anddam/repos', 'https://api.github.com/users/anddam/events', 'https://api.github.com/users/anddam/received_events', 0); +INSERT INTO `developer` VALUES (697159, 'lucayepa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luca Venturini', 'CEO @token21 @yepa', 'http://luca.yepa.com', 'Nassau, Bahamas', NULL, NULL, 'Engineer. Cypherpunk. Bitcoin maximalist. Libertarian. Free thinker.', 'lucayepa', 0, 0, 24, 2, 0, 0, 0, '2011-03-29T12:18:54Z', '2024-11-04T11:59:27Z', 'https://avatars.githubusercontent.com/u/697159?v=4', 'https://api.github.com/users/lucayepa', 'https://github.com/lucayepa', 'https://api.github.com/users/lucayepa/followers', 'https://api.github.com/users/lucayepa/following', 'https://api.github.com/users/lucayepa/gists', 'https://api.github.com/users/lucayepa/starred', 'https://api.github.com/users/lucayepa/repos', 'https://api.github.com/users/lucayepa/events', 'https://api.github.com/users/lucayepa/received_events', 0); +INSERT INTO `developer` VALUES (703978, 'erictchin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2011-04-01T15:40:25Z', '2024-09-10T15:59:48Z', 'https://avatars.githubusercontent.com/u/703978?v=4', 'https://api.github.com/users/erictchin', 'https://github.com/erictchin', 'https://api.github.com/users/erictchin/followers', 'https://api.github.com/users/erictchin/following', 'https://api.github.com/users/erictchin/gists', 'https://api.github.com/users/erictchin/starred', 'https://api.github.com/users/erictchin/repos', 'https://api.github.com/users/erictchin/events', 'https://api.github.com/users/erictchin/received_events', 0); +INSERT INTO `developer` VALUES (704085, 'akhleung', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Leung', NULL, '', 'San Francisco Bay Area', 'modus.tollens@gmail.com', NULL, NULL, NULL, 0, 0, 52, 0, 0, 0, 0, '2011-04-01T16:46:23Z', '2024-10-08T02:38:34Z', 'https://avatars.githubusercontent.com/u/704085?v=4', 'https://api.github.com/users/akhleung', 'https://github.com/akhleung', 'https://api.github.com/users/akhleung/followers', 'https://api.github.com/users/akhleung/following', 'https://api.github.com/users/akhleung/gists', 'https://api.github.com/users/akhleung/starred', 'https://api.github.com/users/akhleung/repos', 'https://api.github.com/users/akhleung/events', 'https://api.github.com/users/akhleung/received_events', 0); +INSERT INTO `developer` VALUES (708570, 'mmlb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Manuel Mendez', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 43, 8, 0, 0, 0, '2011-04-04T14:53:39Z', '2024-10-30T11:18:17Z', 'https://avatars.githubusercontent.com/u/708570?v=4', 'https://api.github.com/users/mmlb', 'https://github.com/mmlb', 'https://api.github.com/users/mmlb/followers', 'https://api.github.com/users/mmlb/following', 'https://api.github.com/users/mmlb/gists', 'https://api.github.com/users/mmlb/starred', 'https://api.github.com/users/mmlb/repos', 'https://api.github.com/users/mmlb/events', 'https://api.github.com/users/mmlb/received_events', 0); +INSERT INTO `developer` VALUES (710537, 'jyap808', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julian Yap', NULL, '', '未知', NULL, NULL, 'npub1tuwsavew6wvz0m9p8nqk2ydasc08zwdu4ec7n25kq7j4s8qn5wxq5f5rvd', 'jyap', 0, 0, 118, 30, 0, 0, 0, '2011-04-05T11:36:05Z', '2024-10-18T01:48:47Z', 'https://avatars.githubusercontent.com/u/710537?v=4', 'https://api.github.com/users/jyap808', 'https://github.com/jyap808', 'https://api.github.com/users/jyap808/followers', 'https://api.github.com/users/jyap808/following', 'https://api.github.com/users/jyap808/gists', 'https://api.github.com/users/jyap808/starred', 'https://api.github.com/users/jyap808/repos', 'https://api.github.com/users/jyap808/events', 'https://api.github.com/users/jyap808/received_events', 0); +INSERT INTO `developer` VALUES (711717, 'calebhearth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Caleb Hearth', NULL, 'https://calebhearth.com', 'Denver, CO', 'caleb@calebhearth.com', NULL, NULL, NULL, 0, 0, 150, 7, 0, 0, 0, '2011-04-05T21:39:30Z', '2024-10-28T16:14:42Z', 'https://avatars.githubusercontent.com/u/711717?v=4', 'https://api.github.com/users/calebhearth', 'https://github.com/calebhearth', 'https://api.github.com/users/calebhearth/followers', 'https://api.github.com/users/calebhearth/following', 'https://api.github.com/users/calebhearth/gists', 'https://api.github.com/users/calebhearth/starred', 'https://api.github.com/users/calebhearth/repos', 'https://api.github.com/users/calebhearth/events', 'https://api.github.com/users/calebhearth/received_events', 0); +INSERT INTO `developer` VALUES (713006, 'shashankkumar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shashank Kumar', 'Razorpay', '', 'Bangalore', 'shashankkumar.me@gmail.com', NULL, NULL, NULL, 0, 0, 132, 24, 0, 0, 0, '2011-04-06T13:09:45Z', '2024-10-24T13:07:26Z', 'https://avatars.githubusercontent.com/u/713006?v=4', 'https://api.github.com/users/shashankkumar', 'https://github.com/shashankkumar', 'https://api.github.com/users/shashankkumar/followers', 'https://api.github.com/users/shashankkumar/following', 'https://api.github.com/users/shashankkumar/gists', 'https://api.github.com/users/shashankkumar/starred', 'https://api.github.com/users/shashankkumar/repos', 'https://api.github.com/users/shashankkumar/events', 'https://api.github.com/users/shashankkumar/received_events', 0); +INSERT INTO `developer` VALUES (716621, 'freewil', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sean', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 115, 49, 0, 0, 0, '2011-04-08T02:48:22Z', '2024-08-24T17:36:22Z', 'https://avatars.githubusercontent.com/u/716621?v=4', 'https://api.github.com/users/freewil', 'https://github.com/freewil', 'https://api.github.com/users/freewil/followers', 'https://api.github.com/users/freewil/following', 'https://api.github.com/users/freewil/gists', 'https://api.github.com/users/freewil/starred', 'https://api.github.com/users/freewil/repos', 'https://api.github.com/users/freewil/events', 'https://api.github.com/users/freewil/received_events', 0); +INSERT INTO `developer` VALUES (716965, 'simondlr', 'C', 1.4607596120838224, 0, 0, 0, 0, 0, 0, 'Simon de la Rouviere', NULL, 'https://twitter.com/simondlr', 'Cape Town, South Africa', NULL, NULL, 'Explorer of all stories, master of sunsets.', NULL, 0, 0, 370, 26, 0, 0, 0, '2011-04-08T07:37:29Z', '2024-04-28T20:37:07Z', 'https://avatars.githubusercontent.com/u/716965?v=4', 'https://api.github.com/users/simondlr', 'https://github.com/simondlr', 'https://api.github.com/users/simondlr/followers', 'https://api.github.com/users/simondlr/following', 'https://api.github.com/users/simondlr/gists', 'https://api.github.com/users/simondlr/starred', 'https://api.github.com/users/simondlr/repos', 'https://api.github.com/users/simondlr/events', 'https://api.github.com/users/simondlr/received_events', 0); +INSERT INTO `developer` VALUES (722710, 'stwalkerster', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Walker', NULL, 'https://stwalkerster.co.uk/', 'Edinburgh, United Kingdom', 'simon@stwalkerster.co.uk', NULL, 'Cloud Engineer and Open Source enthusiast with a strong interest in devops, SRE, and security', NULL, 0, 0, 68, 124, 0, 0, 0, '2011-04-11T15:10:25Z', '2024-10-21T14:13:48Z', 'https://avatars.githubusercontent.com/u/722710?v=4', 'https://api.github.com/users/stwalkerster', 'https://github.com/stwalkerster', 'https://api.github.com/users/stwalkerster/followers', 'https://api.github.com/users/stwalkerster/following', 'https://api.github.com/users/stwalkerster/gists', 'https://api.github.com/users/stwalkerster/starred', 'https://api.github.com/users/stwalkerster/repos', 'https://api.github.com/users/stwalkerster/events', 'https://api.github.com/users/stwalkerster/received_events', 0); +INSERT INTO `developer` VALUES (734840, 'pronav', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pranav Gupta', 'Razorpay', '', 'Bengaluru, India', NULL, NULL, NULL, NULL, 0, 0, 63, 8, 0, 0, 0, '2011-04-17T14:27:10Z', '2024-10-17T05:31:56Z', 'https://avatars.githubusercontent.com/u/734840?v=4', 'https://api.github.com/users/pronav', 'https://github.com/pronav', 'https://api.github.com/users/pronav/followers', 'https://api.github.com/users/pronav/following', 'https://api.github.com/users/pronav/gists', 'https://api.github.com/users/pronav/starred', 'https://api.github.com/users/pronav/repos', 'https://api.github.com/users/pronav/events', 'https://api.github.com/users/pronav/received_events', 0); +INSERT INTO `developer` VALUES (743306, 'schildbach', 'C', 7.016881189073552, 0, 0, 0, 0, 0, 0, 'Andreas Schildbach', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 694, 5, 0, 0, 0, '2011-04-21T08:05:17Z', '2024-03-08T15:46:43Z', 'https://avatars.githubusercontent.com/u/743306?v=4', 'https://api.github.com/users/schildbach', 'https://github.com/schildbach', 'https://api.github.com/users/schildbach/followers', 'https://api.github.com/users/schildbach/following', 'https://api.github.com/users/schildbach/gists', 'https://api.github.com/users/schildbach/starred', 'https://api.github.com/users/schildbach/repos', 'https://api.github.com/users/schildbach/events', 'https://api.github.com/users/schildbach/received_events', 0); +INSERT INTO `developer` VALUES (745011, 'jonhehir', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Hehir', NULL, 'https://www.jonhehir.com', 'United States', NULL, NULL, NULL, NULL, 0, 0, 3, 2, 0, 0, 0, '2011-04-22T01:19:49Z', '2024-01-23T12:18:41Z', 'https://avatars.githubusercontent.com/u/745011?v=4', 'https://api.github.com/users/jonhehir', 'https://github.com/jonhehir', 'https://api.github.com/users/jonhehir/followers', 'https://api.github.com/users/jonhehir/following', 'https://api.github.com/users/jonhehir/gists', 'https://api.github.com/users/jonhehir/starred', 'https://api.github.com/users/jonhehir/repos', 'https://api.github.com/users/jonhehir/events', 'https://api.github.com/users/jonhehir/received_events', 0); +INSERT INTO `developer` VALUES (747028, 'cloudaice', 'C', 0, 0, 0, 0, 0, 0, 0, '项超', 'Bytedance', '', 'Hangzhou China', 'cloudaice@gmail.com', 'true', NULL, NULL, 0, 0, 211, 63, 0, 0, 0, '2011-04-23T05:15:03Z', '2024-10-29T05:03:07Z', 'https://avatars.githubusercontent.com/u/747028?v=4', 'https://api.github.com/users/cloudaice', 'https://github.com/cloudaice', 'https://api.github.com/users/cloudaice/followers', 'https://api.github.com/users/cloudaice/following', 'https://api.github.com/users/cloudaice/gists', 'https://api.github.com/users/cloudaice/starred', 'https://api.github.com/users/cloudaice/repos', 'https://api.github.com/users/cloudaice/events', 'https://api.github.com/users/cloudaice/received_events', 0); +INSERT INTO `developer` VALUES (752491, 'h00die', 'C', 0, 0, 0, 0, 0, 0, 0, 'h00die', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 169, 10, 0, 0, 0, '2011-04-26T13:48:09Z', '2024-10-29T13:34:08Z', 'https://avatars.githubusercontent.com/u/752491?v=4', 'https://api.github.com/users/h00die', 'https://github.com/h00die', 'https://api.github.com/users/h00die/followers', 'https://api.github.com/users/h00die/following', 'https://api.github.com/users/h00die/gists', 'https://api.github.com/users/h00die/starred', 'https://api.github.com/users/h00die/repos', 'https://api.github.com/users/h00die/events', 'https://api.github.com/users/h00die/received_events', 0); +INSERT INTO `developer` VALUES (760143, 'liamdawson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Liam Dawson', NULL, 'https://www.ldaws.com', 'Melbourne, Victoria, Australia', 'liam@ldaws.com', NULL, NULL, NULL, 0, 0, 18, 17, 0, 0, 0, '2011-04-30T04:29:36Z', '2024-10-30T03:26:15Z', 'https://avatars.githubusercontent.com/u/760143?v=4', 'https://api.github.com/users/liamdawson', 'https://github.com/liamdawson', 'https://api.github.com/users/liamdawson/followers', 'https://api.github.com/users/liamdawson/following', 'https://api.github.com/users/liamdawson/gists', 'https://api.github.com/users/liamdawson/starred', 'https://api.github.com/users/liamdawson/repos', 'https://api.github.com/users/liamdawson/events', 'https://api.github.com/users/liamdawson/received_events', 0); +INSERT INTO `developer` VALUES (766423, 'jornh', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Denmark', NULL, NULL, NULL, NULL, 0, 0, 28, 5, 0, 0, 0, '2011-05-03T20:04:00Z', '2024-10-23T11:18:39Z', 'https://avatars.githubusercontent.com/u/766423?v=4', 'https://api.github.com/users/jornh', 'https://github.com/jornh', 'https://api.github.com/users/jornh/followers', 'https://api.github.com/users/jornh/following', 'https://api.github.com/users/jornh/gists', 'https://api.github.com/users/jornh/starred', 'https://api.github.com/users/jornh/repos', 'https://api.github.com/users/jornh/events', 'https://api.github.com/users/jornh/received_events', 0); +INSERT INTO `developer` VALUES (775844, 'rustyrussell', 'C', 11.115378278272768, 0, 0, 0, 0, 0, 0, 'Rusty Russell', 'Blockstream', 'http://rusty.ozlabs.org', '未知', 'rusty@rustcorp.com.au', NULL, 'GPG: 15EE 8D6C AB0E 7F0C F999 BFCB D920 0E6C D1AD B8F1\r\n\r\nRusty Russell \r\n\r\nnpub179e9tp4yqtqx4myp35283fz64gxuzmr6n3yxnktux5pnd5t03eps0el', NULL, 0, 0, 933, 3, 0, 0, 0, '2011-05-09T00:36:28Z', '2024-10-28T11:09:28Z', 'https://avatars.githubusercontent.com/u/775844?v=4', 'https://api.github.com/users/rustyrussell', 'https://github.com/rustyrussell', 'https://api.github.com/users/rustyrussell/followers', 'https://api.github.com/users/rustyrussell/following', 'https://api.github.com/users/rustyrussell/gists', 'https://api.github.com/users/rustyrussell/starred', 'https://api.github.com/users/rustyrussell/repos', 'https://api.github.com/users/rustyrussell/events', 'https://api.github.com/users/rustyrussell/received_events', 0); +INSERT INTO `developer` VALUES (783286, 'sgandon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sébastien Gandon', 'Qlik', '', 'Paris', NULL, NULL, 'Principal Cloud Software Architect', NULL, 0, 0, 19, 6, 0, 0, 0, '2011-05-12T07:57:13Z', '2024-10-22T11:19:47Z', 'https://avatars.githubusercontent.com/u/783286?v=4', 'https://api.github.com/users/sgandon', 'https://github.com/sgandon', 'https://api.github.com/users/sgandon/followers', 'https://api.github.com/users/sgandon/following', 'https://api.github.com/users/sgandon/gists', 'https://api.github.com/users/sgandon/starred', 'https://api.github.com/users/sgandon/repos', 'https://api.github.com/users/sgandon/events', 'https://api.github.com/users/sgandon/received_events', 0); +INSERT INTO `developer` VALUES (786238, 'danlester', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Lester', 'ContainDS / Ideonate', 'https://ideonate.com/', 'Cambridge, UK', 'dan@ideonate.com', NULL, 'Technical Co-founder of ContainDS, Ideonate, WP-Glogin, Conversocial, iPlatform.', 'danlester', 0, 0, 26, 8, 0, 0, 0, '2011-05-13T14:40:32Z', '2024-07-23T12:55:12Z', 'https://avatars.githubusercontent.com/u/786238?v=4', 'https://api.github.com/users/danlester', 'https://github.com/danlester', 'https://api.github.com/users/danlester/followers', 'https://api.github.com/users/danlester/following', 'https://api.github.com/users/danlester/gists', 'https://api.github.com/users/danlester/starred', 'https://api.github.com/users/danlester/repos', 'https://api.github.com/users/danlester/events', 'https://api.github.com/users/danlester/received_events', 0); +INSERT INTO `developer` VALUES (791275, 'jvz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Sicker', '@apple', 'https://musigma.blog', 'Chicago', 'mattsicker@apache.org', NULL, 'Computer scientist, distributed systems software engineer, and advocate for free and open source software. Developer in Log4j and Spinnaker. (he/him/his)', NULL, 0, 0, 128, 33, 0, 0, 0, '2011-05-16T15:38:08Z', '2024-10-14T20:36:52Z', 'https://avatars.githubusercontent.com/u/791275?v=4', 'https://api.github.com/users/jvz', 'https://github.com/jvz', 'https://api.github.com/users/jvz/followers', 'https://api.github.com/users/jvz/following', 'https://api.github.com/users/jvz/gists', 'https://api.github.com/users/jvz/starred', 'https://api.github.com/users/jvz/repos', 'https://api.github.com/users/jvz/events', 'https://api.github.com/users/jvz/received_events', 0); +INSERT INTO `developer` VALUES (793580, 'sebbrandt87', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastian Brandt', '@Tchibo', '', 'Hamburg, Germany', 'sebbrandt@mailbox.org', NULL, 'Senior Cloud Engineer - Lead Online Platform at Tchibo GmbH', NULL, 0, 0, 25, 13, 0, 0, 0, '2011-05-17T14:43:20Z', '2024-08-01T13:52:40Z', 'https://avatars.githubusercontent.com/u/793580?v=4', 'https://api.github.com/users/sebbrandt87', 'https://github.com/sebbrandt87', 'https://api.github.com/users/sebbrandt87/followers', 'https://api.github.com/users/sebbrandt87/following', 'https://api.github.com/users/sebbrandt87/gists', 'https://api.github.com/users/sebbrandt87/starred', 'https://api.github.com/users/sebbrandt87/repos', 'https://api.github.com/users/sebbrandt87/events', 'https://api.github.com/users/sebbrandt87/received_events', 0); +INSERT INTO `developer` VALUES (797119, 'acaire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ash Caire', NULL, '', 'Perth, Australia', NULL, NULL, NULL, NULL, 0, 0, 17, 10, 0, 0, 0, '2011-05-19T01:15:12Z', '2024-10-15T11:19:36Z', 'https://avatars.githubusercontent.com/u/797119?v=4', 'https://api.github.com/users/acaire', 'https://github.com/acaire', 'https://api.github.com/users/acaire/followers', 'https://api.github.com/users/acaire/following', 'https://api.github.com/users/acaire/gists', 'https://api.github.com/users/acaire/starred', 'https://api.github.com/users/acaire/repos', 'https://api.github.com/users/acaire/events', 'https://api.github.com/users/acaire/received_events', 0); +INSERT INTO `developer` VALUES (801033, 'Unreal89', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2011-05-20T18:43:33Z', '2020-12-11T11:47:49Z', 'https://avatars.githubusercontent.com/u/801033?v=4', 'https://api.github.com/users/Unreal89', 'https://github.com/Unreal89', 'https://api.github.com/users/Unreal89/followers', 'https://api.github.com/users/Unreal89/following', 'https://api.github.com/users/Unreal89/gists', 'https://api.github.com/users/Unreal89/starred', 'https://api.github.com/users/Unreal89/repos', 'https://api.github.com/users/Unreal89/events', 'https://api.github.com/users/Unreal89/received_events', 0); +INSERT INTO `developer` VALUES (805263, 'stetro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steffen Tröster', NULL, '', 'Cologne', 'steffen.troester@googlemail.com', NULL, NULL, NULL, 0, 0, 86, 72, 0, 0, 0, '2011-05-23T14:07:53Z', '2024-09-10T12:36:41Z', 'https://avatars.githubusercontent.com/u/805263?v=4', 'https://api.github.com/users/stetro', 'https://github.com/stetro', 'https://api.github.com/users/stetro/followers', 'https://api.github.com/users/stetro/following', 'https://api.github.com/users/stetro/gists', 'https://api.github.com/users/stetro/starred', 'https://api.github.com/users/stetro/repos', 'https://api.github.com/users/stetro/events', 'https://api.github.com/users/stetro/received_events', 0); +INSERT INTO `developer` VALUES (808808, 'bendrucker', 'C', 2.884087053102795, 0, 0, 0, 0, 0, 0, 'Ben Drucker', NULL, 'http://www.bendrucker.me', 'San Francisco, CA', 'bvdrucker@gmail.com', NULL, NULL, 'bendrucker', 0, 0, 453, 34, 0, 0, 0, '2011-05-25T00:43:39Z', '2024-11-04T02:40:19Z', 'https://avatars.githubusercontent.com/u/808808?v=4', 'https://api.github.com/users/bendrucker', 'https://github.com/bendrucker', 'https://api.github.com/users/bendrucker/followers', 'https://api.github.com/users/bendrucker/following', 'https://api.github.com/users/bendrucker/gists', 'https://api.github.com/users/bendrucker/starred', 'https://api.github.com/users/bendrucker/repos', 'https://api.github.com/users/bendrucker/events', 'https://api.github.com/users/bendrucker/received_events', 0); +INSERT INTO `developer` VALUES (812993, 'yohanb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yohan Belval', '@turo', 'https://www.turo.com', 'Montréal', NULL, NULL, 'Fullstack development, DevOps, SRE and Cloud is my jam.', NULL, 0, 0, 23, 3, 0, 0, 0, '2011-05-26T20:47:23Z', '2024-10-22T18:37:17Z', 'https://avatars.githubusercontent.com/u/812993?v=4', 'https://api.github.com/users/yohanb', 'https://github.com/yohanb', 'https://api.github.com/users/yohanb/followers', 'https://api.github.com/users/yohanb/following', 'https://api.github.com/users/yohanb/gists', 'https://api.github.com/users/yohanb/starred', 'https://api.github.com/users/yohanb/repos', 'https://api.github.com/users/yohanb/events', 'https://api.github.com/users/yohanb/received_events', 0); +INSERT INTO `developer` VALUES (814431, 'illyabusigin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Illya Busigin', 'Cyrillian', 'http://www.cyrillian.com', 'Austin, TX', 'illya@cyrillian.com', NULL, NULL, NULL, 0, 0, 50, 11, 0, 0, 0, '2011-05-27T15:13:03Z', '2024-08-17T17:55:41Z', 'https://avatars.githubusercontent.com/u/814431?v=4', 'https://api.github.com/users/illyabusigin', 'https://github.com/illyabusigin', 'https://api.github.com/users/illyabusigin/followers', 'https://api.github.com/users/illyabusigin/following', 'https://api.github.com/users/illyabusigin/gists', 'https://api.github.com/users/illyabusigin/starred', 'https://api.github.com/users/illyabusigin/repos', 'https://api.github.com/users/illyabusigin/events', 'https://api.github.com/users/illyabusigin/received_events', 0); +INSERT INTO `developer` VALUES (815816, 'brunsgaard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonas Brunsgaard', 'Chainalysis', 'http://brunsgaard.io', 'Copenhagen, Denmark', 'jonas.brunsgaard@gmail.com', 'true', 'From Copenhagen with ❤️', NULL, 0, 0, 34, 12, 0, 0, 0, '2011-05-28T13:18:35Z', '2024-09-19T09:24:53Z', 'https://avatars.githubusercontent.com/u/815816?v=4', 'https://api.github.com/users/brunsgaard', 'https://github.com/brunsgaard', 'https://api.github.com/users/brunsgaard/followers', 'https://api.github.com/users/brunsgaard/following', 'https://api.github.com/users/brunsgaard/gists', 'https://api.github.com/users/brunsgaard/starred', 'https://api.github.com/users/brunsgaard/repos', 'https://api.github.com/users/brunsgaard/events', 'https://api.github.com/users/brunsgaard/received_events', 0); +INSERT INTO `developer` VALUES (817268, 'voron', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oleksandr Vorona', 'Dysnix', '', 'Kharkiv', NULL, NULL, NULL, NULL, 0, 0, 13, 2, 0, 0, 0, '2011-05-29T16:49:05Z', '2024-10-21T23:16:34Z', 'https://avatars.githubusercontent.com/u/817268?v=4', 'https://api.github.com/users/voron', 'https://github.com/voron', 'https://api.github.com/users/voron/followers', 'https://api.github.com/users/voron/following', 'https://api.github.com/users/voron/gists', 'https://api.github.com/users/voron/starred', 'https://api.github.com/users/voron/repos', 'https://api.github.com/users/voron/events', 'https://api.github.com/users/voron/received_events', 0); +INSERT INTO `developer` VALUES (828969, 'bubeck', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dr. Tilmann Bubeck', NULL, 'www.bubecks.de', 'Stuttgart, Germany', 'tilmann@bubecks.de', NULL, 'I am using Linux since 1995 and love contributing to open source projects. As a programmer, I always try to enhance based on existing solutions.', NULL, 0, 0, 5, 1, 0, 0, 0, '2011-06-04T06:14:49Z', '2024-10-18T11:25:34Z', 'https://avatars.githubusercontent.com/u/828969?v=4', 'https://api.github.com/users/bubeck', 'https://github.com/bubeck', 'https://api.github.com/users/bubeck/followers', 'https://api.github.com/users/bubeck/following', 'https://api.github.com/users/bubeck/gists', 'https://api.github.com/users/bubeck/starred', 'https://api.github.com/users/bubeck/repos', 'https://api.github.com/users/bubeck/events', 'https://api.github.com/users/bubeck/received_events', 0); +INSERT INTO `developer` VALUES (829535, 'smirzaei', 'C', 0, 0, 0, 0, 0, 0, 0, 'Soroush Mirzaei', '@adgear ', 'https://soroush.codes', 'Earth', NULL, 'true', NULL, NULL, 0, 0, 46, 51, 0, 0, 0, '2011-06-04T16:07:04Z', '2024-11-04T21:24:49Z', 'https://avatars.githubusercontent.com/u/829535?v=4', 'https://api.github.com/users/smirzaei', 'https://github.com/smirzaei', 'https://api.github.com/users/smirzaei/followers', 'https://api.github.com/users/smirzaei/following', 'https://api.github.com/users/smirzaei/gists', 'https://api.github.com/users/smirzaei/starred', 'https://api.github.com/users/smirzaei/repos', 'https://api.github.com/users/smirzaei/events', 'https://api.github.com/users/smirzaei/received_events', 0); +INSERT INTO `developer` VALUES (847020, 'sparticvs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Timko', NULL, 'http://tippytinkerer.com', '未知', NULL, NULL, 'Red Hatter', NULL, 0, 0, 15, 6, 0, 0, 0, '2011-06-13T14:25:54Z', '2024-11-02T04:05:42Z', 'https://avatars.githubusercontent.com/u/847020?v=4', 'https://api.github.com/users/sparticvs', 'https://github.com/sparticvs', 'https://api.github.com/users/sparticvs/followers', 'https://api.github.com/users/sparticvs/following', 'https://api.github.com/users/sparticvs/gists', 'https://api.github.com/users/sparticvs/starred', 'https://api.github.com/users/sparticvs/repos', 'https://api.github.com/users/sparticvs/events', 'https://api.github.com/users/sparticvs/received_events', 0); +INSERT INTO `developer` VALUES (850221, 'drivelikebrazil', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2011-06-14T19:28:20Z', '2024-08-22T15:02:11Z', 'https://avatars.githubusercontent.com/u/850221?v=4', 'https://api.github.com/users/drivelikebrazil', 'https://github.com/drivelikebrazil', 'https://api.github.com/users/drivelikebrazil/followers', 'https://api.github.com/users/drivelikebrazil/following', 'https://api.github.com/users/drivelikebrazil/gists', 'https://api.github.com/users/drivelikebrazil/starred', 'https://api.github.com/users/drivelikebrazil/repos', 'https://api.github.com/users/drivelikebrazil/events', 'https://api.github.com/users/drivelikebrazil/received_events', 0); +INSERT INTO `developer` VALUES (852698, 'enmaku', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Perry', 'Modest Menagerie', 'https://modestmenagerie.com', 'Las Vegas, NV', 'enmaku@gmail.com', NULL, NULL, 'modestmenagerie', 0, 0, 21, 1, 0, 0, 0, '2011-06-15T20:55:02Z', '2024-08-29T06:48:09Z', 'https://avatars.githubusercontent.com/u/852698?v=4', 'https://api.github.com/users/enmaku', 'https://github.com/enmaku', 'https://api.github.com/users/enmaku/followers', 'https://api.github.com/users/enmaku/following', 'https://api.github.com/users/enmaku/gists', 'https://api.github.com/users/enmaku/starred', 'https://api.github.com/users/enmaku/repos', 'https://api.github.com/users/enmaku/events', 'https://api.github.com/users/enmaku/received_events', 0); +INSERT INTO `developer` VALUES (854121, 'deadalnix', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://www.deadalnix.me/', 'Paris', 'deadalnix@gmail.com', NULL, NULL, NULL, 0, 0, 174, 4, 0, 0, 0, '2011-06-16T13:36:05Z', '2024-04-05T14:43:29Z', 'https://avatars.githubusercontent.com/u/854121?v=4', 'https://api.github.com/users/deadalnix', 'https://github.com/deadalnix', 'https://api.github.com/users/deadalnix/followers', 'https://api.github.com/users/deadalnix/following', 'https://api.github.com/users/deadalnix/gists', 'https://api.github.com/users/deadalnix/starred', 'https://api.github.com/users/deadalnix/repos', 'https://api.github.com/users/deadalnix/events', 'https://api.github.com/users/deadalnix/received_events', 0); +INSERT INTO `developer` VALUES (857205, 'olivierboudet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Olivier Boudet', NULL, '', '未知', 'o.boudet@gmail.com', NULL, NULL, NULL, 0, 0, 4, 9, 0, 0, 0, '2011-06-17T19:06:52Z', '2024-09-12T18:00:05Z', 'https://avatars.githubusercontent.com/u/857205?v=4', 'https://api.github.com/users/olivierboudet', 'https://github.com/olivierboudet', 'https://api.github.com/users/olivierboudet/followers', 'https://api.github.com/users/olivierboudet/following', 'https://api.github.com/users/olivierboudet/gists', 'https://api.github.com/users/olivierboudet/starred', 'https://api.github.com/users/olivierboudet/repos', 'https://api.github.com/users/olivierboudet/events', 'https://api.github.com/users/olivierboudet/received_events', 0); +INSERT INTO `developer` VALUES (858454, 'gmaxwell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gregory Maxwell', NULL, 'https://nt4tn.net/', '未知', 'greg@xiph.org', NULL, 'Former Bitcoin developer. Doesn\'t use github anymore.', NULL, 0, 0, 0, 0, 0, 0, 0, '2011-06-18T14:38:22Z', '2024-07-18T00:15:45Z', 'https://avatars.githubusercontent.com/u/858454?v=4', 'https://api.github.com/users/gmaxwell', 'https://github.com/gmaxwell', 'https://api.github.com/users/gmaxwell/followers', 'https://api.github.com/users/gmaxwell/following', 'https://api.github.com/users/gmaxwell/gists', 'https://api.github.com/users/gmaxwell/starred', 'https://api.github.com/users/gmaxwell/repos', 'https://api.github.com/users/gmaxwell/events', 'https://api.github.com/users/gmaxwell/received_events', 0); +INSERT INTO `developer` VALUES (858993, 'sgimenez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stéphane Gimenez', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 23, 2, 0, 0, 0, '2011-06-18T21:35:13Z', '2021-06-19T15:38:19Z', 'https://avatars.githubusercontent.com/u/858993?v=4', 'https://api.github.com/users/sgimenez', 'https://github.com/sgimenez', 'https://api.github.com/users/sgimenez/followers', 'https://api.github.com/users/sgimenez/following', 'https://api.github.com/users/sgimenez/gists', 'https://api.github.com/users/sgimenez/starred', 'https://api.github.com/users/sgimenez/repos', 'https://api.github.com/users/sgimenez/events', 'https://api.github.com/users/sgimenez/received_events', 0); +INSERT INTO `developer` VALUES (862007, 'haight6716', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julian Haight', NULL, 'http://www.julianhaight.com/', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2011-06-20T15:34:12Z', '2024-09-01T17:54:03Z', 'https://avatars.githubusercontent.com/u/862007?v=4', 'https://api.github.com/users/haight6716', 'https://github.com/haight6716', 'https://api.github.com/users/haight6716/followers', 'https://api.github.com/users/haight6716/following', 'https://api.github.com/users/haight6716/gists', 'https://api.github.com/users/haight6716/starred', 'https://api.github.com/users/haight6716/repos', 'https://api.github.com/users/haight6716/events', 'https://api.github.com/users/haight6716/received_events', 0); +INSERT INTO `developer` VALUES (863232, 'jburkle', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2011-06-21T02:54:56Z', '2019-10-01T20:51:07Z', 'https://avatars.githubusercontent.com/u/863232?v=4', 'https://api.github.com/users/jburkle', 'https://github.com/jburkle', 'https://api.github.com/users/jburkle/followers', 'https://api.github.com/users/jburkle/following', 'https://api.github.com/users/jburkle/gists', 'https://api.github.com/users/jburkle/starred', 'https://api.github.com/users/jburkle/repos', 'https://api.github.com/users/jburkle/events', 'https://api.github.com/users/jburkle/received_events', 0); +INSERT INTO `developer` VALUES (863730, 'fanquake', 'B-', 26.60049489562378, 0, 0, 0, 0, 0, 0, 'fanquake', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1836, 27, 0, 0, 0, '2011-06-21T08:01:35Z', '2024-10-18T21:21:18Z', 'https://avatars.githubusercontent.com/u/863730?v=4', 'https://api.github.com/users/fanquake', 'https://github.com/fanquake', 'https://api.github.com/users/fanquake/followers', 'https://api.github.com/users/fanquake/following', 'https://api.github.com/users/fanquake/gists', 'https://api.github.com/users/fanquake/starred', 'https://api.github.com/users/fanquake/repos', 'https://api.github.com/users/fanquake/events', 'https://api.github.com/users/fanquake/received_events', 0); +INSERT INTO `developer` VALUES (877549, 'JoelKatz', 'C', 5.662147841597661, 0, 0, 0, 0, 0, 0, 'David Schwartz', '@ripple', 'http://distributedagreement.com', 'California', 'davidjoelschwartz@gmail.com', NULL, NULL, 'JoelKatz', 0, 0, 615, 0, 0, 0, 0, '2011-06-26T23:40:17Z', '2024-08-30T06:24:40Z', 'https://avatars.githubusercontent.com/u/877549?v=4', 'https://api.github.com/users/JoelKatz', 'https://github.com/JoelKatz', 'https://api.github.com/users/JoelKatz/followers', 'https://api.github.com/users/JoelKatz/following', 'https://api.github.com/users/JoelKatz/gists', 'https://api.github.com/users/JoelKatz/starred', 'https://api.github.com/users/JoelKatz/repos', 'https://api.github.com/users/JoelKatz/events', 'https://api.github.com/users/JoelKatz/received_events', 0); +INSERT INTO `developer` VALUES (877904, 'shesek', 'C', 1.8894726967280921, 0, 0, 0, 0, 0, 0, 'Nadav Ivgi', NULL, '', 'TLV', 'nadav@shesek.info', NULL, 'Bitcoin developer · @ez-org · @bwt-dev · Ambassador at Bitcoin Embassy TLV · PGP: FCF1 9B67 8665 62F0 8A43 AAD6 81F6 104C D0F1 50FC · Cypherpunks write code', 'shesek', 0, 0, 395, 1, 0, 0, 0, '2011-06-27T04:50:24Z', '2023-12-20T15:31:21Z', 'https://avatars.githubusercontent.com/u/877904?v=4', 'https://api.github.com/users/shesek', 'https://github.com/shesek', 'https://api.github.com/users/shesek/followers', 'https://api.github.com/users/shesek/following', 'https://api.github.com/users/shesek/gists', 'https://api.github.com/users/shesek/starred', 'https://api.github.com/users/shesek/repos', 'https://api.github.com/users/shesek/events', 'https://api.github.com/users/shesek/received_events', 0); +INSERT INTO `developer` VALUES (878009, 'ngaut', 'B-', 26.943465363339193, 0, 0, 0, 0, 0, 0, 'goroutine', 'PingCAP', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1856, 14, 0, 0, 0, '2011-06-27T06:07:03Z', '2023-12-28T03:42:24Z', 'https://avatars.githubusercontent.com/u/878009?v=4', 'https://api.github.com/users/ngaut', 'https://github.com/ngaut', 'https://api.github.com/users/ngaut/followers', 'https://api.github.com/users/ngaut/following', 'https://api.github.com/users/ngaut/gists', 'https://api.github.com/users/ngaut/starred', 'https://api.github.com/users/ngaut/repos', 'https://api.github.com/users/ngaut/events', 'https://api.github.com/users/ngaut/received_events', 0); +INSERT INTO `developer` VALUES (881965, 'mikesplain', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Splain', 'Sonos', 'http://mikespla.in', 'Boston, MA', NULL, NULL, NULL, NULL, 0, 0, 105, 50, 0, 0, 0, '2011-06-28T17:29:25Z', '2024-10-10T00:02:25Z', 'https://avatars.githubusercontent.com/u/881965?v=4', 'https://api.github.com/users/mikesplain', 'https://github.com/mikesplain', 'https://api.github.com/users/mikesplain/followers', 'https://api.github.com/users/mikesplain/following', 'https://api.github.com/users/mikesplain/gists', 'https://api.github.com/users/mikesplain/starred', 'https://api.github.com/users/mikesplain/repos', 'https://api.github.com/users/mikesplain/events', 'https://api.github.com/users/mikesplain/received_events', 0); +INSERT INTO `developer` VALUES (882771, '4tar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Huang Le', '13LimdzPQQykBXWaEYfSmfWXJbw6gL9iih', '', 'Shanghai', '4tarhl@gmail.com', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2011-06-29T00:32:21Z', '2020-06-30T02:06:39Z', 'https://avatars.githubusercontent.com/u/882771?v=4', 'https://api.github.com/users/4tar', 'https://github.com/4tar', 'https://api.github.com/users/4tar/followers', 'https://api.github.com/users/4tar/following', 'https://api.github.com/users/4tar/gists', 'https://api.github.com/users/4tar/starred', 'https://api.github.com/users/4tar/repos', 'https://api.github.com/users/4tar/events', 'https://api.github.com/users/4tar/received_events', 0); +INSERT INTO `developer` VALUES (884012, 'maximesong', 'C', 0, 0, 0, 0, 0, 0, 0, 'Song Wenhao', NULL, 'http://www.cppdo.com', 'Shanghai', 'me@cppdo.com', NULL, NULL, NULL, 0, 0, 51, 23, 0, 0, 0, '2011-06-29T13:21:52Z', '2022-07-17T05:44:41Z', 'https://avatars.githubusercontent.com/u/884012?v=4', 'https://api.github.com/users/maximesong', 'https://github.com/maximesong', 'https://api.github.com/users/maximesong/followers', 'https://api.github.com/users/maximesong/following', 'https://api.github.com/users/maximesong/gists', 'https://api.github.com/users/maximesong/starred', 'https://api.github.com/users/maximesong/repos', 'https://api.github.com/users/maximesong/events', 'https://api.github.com/users/maximesong/received_events', 0); +INSERT INTO `developer` VALUES (886523, 'JeremyRubin', 'C', 6.2794946834854075, 0, 0, 0, 0, 0, 0, 'Jeremy Rubin', NULL, 'rubin.io', 'behind u', NULL, 'true', NULL, 'jeremyrubin', 0, 0, 651, 31, 0, 0, 0, '2011-06-30T14:03:22Z', '2024-08-21T15:11:47Z', 'https://avatars.githubusercontent.com/u/886523?v=4', 'https://api.github.com/users/JeremyRubin', 'https://github.com/JeremyRubin', 'https://api.github.com/users/JeremyRubin/followers', 'https://api.github.com/users/JeremyRubin/following', 'https://api.github.com/users/JeremyRubin/gists', 'https://api.github.com/users/JeremyRubin/starred', 'https://api.github.com/users/JeremyRubin/repos', 'https://api.github.com/users/JeremyRubin/events', 'https://api.github.com/users/JeremyRubin/received_events', 0); +INSERT INTO `developer` VALUES (888782, 'denis2342', 'C', 0, 0, 0, 0, 0, 0, 0, 'denis2342', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 60, 0, 0, 0, 0, '2011-07-01T14:07:28Z', '2024-11-03T21:01:08Z', 'https://avatars.githubusercontent.com/u/888782?v=4', 'https://api.github.com/users/denis2342', 'https://github.com/denis2342', 'https://api.github.com/users/denis2342/followers', 'https://api.github.com/users/denis2342/following', 'https://api.github.com/users/denis2342/gists', 'https://api.github.com/users/denis2342/starred', 'https://api.github.com/users/denis2342/repos', 'https://api.github.com/users/denis2342/events', 'https://api.github.com/users/denis2342/received_events', 0); +INSERT INTO `developer` VALUES (894059, 'CodeShark', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Lombrozo', NULL, '', '未知', 'elombrozo@gmail.com', NULL, NULL, NULL, 0, 0, 212, 2, 0, 0, 0, '2011-07-04T18:15:25Z', '2021-10-29T22:42:39Z', 'https://avatars.githubusercontent.com/u/894059?v=4', 'https://api.github.com/users/CodeShark', 'https://github.com/CodeShark', 'https://api.github.com/users/CodeShark/followers', 'https://api.github.com/users/CodeShark/following', 'https://api.github.com/users/CodeShark/gists', 'https://api.github.com/users/CodeShark/starred', 'https://api.github.com/users/CodeShark/repos', 'https://api.github.com/users/CodeShark/events', 'https://api.github.com/users/CodeShark/received_events', 0); +INSERT INTO `developer` VALUES (901108, 'varunachar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Varun Achar', '@Razorpay', '', 'Bengaluru, India', 'achar_varun@hotmail.com', NULL, NULL, NULL, 0, 0, 15, 5, 0, 0, 0, '2011-07-07T17:33:46Z', '2024-09-26T09:06:43Z', 'https://avatars.githubusercontent.com/u/901108?v=4', 'https://api.github.com/users/varunachar', 'https://github.com/varunachar', 'https://api.github.com/users/varunachar/followers', 'https://api.github.com/users/varunachar/following', 'https://api.github.com/users/varunachar/gists', 'https://api.github.com/users/varunachar/starred', 'https://api.github.com/users/varunachar/repos', 'https://api.github.com/users/varunachar/events', 'https://api.github.com/users/varunachar/received_events', 0); +INSERT INTO `developer` VALUES (902012, 'holymonson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Monson Shao', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2011-07-08T02:21:47Z', '2023-09-20T10:10:20Z', 'https://avatars.githubusercontent.com/u/902012?v=4', 'https://api.github.com/users/holymonson', 'https://github.com/holymonson', 'https://api.github.com/users/holymonson/followers', 'https://api.github.com/users/holymonson/following', 'https://api.github.com/users/holymonson/gists', 'https://api.github.com/users/holymonson/starred', 'https://api.github.com/users/holymonson/repos', 'https://api.github.com/users/holymonson/events', 'https://api.github.com/users/holymonson/received_events', 0); +INSERT INTO `developer` VALUES (905419, 'rajiteh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raj Perera', '@ubisoftinc', '', 'Toronto, ON', NULL, 'true', 'SRE|DevOps|Cloud', NULL, 0, 0, 60, 46, 0, 0, 0, '2011-07-10T00:53:34Z', '2024-06-09T05:18:58Z', 'https://avatars.githubusercontent.com/u/905419?v=4', 'https://api.github.com/users/rajiteh', 'https://github.com/rajiteh', 'https://api.github.com/users/rajiteh/followers', 'https://api.github.com/users/rajiteh/following', 'https://api.github.com/users/rajiteh/gists', 'https://api.github.com/users/rajiteh/starred', 'https://api.github.com/users/rajiteh/repos', 'https://api.github.com/users/rajiteh/events', 'https://api.github.com/users/rajiteh/received_events', 0); +INSERT INTO `developer` VALUES (909098, 'russellballestrini', 'C', 0, 0, 0, 0, 0, 0, 0, 'Russell', NULL, 'https://russell.ballestrini.net', 'Remote', NULL, NULL, 'Python', 'russellbal', 0, 0, 78, 82, 0, 0, 0, '2011-07-12T00:58:17Z', '2024-05-10T13:09:14Z', 'https://avatars.githubusercontent.com/u/909098?v=4', 'https://api.github.com/users/russellballestrini', 'https://github.com/russellballestrini', 'https://api.github.com/users/russellballestrini/followers', 'https://api.github.com/users/russellballestrini/following', 'https://api.github.com/users/russellballestrini/gists', 'https://api.github.com/users/russellballestrini/starred', 'https://api.github.com/users/russellballestrini/repos', 'https://api.github.com/users/russellballestrini/events', 'https://api.github.com/users/russellballestrini/received_events', 0); +INSERT INTO `developer` VALUES (912940, 'R-A-M', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rafael A. Mejia', 'AAA LIfe Insurance', '', 'Detroit, MI', 'rafael@dataminded.net', NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2011-07-13T14:49:16Z', '2023-11-22T04:27:19Z', 'https://avatars.githubusercontent.com/u/912940?v=4', 'https://api.github.com/users/R-A-M', 'https://github.com/R-A-M', 'https://api.github.com/users/R-A-M/followers', 'https://api.github.com/users/R-A-M/following', 'https://api.github.com/users/R-A-M/gists', 'https://api.github.com/users/R-A-M/starred', 'https://api.github.com/users/R-A-M/repos', 'https://api.github.com/users/R-A-M/events', 'https://api.github.com/users/R-A-M/received_events', 0); +INSERT INTO `developer` VALUES (916676, 'JamesMcMahon', 'C', 0, 0, 0, 0, 0, 0, 0, 'James F McMahon', 'VMWare', '', 'Chicago, IL', NULL, 'true', NULL, NULL, 0, 0, 35, 15, 0, 0, 0, '2011-07-15T02:42:26Z', '2024-05-26T03:27:06Z', 'https://avatars.githubusercontent.com/u/916676?v=4', 'https://api.github.com/users/JamesMcMahon', 'https://github.com/JamesMcMahon', 'https://api.github.com/users/JamesMcMahon/followers', 'https://api.github.com/users/JamesMcMahon/following', 'https://api.github.com/users/JamesMcMahon/gists', 'https://api.github.com/users/JamesMcMahon/starred', 'https://api.github.com/users/JamesMcMahon/repos', 'https://api.github.com/users/JamesMcMahon/events', 'https://api.github.com/users/JamesMcMahon/received_events', 0); +INSERT INTO `developer` VALUES (918891, 'philipbjorge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philip Bjorge', '@Pachama', 'https://www.philipbjorge.com', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 44, 23, 0, 0, 0, '2011-07-16T02:39:08Z', '2024-10-28T18:49:34Z', 'https://avatars.githubusercontent.com/u/918891?v=4', 'https://api.github.com/users/philipbjorge', 'https://github.com/philipbjorge', 'https://api.github.com/users/philipbjorge/followers', 'https://api.github.com/users/philipbjorge/following', 'https://api.github.com/users/philipbjorge/gists', 'https://api.github.com/users/philipbjorge/starred', 'https://api.github.com/users/philipbjorge/repos', 'https://api.github.com/users/philipbjorge/events', 'https://api.github.com/users/philipbjorge/received_events', 0); +INSERT INTO `developer` VALUES (919294, 'posener', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eyal Posener', '@google', 'https://posener.github.io/about', 'San Francisco ', NULL, NULL, 'Sittin\' on the dock of the bay', 'posenerx', 0, 0, 249, 73, 0, 0, 0, '2011-07-16T10:03:04Z', '2024-10-18T15:37:12Z', 'https://avatars.githubusercontent.com/u/919294?v=4', 'https://api.github.com/users/posener', 'https://github.com/posener', 'https://api.github.com/users/posener/followers', 'https://api.github.com/users/posener/following', 'https://api.github.com/users/posener/gists', 'https://api.github.com/users/posener/starred', 'https://api.github.com/users/posener/repos', 'https://api.github.com/users/posener/events', 'https://api.github.com/users/posener/received_events', 0); +INSERT INTO `developer` VALUES (919564, 'bryanmacfarlane', 'C', 3.4671368482190026, 0, 0, 0, 0, 0, 0, 'Bryan MacFarlane', 'GitHub', 'http://stackoverflow.com/users/775184/bryanmac', 'Wake Forest, NC', NULL, NULL, 'Actions Engineering at GitHub', NULL, 0, 0, 487, 4, 0, 0, 0, '2011-07-16T14:02:56Z', '2024-06-09T23:30:04Z', 'https://avatars.githubusercontent.com/u/919564?v=4', 'https://api.github.com/users/bryanmacfarlane', 'https://github.com/bryanmacfarlane', 'https://api.github.com/users/bryanmacfarlane/followers', 'https://api.github.com/users/bryanmacfarlane/following', 'https://api.github.com/users/bryanmacfarlane/gists', 'https://api.github.com/users/bryanmacfarlane/starred', 'https://api.github.com/users/bryanmacfarlane/repos', 'https://api.github.com/users/bryanmacfarlane/events', 'https://api.github.com/users/bryanmacfarlane/received_events', 0); +INSERT INTO `developer` VALUES (921089, 'cjmayo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Mayo', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2011-07-17T15:22:12Z', '2024-10-03T19:29:22Z', 'https://avatars.githubusercontent.com/u/921089?v=4', 'https://api.github.com/users/cjmayo', 'https://github.com/cjmayo', 'https://api.github.com/users/cjmayo/followers', 'https://api.github.com/users/cjmayo/following', 'https://api.github.com/users/cjmayo/gists', 'https://api.github.com/users/cjmayo/starred', 'https://api.github.com/users/cjmayo/repos', 'https://api.github.com/users/cjmayo/events', 'https://api.github.com/users/cjmayo/received_events', 0); +INSERT INTO `developer` VALUES (921325, 'paraipan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex B', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 12, 0, 0, 0, '2011-07-17T18:09:40Z', '2017-08-14T19:42:35Z', 'https://avatars.githubusercontent.com/u/921325?v=4', 'https://api.github.com/users/paraipan', 'https://github.com/paraipan', 'https://api.github.com/users/paraipan/followers', 'https://api.github.com/users/paraipan/following', 'https://api.github.com/users/paraipan/gists', 'https://api.github.com/users/paraipan/starred', 'https://api.github.com/users/paraipan/repos', 'https://api.github.com/users/paraipan/events', 'https://api.github.com/users/paraipan/received_events', 0); +INSERT INTO `developer` VALUES (922233, 'EchterAgo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Axel Gembe', NULL, '', 'Here', 'axel@gembe.net', NULL, 'Software developer experienced with C / C++ / C# / Python and more. Working on embedded systems, application software, database design and realtime 3D graphics.', 'ichundes', 0, 0, 80, 10, 0, 0, 0, '2011-07-18T07:01:20Z', '2024-10-20T10:28:26Z', 'https://avatars.githubusercontent.com/u/922233?v=4', 'https://api.github.com/users/EchterAgo', 'https://github.com/EchterAgo', 'https://api.github.com/users/EchterAgo/followers', 'https://api.github.com/users/EchterAgo/following', 'https://api.github.com/users/EchterAgo/gists', 'https://api.github.com/users/EchterAgo/starred', 'https://api.github.com/users/EchterAgo/repos', 'https://api.github.com/users/EchterAgo/events', 'https://api.github.com/users/EchterAgo/received_events', 0); +INSERT INTO `developer` VALUES (925667, 'leonmaia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leon Maia', '@zendesk ', 'http://leonmaia.me', 'Copenhagen', 'leonmaia@me.com', 'true', NULL, NULL, 0, 0, 39, 37, 0, 0, 0, '2011-07-19T15:20:11Z', '2024-07-30T07:20:27Z', 'https://avatars.githubusercontent.com/u/925667?v=4', 'https://api.github.com/users/leonmaia', 'https://github.com/leonmaia', 'https://api.github.com/users/leonmaia/followers', 'https://api.github.com/users/leonmaia/following', 'https://api.github.com/users/leonmaia/gists', 'https://api.github.com/users/leonmaia/starred', 'https://api.github.com/users/leonmaia/repos', 'https://api.github.com/users/leonmaia/events', 'https://api.github.com/users/leonmaia/received_events', 0); +INSERT INTO `developer` VALUES (927904, 'muffl0n', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sven Schliesing', NULL, '', '未知', 'sven@schliesing.de', NULL, NULL, NULL, 0, 0, 10, 5, 0, 0, 0, '2011-07-20T13:31:55Z', '2024-10-23T18:51:37Z', 'https://avatars.githubusercontent.com/u/927904?v=4', 'https://api.github.com/users/muffl0n', 'https://github.com/muffl0n', 'https://api.github.com/users/muffl0n/followers', 'https://api.github.com/users/muffl0n/following', 'https://api.github.com/users/muffl0n/gists', 'https://api.github.com/users/muffl0n/starred', 'https://api.github.com/users/muffl0n/repos', 'https://api.github.com/users/muffl0n/events', 'https://api.github.com/users/muffl0n/received_events', 0); +INSERT INTO `developer` VALUES (928524, 'lnguyen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Long Nguyen', NULL, '', '未知', 'long.nguyen11288@gmail.com', NULL, NULL, NULL, 0, 0, 28, 14, 0, 0, 0, '2011-07-20T18:23:13Z', '2024-10-14T13:28:57Z', 'https://avatars.githubusercontent.com/u/928524?v=4', 'https://api.github.com/users/lnguyen', 'https://github.com/lnguyen', 'https://api.github.com/users/lnguyen/followers', 'https://api.github.com/users/lnguyen/following', 'https://api.github.com/users/lnguyen/gists', 'https://api.github.com/users/lnguyen/starred', 'https://api.github.com/users/lnguyen/repos', 'https://api.github.com/users/lnguyen/events', 'https://api.github.com/users/lnguyen/received_events', 0); +INSERT INTO `developer` VALUES (931554, 'otiai10', 'C', 2.0266608838142575, 0, 0, 0, 0, 0, 0, 'Hiromu OCHIAI', '@ayanel, @triax', 'otiai10.com', 'Tokyo, Japan', 'otiai10@gmail.com', 'true', '🙋 ❤️ 🍣 ', NULL, 0, 0, 403, 52, 0, 0, 0, '2011-07-22T02:17:12Z', '2024-10-01T04:28:03Z', 'https://avatars.githubusercontent.com/u/931554?v=4', 'https://api.github.com/users/otiai10', 'https://github.com/otiai10', 'https://api.github.com/users/otiai10/followers', 'https://api.github.com/users/otiai10/following', 'https://api.github.com/users/otiai10/gists', 'https://api.github.com/users/otiai10/starred', 'https://api.github.com/users/otiai10/repos', 'https://api.github.com/users/otiai10/events', 'https://api.github.com/users/otiai10/received_events', 0); +INSERT INTO `developer` VALUES (932309, 'vermorel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joannes Vermorel', 'Lokad', 'https://blog.vermorel.com/', 'Paris, France', NULL, NULL, 'Founder at Lokad.com', NULL, 0, 0, 32, 4, 0, 0, 0, '2011-07-22T11:06:48Z', '2024-07-22T08:04:40Z', 'https://avatars.githubusercontent.com/u/932309?v=4', 'https://api.github.com/users/vermorel', 'https://github.com/vermorel', 'https://api.github.com/users/vermorel/followers', 'https://api.github.com/users/vermorel/following', 'https://api.github.com/users/vermorel/gists', 'https://api.github.com/users/vermorel/starred', 'https://api.github.com/users/vermorel/repos', 'https://api.github.com/users/vermorel/events', 'https://api.github.com/users/vermorel/received_events', 0); +INSERT INTO `developer` VALUES (932452, 'rmenn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rahul Menon', NULL, 'https://rmenn.in/', '未知', 'rahul@rmenn.in', NULL, NULL, NULL, 0, 0, 26, 7, 0, 0, 0, '2011-07-22T12:56:27Z', '2024-10-31T06:08:58Z', 'https://avatars.githubusercontent.com/u/932452?v=4', 'https://api.github.com/users/rmenn', 'https://github.com/rmenn', 'https://api.github.com/users/rmenn/followers', 'https://api.github.com/users/rmenn/following', 'https://api.github.com/users/rmenn/gists', 'https://api.github.com/users/rmenn/starred', 'https://api.github.com/users/rmenn/repos', 'https://api.github.com/users/rmenn/events', 'https://api.github.com/users/rmenn/received_events', 0); +INSERT INTO `developer` VALUES (933873, 'al42and', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrey Alekseenko', 'SciLifeLab, Kungliga Tekniska högskolan', '', 'Stockholm, Sweden', 'andrey.alekseenko@scilifelab.se', NULL, NULL, NULL, 0, 0, 38, 22, 0, 0, 0, '2011-07-23T07:49:58Z', '2024-10-28T18:00:53Z', 'https://avatars.githubusercontent.com/u/933873?v=4', 'https://api.github.com/users/al42and', 'https://github.com/al42and', 'https://api.github.com/users/al42and/followers', 'https://api.github.com/users/al42and/following', 'https://api.github.com/users/al42and/gists', 'https://api.github.com/users/al42and/starred', 'https://api.github.com/users/al42and/repos', 'https://api.github.com/users/al42and/events', 'https://api.github.com/users/al42and/received_events', 0); +INSERT INTO `developer` VALUES (934782, 'grimd34th', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trevor', NULL, '', 'Fort Myers, Florida', NULL, 'true', NULL, NULL, 0, 0, 12, 3, 0, 0, 0, '2011-07-23T21:50:29Z', '2024-10-22T02:52:05Z', 'https://avatars.githubusercontent.com/u/934782?v=4', 'https://api.github.com/users/grimd34th', 'https://github.com/grimd34th', 'https://api.github.com/users/grimd34th/followers', 'https://api.github.com/users/grimd34th/following', 'https://api.github.com/users/grimd34th/gists', 'https://api.github.com/users/grimd34th/starred', 'https://api.github.com/users/grimd34th/repos', 'https://api.github.com/users/grimd34th/events', 'https://api.github.com/users/grimd34th/received_events', 0); +INSERT INTO `developer` VALUES (940275, 'azhang', 'C', 0, 0, 0, 0, 0, 0, 0, 'Allie', NULL, '', '☾', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2011-07-26T18:17:31Z', '2024-10-21T10:08:22Z', 'https://avatars.githubusercontent.com/u/940275?v=4', 'https://api.github.com/users/azhang', 'https://github.com/azhang', 'https://api.github.com/users/azhang/followers', 'https://api.github.com/users/azhang/following', 'https://api.github.com/users/azhang/gists', 'https://api.github.com/users/azhang/starred', 'https://api.github.com/users/azhang/repos', 'https://api.github.com/users/azhang/events', 'https://api.github.com/users/azhang/received_events', 0); +INSERT INTO `developer` VALUES (955192, 'wurstbrot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timo Pagel', 'Timo Pagel IT-Consulting', 'https://pagel.pro', 'Germany', 'github@pagel.pro', NULL, 'I enable your team using modern technology in a secure way', NULL, 0, 0, 101, 1, 0, 0, 0, '2011-08-02T22:16:20Z', '2024-10-20T09:48:27Z', 'https://avatars.githubusercontent.com/u/955192?v=4', 'https://api.github.com/users/wurstbrot', 'https://github.com/wurstbrot', 'https://api.github.com/users/wurstbrot/followers', 'https://api.github.com/users/wurstbrot/following', 'https://api.github.com/users/wurstbrot/gists', 'https://api.github.com/users/wurstbrot/starred', 'https://api.github.com/users/wurstbrot/repos', 'https://api.github.com/users/wurstbrot/events', 'https://api.github.com/users/wurstbrot/received_events', 0); +INSERT INTO `developer` VALUES (959667, 'Matoking', 'C', 0, 0, 0, 0, 0, 0, 0, 'Janne Pulkkinen', NULL, 'https://matoking.com', 'Espoo, Finland', 'janne.pulkkinen+github@protonmail.com', NULL, 'Profile picture from photo by blacksmoke1033 on Twitter/X', NULL, 0, 0, 57, 0, 0, 0, 0, '2011-08-04T18:42:22Z', '2024-10-05T07:02:14Z', 'https://avatars.githubusercontent.com/u/959667?v=4', 'https://api.github.com/users/Matoking', 'https://github.com/Matoking', 'https://api.github.com/users/Matoking/followers', 'https://api.github.com/users/Matoking/following', 'https://api.github.com/users/Matoking/gists', 'https://api.github.com/users/Matoking/starred', 'https://api.github.com/users/Matoking/repos', 'https://api.github.com/users/Matoking/events', 'https://api.github.com/users/Matoking/received_events', 0); +INSERT INTO `developer` VALUES (967311, 'gargrag', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gastón Acosta Ramas', NULL, '', 'Hercules, California', NULL, 'true', NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2011-08-08T19:49:06Z', '2024-09-13T22:56:14Z', 'https://avatars.githubusercontent.com/u/967311?v=4', 'https://api.github.com/users/gargrag', 'https://github.com/gargrag', 'https://api.github.com/users/gargrag/followers', 'https://api.github.com/users/gargrag/following', 'https://api.github.com/users/gargrag/gists', 'https://api.github.com/users/gargrag/starred', 'https://api.github.com/users/gargrag/repos', 'https://api.github.com/users/gargrag/events', 'https://api.github.com/users/gargrag/received_events', 0); +INSERT INTO `developer` VALUES (971089, 'mikehearn', 'C', 10.120763921898062, 0, 0, 0, 0, 0, 0, 'Mike Hearn', '@hydraulic-software ', 'http://plan99.net/~mike', 'Switzerland', 'michael.hearn@oracle.com', NULL, 'Making developer tools at Hydraulic. Former contributor to Bitcoin, Wine, Corda, GNOME, Google and various other software projects. ', NULL, 0, 0, 875, 4, 0, 0, 0, '2011-08-10T09:37:01Z', '2024-10-17T13:46:02Z', 'https://avatars.githubusercontent.com/u/971089?v=4', 'https://api.github.com/users/mikehearn', 'https://github.com/mikehearn', 'https://api.github.com/users/mikehearn/followers', 'https://api.github.com/users/mikehearn/following', 'https://api.github.com/users/mikehearn/gists', 'https://api.github.com/users/mikehearn/starred', 'https://api.github.com/users/mikehearn/repos', 'https://api.github.com/users/mikehearn/events', 'https://api.github.com/users/mikehearn/received_events', 0); +INSERT INTO `developer` VALUES (979643, 'malleor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Janusz Lenar', NULL, '', 'Warsaw, Poland', NULL, NULL, NULL, NULL, 0, 0, 8, 9, 0, 0, 0, '2011-08-14T18:48:31Z', '2024-05-24T13:24:27Z', 'https://avatars.githubusercontent.com/u/979643?v=4', 'https://api.github.com/users/malleor', 'https://github.com/malleor', 'https://api.github.com/users/malleor/followers', 'https://api.github.com/users/malleor/following', 'https://api.github.com/users/malleor/gists', 'https://api.github.com/users/malleor/starred', 'https://api.github.com/users/malleor/repos', 'https://api.github.com/users/malleor/events', 'https://api.github.com/users/malleor/received_events', 0); +INSERT INTO `developer` VALUES (980077, 'daisy1754', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kazuki', 'sardine.ai', '', 'San Francisco', 'dsbnatut@gmail.com', NULL, NULL, NULL, 0, 0, 41, 12, 0, 0, 0, '2011-08-15T02:03:37Z', '2024-02-14T02:46:31Z', 'https://avatars.githubusercontent.com/u/980077?v=4', 'https://api.github.com/users/daisy1754', 'https://github.com/daisy1754', 'https://api.github.com/users/daisy1754/followers', 'https://api.github.com/users/daisy1754/following', 'https://api.github.com/users/daisy1754/gists', 'https://api.github.com/users/daisy1754/starred', 'https://api.github.com/users/daisy1754/repos', 'https://api.github.com/users/daisy1754/events', 'https://api.github.com/users/daisy1754/received_events', 0); +INSERT INTO `developer` VALUES (982577, 'hocuscapocus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Abracadabra', NULL, '', '未知', 'hocuscapocus@gmail.com', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2011-08-16T03:34:01Z', '2022-12-27T21:59:42Z', 'https://avatars.githubusercontent.com/u/982577?v=4', 'https://api.github.com/users/hocuscapocus', 'https://github.com/hocuscapocus', 'https://api.github.com/users/hocuscapocus/followers', 'https://api.github.com/users/hocuscapocus/following', 'https://api.github.com/users/hocuscapocus/gists', 'https://api.github.com/users/hocuscapocus/starred', 'https://api.github.com/users/hocuscapocus/repos', 'https://api.github.com/users/hocuscapocus/events', 'https://api.github.com/users/hocuscapocus/received_events', 0); +INSERT INTO `developer` VALUES (983270, 'kveselkov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Veselkov Konstantin', NULL, '', 'Dimitrovgrad', NULL, 'true', NULL, NULL, 0, 0, 13, 12, 0, 0, 0, '2011-08-16T10:41:03Z', '2024-10-31T17:13:13Z', 'https://avatars.githubusercontent.com/u/983270?v=4', 'https://api.github.com/users/kveselkov', 'https://github.com/kveselkov', 'https://api.github.com/users/kveselkov/followers', 'https://api.github.com/users/kveselkov/following', 'https://api.github.com/users/kveselkov/gists', 'https://api.github.com/users/kveselkov/starred', 'https://api.github.com/users/kveselkov/repos', 'https://api.github.com/users/kveselkov/events', 'https://api.github.com/users/kveselkov/received_events', 0); +INSERT INTO `developer` VALUES (984179, 'JesseMoll', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jesse Moll', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2011-08-16T17:42:43Z', '2023-10-10T10:19:37Z', 'https://avatars.githubusercontent.com/u/984179?v=4', 'https://api.github.com/users/JesseMoll', 'https://github.com/JesseMoll', 'https://api.github.com/users/JesseMoll/followers', 'https://api.github.com/users/JesseMoll/following', 'https://api.github.com/users/JesseMoll/gists', 'https://api.github.com/users/JesseMoll/starred', 'https://api.github.com/users/JesseMoll/repos', 'https://api.github.com/users/JesseMoll/events', 'https://api.github.com/users/JesseMoll/received_events', 0); +INSERT INTO `developer` VALUES (989447, 'accraze', 'C', 0, 0, 0, 0, 0, 0, 0, 'A. Craze', NULL, '', 'Zone 8b', NULL, NULL, '🌊🌲 🌧 ☕️', NULL, 0, 0, 85, 63, 0, 0, 0, '2011-08-18T19:11:06Z', '2024-09-23T22:47:42Z', 'https://avatars.githubusercontent.com/u/989447?v=4', 'https://api.github.com/users/accraze', 'https://github.com/accraze', 'https://api.github.com/users/accraze/followers', 'https://api.github.com/users/accraze/following', 'https://api.github.com/users/accraze/gists', 'https://api.github.com/users/accraze/starred', 'https://api.github.com/users/accraze/repos', 'https://api.github.com/users/accraze/events', 'https://api.github.com/users/accraze/received_events', 0); +INSERT INTO `developer` VALUES (993296, 'kdomanski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kamil Domański', NULL, '', 'Hamburg, Germany', NULL, 'true', '\"Audaces fortuna iuvat.\"\r\n -- Roman proverb', NULL, 0, 0, 42, 28, 0, 0, 0, '2011-08-20T19:45:44Z', '2024-09-10T05:17:25Z', 'https://avatars.githubusercontent.com/u/993296?v=4', 'https://api.github.com/users/kdomanski', 'https://github.com/kdomanski', 'https://api.github.com/users/kdomanski/followers', 'https://api.github.com/users/kdomanski/following', 'https://api.github.com/users/kdomanski/gists', 'https://api.github.com/users/kdomanski/starred', 'https://api.github.com/users/kdomanski/repos', 'https://api.github.com/users/kdomanski/events', 'https://api.github.com/users/kdomanski/received_events', 0); +INSERT INTO `developer` VALUES (1004789, 'dschaller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Derek', '@pulumi ', '', 'San Francisco, CA', NULL, NULL, 'Software Engineer', '_derek_', 0, 0, 55, 6, 0, 0, 0, '2011-08-25T18:09:49Z', '2024-08-13T20:14:34Z', 'https://avatars.githubusercontent.com/u/1004789?v=4', 'https://api.github.com/users/dschaller', 'https://github.com/dschaller', 'https://api.github.com/users/dschaller/followers', 'https://api.github.com/users/dschaller/following', 'https://api.github.com/users/dschaller/gists', 'https://api.github.com/users/dschaller/starred', 'https://api.github.com/users/dschaller/repos', 'https://api.github.com/users/dschaller/events', 'https://api.github.com/users/dschaller/received_events', 0); +INSERT INTO `developer` VALUES (1005112, 'bissias', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2011-08-25T20:46:04Z', '2024-02-27T12:31:53Z', 'https://avatars.githubusercontent.com/u/1005112?v=4', 'https://api.github.com/users/bissias', 'https://github.com/bissias', 'https://api.github.com/users/bissias/followers', 'https://api.github.com/users/bissias/following', 'https://api.github.com/users/bissias/gists', 'https://api.github.com/users/bissias/starred', 'https://api.github.com/users/bissias/repos', 'https://api.github.com/users/bissias/events', 'https://api.github.com/users/bissias/received_events', 0); +INSERT INTO `developer` VALUES (1006078, 'isghe', 'C', 0, 0, 0, 0, 0, 0, 0, 'isidoro ghezzi', NULL, '', 'Lissone MB - Italy', NULL, 'true', NULL, NULL, 0, 0, 35, 7, 0, 0, 0, '2011-08-26T08:20:02Z', '2024-10-02T11:54:58Z', 'https://avatars.githubusercontent.com/u/1006078?v=4', 'https://api.github.com/users/isghe', 'https://github.com/isghe', 'https://api.github.com/users/isghe/followers', 'https://api.github.com/users/isghe/following', 'https://api.github.com/users/isghe/gists', 'https://api.github.com/users/isghe/starred', 'https://api.github.com/users/isghe/repos', 'https://api.github.com/users/isghe/events', 'https://api.github.com/users/isghe/received_events', 0); +INSERT INTO `developer` VALUES (1006477, 'felixonmars', 'B', 48.104743221380325, 0, 0, 0, 0, 0, 0, 'Felix Yan', 'Arch Linux @archlinux', 'https://felixc.at', 'Wuhan, China', 'felixonmars@archlinux.org', NULL, 'Arch Linux Developer, RISC-V Porter, probably a fox.\r\n\r\nPGP Key: 0x786C63F330D7CB92', 'felixonmars', 0, 0, 3090, 173, 0, 0, 0, '2011-08-26T12:35:50Z', '2024-10-24T23:25:25Z', 'https://avatars.githubusercontent.com/u/1006477?v=4', 'https://api.github.com/users/felixonmars', 'https://github.com/felixonmars', 'https://api.github.com/users/felixonmars/followers', 'https://api.github.com/users/felixonmars/following', 'https://api.github.com/users/felixonmars/gists', 'https://api.github.com/users/felixonmars/starred', 'https://api.github.com/users/felixonmars/repos', 'https://api.github.com/users/felixonmars/events', 'https://api.github.com/users/felixonmars/received_events', 0); +INSERT INTO `developer` VALUES (1007356, 'Alagappan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alagappan ', 'Facebook', 'https://www.linkedin.com/in/alagappanut/', 'San Francisco', NULL, NULL, 'Founding Engineer on Amundsen. Currently @ Facebook. Ex-Data at Lyft\r\n', NULL, 0, 0, 2, 4, 0, 0, 0, '2011-08-26T20:13:06Z', '2024-08-30T01:41:21Z', 'https://avatars.githubusercontent.com/u/1007356?v=4', 'https://api.github.com/users/Alagappan', 'https://github.com/Alagappan', 'https://api.github.com/users/Alagappan/followers', 'https://api.github.com/users/Alagappan/following', 'https://api.github.com/users/Alagappan/gists', 'https://api.github.com/users/Alagappan/starred', 'https://api.github.com/users/Alagappan/repos', 'https://api.github.com/users/Alagappan/events', 'https://api.github.com/users/Alagappan/received_events', 0); +INSERT INTO `developer` VALUES (1007647, 'philoserf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Ayers', NULL, 'https://philoserf.com/', 'Greater Grand Rapids, USA', 'mark@philoserf.com', 'true', 'a human being, being human ', NULL, 0, 0, 115, 505, 0, 0, 0, '2011-08-26T23:41:41Z', '2024-11-01T02:48:03Z', 'https://avatars.githubusercontent.com/u/1007647?v=4', 'https://api.github.com/users/philoserf', 'https://github.com/philoserf', 'https://api.github.com/users/philoserf/followers', 'https://api.github.com/users/philoserf/following', 'https://api.github.com/users/philoserf/gists', 'https://api.github.com/users/philoserf/starred', 'https://api.github.com/users/philoserf/repos', 'https://api.github.com/users/philoserf/events', 'https://api.github.com/users/philoserf/received_events', 0); +INSERT INTO `developer` VALUES (1008225, 'EskimoBob', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2011-08-27T09:38:36Z', '2016-02-27T00:43:08Z', 'https://avatars.githubusercontent.com/u/1008225?v=4', 'https://api.github.com/users/EskimoBob', 'https://github.com/EskimoBob', 'https://api.github.com/users/EskimoBob/followers', 'https://api.github.com/users/EskimoBob/following', 'https://api.github.com/users/EskimoBob/gists', 'https://api.github.com/users/EskimoBob/starred', 'https://api.github.com/users/EskimoBob/repos', 'https://api.github.com/users/EskimoBob/events', 'https://api.github.com/users/EskimoBob/received_events', 0); +INSERT INTO `developer` VALUES (1008330, 'alexwaters', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Waters', 'Weekend dirty hacked projects', 'http://Waters.nyc', 'New York', 'alex@waters.nyc', NULL, '¯\\_(ツ)_/¯', NULL, 0, 0, 75, 65, 0, 0, 0, '2011-08-27T11:20:01Z', '2024-10-07T07:16:30Z', 'https://avatars.githubusercontent.com/u/1008330?v=4', 'https://api.github.com/users/alexwaters', 'https://github.com/alexwaters', 'https://api.github.com/users/alexwaters/followers', 'https://api.github.com/users/alexwaters/following', 'https://api.github.com/users/alexwaters/gists', 'https://api.github.com/users/alexwaters/starred', 'https://api.github.com/users/alexwaters/repos', 'https://api.github.com/users/alexwaters/events', 'https://api.github.com/users/alexwaters/received_events', 0); +INSERT INTO `developer` VALUES (1008458, 'jtimon', 'C', 4.135929260264064, 0, 0, 0, 0, 0, 0, 'Jorge Timón', NULL, 'http://freico.in/', '未知', 'jtimon@jtimon.cc', NULL, NULL, NULL, 0, 0, 526, 29, 0, 0, 0, '2011-08-27T13:19:44Z', '2022-12-21T16:36:02Z', 'https://avatars.githubusercontent.com/u/1008458?v=4', 'https://api.github.com/users/jtimon', 'https://github.com/jtimon', 'https://api.github.com/users/jtimon/followers', 'https://api.github.com/users/jtimon/following', 'https://api.github.com/users/jtimon/gists', 'https://api.github.com/users/jtimon/starred', 'https://api.github.com/users/jtimon/repos', 'https://api.github.com/users/jtimon/events', 'https://api.github.com/users/jtimon/received_events', 0); +INSERT INTO `developer` VALUES (1008583, 'ninp0', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '0day Inc.', 'https://0dayinc.com', '未知', NULL, NULL, 'Twitter: https://twitter.com/ninp0', NULL, 0, 0, 20, 59, 0, 0, 0, '2011-08-27T14:46:57Z', '2024-04-09T17:52:05Z', 'https://avatars.githubusercontent.com/u/1008583?v=4', 'https://api.github.com/users/ninp0', 'https://github.com/ninp0', 'https://api.github.com/users/ninp0/followers', 'https://api.github.com/users/ninp0/following', 'https://api.github.com/users/ninp0/gists', 'https://api.github.com/users/ninp0/starred', 'https://api.github.com/users/ninp0/repos', 'https://api.github.com/users/ninp0/events', 'https://api.github.com/users/ninp0/received_events', 0); +INSERT INTO `developer` VALUES (1017365, 'imsaguy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 4, 0, 0, 0, '2011-08-31T16:39:29Z', '2024-10-12T16:02:58Z', 'https://avatars.githubusercontent.com/u/1017365?v=4', 'https://api.github.com/users/imsaguy', 'https://github.com/imsaguy', 'https://api.github.com/users/imsaguy/followers', 'https://api.github.com/users/imsaguy/following', 'https://api.github.com/users/imsaguy/gists', 'https://api.github.com/users/imsaguy/starred', 'https://api.github.com/users/imsaguy/repos', 'https://api.github.com/users/imsaguy/events', 'https://api.github.com/users/imsaguy/received_events', 0); +INSERT INTO `developer` VALUES (1025518, 'yebyen', 'C', 0.6926792978346362, 0, 16, 27, 37, 0, 0, NULL, NULL, '', '未知', NULL, NULL, 'This cow runs Linux!', NULL, 0, 0, 9, 0, 0, 0, 0, '2011-09-04T15:11:38Z', '2024-10-22T15:20:47Z', 'https://avatars.githubusercontent.com/u/1025518?v=4', 'https://api.github.com/users/yebyen', 'https://github.com/yebyen', 'https://api.github.com/users/yebyen/followers', 'https://api.github.com/users/yebyen/following', 'https://api.github.com/users/yebyen/gists', 'https://api.github.com/users/yebyen/starred', 'https://api.github.com/users/yebyen/repos', 'https://api.github.com/users/yebyen/events', 'https://api.github.com/users/yebyen/received_events', 0); +INSERT INTO `developer` VALUES (1037893, 'ers35', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric R. Schulz', NULL, 'https://www.ers35.com/', 'United States', 'eric@ers35.com', NULL, NULL, NULL, 0, 0, 99, 757, 0, 0, 0, '2011-09-09T06:59:09Z', '2024-10-30T06:56:15Z', 'https://avatars.githubusercontent.com/u/1037893?v=4', 'https://api.github.com/users/ers35', 'https://github.com/ers35', 'https://api.github.com/users/ers35/followers', 'https://api.github.com/users/ers35/following', 'https://api.github.com/users/ers35/gists', 'https://api.github.com/users/ers35/starred', 'https://api.github.com/users/ers35/repos', 'https://api.github.com/users/ers35/events', 'https://api.github.com/users/ers35/received_events', 0); +INSERT INTO `developer` VALUES (1043689, 'msutter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marc Sutter', '@camptocamp', '', 'Switzerland', 'marc.sutter@swissflow.ch', NULL, NULL, NULL, 0, 0, 22, 5, 0, 0, 0, '2011-09-12T07:15:46Z', '2024-09-03T11:45:55Z', 'https://avatars.githubusercontent.com/u/1043689?v=4', 'https://api.github.com/users/msutter', 'https://github.com/msutter', 'https://api.github.com/users/msutter/followers', 'https://api.github.com/users/msutter/following', 'https://api.github.com/users/msutter/gists', 'https://api.github.com/users/msutter/starred', 'https://api.github.com/users/msutter/repos', 'https://api.github.com/users/msutter/events', 'https://api.github.com/users/msutter/received_events', 0); +INSERT INTO `developer` VALUES (1044555, 'barbich', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 8, 0, 0, 0, '2011-09-12T14:16:29Z', '2024-10-20T20:47:29Z', 'https://avatars.githubusercontent.com/u/1044555?v=4', 'https://api.github.com/users/barbich', 'https://github.com/barbich', 'https://api.github.com/users/barbich/followers', 'https://api.github.com/users/barbich/following', 'https://api.github.com/users/barbich/gists', 'https://api.github.com/users/barbich/starred', 'https://api.github.com/users/barbich/repos', 'https://api.github.com/users/barbich/events', 'https://api.github.com/users/barbich/received_events', 0); +INSERT INTO `developer` VALUES (1047859, 'kazcw', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kaz Wesley', 'Freelance', '', 'Seattle, WA', 'keziahw@gmail.com', 'true', 'I like SIMD crypto, Nix, and hiking', NULL, 0, 0, 37, 0, 0, 0, 0, '2011-09-13T16:21:04Z', '2024-10-15T17:04:15Z', 'https://avatars.githubusercontent.com/u/1047859?v=4', 'https://api.github.com/users/kazcw', 'https://github.com/kazcw', 'https://api.github.com/users/kazcw/followers', 'https://api.github.com/users/kazcw/following', 'https://api.github.com/users/kazcw/gists', 'https://api.github.com/users/kazcw/starred', 'https://api.github.com/users/kazcw/repos', 'https://api.github.com/users/kazcw/events', 'https://api.github.com/users/kazcw/received_events', 0); +INSERT INTO `developer` VALUES (1048405, 'iAnomaly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cameron Boulton', NULL, 'https://www.linkedin.com/in/cameronboulton', 'Sacramento, California, United States', NULL, NULL, NULL, 'CameronBoulton', 0, 0, 4, 0, 0, 0, 0, '2011-09-13T20:05:56Z', '2024-09-25T22:42:03Z', 'https://avatars.githubusercontent.com/u/1048405?v=4', 'https://api.github.com/users/iAnomaly', 'https://github.com/iAnomaly', 'https://api.github.com/users/iAnomaly/followers', 'https://api.github.com/users/iAnomaly/following', 'https://api.github.com/users/iAnomaly/gists', 'https://api.github.com/users/iAnomaly/starred', 'https://api.github.com/users/iAnomaly/repos', 'https://api.github.com/users/iAnomaly/events', 'https://api.github.com/users/iAnomaly/received_events', 0); +INSERT INTO `developer` VALUES (1050883, 'BabisK', 'C', 0, 0, 0, 0, 0, 0, 0, 'Babis K', 'Juniper Networks', 'https://www.kaidos.me', 'Athens, Greece', 'babis_k@outlook.com', NULL, 'Software engineer in the Telecommunications industry', NULL, 0, 0, 8, 1, 0, 0, 0, '2011-09-14T17:11:18Z', '2024-10-10T17:23:04Z', 'https://avatars.githubusercontent.com/u/1050883?v=4', 'https://api.github.com/users/BabisK', 'https://github.com/BabisK', 'https://api.github.com/users/BabisK/followers', 'https://api.github.com/users/BabisK/following', 'https://api.github.com/users/BabisK/gists', 'https://api.github.com/users/BabisK/starred', 'https://api.github.com/users/BabisK/repos', 'https://api.github.com/users/BabisK/events', 'https://api.github.com/users/BabisK/received_events', 0); +INSERT INTO `developer` VALUES (1052770, 'hoesler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christoph Hösler', '@inovex', '', 'Germany', 'christoph.hoesler@gmail.com', NULL, 'Full Stack Data Scientist and Solution Architect @inovex', NULL, 0, 0, 15, 1, 0, 0, 0, '2011-09-15T10:07:26Z', '2024-10-30T09:20:38Z', 'https://avatars.githubusercontent.com/u/1052770?v=4', 'https://api.github.com/users/hoesler', 'https://github.com/hoesler', 'https://api.github.com/users/hoesler/followers', 'https://api.github.com/users/hoesler/following', 'https://api.github.com/users/hoesler/gists', 'https://api.github.com/users/hoesler/starred', 'https://api.github.com/users/hoesler/repos', 'https://api.github.com/users/hoesler/events', 'https://api.github.com/users/hoesler/received_events', 0); +INSERT INTO `developer` VALUES (1059166, 'kanoi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 50, 0, 0, 0, 0, '2011-09-18T01:52:58Z', '2024-10-15T23:52:27Z', 'https://avatars.githubusercontent.com/u/1059166?v=4', 'https://api.github.com/users/kanoi', 'https://github.com/kanoi', 'https://api.github.com/users/kanoi/followers', 'https://api.github.com/users/kanoi/following', 'https://api.github.com/users/kanoi/gists', 'https://api.github.com/users/kanoi/starred', 'https://api.github.com/users/kanoi/repos', 'https://api.github.com/users/kanoi/events', 'https://api.github.com/users/kanoi/received_events', 0); +INSERT INTO `developer` VALUES (1061236, 'onlyjob', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'Libre Solutions Pty Ltd', 'https://raid6.com.au', 'Sydney, Australia', 'onlyjob@member.fsf.org', 'true', 'Debian Developer.\r\nLove is truth.\r\nCOVID is fascism.\r\nFreedom is the cure.', NULL, 0, 0, 56, 44, 0, 0, 0, '2011-09-19T06:55:24Z', '2023-12-05T10:00:54Z', 'https://avatars.githubusercontent.com/u/1061236?v=4', 'https://api.github.com/users/onlyjob', 'https://github.com/onlyjob', 'https://api.github.com/users/onlyjob/followers', 'https://api.github.com/users/onlyjob/following', 'https://api.github.com/users/onlyjob/gists', 'https://api.github.com/users/onlyjob/starred', 'https://api.github.com/users/onlyjob/repos', 'https://api.github.com/users/onlyjob/events', 'https://api.github.com/users/onlyjob/received_events', 0); +INSERT INTO `developer` VALUES (1063656, 'jnewbery', 'C', 10.532328483156562, 0, 0, 0, 0, 0, 0, 'John Newbery', NULL, '', 'London, UK', NULL, 'true', NULL, 'jfnewbery', 0, 0, 899, 11, 0, 0, 0, '2011-09-20T00:13:45Z', '2024-10-10T15:44:48Z', 'https://avatars.githubusercontent.com/u/1063656?v=4', 'https://api.github.com/users/jnewbery', 'https://github.com/jnewbery', 'https://api.github.com/users/jnewbery/followers', 'https://api.github.com/users/jnewbery/following', 'https://api.github.com/users/jnewbery/gists', 'https://api.github.com/users/jnewbery/starred', 'https://api.github.com/users/jnewbery/repos', 'https://api.github.com/users/jnewbery/events', 'https://api.github.com/users/jnewbery/received_events', 0); +INSERT INTO `developer` VALUES (1063932, 'patobrien', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pat O\'Brien', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 2, 0, 0, 0, '2011-09-20T03:03:37Z', '2021-10-05T05:04:06Z', 'https://avatars.githubusercontent.com/u/1063932?v=4', 'https://api.github.com/users/patobrien', 'https://github.com/patobrien', 'https://api.github.com/users/patobrien/followers', 'https://api.github.com/users/patobrien/following', 'https://api.github.com/users/patobrien/gists', 'https://api.github.com/users/patobrien/starred', 'https://api.github.com/users/patobrien/repos', 'https://api.github.com/users/patobrien/events', 'https://api.github.com/users/patobrien/received_events', 0); +INSERT INTO `developer` VALUES (1069247, 'runeksvendsen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rune K. Svendsen', '@obsidiansystems', 'https://cryptomarketdepth.com', 'Copenhagen', 'runesvend@gmail.com', 'true', 'I\'ve been writing code since I was 12. Love Haskell and Bitcoin.', 'runeksvendsen', 0, 0, 71, 7, 0, 0, 0, '2011-09-21T21:52:41Z', '2024-09-04T06:18:43Z', 'https://avatars.githubusercontent.com/u/1069247?v=4', 'https://api.github.com/users/runeksvendsen', 'https://github.com/runeksvendsen', 'https://api.github.com/users/runeksvendsen/followers', 'https://api.github.com/users/runeksvendsen/following', 'https://api.github.com/users/runeksvendsen/gists', 'https://api.github.com/users/runeksvendsen/starred', 'https://api.github.com/users/runeksvendsen/repos', 'https://api.github.com/users/runeksvendsen/events', 'https://api.github.com/users/runeksvendsen/received_events', 0); +INSERT INTO `developer` VALUES (1071625, 'real-or-random', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Ruffing', NULL, '', 'Germany', NULL, NULL, 'full-stack cryptographer', 'real_or_random', 0, 0, 256, 114, 0, 0, 0, '2011-09-22T16:37:04Z', '2024-10-22T11:20:18Z', 'https://avatars.githubusercontent.com/u/1071625?v=4', 'https://api.github.com/users/real-or-random', 'https://github.com/real-or-random', 'https://api.github.com/users/real-or-random/followers', 'https://api.github.com/users/real-or-random/following', 'https://api.github.com/users/real-or-random/gists', 'https://api.github.com/users/real-or-random/starred', 'https://api.github.com/users/real-or-random/repos', 'https://api.github.com/users/real-or-random/events', 'https://api.github.com/users/real-or-random/received_events', 0); +INSERT INTO `developer` VALUES (1073681, 'bardiharborow', 'C', 5.662147841597661, 0, 0, 0, 0, 0, 0, 'Bardi Harborow', '@octoenergy', 'https://bardiharborow.com', 'Melbourne, Australia', 'bardi@bardiharborow.com', NULL, NULL, 'bardiharborow', 0, 0, 615, 26, 0, 0, 0, '2011-09-23T11:46:51Z', '2024-10-20T04:06:28Z', 'https://avatars.githubusercontent.com/u/1073681?v=4', 'https://api.github.com/users/bardiharborow', 'https://github.com/bardiharborow', 'https://api.github.com/users/bardiharborow/followers', 'https://api.github.com/users/bardiharborow/following', 'https://api.github.com/users/bardiharborow/gists', 'https://api.github.com/users/bardiharborow/starred', 'https://api.github.com/users/bardiharborow/repos', 'https://api.github.com/users/bardiharborow/events', 'https://api.github.com/users/bardiharborow/received_events', 0); +INSERT INTO `developer` VALUES (1081724, 'khorben', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pierre Pronchery', '@DeforaNetworks ', 'https://people.defora.org/~khorben/', 'Berlin, Germany', 'khorben@defora.org', NULL, 'IT-Security Consultant at Defora Networks', 'khorben', 0, 0, 76, 28, 0, 0, 0, '2011-09-26T19:34:08Z', '2024-10-14T15:32:53Z', 'https://avatars.githubusercontent.com/u/1081724?v=4', 'https://api.github.com/users/khorben', 'https://github.com/khorben', 'https://api.github.com/users/khorben/followers', 'https://api.github.com/users/khorben/following', 'https://api.github.com/users/khorben/gists', 'https://api.github.com/users/khorben/starred', 'https://api.github.com/users/khorben/repos', 'https://api.github.com/users/khorben/events', 'https://api.github.com/users/khorben/received_events', 0); +INSERT INTO `developer` VALUES (1094995, 'edersonbrilhante', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ederson Brilhante', '@cisco', 'dev.to/edersonbrilhante', 'Krakow - Poland', 'contato@edersonbrilhante.com.br', NULL, 'SRE Tech Lead', 'ederbrilhante', 0, 0, 77, 84, 0, 0, 0, '2011-10-01T15:17:46Z', '2024-08-19T10:46:09Z', 'https://avatars.githubusercontent.com/u/1094995?v=4', 'https://api.github.com/users/edersonbrilhante', 'https://github.com/edersonbrilhante', 'https://api.github.com/users/edersonbrilhante/followers', 'https://api.github.com/users/edersonbrilhante/following', 'https://api.github.com/users/edersonbrilhante/gists', 'https://api.github.com/users/edersonbrilhante/starred', 'https://api.github.com/users/edersonbrilhante/repos', 'https://api.github.com/users/edersonbrilhante/events', 'https://api.github.com/users/edersonbrilhante/received_events', 0); +INSERT INTO `developer` VALUES (1095675, 'luke-jr', 'B-', 34.38592451276371, 0, 0, 0, 0, 0, 0, 'Luke Dashjr', NULL, '', '未知', 'luke+github_public@dashjr.org', 'true', NULL, 'lukedashjr', 0, 0, 2290, 0, 0, 0, 0, '2011-10-01T23:08:57Z', '2024-10-27T15:35:55Z', 'https://avatars.githubusercontent.com/u/1095675?v=4', 'https://api.github.com/users/luke-jr', 'https://github.com/luke-jr', 'https://api.github.com/users/luke-jr/followers', 'https://api.github.com/users/luke-jr/following', 'https://api.github.com/users/luke-jr/gists', 'https://api.github.com/users/luke-jr/starred', 'https://api.github.com/users/luke-jr/repos', 'https://api.github.com/users/luke-jr/events', 'https://api.github.com/users/luke-jr/received_events', 0); +INSERT INTO `developer` VALUES (1096799, 'jouve', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cyril Jouve', NULL, 'https://cyril-jouve.fr', 'Vitrolles', 'jv.cyril@gmail.com', 'true', NULL, NULL, 0, 0, 7, 15, 0, 0, 0, '2011-10-02T16:25:52Z', '2024-10-25T11:21:09Z', 'https://avatars.githubusercontent.com/u/1096799?v=4', 'https://api.github.com/users/jouve', 'https://github.com/jouve', 'https://api.github.com/users/jouve/followers', 'https://api.github.com/users/jouve/following', 'https://api.github.com/users/jouve/gists', 'https://api.github.com/users/jouve/starred', 'https://api.github.com/users/jouve/repos', 'https://api.github.com/users/jouve/events', 'https://api.github.com/users/jouve/received_events', 0); +INSERT INTO `developer` VALUES (1100843, 'bt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bertram Truong', '@Secoura', 'bertram.au', 'Melbourne, Australia', NULL, NULL, NULL, NULL, 0, 0, 21, 8, 0, 0, 0, '2011-10-04T05:23:03Z', '2024-10-13T05:18:19Z', 'https://avatars.githubusercontent.com/u/1100843?v=4', 'https://api.github.com/users/bt', 'https://github.com/bt', 'https://api.github.com/users/bt/followers', 'https://api.github.com/users/bt/following', 'https://api.github.com/users/bt/gists', 'https://api.github.com/users/bt/starred', 'https://api.github.com/users/bt/repos', 'https://api.github.com/users/bt/events', 'https://api.github.com/users/bt/received_events', 0); +INSERT INTO `developer` VALUES (1101732, 'xdmnl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Xavier', '@frontapp ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 14, 7, 0, 0, 0, '2011-10-04T12:51:17Z', '2024-10-16T03:33:15Z', 'https://avatars.githubusercontent.com/u/1101732?v=4', 'https://api.github.com/users/xdmnl', 'https://github.com/xdmnl', 'https://api.github.com/users/xdmnl/followers', 'https://api.github.com/users/xdmnl/following', 'https://api.github.com/users/xdmnl/gists', 'https://api.github.com/users/xdmnl/starred', 'https://api.github.com/users/xdmnl/repos', 'https://api.github.com/users/xdmnl/events', 'https://api.github.com/users/xdmnl/received_events', 0); +INSERT INTO `developer` VALUES (1104976, 'joesiewert', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joe Siewert', NULL, '', '未知', NULL, NULL, '🏔🏔🏔', NULL, 0, 0, 20, 36, 0, 0, 0, '2011-10-05T14:14:18Z', '2024-04-22T18:49:46Z', 'https://avatars.githubusercontent.com/u/1104976?v=4', 'https://api.github.com/users/joesiewert', 'https://github.com/joesiewert', 'https://api.github.com/users/joesiewert/followers', 'https://api.github.com/users/joesiewert/following', 'https://api.github.com/users/joesiewert/gists', 'https://api.github.com/users/joesiewert/starred', 'https://api.github.com/users/joesiewert/repos', 'https://api.github.com/users/joesiewert/events', 'https://api.github.com/users/joesiewert/received_events', 0); +INSERT INTO `developer` VALUES (1108799, 'Tydus', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Tokyo, Japan', NULL, NULL, NULL, NULL, 0, 0, 86, 26, 0, 0, 0, '2011-10-06T22:10:04Z', '2024-04-28T02:25:14Z', 'https://avatars.githubusercontent.com/u/1108799?v=4', 'https://api.github.com/users/Tydus', 'https://github.com/Tydus', 'https://api.github.com/users/Tydus/followers', 'https://api.github.com/users/Tydus/following', 'https://api.github.com/users/Tydus/gists', 'https://api.github.com/users/Tydus/starred', 'https://api.github.com/users/Tydus/repos', 'https://api.github.com/users/Tydus/events', 'https://api.github.com/users/Tydus/received_events', 0); +INSERT INTO `developer` VALUES (1116761, 'fbonzon', 'C', 0, 0, 0, 0, 0, 0, 0, 'François B', NULL, '', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 24, 8, 0, 0, 0, '2011-10-10T15:38:35Z', '2024-10-22T16:53:21Z', 'https://avatars.githubusercontent.com/u/1116761?v=4', 'https://api.github.com/users/fbonzon', 'https://github.com/fbonzon', 'https://api.github.com/users/fbonzon/followers', 'https://api.github.com/users/fbonzon/following', 'https://api.github.com/users/fbonzon/gists', 'https://api.github.com/users/fbonzon/starred', 'https://api.github.com/users/fbonzon/repos', 'https://api.github.com/users/fbonzon/events', 'https://api.github.com/users/fbonzon/received_events', 0); +INSERT INTO `developer` VALUES (1119267, 'alexesprit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexey', '@maroo-us', 'https://alexesprit.com', '未知', 'alex.esprit@gmail.com', 'true', NULL, 'KotanPupkin', 0, 0, 101, 0, 0, 0, 0, '2011-10-11T11:51:07Z', '2024-07-16T16:24:59Z', 'https://avatars.githubusercontent.com/u/1119267?v=4', 'https://api.github.com/users/alexesprit', 'https://github.com/alexesprit', 'https://api.github.com/users/alexesprit/followers', 'https://api.github.com/users/alexesprit/following', 'https://api.github.com/users/alexesprit/gists', 'https://api.github.com/users/alexesprit/starred', 'https://api.github.com/users/alexesprit/repos', 'https://api.github.com/users/alexesprit/events', 'https://api.github.com/users/alexesprit/received_events', 0); +INSERT INTO `developer` VALUES (1137632, 'mb-14', 'C', 0, 0, 0, 0, 0, 0, 0, 'Miroojin Bakshi', NULL, 'http://mb-14.github.io', 'Pune, India', 'mbakshi1094@gmail.com', 'true', NULL, NULL, 0, 0, 50, 17, 0, 0, 0, '2011-10-19T07:46:15Z', '2024-10-13T08:53:25Z', 'https://avatars.githubusercontent.com/u/1137632?v=4', 'https://api.github.com/users/mb-14', 'https://github.com/mb-14', 'https://api.github.com/users/mb-14/followers', 'https://api.github.com/users/mb-14/following', 'https://api.github.com/users/mb-14/gists', 'https://api.github.com/users/mb-14/starred', 'https://api.github.com/users/mb-14/repos', 'https://api.github.com/users/mb-14/events', 'https://api.github.com/users/mb-14/received_events', 0); +INSERT INTO `developer` VALUES (1138625, 'esbullington', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric S. Bullington', NULL, 'https://ericbullington.com', 'Columbia, SC', NULL, 'true', NULL, NULL, 0, 0, 61, 2, 0, 0, 0, '2011-10-19T15:52:53Z', '2021-09-16T12:54:55Z', 'https://avatars.githubusercontent.com/u/1138625?v=4', 'https://api.github.com/users/esbullington', 'https://github.com/esbullington', 'https://api.github.com/users/esbullington/followers', 'https://api.github.com/users/esbullington/following', 'https://api.github.com/users/esbullington/gists', 'https://api.github.com/users/esbullington/starred', 'https://api.github.com/users/esbullington/repos', 'https://api.github.com/users/esbullington/events', 'https://api.github.com/users/esbullington/received_events', 0); +INSERT INTO `developer` VALUES (1150045, 'voegelas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Vögele ', NULL, 'https://www.andreasvoegele.com/', 'Stuttgart, Germany', NULL, NULL, 'System administrator and software developer', NULL, 0, 0, 7, 9, 0, 0, 0, '2011-10-25T06:36:27Z', '2024-10-09T21:35:46Z', 'https://avatars.githubusercontent.com/u/1150045?v=4', 'https://api.github.com/users/voegelas', 'https://github.com/voegelas', 'https://api.github.com/users/voegelas/followers', 'https://api.github.com/users/voegelas/following', 'https://api.github.com/users/voegelas/gists', 'https://api.github.com/users/voegelas/starred', 'https://api.github.com/users/voegelas/repos', 'https://api.github.com/users/voegelas/events', 'https://api.github.com/users/voegelas/received_events', 0); +INSERT INTO `developer` VALUES (1150253, 'erkmos', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, 'I write code', NULL, 0, 0, 30, 1, 0, 0, 0, '2011-10-25T08:57:02Z', '2024-10-31T13:29:18Z', 'https://avatars.githubusercontent.com/u/1150253?v=4', 'https://api.github.com/users/erkmos', 'https://github.com/erkmos', 'https://api.github.com/users/erkmos/followers', 'https://api.github.com/users/erkmos/following', 'https://api.github.com/users/erkmos/gists', 'https://api.github.com/users/erkmos/starred', 'https://api.github.com/users/erkmos/repos', 'https://api.github.com/users/erkmos/events', 'https://api.github.com/users/erkmos/received_events', 0); +INSERT INTO `developer` VALUES (1155895, 'brandondahler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brandon Dahler', 'Amazon Web Services', '', 'Raleigh, NC', 'brandon.dahler@gmail.com', NULL, NULL, NULL, 0, 0, 25, 1, 0, 0, 0, '2011-10-27T15:12:40Z', '2024-10-23T11:19:01Z', 'https://avatars.githubusercontent.com/u/1155895?v=4', 'https://api.github.com/users/brandondahler', 'https://github.com/brandondahler', 'https://api.github.com/users/brandondahler/followers', 'https://api.github.com/users/brandondahler/following', 'https://api.github.com/users/brandondahler/gists', 'https://api.github.com/users/brandondahler/starred', 'https://api.github.com/users/brandondahler/repos', 'https://api.github.com/users/brandondahler/events', 'https://api.github.com/users/brandondahler/received_events', 0); +INSERT INTO `developer` VALUES (1157053, 'johnoliverdriscoll', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Driscoll', NULL, '', 'Austin, TX', 'john@bitgo.com', NULL, 'Veganism is a bare minimum moral imperative.', NULL, 0, 0, 31, 6, 0, 0, 0, '2011-10-28T02:55:59Z', '2023-07-07T20:34:22Z', 'https://avatars.githubusercontent.com/u/1157053?v=4', 'https://api.github.com/users/johnoliverdriscoll', 'https://github.com/johnoliverdriscoll', 'https://api.github.com/users/johnoliverdriscoll/followers', 'https://api.github.com/users/johnoliverdriscoll/following', 'https://api.github.com/users/johnoliverdriscoll/gists', 'https://api.github.com/users/johnoliverdriscoll/starred', 'https://api.github.com/users/johnoliverdriscoll/repos', 'https://api.github.com/users/johnoliverdriscoll/events', 'https://api.github.com/users/johnoliverdriscoll/received_events', 0); +INSERT INTO `developer` VALUES (1160305, 'etcinit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eduardo Trujillo', NULL, 'https://trujillo.io', 'San Francisco, CA', 'ed@trujillo.io', NULL, 'Software Engineer', NULL, 0, 0, 184, 46, 0, 0, 0, '2011-10-30T01:51:40Z', '2024-03-04T06:35:36Z', 'https://avatars.githubusercontent.com/u/1160305?v=4', 'https://api.github.com/users/etcinit', 'https://github.com/etcinit', 'https://api.github.com/users/etcinit/followers', 'https://api.github.com/users/etcinit/following', 'https://api.github.com/users/etcinit/gists', 'https://api.github.com/users/etcinit/starred', 'https://api.github.com/users/etcinit/repos', 'https://api.github.com/users/etcinit/events', 'https://api.github.com/users/etcinit/received_events', 0); +INSERT INTO `developer` VALUES (1170428, 'bluele', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jun Kimura', '@datachainlab @speee', 'https://bluele.github.io/about/', 'Tokyo, Japan', 'junkxdev@gmail.com', 'true', 'Gopher, Rustacean', 'bluele_jp', 0, 0, 220, 33, 0, 0, 0, '2011-11-03T18:00:43Z', '2024-09-12T10:56:42Z', 'https://avatars.githubusercontent.com/u/1170428?v=4', 'https://api.github.com/users/bluele', 'https://github.com/bluele', 'https://api.github.com/users/bluele/followers', 'https://api.github.com/users/bluele/following', 'https://api.github.com/users/bluele/gists', 'https://api.github.com/users/bluele/starred', 'https://api.github.com/users/bluele/repos', 'https://api.github.com/users/bluele/events', 'https://api.github.com/users/bluele/received_events', 0); +INSERT INTO `developer` VALUES (1178779, 'Kixunil', 'C', 1.0834920975968654, 0, 0, 0, 0, 0, 0, 'Martin Habovštiak', NULL, 'https://ln-ask.me', 'Bratislava', 'martin.habovstiak@gmail.com', NULL, 'Beside programming, I\'m interested in security, cryptography, Bitcoin and freedom.\r\n\r\nAttempt to hire me to shitcoin (non-Bitcoin coins) -> offending response', NULL, 0, 0, 348, 28, 0, 0, 0, '2011-11-07T19:23:44Z', '2024-10-06T11:22:59Z', 'https://avatars.githubusercontent.com/u/1178779?v=4', 'https://api.github.com/users/Kixunil', 'https://github.com/Kixunil', 'https://api.github.com/users/Kixunil/followers', 'https://api.github.com/users/Kixunil/following', 'https://api.github.com/users/Kixunil/gists', 'https://api.github.com/users/Kixunil/starred', 'https://api.github.com/users/Kixunil/repos', 'https://api.github.com/users/Kixunil/events', 'https://api.github.com/users/Kixunil/received_events', 0); +INSERT INTO `developer` VALUES (1192483, 'rdponticelli', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2011-11-14T00:38:56Z', '2016-02-27T01:06:35Z', 'https://avatars.githubusercontent.com/u/1192483?v=4', 'https://api.github.com/users/rdponticelli', 'https://github.com/rdponticelli', 'https://api.github.com/users/rdponticelli/followers', 'https://api.github.com/users/rdponticelli/following', 'https://api.github.com/users/rdponticelli/gists', 'https://api.github.com/users/rdponticelli/starred', 'https://api.github.com/users/rdponticelli/repos', 'https://api.github.com/users/rdponticelli/events', 'https://api.github.com/users/rdponticelli/received_events', 0); +INSERT INTO `developer` VALUES (1192573, 'shenli', 'C', 2.2152946410577368, 0, 0, 0, 0, 0, 0, 'Li Shen', 'PingCAP', '', 'San Francisco Bay Area', 'shenli3514@gmail.com', 'true', 'Building Distributed SQL Database', 'shenli3514', 0, 0, 414, 12, 0, 0, 0, '2011-11-14T02:01:36Z', '2024-10-21T23:42:39Z', 'https://avatars.githubusercontent.com/u/1192573?v=4', 'https://api.github.com/users/shenli', 'https://github.com/shenli', 'https://api.github.com/users/shenli/followers', 'https://api.github.com/users/shenli/following', 'https://api.github.com/users/shenli/gists', 'https://api.github.com/users/shenli/starred', 'https://api.github.com/users/shenli/repos', 'https://api.github.com/users/shenli/events', 'https://api.github.com/users/shenli/received_events', 0); +INSERT INTO `developer` VALUES (1209742, 'MarianG', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2011-11-21T08:24:21Z', '2024-07-01T11:41:15Z', 'https://avatars.githubusercontent.com/u/1209742?v=4', 'https://api.github.com/users/MarianG', 'https://github.com/MarianG', 'https://api.github.com/users/MarianG/followers', 'https://api.github.com/users/MarianG/following', 'https://api.github.com/users/MarianG/gists', 'https://api.github.com/users/MarianG/starred', 'https://api.github.com/users/MarianG/repos', 'https://api.github.com/users/MarianG/events', 'https://api.github.com/users/MarianG/received_events', 0); +INSERT INTO `developer` VALUES (1211146, 'pburkholder', 'C', 10.613100209818194, 0, 54, 29, 100, 0, 0, 'Peter Burkholder', 'US Government', 'https://pburkholder.dev', 'Hyattsville, MD', 'peter.burkholder@gsa.gov', NULL, NULL, NULL, 0, 0, 38, 1, 0, 0, 0, '2011-11-21T19:30:14Z', '2024-10-22T13:42:12Z', 'https://avatars.githubusercontent.com/u/1211146?v=4', 'https://api.github.com/users/pburkholder', 'https://github.com/pburkholder', 'https://api.github.com/users/pburkholder/followers', 'https://api.github.com/users/pburkholder/following', 'https://api.github.com/users/pburkholder/gists', 'https://api.github.com/users/pburkholder/starred', 'https://api.github.com/users/pburkholder/repos', 'https://api.github.com/users/pburkholder/events', 'https://api.github.com/users/pburkholder/received_events', 0); +INSERT INTO `developer` VALUES (1221786, 'fcicq', 'C', 0, 0, 0, 0, 0, 0, 0, 'fcicq', NULL, 'https://www.douban.com/note/564213701/', '未知', NULL, NULL, 'Professional Algorithm & Data Structure Designer.', NULL, 0, 0, 77, 8, 0, 0, 0, '2011-11-26T11:42:41Z', '2022-11-18T13:24:52Z', 'https://avatars.githubusercontent.com/u/1221786?v=4', 'https://api.github.com/users/fcicq', 'https://github.com/fcicq', 'https://api.github.com/users/fcicq/followers', 'https://api.github.com/users/fcicq/following', 'https://api.github.com/users/fcicq/gists', 'https://api.github.com/users/fcicq/starred', 'https://api.github.com/users/fcicq/repos', 'https://api.github.com/users/fcicq/events', 'https://api.github.com/users/fcicq/received_events', 0); +INSERT INTO `developer` VALUES (1225267, 'benma', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 125, 15, 0, 0, 0, '2011-11-28T12:57:22Z', '2024-10-30T12:55:44Z', 'https://avatars.githubusercontent.com/u/1225267?v=4', 'https://api.github.com/users/benma', 'https://github.com/benma', 'https://api.github.com/users/benma/followers', 'https://api.github.com/users/benma/following', 'https://api.github.com/users/benma/gists', 'https://api.github.com/users/benma/starred', 'https://api.github.com/users/benma/repos', 'https://api.github.com/users/benma/events', 'https://api.github.com/users/benma/received_events', 0); +INSERT INTO `developer` VALUES (1226247, 'seamustuohy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seamus Tuohy', NULL, 'seamustuohy.com', '未知', NULL, 'true', 'Technologist', 'seamustuohy', 0, 0, 135, 109, 0, 0, 0, '2011-11-28T19:39:08Z', '2023-12-25T15:16:38Z', 'https://avatars.githubusercontent.com/u/1226247?v=4', 'https://api.github.com/users/seamustuohy', 'https://github.com/seamustuohy', 'https://api.github.com/users/seamustuohy/followers', 'https://api.github.com/users/seamustuohy/following', 'https://api.github.com/users/seamustuohy/gists', 'https://api.github.com/users/seamustuohy/starred', 'https://api.github.com/users/seamustuohy/repos', 'https://api.github.com/users/seamustuohy/events', 'https://api.github.com/users/seamustuohy/received_events', 0); +INSERT INTO `developer` VALUES (1226445, 'arianitu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arianit Uka', 'StackSoft Inc.', 'https://www.stacksoft.io', 'Montreal, QC', 'arianitu@gmail.com', NULL, NULL, NULL, 0, 0, 32, 21, 0, 0, 0, '2011-11-28T21:03:30Z', '2024-10-01T15:40:59Z', 'https://avatars.githubusercontent.com/u/1226445?v=4', 'https://api.github.com/users/arianitu', 'https://github.com/arianitu', 'https://api.github.com/users/arianitu/followers', 'https://api.github.com/users/arianitu/following', 'https://api.github.com/users/arianitu/gists', 'https://api.github.com/users/arianitu/starred', 'https://api.github.com/users/arianitu/repos', 'https://api.github.com/users/arianitu/events', 'https://api.github.com/users/arianitu/received_events', 0); +INSERT INTO `developer` VALUES (1226686, 'matthewdfuller', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Fuller', NULL, 'http://matthewdfuller.com', 'New York, NY', 'matthewdf10@gmail.com', NULL, NULL, 'matthewdfuller', 0, 0, 83, 2, 0, 0, 0, '2011-11-28T22:50:41Z', '2024-07-06T15:41:24Z', 'https://avatars.githubusercontent.com/u/1226686?v=4', 'https://api.github.com/users/matthewdfuller', 'https://github.com/matthewdfuller', 'https://api.github.com/users/matthewdfuller/followers', 'https://api.github.com/users/matthewdfuller/following', 'https://api.github.com/users/matthewdfuller/gists', 'https://api.github.com/users/matthewdfuller/starred', 'https://api.github.com/users/matthewdfuller/repos', 'https://api.github.com/users/matthewdfuller/events', 'https://api.github.com/users/matthewdfuller/received_events', 0); +INSERT INTO `developer` VALUES (1228349, 'jmccann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob McCann', '@target ', '', '未知', 'jmccann.git@gmail.com', NULL, NULL, NULL, 0, 0, 55, 12, 0, 0, 0, '2011-11-29T15:17:16Z', '2024-07-16T18:18:20Z', 'https://avatars.githubusercontent.com/u/1228349?v=4', 'https://api.github.com/users/jmccann', 'https://github.com/jmccann', 'https://api.github.com/users/jmccann/followers', 'https://api.github.com/users/jmccann/following', 'https://api.github.com/users/jmccann/gists', 'https://api.github.com/users/jmccann/starred', 'https://api.github.com/users/jmccann/repos', 'https://api.github.com/users/jmccann/events', 'https://api.github.com/users/jmccann/received_events', 0); +INSERT INTO `developer` VALUES (1230959, 'jidanni', 'C', 0, 0, 0, 0, 0, 0, 0, '積丹尼 Dan Jacobson', NULL, 'https://www.jidanni.org/', '未知', 'jidanni@jidanni.org', NULL, NULL, NULL, 0, 0, 34, 2, 0, 0, 0, '2011-11-30T14:35:52Z', '2024-10-16T01:02:01Z', 'https://avatars.githubusercontent.com/u/1230959?v=4', 'https://api.github.com/users/jidanni', 'https://github.com/jidanni', 'https://api.github.com/users/jidanni/followers', 'https://api.github.com/users/jidanni/following', 'https://api.github.com/users/jidanni/gists', 'https://api.github.com/users/jidanni/starred', 'https://api.github.com/users/jidanni/repos', 'https://api.github.com/users/jidanni/events', 'https://api.github.com/users/jidanni/received_events', 0); +INSERT INTO `developer` VALUES (1235925, 'AlexsJones', 'C', 7.202445763218253, 0, 0, 0, 202, 39, 0, 'Alex Jones', 'AWS', '', 'London', 'alex@k8sgpt.ai', NULL, 'Principal Engineer @aws', 'AlexJonesax', 0, 0, 513, 60, 0, 0, 0, '2011-12-02T11:40:05Z', '2024-10-30T13:57:17Z', 'https://avatars.githubusercontent.com/u/1235925?v=4', 'https://api.github.com/users/AlexsJones', 'https://github.com/AlexsJones', 'https://api.github.com/users/AlexsJones/followers', 'https://api.github.com/users/AlexsJones/following', 'https://api.github.com/users/AlexsJones/gists', 'https://api.github.com/users/AlexsJones/starred', 'https://api.github.com/users/AlexsJones/repos', 'https://api.github.com/users/AlexsJones/events', 'https://api.github.com/users/AlexsJones/received_events', 0); +INSERT INTO `developer` VALUES (1236551, 'ElfoLiNk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matteo Gazzetta', '@bitrockteam ', '', 'Milan, Italy', NULL, 'true', NULL, NULL, 0, 0, 39, 133, 0, 0, 0, '2011-12-02T17:08:24Z', '2024-10-15T11:20:00Z', 'https://avatars.githubusercontent.com/u/1236551?v=4', 'https://api.github.com/users/ElfoLiNk', 'https://github.com/ElfoLiNk', 'https://api.github.com/users/ElfoLiNk/followers', 'https://api.github.com/users/ElfoLiNk/following', 'https://api.github.com/users/ElfoLiNk/gists', 'https://api.github.com/users/ElfoLiNk/starred', 'https://api.github.com/users/ElfoLiNk/repos', 'https://api.github.com/users/ElfoLiNk/events', 'https://api.github.com/users/ElfoLiNk/received_events', 0); +INSERT INTO `developer` VALUES (1248917, 'tduffield', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Duffield', NULL, 'http://tomduffield.com', 'Minneapolis, MN', 'github@tomduffield.com', NULL, NULL, NULL, 0, 0, 25, 0, 0, 0, 0, '2011-12-08T03:46:27Z', '2024-10-26T04:36:48Z', 'https://avatars.githubusercontent.com/u/1248917?v=4', 'https://api.github.com/users/tduffield', 'https://github.com/tduffield', 'https://api.github.com/users/tduffield/followers', 'https://api.github.com/users/tduffield/following', 'https://api.github.com/users/tduffield/gists', 'https://api.github.com/users/tduffield/starred', 'https://api.github.com/users/tduffield/repos', 'https://api.github.com/users/tduffield/events', 'https://api.github.com/users/tduffield/received_events', 0); +INSERT INTO `developer` VALUES (1253444, 'nathan-osman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Osman', NULL, 'https://nathanosman.com', '未知', 'nathan@quickmediasolutions.com', 'true', 'C++, Python, and Go Software Engineer', NULL, 0, 0, 207, 4, 0, 0, 0, '2011-12-10T01:33:35Z', '2024-11-02T18:22:03Z', 'https://avatars.githubusercontent.com/u/1253444?v=4', 'https://api.github.com/users/nathan-osman', 'https://github.com/nathan-osman', 'https://api.github.com/users/nathan-osman/followers', 'https://api.github.com/users/nathan-osman/following', 'https://api.github.com/users/nathan-osman/gists', 'https://api.github.com/users/nathan-osman/starred', 'https://api.github.com/users/nathan-osman/repos', 'https://api.github.com/users/nathan-osman/events', 'https://api.github.com/users/nathan-osman/received_events', 0); +INSERT INTO `developer` VALUES (1255053, 'nushor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Bushor', NULL, '', 'Minnesota', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2011-12-11T05:39:44Z', '2024-10-29T23:55:05Z', 'https://avatars.githubusercontent.com/u/1255053?v=4', 'https://api.github.com/users/nushor', 'https://github.com/nushor', 'https://api.github.com/users/nushor/followers', 'https://api.github.com/users/nushor/following', 'https://api.github.com/users/nushor/gists', 'https://api.github.com/users/nushor/starred', 'https://api.github.com/users/nushor/repos', 'https://api.github.com/users/nushor/events', 'https://api.github.com/users/nushor/received_events', 0); +INSERT INTO `developer` VALUES (1259631, 'roboll', 'C', 0, 0, 0, 0, 0, 0, 0, 'rob boll', '@DataDog ', '', 'new york, ny', NULL, NULL, NULL, NULL, 0, 0, 147, 2, 0, 0, 0, '2011-12-13T07:52:08Z', '2024-07-31T18:17:05Z', 'https://avatars.githubusercontent.com/u/1259631?v=4', 'https://api.github.com/users/roboll', 'https://github.com/roboll', 'https://api.github.com/users/roboll/followers', 'https://api.github.com/users/roboll/following', 'https://api.github.com/users/roboll/gists', 'https://api.github.com/users/roboll/starred', 'https://api.github.com/users/roboll/repos', 'https://api.github.com/users/roboll/events', 'https://api.github.com/users/roboll/received_events', 0); +INSERT INTO `developer` VALUES (1264759, 'rolandbosa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roland Bosa', NULL, '', '未知', 'roland.bosa@gmail.com', NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2011-12-15T05:42:11Z', '2024-10-30T07:55:32Z', 'https://avatars.githubusercontent.com/u/1264759?v=4', 'https://api.github.com/users/rolandbosa', 'https://github.com/rolandbosa', 'https://api.github.com/users/rolandbosa/followers', 'https://api.github.com/users/rolandbosa/following', 'https://api.github.com/users/rolandbosa/gists', 'https://api.github.com/users/rolandbosa/starred', 'https://api.github.com/users/rolandbosa/repos', 'https://api.github.com/users/rolandbosa/events', 'https://api.github.com/users/rolandbosa/received_events', 0); +INSERT INTO `developer` VALUES (1277613, 'carlosjgp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carlos Juan Gómez Peñalver', '@automata-tech ', '', 'London, United Kingdom', 'carlosjuangp@gmail.com', NULL, NULL, NULL, 0, 0, 19, 21, 0, 0, 0, '2011-12-21T12:59:06Z', '2024-10-09T16:08:21Z', 'https://avatars.githubusercontent.com/u/1277613?v=4', 'https://api.github.com/users/carlosjgp', 'https://github.com/carlosjgp', 'https://api.github.com/users/carlosjgp/followers', 'https://api.github.com/users/carlosjgp/following', 'https://api.github.com/users/carlosjgp/gists', 'https://api.github.com/users/carlosjgp/starred', 'https://api.github.com/users/carlosjgp/repos', 'https://api.github.com/users/carlosjgp/events', 'https://api.github.com/users/carlosjgp/received_events', 0); +INSERT INTO `developer` VALUES (1280719, 'iangcarroll', 'C', 0.6719275363383668, 0, 0, 0, 0, 0, 0, 'Ian Carroll', '@seatsaero', 'https://ian.sh', 'Ann Arbor, MI', 'ian@ian.sh', NULL, NULL, 'iangcarroll', 0, 0, 324, 24, 0, 0, 0, '2011-12-22T19:28:01Z', '2024-11-02T11:40:56Z', 'https://avatars.githubusercontent.com/u/1280719?v=4', 'https://api.github.com/users/iangcarroll', 'https://github.com/iangcarroll', 'https://api.github.com/users/iangcarroll/followers', 'https://api.github.com/users/iangcarroll/following', 'https://api.github.com/users/iangcarroll/gists', 'https://api.github.com/users/iangcarroll/starred', 'https://api.github.com/users/iangcarroll/repos', 'https://api.github.com/users/iangcarroll/events', 'https://api.github.com/users/iangcarroll/received_events', 0); +INSERT INTO `developer` VALUES (1281825, 'k-kinzal', 'C', 0, 0, 0, 0, 0, 0, 0, 'kinzal', NULL, 'http://about.me/kinzal', 'japan', NULL, NULL, NULL, 'k_kinzal', 0, 0, 10, 6, 0, 0, 0, '2011-12-23T10:01:07Z', '2024-08-04T04:58:37Z', 'https://avatars.githubusercontent.com/u/1281825?v=4', 'https://api.github.com/users/k-kinzal', 'https://github.com/k-kinzal', 'https://api.github.com/users/k-kinzal/followers', 'https://api.github.com/users/k-kinzal/following', 'https://api.github.com/users/k-kinzal/gists', 'https://api.github.com/users/k-kinzal/starred', 'https://api.github.com/users/k-kinzal/repos', 'https://api.github.com/users/k-kinzal/events', 'https://api.github.com/users/k-kinzal/received_events', 0); +INSERT INTO `developer` VALUES (1286414, 'harshilmathur', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harshil Mathur', NULL, '', 'India', 'harshilmathur@gmail.com', NULL, NULL, NULL, 0, 0, 79, 3, 0, 0, 0, '2011-12-26T15:06:14Z', '2024-03-16T07:26:33Z', 'https://avatars.githubusercontent.com/u/1286414?v=4', 'https://api.github.com/users/harshilmathur', 'https://github.com/harshilmathur', 'https://api.github.com/users/harshilmathur/followers', 'https://api.github.com/users/harshilmathur/following', 'https://api.github.com/users/harshilmathur/gists', 'https://api.github.com/users/harshilmathur/starred', 'https://api.github.com/users/harshilmathur/repos', 'https://api.github.com/users/harshilmathur/events', 'https://api.github.com/users/harshilmathur/received_events', 0); +INSERT INTO `developer` VALUES (1289035, 'DavidGriffith', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Griffith', NULL, 'http://661.org', '未知', 'dave@661.org', 'true', 'Unix expert, old stuff enthusiast, small business owner.', NULL, 0, 0, 85, 13, 0, 0, 0, '2011-12-27T20:59:46Z', '2024-05-16T23:23:36Z', 'https://avatars.githubusercontent.com/u/1289035?v=4', 'https://api.github.com/users/DavidGriffith', 'https://github.com/DavidGriffith', 'https://api.github.com/users/DavidGriffith/followers', 'https://api.github.com/users/DavidGriffith/following', 'https://api.github.com/users/DavidGriffith/gists', 'https://api.github.com/users/DavidGriffith/starred', 'https://api.github.com/users/DavidGriffith/repos', 'https://api.github.com/users/DavidGriffith/events', 'https://api.github.com/users/DavidGriffith/received_events', 0); +INSERT INTO `developer` VALUES (1291984, 'worldofprasanna', 'C', 0, 0, 0, 0, 0, 0, 0, 'Prasanna', NULL, 'worldofprasanna.in', 'Chennai', NULL, 'true', 'Passionate coder who loves to read code and strives to follow the best practices.', 'worldofprasanna', 0, 0, 55, 115, 0, 0, 0, '2011-12-29T07:15:48Z', '2024-10-01T17:01:19Z', 'https://avatars.githubusercontent.com/u/1291984?v=4', 'https://api.github.com/users/worldofprasanna', 'https://github.com/worldofprasanna', 'https://api.github.com/users/worldofprasanna/followers', 'https://api.github.com/users/worldofprasanna/following', 'https://api.github.com/users/worldofprasanna/gists', 'https://api.github.com/users/worldofprasanna/starred', 'https://api.github.com/users/worldofprasanna/repos', 'https://api.github.com/users/worldofprasanna/events', 'https://api.github.com/users/worldofprasanna/received_events', 0); +INSERT INTO `developer` VALUES (1295883, 'dertin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guillermo Céspedes Tabárez', NULL, '', 'Uruguay', NULL, 'true', NULL, 'dertin', 0, 0, 32, 60, 0, 0, 0, '2011-12-31T00:38:29Z', '2024-11-02T17:10:40Z', 'https://avatars.githubusercontent.com/u/1295883?v=4', 'https://api.github.com/users/dertin', 'https://github.com/dertin', 'https://api.github.com/users/dertin/followers', 'https://api.github.com/users/dertin/following', 'https://api.github.com/users/dertin/gists', 'https://api.github.com/users/dertin/starred', 'https://api.github.com/users/dertin/repos', 'https://api.github.com/users/dertin/events', 'https://api.github.com/users/dertin/received_events', 0); +INSERT INTO `developer` VALUES (1298643, 'eirmag', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gabriel', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 2, 0, 0, 0, '2012-01-02T10:47:05Z', '2024-09-03T19:46:18Z', 'https://avatars.githubusercontent.com/u/1298643?v=4', 'https://api.github.com/users/eirmag', 'https://github.com/eirmag', 'https://api.github.com/users/eirmag/followers', 'https://api.github.com/users/eirmag/following', 'https://api.github.com/users/eirmag/gists', 'https://api.github.com/users/eirmag/starred', 'https://api.github.com/users/eirmag/repos', 'https://api.github.com/users/eirmag/events', 'https://api.github.com/users/eirmag/received_events', 0); +INSERT INTO `developer` VALUES (1302314, 'yehorov', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2012-01-03T21:43:38Z', '2022-05-15T13:09:36Z', 'https://avatars.githubusercontent.com/u/1302314?v=4', 'https://api.github.com/users/yehorov', 'https://github.com/yehorov', 'https://api.github.com/users/yehorov/followers', 'https://api.github.com/users/yehorov/following', 'https://api.github.com/users/yehorov/gists', 'https://api.github.com/users/yehorov/starred', 'https://api.github.com/users/yehorov/repos', 'https://api.github.com/users/yehorov/events', 'https://api.github.com/users/yehorov/received_events', 0); +INSERT INTO `developer` VALUES (1302480, 'darend', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daren Desjardins', '@sagansystems ', '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2012-01-03T23:13:31Z', '2024-06-14T01:28:01Z', 'https://avatars.githubusercontent.com/u/1302480?v=4', 'https://api.github.com/users/darend', 'https://github.com/darend', 'https://api.github.com/users/darend/followers', 'https://api.github.com/users/darend/following', 'https://api.github.com/users/darend/gists', 'https://api.github.com/users/darend/starred', 'https://api.github.com/users/darend/repos', 'https://api.github.com/users/darend/events', 'https://api.github.com/users/darend/received_events', 0); +INSERT INTO `developer` VALUES (1305919, 'ezk84', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ezequiel Muns', NULL, '', 'Berlin, Germany', NULL, 'true', 'Full stack developer-at-large and digital nomad interested in all things computer science, AI and machine learning. ', NULL, 0, 0, 2, 12, 0, 0, 0, '2012-01-05T06:53:05Z', '2024-10-22T12:25:11Z', 'https://avatars.githubusercontent.com/u/1305919?v=4', 'https://api.github.com/users/ezk84', 'https://github.com/ezk84', 'https://api.github.com/users/ezk84/followers', 'https://api.github.com/users/ezk84/following', 'https://api.github.com/users/ezk84/gists', 'https://api.github.com/users/ezk84/starred', 'https://api.github.com/users/ezk84/repos', 'https://api.github.com/users/ezk84/events', 'https://api.github.com/users/ezk84/received_events', 0); +INSERT INTO `developer` VALUES (1306147, 'qinfengling', 'C', 0, 0, 0, 0, 0, 0, 0, 'qinfengling', NULL, 'https://qinfengling.pro', 'Beijing', 'Fengling.Qin@gmail.com', NULL, 'Work = FOSS(Code, Music, Web3)', 'qinfengling', 0, 0, 37, 25, 0, 0, 0, '2012-01-05T08:57:26Z', '2024-07-06T03:48:13Z', 'https://avatars.githubusercontent.com/u/1306147?v=4', 'https://api.github.com/users/qinfengling', 'https://github.com/qinfengling', 'https://api.github.com/users/qinfengling/followers', 'https://api.github.com/users/qinfengling/following', 'https://api.github.com/users/qinfengling/gists', 'https://api.github.com/users/qinfengling/starred', 'https://api.github.com/users/qinfengling/repos', 'https://api.github.com/users/qinfengling/events', 'https://api.github.com/users/qinfengling/received_events', 0); +INSERT INTO `developer` VALUES (1308314, 'tdaede', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Daede', 'Vimeo', '', '未知', 'daede003@alumni.umn.edu', NULL, NULL, NULL, 0, 0, 115, 3, 0, 0, 0, '2012-01-06T01:36:16Z', '2024-11-05T00:18:37Z', 'https://avatars.githubusercontent.com/u/1308314?v=4', 'https://api.github.com/users/tdaede', 'https://github.com/tdaede', 'https://api.github.com/users/tdaede/followers', 'https://api.github.com/users/tdaede/following', 'https://api.github.com/users/tdaede/gists', 'https://api.github.com/users/tdaede/starred', 'https://api.github.com/users/tdaede/repos', 'https://api.github.com/users/tdaede/events', 'https://api.github.com/users/tdaede/received_events', 0); +INSERT INTO `developer` VALUES (1308885, 'Miradorn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Steppke', '@remoteoss', 'https://unsubstantiated.blog', 'Hamburg, Germany', 'alex@schram.me', NULL, NULL, 'm1rad', 0, 0, 12, 4, 0, 0, 0, '2012-01-06T08:33:18Z', '2024-10-07T06:20:36Z', 'https://avatars.githubusercontent.com/u/1308885?v=4', 'https://api.github.com/users/Miradorn', 'https://github.com/Miradorn', 'https://api.github.com/users/Miradorn/followers', 'https://api.github.com/users/Miradorn/following', 'https://api.github.com/users/Miradorn/gists', 'https://api.github.com/users/Miradorn/starred', 'https://api.github.com/users/Miradorn/repos', 'https://api.github.com/users/Miradorn/events', 'https://api.github.com/users/Miradorn/received_events', 0); +INSERT INTO `developer` VALUES (1315944, 'shashankmehta', 'C', 0.12317478799370206, 0, 0, 0, 0, 0, 0, 'Shashank Mehta', '@razorpay ', 'http://shashankmehta.in', 'Bangalore, India', 'me@shashankmehta.in', NULL, 'Product, Tech, Marketing, Content, Dishes, Sweeping, Dusting.... at @Razorpay. ', NULL, 0, 0, 292, 68, 0, 0, 0, '2012-01-09T17:50:21Z', '2023-11-22T10:32:18Z', 'https://avatars.githubusercontent.com/u/1315944?v=4', 'https://api.github.com/users/shashankmehta', 'https://github.com/shashankmehta', 'https://api.github.com/users/shashankmehta/followers', 'https://api.github.com/users/shashankmehta/following', 'https://api.github.com/users/shashankmehta/gists', 'https://api.github.com/users/shashankmehta/starred', 'https://api.github.com/users/shashankmehta/repos', 'https://api.github.com/users/shashankmehta/events', 'https://api.github.com/users/shashankmehta/received_events', 0); +INSERT INTO `developer` VALUES (1316283, 'NullHypothesis', 'C', 0.9977494806680113, 0, 0, 0, 0, 0, 0, 'Philipp Winter', NULL, 'https://nymity.ch', '未知', 'phw@nymity.ch', NULL, 'Computer Scientist', '__phw', 0, 0, 343, 1, 0, 0, 0, '2012-01-09T20:00:37Z', '2024-10-24T16:25:19Z', 'https://avatars.githubusercontent.com/u/1316283?v=4', 'https://api.github.com/users/NullHypothesis', 'https://github.com/NullHypothesis', 'https://api.github.com/users/NullHypothesis/followers', 'https://api.github.com/users/NullHypothesis/following', 'https://api.github.com/users/NullHypothesis/gists', 'https://api.github.com/users/NullHypothesis/starred', 'https://api.github.com/users/NullHypothesis/repos', 'https://api.github.com/users/NullHypothesis/events', 'https://api.github.com/users/NullHypothesis/received_events', 0); +INSERT INTO `developer` VALUES (1318986, 'cmeury', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cedric Meury', NULL, 'http://www.meury.com', 'Switzerland', 'cedric@meury.com', NULL, 'It\'s me.', NULL, 0, 0, 37, 15, 0, 0, 0, '2012-01-10T16:32:42Z', '2024-11-01T14:43:19Z', 'https://avatars.githubusercontent.com/u/1318986?v=4', 'https://api.github.com/users/cmeury', 'https://github.com/cmeury', 'https://api.github.com/users/cmeury/followers', 'https://api.github.com/users/cmeury/following', 'https://api.github.com/users/cmeury/gists', 'https://api.github.com/users/cmeury/starred', 'https://api.github.com/users/cmeury/repos', 'https://api.github.com/users/cmeury/events', 'https://api.github.com/users/cmeury/received_events', 0); +INSERT INTO `developer` VALUES (1328551, 'matt7277', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Saeed', 'Discovery, Inc', 'www.matthewsaeed.com', 'Washington, D.C.', NULL, NULL, 'Sr Director, Security Architecture', NULL, 0, 0, 4, 8, 0, 0, 0, '2012-01-13T19:08:51Z', '2023-11-02T18:15:45Z', 'https://avatars.githubusercontent.com/u/1328551?v=4', 'https://api.github.com/users/matt7277', 'https://github.com/matt7277', 'https://api.github.com/users/matt7277/followers', 'https://api.github.com/users/matt7277/following', 'https://api.github.com/users/matt7277/gists', 'https://api.github.com/users/matt7277/starred', 'https://api.github.com/users/matt7277/repos', 'https://api.github.com/users/matt7277/events', 'https://api.github.com/users/matt7277/received_events', 0); +INSERT INTO `developer` VALUES (1335127, 'opsengine', 'C', 0, 0, 0, 0, 0, 0, 0, 'Angelo Marletta', 'Coinbase', '', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 102, 6, 0, 0, 0, '2012-01-16T22:40:28Z', '2024-05-09T16:16:31Z', 'https://avatars.githubusercontent.com/u/1335127?v=4', 'https://api.github.com/users/opsengine', 'https://github.com/opsengine', 'https://api.github.com/users/opsengine/followers', 'https://api.github.com/users/opsengine/following', 'https://api.github.com/users/opsengine/gists', 'https://api.github.com/users/opsengine/starred', 'https://api.github.com/users/opsengine/repos', 'https://api.github.com/users/opsengine/events', 'https://api.github.com/users/opsengine/received_events', 0); +INSERT INTO `developer` VALUES (1336287, 'languitar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johannes Wienke', 'itemis', 'http://www.semipol.de', 'Germany', 'languitar@semipol.de', NULL, 'If I am not programming, I am a photographer: https://www.johanneswienke.de', NULL, 0, 0, 29, 4, 0, 0, 0, '2012-01-17T10:21:30Z', '2024-07-27T11:58:23Z', 'https://avatars.githubusercontent.com/u/1336287?v=4', 'https://api.github.com/users/languitar', 'https://github.com/languitar', 'https://api.github.com/users/languitar/followers', 'https://api.github.com/users/languitar/following', 'https://api.github.com/users/languitar/gists', 'https://api.github.com/users/languitar/starred', 'https://api.github.com/users/languitar/repos', 'https://api.github.com/users/languitar/events', 'https://api.github.com/users/languitar/received_events', 0); +INSERT INTO `developer` VALUES (1351933, 'apoelstra', 'C+', 13.927736113539174, 0, 0, 0, 0, 0, 0, 'Andrew Poelstra', '@Blockstream ', 'https://www.wpsoftware.net/andrew', 'Austin, TX, USA', 'apoelstra@wpsoftware.net', NULL, NULL, NULL, 0, 0, 1097, 24, 0, 0, 0, '2012-01-19T07:48:27Z', '2024-07-30T19:30:18Z', 'https://avatars.githubusercontent.com/u/1351933?v=4', 'https://api.github.com/users/apoelstra', 'https://github.com/apoelstra', 'https://api.github.com/users/apoelstra/followers', 'https://api.github.com/users/apoelstra/following', 'https://api.github.com/users/apoelstra/gists', 'https://api.github.com/users/apoelstra/starred', 'https://api.github.com/users/apoelstra/repos', 'https://api.github.com/users/apoelstra/events', 'https://api.github.com/users/apoelstra/received_events', 0); +INSERT INTO `developer` VALUES (1355386, 'zefir-k', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zefir Kurtisi', NULL, '', '未知', 'zefir.kurtisi@gmail.com', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2012-01-19T20:46:57Z', '2021-05-24T14:29:08Z', 'https://avatars.githubusercontent.com/u/1355386?v=4', 'https://api.github.com/users/zefir-k', 'https://github.com/zefir-k', 'https://api.github.com/users/zefir-k/followers', 'https://api.github.com/users/zefir-k/following', 'https://api.github.com/users/zefir-k/gists', 'https://api.github.com/users/zefir-k/starred', 'https://api.github.com/users/zefir-k/repos', 'https://api.github.com/users/zefir-k/events', 'https://api.github.com/users/zefir-k/received_events', 0); +INSERT INTO `developer` VALUES (1369335, 'evoskuil', 'C', 0.9291553871249284, 0, 0, 0, 0, 0, 0, 'Eric Voskuil', NULL, 'linkedin.com/in/evoskuil', '未知', NULL, NULL, 'Libbitcoin, Cryptoeconomics', NULL, 0, 0, 339, 17, 0, 0, 0, '2012-01-22T23:47:44Z', '2024-10-26T18:25:48Z', 'https://avatars.githubusercontent.com/u/1369335?v=4', 'https://api.github.com/users/evoskuil', 'https://github.com/evoskuil', 'https://api.github.com/users/evoskuil/followers', 'https://api.github.com/users/evoskuil/following', 'https://api.github.com/users/evoskuil/gists', 'https://api.github.com/users/evoskuil/starred', 'https://api.github.com/users/evoskuil/repos', 'https://api.github.com/users/evoskuil/events', 'https://api.github.com/users/evoskuil/received_events', 0); +INSERT INTO `developer` VALUES (1378419, 'jnfeinstein', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joel Feinstein', NULL, '', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 15, 3, 0, 0, 0, '2012-01-25T08:11:32Z', '2024-10-02T15:09:46Z', 'https://avatars.githubusercontent.com/u/1378419?v=4', 'https://api.github.com/users/jnfeinstein', 'https://github.com/jnfeinstein', 'https://api.github.com/users/jnfeinstein/followers', 'https://api.github.com/users/jnfeinstein/following', 'https://api.github.com/users/jnfeinstein/gists', 'https://api.github.com/users/jnfeinstein/starred', 'https://api.github.com/users/jnfeinstein/repos', 'https://api.github.com/users/jnfeinstein/events', 'https://api.github.com/users/jnfeinstein/received_events', 0); +INSERT INTO `developer` VALUES (1387322, 'phihos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philipp Hossner', NULL, '', 'Cologne, Germany', NULL, NULL, NULL, NULL, 0, 0, 22, 13, 0, 0, 0, '2012-01-28T14:14:34Z', '2024-09-10T15:04:45Z', 'https://avatars.githubusercontent.com/u/1387322?v=4', 'https://api.github.com/users/phihos', 'https://github.com/phihos', 'https://api.github.com/users/phihos/followers', 'https://api.github.com/users/phihos/following', 'https://api.github.com/users/phihos/gists', 'https://api.github.com/users/phihos/starred', 'https://api.github.com/users/phihos/repos', 'https://api.github.com/users/phihos/events', 'https://api.github.com/users/phihos/received_events', 0); +INSERT INTO `developer` VALUES (1388817, 'someone42', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Chua', NULL, '', '未知', 'someone42@gmail.com', NULL, NULL, NULL, 0, 0, 23, 0, 0, 0, 0, '2012-01-29T09:30:48Z', '2024-10-29T03:27:01Z', 'https://avatars.githubusercontent.com/u/1388817?v=4', 'https://api.github.com/users/someone42', 'https://github.com/someone42', 'https://api.github.com/users/someone42/followers', 'https://api.github.com/users/someone42/following', 'https://api.github.com/users/someone42/gists', 'https://api.github.com/users/someone42/starred', 'https://api.github.com/users/someone42/repos', 'https://api.github.com/users/someone42/events', 'https://api.github.com/users/someone42/received_events', 0); +INSERT INTO `developer` VALUES (1397674, 'AnatolyRugalev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Toly', '@messagebird-dev', '', 'Amsterdam', 'anatoly.rugalev@gmail.com', NULL, NULL, NULL, 0, 0, 44, 27, 0, 0, 0, '2012-02-01T12:30:16Z', '2024-10-20T14:17:54Z', 'https://avatars.githubusercontent.com/u/1397674?v=4', 'https://api.github.com/users/AnatolyRugalev', 'https://github.com/AnatolyRugalev', 'https://api.github.com/users/AnatolyRugalev/followers', 'https://api.github.com/users/AnatolyRugalev/following', 'https://api.github.com/users/AnatolyRugalev/gists', 'https://api.github.com/users/AnatolyRugalev/starred', 'https://api.github.com/users/AnatolyRugalev/repos', 'https://api.github.com/users/AnatolyRugalev/events', 'https://api.github.com/users/AnatolyRugalev/received_events', 0); +INSERT INTO `developer` VALUES (1398435, 'ginodeis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tino D', NULL, '', 'Canary Islands - Spain', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2012-02-01T15:37:41Z', '2022-02-09T18:53:40Z', 'https://avatars.githubusercontent.com/u/1398435?v=4', 'https://api.github.com/users/ginodeis', 'https://github.com/ginodeis', 'https://api.github.com/users/ginodeis/followers', 'https://api.github.com/users/ginodeis/following', 'https://api.github.com/users/ginodeis/gists', 'https://api.github.com/users/ginodeis/starred', 'https://api.github.com/users/ginodeis/repos', 'https://api.github.com/users/ginodeis/events', 'https://api.github.com/users/ginodeis/received_events', 0); +INSERT INTO `developer` VALUES (1405868, 'cdunford', 'C', 0, 0, 0, 0, 0, 0, 0, 'Craig Dunford', '@thesummitgrp @Lenders-Cooperative ', 'https://dunford.dev/', 'Springfield, Ontario, Canada', 'craig@dunford.dev', NULL, NULL, NULL, 0, 0, 5, 7, 0, 0, 0, '2012-02-03T16:00:07Z', '2024-08-21T17:46:10Z', 'https://avatars.githubusercontent.com/u/1405868?v=4', 'https://api.github.com/users/cdunford', 'https://github.com/cdunford', 'https://api.github.com/users/cdunford/followers', 'https://api.github.com/users/cdunford/following', 'https://api.github.com/users/cdunford/gists', 'https://api.github.com/users/cdunford/starred', 'https://api.github.com/users/cdunford/repos', 'https://api.github.com/users/cdunford/events', 'https://api.github.com/users/cdunford/received_events', 0); +INSERT INTO `developer` VALUES (1409866, 'alexvassel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aleksandr Vasilev', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2012-02-05T11:54:50Z', '2023-10-10T14:28:04Z', 'https://avatars.githubusercontent.com/u/1409866?v=4', 'https://api.github.com/users/alexvassel', 'https://github.com/alexvassel', 'https://api.github.com/users/alexvassel/followers', 'https://api.github.com/users/alexvassel/following', 'https://api.github.com/users/alexvassel/gists', 'https://api.github.com/users/alexvassel/starred', 'https://api.github.com/users/alexvassel/repos', 'https://api.github.com/users/alexvassel/events', 'https://api.github.com/users/alexvassel/received_events', 0); +INSERT INTO `developer` VALUES (1416037, 'alloylab', 'C', 0, 0, 0, 0, 4, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2012-02-07T13:25:51Z', '2024-08-06T02:27:04Z', 'https://avatars.githubusercontent.com/u/1416037?v=4', 'https://api.github.com/users/alloylab', 'https://github.com/alloylab', 'https://api.github.com/users/alloylab/followers', 'https://api.github.com/users/alloylab/following', 'https://api.github.com/users/alloylab/gists', 'https://api.github.com/users/alloylab/starred', 'https://api.github.com/users/alloylab/repos', 'https://api.github.com/users/alloylab/events', 'https://api.github.com/users/alloylab/received_events', 0); +INSERT INTO `developer` VALUES (1420702, 'bp4151', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bruce Parr', 'Paylocity', '', 'Pennsylvania', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2012-02-08T19:27:15Z', '2024-10-05T14:38:39Z', 'https://avatars.githubusercontent.com/u/1420702?v=4', 'https://api.github.com/users/bp4151', 'https://github.com/bp4151', 'https://api.github.com/users/bp4151/followers', 'https://api.github.com/users/bp4151/following', 'https://api.github.com/users/bp4151/gists', 'https://api.github.com/users/bp4151/starred', 'https://api.github.com/users/bp4151/repos', 'https://api.github.com/users/bp4151/events', 'https://api.github.com/users/bp4151/received_events', 0); +INSERT INTO `developer` VALUES (1425636, 'crispgm', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Zhang', NULL, 'https://crisp.dev/', '未知', 'crispgm+github@gmail.com', 'true', 'A minimalist life hacker ☮️', 'crispgm', 0, 0, 174, 208, 0, 0, 0, '2012-02-10T08:12:28Z', '2024-10-25T06:02:46Z', 'https://avatars.githubusercontent.com/u/1425636?v=4', 'https://api.github.com/users/crispgm', 'https://github.com/crispgm', 'https://api.github.com/users/crispgm/followers', 'https://api.github.com/users/crispgm/following', 'https://api.github.com/users/crispgm/gists', 'https://api.github.com/users/crispgm/starred', 'https://api.github.com/users/crispgm/repos', 'https://api.github.com/users/crispgm/events', 'https://api.github.com/users/crispgm/received_events', 0); +INSERT INTO `developer` VALUES (1436304, 'nelisky', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 3, 0, 0, 0, '2012-02-14T10:25:54Z', '2016-03-16T20:56:49Z', 'https://avatars.githubusercontent.com/u/1436304?v=4', 'https://api.github.com/users/nelisky', 'https://github.com/nelisky', 'https://api.github.com/users/nelisky/followers', 'https://api.github.com/users/nelisky/following', 'https://api.github.com/users/nelisky/gists', 'https://api.github.com/users/nelisky/starred', 'https://api.github.com/users/nelisky/repos', 'https://api.github.com/users/nelisky/events', 'https://api.github.com/users/nelisky/received_events', 0); +INSERT INTO `developer` VALUES (1440370, 'davidovich', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Genest', NULL, '', 'Montreal', NULL, NULL, 'Senior Software Developer at DRW. Make, go, jsonnet, containers, k8s.', NULL, 0, 0, 19, 25, 0, 0, 0, '2012-02-15T15:54:13Z', '2024-11-01T10:36:17Z', 'https://avatars.githubusercontent.com/u/1440370?v=4', 'https://api.github.com/users/davidovich', 'https://github.com/davidovich', 'https://api.github.com/users/davidovich/followers', 'https://api.github.com/users/davidovich/following', 'https://api.github.com/users/davidovich/gists', 'https://api.github.com/users/davidovich/starred', 'https://api.github.com/users/davidovich/repos', 'https://api.github.com/users/davidovich/events', 'https://api.github.com/users/davidovich/received_events', 0); +INSERT INTO `developer` VALUES (1445228, 'jessfraz', 'S', 100, 0, 0, 0, 0, 0, 0, 'Jess Frazelle', '@KittyCAD ', 'https://blog.jessfraz.com', 'PID 1', NULL, NULL, 'A superhero with supervillain tendencies.', 'jessfraz', 0, 0, 13197, 60, 0, 0, 0, '2012-02-17T02:15:05Z', '2024-10-22T22:25:52Z', 'https://avatars.githubusercontent.com/u/1445228?v=4', 'https://api.github.com/users/jessfraz', 'https://github.com/jessfraz', 'https://api.github.com/users/jessfraz/followers', 'https://api.github.com/users/jessfraz/following', 'https://api.github.com/users/jessfraz/gists', 'https://api.github.com/users/jessfraz/starred', 'https://api.github.com/users/jessfraz/repos', 'https://api.github.com/users/jessfraz/events', 'https://api.github.com/users/jessfraz/received_events', 0); +INSERT INTO `developer` VALUES (1450593, 'astockwell', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Stockwell', NULL, 'http://astockwell.com', 'Hartford, CT', 'astockwell@github.com', NULL, NULL, NULL, 0, 0, 19, 4, 0, 0, 0, '2012-02-19T05:07:53Z', '2024-10-29T11:18:16Z', 'https://avatars.githubusercontent.com/u/1450593?v=4', 'https://api.github.com/users/astockwell', 'https://github.com/astockwell', 'https://api.github.com/users/astockwell/followers', 'https://api.github.com/users/astockwell/following', 'https://api.github.com/users/astockwell/gists', 'https://api.github.com/users/astockwell/starred', 'https://api.github.com/users/astockwell/repos', 'https://api.github.com/users/astockwell/events', 'https://api.github.com/users/astockwell/received_events', 0); +INSERT INTO `developer` VALUES (1458246, 'pshep', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paul Sheppard', NULL, '', 'Los Angeles', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2012-02-21T17:35:40Z', '2024-05-25T16:31:31Z', 'https://avatars.githubusercontent.com/u/1458246?v=4', 'https://api.github.com/users/pshep', 'https://github.com/pshep', 'https://api.github.com/users/pshep/followers', 'https://api.github.com/users/pshep/following', 'https://api.github.com/users/pshep/gists', 'https://api.github.com/users/pshep/starred', 'https://api.github.com/users/pshep/repos', 'https://api.github.com/users/pshep/events', 'https://api.github.com/users/pshep/received_events', 0); +INSERT INTO `developer` VALUES (1464713, 'ademozay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adem Özay', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 29, 13, 0, 0, 0, '2012-02-23T08:31:06Z', '2024-09-25T07:37:01Z', 'https://avatars.githubusercontent.com/u/1464713?v=4', 'https://api.github.com/users/ademozay', 'https://github.com/ademozay', 'https://api.github.com/users/ademozay/followers', 'https://api.github.com/users/ademozay/following', 'https://api.github.com/users/ademozay/gists', 'https://api.github.com/users/ademozay/starred', 'https://api.github.com/users/ademozay/repos', 'https://api.github.com/users/ademozay/events', 'https://api.github.com/users/ademozay/received_events', 0); +INSERT INTO `developer` VALUES (1467354, 'taiyangc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Chen', NULL, '', 'Bay Area, CA', 'taiyang.chen@gmail.com', NULL, NULL, NULL, 0, 0, 55, 33, 0, 0, 0, '2012-02-23T22:16:22Z', '2024-09-27T01:03:00Z', 'https://avatars.githubusercontent.com/u/1467354?v=4', 'https://api.github.com/users/taiyangc', 'https://github.com/taiyangc', 'https://api.github.com/users/taiyangc/followers', 'https://api.github.com/users/taiyangc/following', 'https://api.github.com/users/taiyangc/gists', 'https://api.github.com/users/taiyangc/starred', 'https://api.github.com/users/taiyangc/repos', 'https://api.github.com/users/taiyangc/events', 'https://api.github.com/users/taiyangc/received_events', 0); +INSERT INTO `developer` VALUES (1469203, 'sickpig', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrea Suisani', NULL, '', '未知', 'sickpig@gmail.com', NULL, NULL, NULL, 0, 0, 42, 1, 0, 0, 0, '2012-02-24T11:03:27Z', '2024-05-29T07:02:54Z', 'https://avatars.githubusercontent.com/u/1469203?v=4', 'https://api.github.com/users/sickpig', 'https://github.com/sickpig', 'https://api.github.com/users/sickpig/followers', 'https://api.github.com/users/sickpig/following', 'https://api.github.com/users/sickpig/gists', 'https://api.github.com/users/sickpig/starred', 'https://api.github.com/users/sickpig/repos', 'https://api.github.com/users/sickpig/events', 'https://api.github.com/users/sickpig/received_events', 0); +INSERT INTO `developer` VALUES (1470270, 'dalbani', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damiano Albani', NULL, '', '未知', 'damiano.albani@gmail.com', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2012-02-24T17:08:05Z', '2024-08-19T08:15:19Z', 'https://avatars.githubusercontent.com/u/1470270?v=4', 'https://api.github.com/users/dalbani', 'https://github.com/dalbani', 'https://api.github.com/users/dalbani/followers', 'https://api.github.com/users/dalbani/following', 'https://api.github.com/users/dalbani/gists', 'https://api.github.com/users/dalbani/starred', 'https://api.github.com/users/dalbani/repos', 'https://api.github.com/users/dalbani/events', 'https://api.github.com/users/dalbani/received_events', 0); +INSERT INTO `developer` VALUES (1486729, 'Stono', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karl Stoney', 'Auto Trader UK', 'https://karlstoney.com', 'Manchester', NULL, 'true', 'Principal Engineer', NULL, 0, 0, 129, 7, 0, 0, 0, '2012-02-29T22:36:54Z', '2024-10-20T18:04:11Z', 'https://avatars.githubusercontent.com/u/1486729?v=4', 'https://api.github.com/users/Stono', 'https://github.com/Stono', 'https://api.github.com/users/Stono/followers', 'https://api.github.com/users/Stono/following', 'https://api.github.com/users/Stono/gists', 'https://api.github.com/users/Stono/starred', 'https://api.github.com/users/Stono/repos', 'https://api.github.com/users/Stono/events', 'https://api.github.com/users/Stono/received_events', 0); +INSERT INTO `developer` VALUES (1492007, 'Vad1mo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vadim Bauer', '@container-registry ', 'container-registry.com', 'Zürich', NULL, NULL, 'SaaS Builder, Explorer, Cloud First, DevOps advocate & practitioner! Founder @8gears @container-registry. CNCF @goharbor maintainer.', 'vad1mo', 0, 0, 109, 74, 0, 0, 0, '2012-03-02T09:46:22Z', '2024-11-02T11:33:50Z', 'https://avatars.githubusercontent.com/u/1492007?v=4', 'https://api.github.com/users/Vad1mo', 'https://github.com/Vad1mo', 'https://api.github.com/users/Vad1mo/followers', 'https://api.github.com/users/Vad1mo/following', 'https://api.github.com/users/Vad1mo/gists', 'https://api.github.com/users/Vad1mo/starred', 'https://api.github.com/users/Vad1mo/repos', 'https://api.github.com/users/Vad1mo/events', 'https://api.github.com/users/Vad1mo/received_events', 0); +INSERT INTO `developer` VALUES (1492956, 'jmcorgan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Johnathan Corgan', 'Corgan Labs', 'https://keybase.io/jcorgan', '未知', 'johnathan@corganlabs.com', NULL, NULL, NULL, 0, 0, 89, 0, 0, 0, 0, '2012-03-02T14:26:22Z', '2024-06-23T12:51:37Z', 'https://avatars.githubusercontent.com/u/1492956?v=4', 'https://api.github.com/users/jmcorgan', 'https://github.com/jmcorgan', 'https://api.github.com/users/jmcorgan/followers', 'https://api.github.com/users/jmcorgan/following', 'https://api.github.com/users/jmcorgan/gists', 'https://api.github.com/users/jmcorgan/starred', 'https://api.github.com/users/jmcorgan/repos', 'https://api.github.com/users/jmcorgan/events', 'https://api.github.com/users/jmcorgan/received_events', 0); +INSERT INTO `developer` VALUES (1499305, 'FallenAtticus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sascha D.', 'idealo internet GmbH', 'http://www.idealo.de', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 14, 21, 0, 0, 0, '2012-03-04T12:19:14Z', '2024-10-07T07:02:50Z', 'https://avatars.githubusercontent.com/u/1499305?v=4', 'https://api.github.com/users/FallenAtticus', 'https://github.com/FallenAtticus', 'https://api.github.com/users/FallenAtticus/followers', 'https://api.github.com/users/FallenAtticus/following', 'https://api.github.com/users/FallenAtticus/gists', 'https://api.github.com/users/FallenAtticus/starred', 'https://api.github.com/users/FallenAtticus/repos', 'https://api.github.com/users/FallenAtticus/events', 'https://api.github.com/users/FallenAtticus/received_events', 0); +INSERT INTO `developer` VALUES (1501547, 'akashsharma95', 'C', 0, 0, 0, 0, 0, 0, 0, 'Akash Sharma', '@PaddleHQ ', '', 'London', NULL, NULL, NULL, NULL, 0, 0, 23, 151, 0, 0, 0, '2012-03-05T05:41:30Z', '2024-10-11T12:54:59Z', 'https://avatars.githubusercontent.com/u/1501547?v=4', 'https://api.github.com/users/akashsharma95', 'https://github.com/akashsharma95', 'https://api.github.com/users/akashsharma95/followers', 'https://api.github.com/users/akashsharma95/following', 'https://api.github.com/users/akashsharma95/gists', 'https://api.github.com/users/akashsharma95/starred', 'https://api.github.com/users/akashsharma95/repos', 'https://api.github.com/users/akashsharma95/events', 'https://api.github.com/users/akashsharma95/received_events', 0); +INSERT INTO `developer` VALUES (1503969, 'nomnombtc', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2012-03-05T18:28:45Z', '2023-06-13T00:07:15Z', 'https://avatars.githubusercontent.com/u/1503969?v=4', 'https://api.github.com/users/nomnombtc', 'https://github.com/nomnombtc', 'https://api.github.com/users/nomnombtc/followers', 'https://api.github.com/users/nomnombtc/following', 'https://api.github.com/users/nomnombtc/gists', 'https://api.github.com/users/nomnombtc/starred', 'https://api.github.com/users/nomnombtc/repos', 'https://api.github.com/users/nomnombtc/events', 'https://api.github.com/users/nomnombtc/received_events', 0); +INSERT INTO `developer` VALUES (1503976, 'vinniefalco', 'C+', 12.915973233778699, 0, 0, 0, 0, 0, 0, 'Vinnie Falco', 'https://cpp.al', 'vinniefalco.github.io', 'Los Angeles, CA.', 'vinnie.falco@gmail.com', NULL, 'I\'m into C++ and Boost.\r\nCurrently working on Buffers, Http.Proto and Http.Io.\r\nAlso president of the @CPPAlliance ', 'FalcoVinnie', 0, 0, 1038, 4, 0, 0, 0, '2012-03-05T18:29:58Z', '2024-10-20T11:25:13Z', 'https://avatars.githubusercontent.com/u/1503976?v=4', 'https://api.github.com/users/vinniefalco', 'https://github.com/vinniefalco', 'https://api.github.com/users/vinniefalco/followers', 'https://api.github.com/users/vinniefalco/following', 'https://api.github.com/users/vinniefalco/gists', 'https://api.github.com/users/vinniefalco/starred', 'https://api.github.com/users/vinniefalco/repos', 'https://api.github.com/users/vinniefalco/events', 'https://api.github.com/users/vinniefalco/received_events', 0); +INSERT INTO `developer` VALUES (1510901, 'isindir', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'https://keybase.io/isindir', 'Reading, UK', NULL, NULL, NULL, NULL, 0, 0, 15, 37, 0, 0, 0, '2012-03-07T09:58:13Z', '2024-11-01T20:33:22Z', 'https://avatars.githubusercontent.com/u/1510901?v=4', 'https://api.github.com/users/isindir', 'https://github.com/isindir', 'https://api.github.com/users/isindir/followers', 'https://api.github.com/users/isindir/following', 'https://api.github.com/users/isindir/gists', 'https://api.github.com/users/isindir/starred', 'https://api.github.com/users/isindir/repos', 'https://api.github.com/users/isindir/events', 'https://api.github.com/users/isindir/received_events', 0); +INSERT INTO `developer` VALUES (1530283, 'rebroad', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rebroad', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 54, 20, 0, 0, 0, '2012-03-12T19:41:32Z', '2024-10-14T19:17:00Z', 'https://avatars.githubusercontent.com/u/1530283?v=4', 'https://api.github.com/users/rebroad', 'https://github.com/rebroad', 'https://api.github.com/users/rebroad/followers', 'https://api.github.com/users/rebroad/following', 'https://api.github.com/users/rebroad/gists', 'https://api.github.com/users/rebroad/starred', 'https://api.github.com/users/rebroad/repos', 'https://api.github.com/users/rebroad/events', 'https://api.github.com/users/rebroad/received_events', 0); +INSERT INTO `developer` VALUES (1539047, 'azuchi', 'C', 0, 0, 0, 0, 0, 0, 0, 'shigeyuki azuchi', 'chaintope, Inc.', 'http://techmedia-think.hatenablog.com/', 'Fukuoka', 'techmedia.think@gmail.com', NULL, 'CTO at chaintope, Inc\r\n\r\nnpub1km5zgre7f5vxr6jgf32x055xlk3gjwrj5s4aedeyjz6gr8l2yw0s8mmmlp', 'techmedia_think', 0, 0, 74, 6, 0, 0, 0, '2012-03-15T04:09:37Z', '2024-10-09T09:43:07Z', 'https://avatars.githubusercontent.com/u/1539047?v=4', 'https://api.github.com/users/azuchi', 'https://github.com/azuchi', 'https://api.github.com/users/azuchi/followers', 'https://api.github.com/users/azuchi/following', 'https://api.github.com/users/azuchi/gists', 'https://api.github.com/users/azuchi/starred', 'https://api.github.com/users/azuchi/repos', 'https://api.github.com/users/azuchi/events', 'https://api.github.com/users/azuchi/received_events', 0); +INSERT INTO `developer` VALUES (1556963, 'brossi', 'C', 0, 0, 0, 1, 250, 0, 0, 'Ben Rossi', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 7, 0, 0, 0, '2012-03-20T14:55:59Z', '2024-05-19T23:12:37Z', 'https://avatars.githubusercontent.com/u/1556963?v=4', 'https://api.github.com/users/brossi', 'https://github.com/brossi', 'https://api.github.com/users/brossi/followers', 'https://api.github.com/users/brossi/following', 'https://api.github.com/users/brossi/gists', 'https://api.github.com/users/brossi/starred', 'https://api.github.com/users/brossi/repos', 'https://api.github.com/users/brossi/events', 'https://api.github.com/users/brossi/received_events', 0); +INSERT INTO `developer` VALUES (1560587, 'jkroepke', 'C', 4.821870195694894, 0, 0, 0, 0, 0, 0, 'Jan-Otto Kröpke', '@cloudeteer', '', 'Nuremberg, Germany', 'github@jkroepke.de', NULL, NULL, 'jkroepke', 0, 0, 566, 2, 0, 0, 0, '2012-03-21T11:06:24Z', '2024-10-24T14:20:52Z', 'https://avatars.githubusercontent.com/u/1560587?v=4', 'https://api.github.com/users/jkroepke', 'https://github.com/jkroepke', 'https://api.github.com/users/jkroepke/followers', 'https://api.github.com/users/jkroepke/following', 'https://api.github.com/users/jkroepke/gists', 'https://api.github.com/users/jkroepke/starred', 'https://api.github.com/users/jkroepke/repos', 'https://api.github.com/users/jkroepke/events', 'https://api.github.com/users/jkroepke/received_events', 0); +INSERT INTO `developer` VALUES (1561302, 'jseriff', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2012-03-21T15:04:05Z', '2023-03-06T03:38:51Z', 'https://avatars.githubusercontent.com/u/1561302?v=4', 'https://api.github.com/users/jseriff', 'https://github.com/jseriff', 'https://api.github.com/users/jseriff/followers', 'https://api.github.com/users/jseriff/following', 'https://api.github.com/users/jseriff/gists', 'https://api.github.com/users/jseriff/starred', 'https://api.github.com/users/jseriff/repos', 'https://api.github.com/users/jseriff/events', 'https://api.github.com/users/jseriff/received_events', 0); +INSERT INTO `developer` VALUES (1580956, 'chenrui333', 'C', 6.5881681044292835, 0, 0, 0, 0, 0, 0, 'Rui Chen', '@meetup ', 'chenrui.dev', 'New York', 'rui@chenrui.dev', 'true', NULL, 'chenrui', 0, 0, 669, 0, 0, 0, 0, '2012-03-27T19:17:28Z', '2024-10-02T17:17:18Z', 'https://avatars.githubusercontent.com/u/1580956?v=4', 'https://api.github.com/users/chenrui333', 'https://github.com/chenrui333', 'https://api.github.com/users/chenrui333/followers', 'https://api.github.com/users/chenrui333/following', 'https://api.github.com/users/chenrui333/gists', 'https://api.github.com/users/chenrui333/starred', 'https://api.github.com/users/chenrui333/repos', 'https://api.github.com/users/chenrui333/events', 'https://api.github.com/users/chenrui333/received_events', 0); +INSERT INTO `developer` VALUES (1581858, 'robbak', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2012-03-28T02:07:38Z', '2024-04-08T03:43:44Z', 'https://avatars.githubusercontent.com/u/1581858?v=4', 'https://api.github.com/users/robbak', 'https://github.com/robbak', 'https://api.github.com/users/robbak/followers', 'https://api.github.com/users/robbak/following', 'https://api.github.com/users/robbak/gists', 'https://api.github.com/users/robbak/starred', 'https://api.github.com/users/robbak/repos', 'https://api.github.com/users/robbak/events', 'https://api.github.com/users/robbak/received_events', 0); +INSERT INTO `developer` VALUES (1587013, 'maennel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Manuel Jeckelmann', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 4, 0, 0, 0, '2012-03-29T12:45:09Z', '2024-10-07T05:52:49Z', 'https://avatars.githubusercontent.com/u/1587013?v=4', 'https://api.github.com/users/maennel', 'https://github.com/maennel', 'https://api.github.com/users/maennel/followers', 'https://api.github.com/users/maennel/following', 'https://api.github.com/users/maennel/gists', 'https://api.github.com/users/maennel/starred', 'https://api.github.com/users/maennel/repos', 'https://api.github.com/users/maennel/events', 'https://api.github.com/users/maennel/received_events', 0); +INSERT INTO `developer` VALUES (1595432, 'jjz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'china,beijing', NULL, NULL, NULL, NULL, 0, 0, 125, 72, 0, 0, 0, '2012-04-01T12:40:49Z', '2024-10-03T00:07:27Z', 'https://avatars.githubusercontent.com/u/1595432?v=4', 'https://api.github.com/users/jjz', 'https://github.com/jjz', 'https://api.github.com/users/jjz/followers', 'https://api.github.com/users/jjz/following', 'https://api.github.com/users/jjz/gists', 'https://api.github.com/users/jjz/starred', 'https://api.github.com/users/jjz/repos', 'https://api.github.com/users/jjz/events', 'https://api.github.com/users/jjz/received_events', 0); +INSERT INTO `developer` VALUES (1607449, 'girokon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Igor Noskov', NULL, '', '未知', 'igor.noskov87@gmail.com', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2012-04-03T08:11:17Z', '2024-10-16T17:24:11Z', 'https://avatars.githubusercontent.com/u/1607449?v=4', 'https://api.github.com/users/girokon', 'https://github.com/girokon', 'https://api.github.com/users/girokon/followers', 'https://api.github.com/users/girokon/following', 'https://api.github.com/users/girokon/gists', 'https://api.github.com/users/girokon/starred', 'https://api.github.com/users/girokon/repos', 'https://api.github.com/users/girokon/events', 'https://api.github.com/users/girokon/received_events', 0); +INSERT INTO `developer` VALUES (1613051, 'raphaelsampaio', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raphael Sampaio', NULL, '', 'Sao Paulo', NULL, NULL, NULL, NULL, 0, 0, 8, 1, 0, 0, 0, '2012-04-04T19:37:52Z', '2024-10-01T18:56:05Z', 'https://avatars.githubusercontent.com/u/1613051?v=4', 'https://api.github.com/users/raphaelsampaio', 'https://github.com/raphaelsampaio', 'https://api.github.com/users/raphaelsampaio/followers', 'https://api.github.com/users/raphaelsampaio/following', 'https://api.github.com/users/raphaelsampaio/gists', 'https://api.github.com/users/raphaelsampaio/starred', 'https://api.github.com/users/raphaelsampaio/repos', 'https://api.github.com/users/raphaelsampaio/events', 'https://api.github.com/users/raphaelsampaio/received_events', 0); +INSERT INTO `developer` VALUES (1625545, 'guiwoda', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guido Contreras Woda', '@Crossmint ', 'https://linktr.ee/jugarenserio', 'Buenos Aires', 'guiwoda@gmail.com', NULL, 'Musician, nerd, gamer, programmer. Ask me about my youtube channel!', NULL, 0, 0, 135, 18, 0, 0, 0, '2012-04-09T12:47:09Z', '2024-10-22T19:39:42Z', 'https://avatars.githubusercontent.com/u/1625545?v=4', 'https://api.github.com/users/guiwoda', 'https://github.com/guiwoda', 'https://api.github.com/users/guiwoda/followers', 'https://api.github.com/users/guiwoda/following', 'https://api.github.com/users/guiwoda/gists', 'https://api.github.com/users/guiwoda/starred', 'https://api.github.com/users/guiwoda/repos', 'https://api.github.com/users/guiwoda/events', 'https://api.github.com/users/guiwoda/received_events', 0); +INSERT INTO `developer` VALUES (1629444, 'dserrano5', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2012-04-10T13:29:49Z', '2019-06-18T08:44:22Z', 'https://avatars.githubusercontent.com/u/1629444?v=4', 'https://api.github.com/users/dserrano5', 'https://github.com/dserrano5', 'https://api.github.com/users/dserrano5/followers', 'https://api.github.com/users/dserrano5/following', 'https://api.github.com/users/dserrano5/gists', 'https://api.github.com/users/dserrano5/starred', 'https://api.github.com/users/dserrano5/repos', 'https://api.github.com/users/dserrano5/events', 'https://api.github.com/users/dserrano5/received_events', 0); +INSERT INTO `developer` VALUES (1630245, 'lemzwerg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Werner Lemberg', NULL, '', 'Salzburg, Austria', 'wl@gnu.org', NULL, NULL, NULL, 0, 0, 50, 0, 0, 0, 0, '2012-04-10T17:16:53Z', '2024-08-13T09:35:24Z', 'https://avatars.githubusercontent.com/u/1630245?v=4', 'https://api.github.com/users/lemzwerg', 'https://github.com/lemzwerg', 'https://api.github.com/users/lemzwerg/followers', 'https://api.github.com/users/lemzwerg/following', 'https://api.github.com/users/lemzwerg/gists', 'https://api.github.com/users/lemzwerg/starred', 'https://api.github.com/users/lemzwerg/repos', 'https://api.github.com/users/lemzwerg/events', 'https://api.github.com/users/lemzwerg/received_events', 0); +INSERT INTO `developer` VALUES (1632246, 'jayme-github', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 20, 0, 0, 0, 0, '2012-04-11T08:05:40Z', '2024-08-20T09:48:42Z', 'https://avatars.githubusercontent.com/u/1632246?v=4', 'https://api.github.com/users/jayme-github', 'https://github.com/jayme-github', 'https://api.github.com/users/jayme-github/followers', 'https://api.github.com/users/jayme-github/following', 'https://api.github.com/users/jayme-github/gists', 'https://api.github.com/users/jayme-github/starred', 'https://api.github.com/users/jayme-github/repos', 'https://api.github.com/users/jayme-github/events', 'https://api.github.com/users/jayme-github/received_events', 0); +INSERT INTO `developer` VALUES (1634746, 'abatilo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Batilo', '@microsoft', 'https://www.aaronbatilo.dev', 'Denver, CO', 'AaronBatilo@gmail.com', NULL, 'If I don\'t have to do it, I won\'t. If I have to do it, I\'ll do it as quickly as possible.', 'aaronbatilo', 0, 0, 52, 0, 0, 0, 0, '2012-04-11T22:11:15Z', '2024-10-18T23:52:46Z', 'https://avatars.githubusercontent.com/u/1634746?v=4', 'https://api.github.com/users/abatilo', 'https://github.com/abatilo', 'https://api.github.com/users/abatilo/followers', 'https://api.github.com/users/abatilo/following', 'https://api.github.com/users/abatilo/gists', 'https://api.github.com/users/abatilo/starred', 'https://api.github.com/users/abatilo/repos', 'https://api.github.com/users/abatilo/events', 'https://api.github.com/users/abatilo/received_events', 0); +INSERT INTO `developer` VALUES (1636877, 'ibcoleman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Coleman', NULL, '', '未知', 'ibcoleman@gmail.com', NULL, NULL, NULL, 0, 0, 0, 3, 0, 0, 0, '2012-04-12T13:55:03Z', '2023-10-25T15:54:33Z', 'https://avatars.githubusercontent.com/u/1636877?v=4', 'https://api.github.com/users/ibcoleman', 'https://github.com/ibcoleman', 'https://api.github.com/users/ibcoleman/followers', 'https://api.github.com/users/ibcoleman/following', 'https://api.github.com/users/ibcoleman/gists', 'https://api.github.com/users/ibcoleman/starred', 'https://api.github.com/users/ibcoleman/repos', 'https://api.github.com/users/ibcoleman/events', 'https://api.github.com/users/ibcoleman/received_events', 0); +INSERT INTO `developer` VALUES (1638010, 'jl2035', 'C', 0, 0, 0, 0, 0, 0, 0, 'jl2035', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2012-04-12T19:45:57Z', '2024-02-25T02:00:48Z', 'https://avatars.githubusercontent.com/u/1638010?v=4', 'https://api.github.com/users/jl2035', 'https://github.com/jl2035', 'https://api.github.com/users/jl2035/followers', 'https://api.github.com/users/jl2035/following', 'https://api.github.com/users/jl2035/gists', 'https://api.github.com/users/jl2035/starred', 'https://api.github.com/users/jl2035/repos', 'https://api.github.com/users/jl2035/events', 'https://api.github.com/users/jl2035/received_events', 0); +INSERT INTO `developer` VALUES (1644105, 'manics', 'C', 0, 0, 0, 0, 0, 0, 0, 'Simon Li', NULL, '', 'UK', NULL, NULL, NULL, NULL, 0, 0, 111, 103, 0, 0, 0, '2012-04-14T22:36:13Z', '2024-09-30T10:51:06Z', 'https://avatars.githubusercontent.com/u/1644105?v=4', 'https://api.github.com/users/manics', 'https://github.com/manics', 'https://api.github.com/users/manics/followers', 'https://api.github.com/users/manics/following', 'https://api.github.com/users/manics/gists', 'https://api.github.com/users/manics/starred', 'https://api.github.com/users/manics/repos', 'https://api.github.com/users/manics/events', 'https://api.github.com/users/manics/received_events', 0); +INSERT INTO `developer` VALUES (1651235, 'habi', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Haberthür', 'Institute of Anatomy, Unversity of Bern, Switzerland', 'davidhaberthür.ch', 'Bern, Switzerland', 'email@davidhaberthuer.ch', 'true', 'Working father, generic geek and ex-messenger with a PhD in ultrahigh resolution tomography. I love the outdoors, taking photos and much more.', NULL, 0, 0, 81, 35, 0, 0, 0, '2012-04-17T09:35:33Z', '2024-10-28T21:47:58Z', 'https://avatars.githubusercontent.com/u/1651235?v=4', 'https://api.github.com/users/habi', 'https://github.com/habi', 'https://api.github.com/users/habi/followers', 'https://api.github.com/users/habi/following', 'https://api.github.com/users/habi/gists', 'https://api.github.com/users/habi/starred', 'https://api.github.com/users/habi/repos', 'https://api.github.com/users/habi/events', 'https://api.github.com/users/habi/received_events', 0); +INSERT INTO `developer` VALUES (1660387, 'postmaxin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tyler MacDonald', NULL, 'https://www.linkedin.com/in/crackerjack', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2012-04-19T18:41:42Z', '2024-06-02T21:34:54Z', 'https://avatars.githubusercontent.com/u/1660387?v=4', 'https://api.github.com/users/postmaxin', 'https://github.com/postmaxin', 'https://api.github.com/users/postmaxin/followers', 'https://api.github.com/users/postmaxin/following', 'https://api.github.com/users/postmaxin/gists', 'https://api.github.com/users/postmaxin/starred', 'https://api.github.com/users/postmaxin/repos', 'https://api.github.com/users/postmaxin/events', 'https://api.github.com/users/postmaxin/received_events', 0); +INSERT INTO `developer` VALUES (1663586, 'greatwolf', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'reddit.com/u/greatwolf', 'California, US', 'github.greatwolf@mamber.net', NULL, NULL, NULL, 0, 0, 25, 12, 0, 0, 0, '2012-04-20T17:20:16Z', '2024-10-23T04:36:02Z', 'https://avatars.githubusercontent.com/u/1663586?v=4', 'https://api.github.com/users/greatwolf', 'https://github.com/greatwolf', 'https://api.github.com/users/greatwolf/followers', 'https://api.github.com/users/greatwolf/following', 'https://api.github.com/users/greatwolf/gists', 'https://api.github.com/users/greatwolf/starred', 'https://api.github.com/users/greatwolf/repos', 'https://api.github.com/users/greatwolf/events', 'https://api.github.com/users/greatwolf/received_events', 0); +INSERT INTO `developer` VALUES (1671878, 'rookies', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert', 'mgm security partners GmbH', 'https://dec2b.de', 'Dresden, Germany', NULL, NULL, NULL, NULL, 0, 0, 5, 2, 0, 0, 0, '2012-04-23T18:33:42Z', '2024-10-29T15:31:56Z', 'https://avatars.githubusercontent.com/u/1671878?v=4', 'https://api.github.com/users/rookies', 'https://github.com/rookies', 'https://api.github.com/users/rookies/followers', 'https://api.github.com/users/rookies/following', 'https://api.github.com/users/rookies/gists', 'https://api.github.com/users/rookies/starred', 'https://api.github.com/users/rookies/repos', 'https://api.github.com/users/rookies/events', 'https://api.github.com/users/rookies/received_events', 0); +INSERT INTO `developer` VALUES (1673467, 'uncycler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frédéric Marchand', NULL, '', 'Switzerland', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2012-04-24T06:34:15Z', '2024-10-16T20:03:05Z', 'https://avatars.githubusercontent.com/u/1673467?v=4', 'https://api.github.com/users/uncycler', 'https://github.com/uncycler', 'https://api.github.com/users/uncycler/followers', 'https://api.github.com/users/uncycler/following', 'https://api.github.com/users/uncycler/gists', 'https://api.github.com/users/uncycler/starred', 'https://api.github.com/users/uncycler/repos', 'https://api.github.com/users/uncycler/events', 'https://api.github.com/users/uncycler/received_events', 0); +INSERT INTO `developer` VALUES (1689118, 'shortjared', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jared Short', NULL, 'http://jaredshort.com', '未知', 'jaredlshort@gmail.com', NULL, NULL, NULL, 0, 0, 86, 12, 0, 0, 0, '2012-04-29T00:52:14Z', '2024-11-01T18:43:34Z', 'https://avatars.githubusercontent.com/u/1689118?v=4', 'https://api.github.com/users/shortjared', 'https://github.com/shortjared', 'https://api.github.com/users/shortjared/followers', 'https://api.github.com/users/shortjared/following', 'https://api.github.com/users/shortjared/gists', 'https://api.github.com/users/shortjared/starred', 'https://api.github.com/users/shortjared/repos', 'https://api.github.com/users/shortjared/events', 'https://api.github.com/users/shortjared/received_events', 0); +INSERT INTO `developer` VALUES (1694940, 'damiencarol', 'C', 0, 0, 0, 0, 0, 0, 0, 'Damien Carol', NULL, '', 'Paris, France', 'damien.carol@gmail.com', NULL, NULL, NULL, 0, 0, 28, 5, 0, 0, 0, '2012-05-01T08:51:22Z', '2024-11-02T21:03:48Z', 'https://avatars.githubusercontent.com/u/1694940?v=4', 'https://api.github.com/users/damiencarol', 'https://github.com/damiencarol', 'https://api.github.com/users/damiencarol/followers', 'https://api.github.com/users/damiencarol/following', 'https://api.github.com/users/damiencarol/gists', 'https://api.github.com/users/damiencarol/starred', 'https://api.github.com/users/damiencarol/repos', 'https://api.github.com/users/damiencarol/events', 'https://api.github.com/users/damiencarol/received_events', 0); +INSERT INTO `developer` VALUES (1695738, 'joaolcorreia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joao Correia', 'SnowcatCloud', 'https://www.snowcatcloud.com', 'San Diego, CA', NULL, 'true', 'Helping companies drive growth and innovation through data.', 'joaocorreia', 0, 0, 73, 28, 0, 0, 0, '2012-05-01T15:06:06Z', '2024-10-31T13:39:40Z', 'https://avatars.githubusercontent.com/u/1695738?v=4', 'https://api.github.com/users/joaolcorreia', 'https://github.com/joaolcorreia', 'https://api.github.com/users/joaolcorreia/followers', 'https://api.github.com/users/joaolcorreia/following', 'https://api.github.com/users/joaolcorreia/gists', 'https://api.github.com/users/joaolcorreia/starred', 'https://api.github.com/users/joaolcorreia/repos', 'https://api.github.com/users/joaolcorreia/events', 'https://api.github.com/users/joaolcorreia/received_events', 0); +INSERT INTO `developer` VALUES (1698794, 'WingGao', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Shanghai', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2012-05-02T12:31:52Z', '2024-09-02T07:08:58Z', 'https://avatars.githubusercontent.com/u/1698794?v=4', 'https://api.github.com/users/WingGao', 'https://github.com/WingGao', 'https://api.github.com/users/WingGao/followers', 'https://api.github.com/users/WingGao/following', 'https://api.github.com/users/WingGao/gists', 'https://api.github.com/users/WingGao/starred', 'https://api.github.com/users/WingGao/repos', 'https://api.github.com/users/WingGao/events', 'https://api.github.com/users/WingGao/received_events', 0); +INSERT INTO `developer` VALUES (1699826, 'xens', 'C', 0, 0, 0, 0, 0, 0, 0, 'Romain Aviolat', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 46, 21, 0, 0, 0, '2012-05-02T18:02:12Z', '2024-10-21T11:20:40Z', 'https://avatars.githubusercontent.com/u/1699826?v=4', 'https://api.github.com/users/xens', 'https://github.com/xens', 'https://api.github.com/users/xens/followers', 'https://api.github.com/users/xens/following', 'https://api.github.com/users/xens/gists', 'https://api.github.com/users/xens/starred', 'https://api.github.com/users/xens/repos', 'https://api.github.com/users/xens/events', 'https://api.github.com/users/xens/received_events', 0); +INSERT INTO `developer` VALUES (1706007, 'bvcelari', 'C', 0, 0, 0, 0, 0, 0, 0, 'Juan Perez', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 3, 0, 0, 0, '2012-05-04T13:58:49Z', '2024-09-11T08:35:34Z', 'https://avatars.githubusercontent.com/u/1706007?v=4', 'https://api.github.com/users/bvcelari', 'https://github.com/bvcelari', 'https://api.github.com/users/bvcelari/followers', 'https://api.github.com/users/bvcelari/following', 'https://api.github.com/users/bvcelari/gists', 'https://api.github.com/users/bvcelari/starred', 'https://api.github.com/users/bvcelari/repos', 'https://api.github.com/users/bvcelari/events', 'https://api.github.com/users/bvcelari/received_events', 0); +INSERT INTO `developer` VALUES (1707595, 'spacelama', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tim Connors', NULL, 'http://rather.puzzling.org/~tconnors', 'Melbourne', NULL, NULL, NULL, NULL, 0, 0, 3, 9, 0, 0, 0, '2012-05-05T01:57:41Z', '2024-10-24T05:31:42Z', 'https://avatars.githubusercontent.com/u/1707595?v=4', 'https://api.github.com/users/spacelama', 'https://github.com/spacelama', 'https://api.github.com/users/spacelama/followers', 'https://api.github.com/users/spacelama/following', 'https://api.github.com/users/spacelama/gists', 'https://api.github.com/users/spacelama/starred', 'https://api.github.com/users/spacelama/repos', 'https://api.github.com/users/spacelama/events', 'https://api.github.com/users/spacelama/received_events', 0); +INSERT INTO `developer` VALUES (1709451, 'markgrover', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Grover', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 99, 5, 0, 0, 0, '2012-05-05T21:17:53Z', '2024-10-28T21:59:39Z', 'https://avatars.githubusercontent.com/u/1709451?v=4', 'https://api.github.com/users/markgrover', 'https://github.com/markgrover', 'https://api.github.com/users/markgrover/followers', 'https://api.github.com/users/markgrover/following', 'https://api.github.com/users/markgrover/gists', 'https://api.github.com/users/markgrover/starred', 'https://api.github.com/users/markgrover/repos', 'https://api.github.com/users/markgrover/events', 'https://api.github.com/users/markgrover/received_events', 0); +INSERT INTO `developer` VALUES (1711792, 'calvintam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Calvin Tam', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 2, 0, 0, 0, '2012-05-07T01:25:24Z', '2024-02-17T01:13:29Z', 'https://avatars.githubusercontent.com/u/1711792?v=4', 'https://api.github.com/users/calvintam', 'https://github.com/calvintam', 'https://api.github.com/users/calvintam/followers', 'https://api.github.com/users/calvintam/following', 'https://api.github.com/users/calvintam/gists', 'https://api.github.com/users/calvintam/starred', 'https://api.github.com/users/calvintam/repos', 'https://api.github.com/users/calvintam/events', 'https://api.github.com/users/calvintam/received_events', 0); +INSERT INTO `developer` VALUES (1719646, 'gavvvr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kirill Gavrilov', NULL, '', '未知', NULL, NULL, 'Senior backend developer (Kotlin/Java)', NULL, 0, 0, 44, 239, 0, 0, 0, '2012-05-08T21:11:15Z', '2024-11-02T11:20:06Z', 'https://avatars.githubusercontent.com/u/1719646?v=4', 'https://api.github.com/users/gavvvr', 'https://github.com/gavvvr', 'https://api.github.com/users/gavvvr/followers', 'https://api.github.com/users/gavvvr/following', 'https://api.github.com/users/gavvvr/gists', 'https://api.github.com/users/gavvvr/starred', 'https://api.github.com/users/gavvvr/repos', 'https://api.github.com/users/gavvvr/events', 'https://api.github.com/users/gavvvr/received_events', 0); +INSERT INTO `developer` VALUES (1743646, 'bitsofinfo', 'C', 0, 0, 0, 0, 0, 0, 0, 'bitsofinfo', NULL, 'http://bitsofinfo.wordpress.com', 'the void', 'bitsofinfo.g@gmail.com', 'true', 'bit farmer', NULL, 0, 0, 62, 20, 0, 0, 0, '2012-05-15T21:07:15Z', '2024-10-03T14:21:09Z', 'https://avatars.githubusercontent.com/u/1743646?v=4', 'https://api.github.com/users/bitsofinfo', 'https://github.com/bitsofinfo', 'https://api.github.com/users/bitsofinfo/followers', 'https://api.github.com/users/bitsofinfo/following', 'https://api.github.com/users/bitsofinfo/gists', 'https://api.github.com/users/bitsofinfo/starred', 'https://api.github.com/users/bitsofinfo/repos', 'https://api.github.com/users/bitsofinfo/events', 'https://api.github.com/users/bitsofinfo/received_events', 0); +INSERT INTO `developer` VALUES (1749665, 'cneill', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Neill', NULL, 'https://techiavellian.com', 'Austin, TX', NULL, NULL, 'Risky business', NULL, 0, 0, 39, 4, 0, 0, 0, '2012-05-17T16:14:24Z', '2024-05-08T17:53:09Z', 'https://avatars.githubusercontent.com/u/1749665?v=4', 'https://api.github.com/users/cneill', 'https://github.com/cneill', 'https://api.github.com/users/cneill/followers', 'https://api.github.com/users/cneill/following', 'https://api.github.com/users/cneill/gists', 'https://api.github.com/users/cneill/starred', 'https://api.github.com/users/cneill/repos', 'https://api.github.com/users/cneill/events', 'https://api.github.com/users/cneill/received_events', 0); +INSERT INTO `developer` VALUES (1750155, 'ENikS', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eugene Sadovoi', NULL, '', 'Newport Beach, CA', NULL, 'true', 'Senior Software Engineer with over 20+ years of experience in variety of technologies, development tools and programming languages.', NULL, 0, 0, 100, 5, 0, 0, 0, '2012-05-17T18:59:27Z', '2023-10-13T17:59:13Z', 'https://avatars.githubusercontent.com/u/1750155?v=4', 'https://api.github.com/users/ENikS', 'https://github.com/ENikS', 'https://api.github.com/users/ENikS/followers', 'https://api.github.com/users/ENikS/following', 'https://api.github.com/users/ENikS/gists', 'https://api.github.com/users/ENikS/starred', 'https://api.github.com/users/ENikS/repos', 'https://api.github.com/users/ENikS/events', 'https://api.github.com/users/ENikS/received_events', 0); +INSERT INTO `developer` VALUES (1750815, 'TingluoHuang', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tingluo Huang', 'GitHub', '', 'United States', 'tingluohuang@github.com', NULL, NULL, NULL, 0, 0, 233, 1, 0, 0, 0, '2012-05-18T00:25:48Z', '2024-11-01T16:00:04Z', 'https://avatars.githubusercontent.com/u/1750815?v=4', 'https://api.github.com/users/TingluoHuang', 'https://github.com/TingluoHuang', 'https://api.github.com/users/TingluoHuang/followers', 'https://api.github.com/users/TingluoHuang/following', 'https://api.github.com/users/TingluoHuang/gists', 'https://api.github.com/users/TingluoHuang/starred', 'https://api.github.com/users/TingluoHuang/repos', 'https://api.github.com/users/TingluoHuang/events', 'https://api.github.com/users/TingluoHuang/received_events', 0); +INSERT INTO `developer` VALUES (1752347, 'SergioDemianLerner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergio Demian Lerner', 'IOV Labs', 'http://bitslog.com', '8CAC20548B2B7B850B0BEA957C7A2BD5DFA9B490', NULL, NULL, 'Cryptocurrency Security Maestro.\r\nDesigner of the @rsksmart Bitcoin sidechain.', 'SDLerner', 0, 0, 102, 2, 0, 0, 0, '2012-05-18T13:11:36Z', '2024-11-01T00:48:25Z', 'https://avatars.githubusercontent.com/u/1752347?v=4', 'https://api.github.com/users/SergioDemianLerner', 'https://github.com/SergioDemianLerner', 'https://api.github.com/users/SergioDemianLerner/followers', 'https://api.github.com/users/SergioDemianLerner/following', 'https://api.github.com/users/SergioDemianLerner/gists', 'https://api.github.com/users/SergioDemianLerner/starred', 'https://api.github.com/users/SergioDemianLerner/repos', 'https://api.github.com/users/SergioDemianLerner/events', 'https://api.github.com/users/SergioDemianLerner/received_events', 0); +INSERT INTO `developer` VALUES (1762599, 'so0k', 'C', 0, 0, 0, 0, 0, 0, 0, 'so0k', NULL, 'https://twitter.com/vincentdesmet', 'Singapore', 'vincent.drl@gmail.com', NULL, NULL, NULL, 0, 0, 107, 44, 0, 0, 0, '2012-05-22T04:26:41Z', '2024-10-28T02:04:50Z', 'https://avatars.githubusercontent.com/u/1762599?v=4', 'https://api.github.com/users/so0k', 'https://github.com/so0k', 'https://api.github.com/users/so0k/followers', 'https://api.github.com/users/so0k/following', 'https://api.github.com/users/so0k/gists', 'https://api.github.com/users/so0k/starred', 'https://api.github.com/users/so0k/repos', 'https://api.github.com/users/so0k/events', 'https://api.github.com/users/so0k/received_events', 0); +INSERT INTO `developer` VALUES (1764206, 'mycalf', 'C', 0, 0, 0, 0, 0, 0, 0, 'xiaoniu', '@dedecms ', 'http://xiaoniu.me', 'ShangHai', NULL, NULL, 'Loading ...', NULL, 0, 0, 6, 1, 0, 0, 0, '2012-05-22T11:06:19Z', '2024-10-11T18:27:18Z', 'https://avatars.githubusercontent.com/u/1764206?v=4', 'https://api.github.com/users/mycalf', 'https://github.com/mycalf', 'https://api.github.com/users/mycalf/followers', 'https://api.github.com/users/mycalf/following', 'https://api.github.com/users/mycalf/gists', 'https://api.github.com/users/mycalf/starred', 'https://api.github.com/users/mycalf/repos', 'https://api.github.com/users/mycalf/events', 'https://api.github.com/users/mycalf/received_events', 0); +INSERT INTO `developer` VALUES (1766527, 'CCoffie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Caleb Coffie', NULL, 'https://CalebCoffie.com', 'USA', 'CalebCoffie@gmail.com', NULL, NULL, NULL, 0, 0, 21, 17, 0, 0, 0, '2012-05-22T18:35:54Z', '2024-11-02T01:13:05Z', 'https://avatars.githubusercontent.com/u/1766527?v=4', 'https://api.github.com/users/CCoffie', 'https://github.com/CCoffie', 'https://api.github.com/users/CCoffie/followers', 'https://api.github.com/users/CCoffie/following', 'https://api.github.com/users/CCoffie/gists', 'https://api.github.com/users/CCoffie/starred', 'https://api.github.com/users/CCoffie/repos', 'https://api.github.com/users/CCoffie/events', 'https://api.github.com/users/CCoffie/received_events', 0); +INSERT INTO `developer` VALUES (1771003, 'jwalton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Walton', NULL, 'https://thedreaming.org', 'Ottawa, Ontario', 'jwalton@solinkcorp.com', NULL, NULL, NULL, 0, 0, 84, 4, 0, 0, 0, '2012-05-23T17:59:25Z', '2024-10-10T17:43:19Z', 'https://avatars.githubusercontent.com/u/1771003?v=4', 'https://api.github.com/users/jwalton', 'https://github.com/jwalton', 'https://api.github.com/users/jwalton/followers', 'https://api.github.com/users/jwalton/following', 'https://api.github.com/users/jwalton/gists', 'https://api.github.com/users/jwalton/starred', 'https://api.github.com/users/jwalton/repos', 'https://api.github.com/users/jwalton/events', 'https://api.github.com/users/jwalton/received_events', 0); +INSERT INTO `developer` VALUES (1774061, 'baibaratsky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrei Baibaratsky', NULL, '', 'Barcelona, Spain', NULL, NULL, NULL, NULL, 0, 0, 37, 23, 0, 0, 0, '2012-05-24T12:48:21Z', '2024-06-29T23:06:08Z', 'https://avatars.githubusercontent.com/u/1774061?v=4', 'https://api.github.com/users/baibaratsky', 'https://github.com/baibaratsky', 'https://api.github.com/users/baibaratsky/followers', 'https://api.github.com/users/baibaratsky/following', 'https://api.github.com/users/baibaratsky/gists', 'https://api.github.com/users/baibaratsky/starred', 'https://api.github.com/users/baibaratsky/repos', 'https://api.github.com/users/baibaratsky/events', 'https://api.github.com/users/baibaratsky/received_events', 0); +INSERT INTO `developer` VALUES (1774230, 'haltingstate', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 24, 27, 0, 0, 0, '2012-05-24T13:36:56Z', '2024-08-06T06:15:06Z', 'https://avatars.githubusercontent.com/u/1774230?v=4', 'https://api.github.com/users/haltingstate', 'https://github.com/haltingstate', 'https://api.github.com/users/haltingstate/followers', 'https://api.github.com/users/haltingstate/following', 'https://api.github.com/users/haltingstate/gists', 'https://api.github.com/users/haltingstate/starred', 'https://api.github.com/users/haltingstate/repos', 'https://api.github.com/users/haltingstate/events', 'https://api.github.com/users/haltingstate/received_events', 0); +INSERT INTO `developer` VALUES (1776470, 'frankreno', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frank Reno', 'Procore', '', 'Denver', NULL, NULL, 'Group PM @Procore, former PM and open source ambassador @SumoLogic', 'frankreno', 0, 0, 24, 56, 0, 0, 0, '2012-05-25T02:59:28Z', '2024-10-15T15:26:04Z', 'https://avatars.githubusercontent.com/u/1776470?v=4', 'https://api.github.com/users/frankreno', 'https://github.com/frankreno', 'https://api.github.com/users/frankreno/followers', 'https://api.github.com/users/frankreno/following', 'https://api.github.com/users/frankreno/gists', 'https://api.github.com/users/frankreno/starred', 'https://api.github.com/users/frankreno/repos', 'https://api.github.com/users/frankreno/events', 'https://api.github.com/users/frankreno/received_events', 0); +INSERT INTO `developer` VALUES (1788016, 'flimberger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Limberger', '@inovex', 'http://www.florian-limberger.de', 'Karlsruhe, Germany', 'flo@purplekraken.com', NULL, NULL, NULL, 0, 0, 29, 86, 0, 0, 0, '2012-05-29T07:59:00Z', '2024-10-29T09:33:35Z', 'https://avatars.githubusercontent.com/u/1788016?v=4', 'https://api.github.com/users/flimberger', 'https://github.com/flimberger', 'https://api.github.com/users/flimberger/followers', 'https://api.github.com/users/flimberger/following', 'https://api.github.com/users/flimberger/gists', 'https://api.github.com/users/flimberger/starred', 'https://api.github.com/users/flimberger/repos', 'https://api.github.com/users/flimberger/events', 'https://api.github.com/users/flimberger/received_events', 0); +INSERT INTO `developer` VALUES (1788384, 'abdennour', 'C', 0, 0, 0, 0, 0, 0, 0, 'abdennour', '@rathath-it ', 'http://in.abdennoor.com/', 'Tunisia', NULL, 'true', 'Former full stack developer, switched to the dark-side of DevOps!', NULL, 0, 0, 254, 6, 0, 0, 0, '2012-05-29T09:42:15Z', '2024-08-29T20:16:34Z', 'https://avatars.githubusercontent.com/u/1788384?v=4', 'https://api.github.com/users/abdennour', 'https://github.com/abdennour', 'https://api.github.com/users/abdennour/followers', 'https://api.github.com/users/abdennour/following', 'https://api.github.com/users/abdennour/gists', 'https://api.github.com/users/abdennour/starred', 'https://api.github.com/users/abdennour/repos', 'https://api.github.com/users/abdennour/events', 'https://api.github.com/users/abdennour/received_events', 0); +INSERT INTO `developer` VALUES (1790900, 'ttannis', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tamika Tannis', 'Lyft', 'https://www.linkedin.com/in/tamika-tannis/', 'San Francisco Bay Area, CA', NULL, NULL, 'Software Engineer', NULL, 0, 0, 7, 0, 0, 0, 0, '2012-05-29T22:51:34Z', '2024-07-16T22:14:59Z', 'https://avatars.githubusercontent.com/u/1790900?v=4', 'https://api.github.com/users/ttannis', 'https://github.com/ttannis', 'https://api.github.com/users/ttannis/followers', 'https://api.github.com/users/ttannis/following', 'https://api.github.com/users/ttannis/gists', 'https://api.github.com/users/ttannis/starred', 'https://api.github.com/users/ttannis/repos', 'https://api.github.com/users/ttannis/events', 'https://api.github.com/users/ttannis/received_events', 0); +INSERT INTO `developer` VALUES (1794593, 'ConradKurth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Conrad', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2012-05-30T17:36:28Z', '2024-10-24T16:22:41Z', 'https://avatars.githubusercontent.com/u/1794593?v=4', 'https://api.github.com/users/ConradKurth', 'https://github.com/ConradKurth', 'https://api.github.com/users/ConradKurth/followers', 'https://api.github.com/users/ConradKurth/following', 'https://api.github.com/users/ConradKurth/gists', 'https://api.github.com/users/ConradKurth/starred', 'https://api.github.com/users/ConradKurth/repos', 'https://api.github.com/users/ConradKurth/events', 'https://api.github.com/users/ConradKurth/received_events', 0); +INSERT INTO `developer` VALUES (1800020, 'terrycorley', 'C', 0, 0, 0, 0, 0, 0, 0, 'Terry Corley', '@bloomberg', '', 'Fairhope, Alabama, US', NULL, NULL, 'See also @terry-sm', NULL, 0, 0, 5, 7, 0, 0, 0, '2012-05-31T17:42:56Z', '2024-03-08T13:54:51Z', 'https://avatars.githubusercontent.com/u/1800020?v=4', 'https://api.github.com/users/terrycorley', 'https://github.com/terrycorley', 'https://api.github.com/users/terrycorley/followers', 'https://api.github.com/users/terrycorley/following', 'https://api.github.com/users/terrycorley/gists', 'https://api.github.com/users/terrycorley/starred', 'https://api.github.com/users/terrycorley/repos', 'https://api.github.com/users/terrycorley/events', 'https://api.github.com/users/terrycorley/received_events', 0); +INSERT INTO `developer` VALUES (1801407, 'jwitko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Witkowski', '@cloudstruct ', '', '未知', 'jason@witkow.ski', NULL, 'Systems / Infrastructure engineer specializing in DevOps best practices and cloud architecture.', NULL, 0, 0, 7, 0, 0, 0, 0, '2012-05-31T23:16:09Z', '2024-05-15T14:33:28Z', 'https://avatars.githubusercontent.com/u/1801407?v=4', 'https://api.github.com/users/jwitko', 'https://github.com/jwitko', 'https://api.github.com/users/jwitko/followers', 'https://api.github.com/users/jwitko/following', 'https://api.github.com/users/jwitko/gists', 'https://api.github.com/users/jwitko/starred', 'https://api.github.com/users/jwitko/repos', 'https://api.github.com/users/jwitko/events', 'https://api.github.com/users/jwitko/received_events', 0); +INSERT INTO `developer` VALUES (1801875, 'davidsgrogan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'dgrogan@gmail.com', NULL, NULL, NULL, 0, 0, 49, 5, 0, 0, 0, '2012-06-01T00:59:29Z', '2024-09-04T22:19:48Z', 'https://avatars.githubusercontent.com/u/1801875?v=4', 'https://api.github.com/users/davidsgrogan', 'https://github.com/davidsgrogan', 'https://api.github.com/users/davidsgrogan/followers', 'https://api.github.com/users/davidsgrogan/following', 'https://api.github.com/users/davidsgrogan/gists', 'https://api.github.com/users/davidsgrogan/starred', 'https://api.github.com/users/davidsgrogan/repos', 'https://api.github.com/users/davidsgrogan/events', 'https://api.github.com/users/davidsgrogan/received_events', 0); +INSERT INTO `developer` VALUES (1822404, 'DJWassink', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dirk-Jan Wassink', NULL, 'http://djwassink.com', 'the Netherlands', NULL, NULL, NULL, NULL, 0, 0, 16, 7, 0, 0, 0, '2012-06-06T09:32:18Z', '2024-10-27T11:21:02Z', 'https://avatars.githubusercontent.com/u/1822404?v=4', 'https://api.github.com/users/DJWassink', 'https://github.com/DJWassink', 'https://api.github.com/users/DJWassink/followers', 'https://api.github.com/users/DJWassink/following', 'https://api.github.com/users/DJWassink/gists', 'https://api.github.com/users/DJWassink/starred', 'https://api.github.com/users/DJWassink/repos', 'https://api.github.com/users/DJWassink/events', 'https://api.github.com/users/DJWassink/received_events', 0); +INSERT INTO `developer` VALUES (1824153, 'tux-mind', 'C', 0, 0, 0, 0, 0, 0, 0, 'Max', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 240, 0, 0, 0, 0, '2012-06-06T18:05:49Z', '2023-12-12T09:28:04Z', 'https://avatars.githubusercontent.com/u/1824153?v=4', 'https://api.github.com/users/tux-mind', 'https://github.com/tux-mind', 'https://api.github.com/users/tux-mind/followers', 'https://api.github.com/users/tux-mind/following', 'https://api.github.com/users/tux-mind/gists', 'https://api.github.com/users/tux-mind/starred', 'https://api.github.com/users/tux-mind/repos', 'https://api.github.com/users/tux-mind/events', 'https://api.github.com/users/tux-mind/received_events', 0); +INSERT INTO `developer` VALUES (1835799, 'miya-masa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Masayuki', NULL, 'https://www.miya-masa.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 7, 0, 0, 0, '2012-06-10T15:18:58Z', '2024-03-08T16:33:02Z', 'https://avatars.githubusercontent.com/u/1835799?v=4', 'https://api.github.com/users/miya-masa', 'https://github.com/miya-masa', 'https://api.github.com/users/miya-masa/followers', 'https://api.github.com/users/miya-masa/following', 'https://api.github.com/users/miya-masa/gists', 'https://api.github.com/users/miya-masa/starred', 'https://api.github.com/users/miya-masa/repos', 'https://api.github.com/users/miya-masa/events', 'https://api.github.com/users/miya-masa/received_events', 0); +INSERT INTO `developer` VALUES (1842587, 'goeranu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Göran Uddeborg', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2012-06-12T13:33:33Z', '2024-09-18T14:19:48Z', 'https://avatars.githubusercontent.com/u/1842587?v=4', 'https://api.github.com/users/goeranu', 'https://github.com/goeranu', 'https://api.github.com/users/goeranu/followers', 'https://api.github.com/users/goeranu/following', 'https://api.github.com/users/goeranu/gists', 'https://api.github.com/users/goeranu/starred', 'https://api.github.com/users/goeranu/repos', 'https://api.github.com/users/goeranu/events', 'https://api.github.com/users/goeranu/received_events', 0); +INSERT INTO `developer` VALUES (1846033, 'lclc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lucas Betschart', NULL, '21analytics.ch', 'Zug, Switzerland', NULL, 'true', 'Bitcoin', 'lucas_lclc', 0, 0, 105, 27, 0, 0, 0, '2012-06-13T10:29:23Z', '2024-10-30T15:53:04Z', 'https://avatars.githubusercontent.com/u/1846033?v=4', 'https://api.github.com/users/lclc', 'https://github.com/lclc', 'https://api.github.com/users/lclc/followers', 'https://api.github.com/users/lclc/following', 'https://api.github.com/users/lclc/gists', 'https://api.github.com/users/lclc/starred', 'https://api.github.com/users/lclc/repos', 'https://api.github.com/users/lclc/events', 'https://api.github.com/users/lclc/received_events', 0); +INSERT INTO `developer` VALUES (1862580, 'jtomaszewski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacek Tomaszewski', '@fullstackhouse', 'https://jtom.me', 'Poznan, Poland', 'jacek@fullstack.house', 'true', 'Full-stack Software Engineer @ @fullstackhouse | Tech Lead (JS, TS, Elixir, Ruby)', 'jtompl', 0, 0, 214, 5, 0, 0, 0, '2012-06-18T13:09:55Z', '2024-10-17T10:10:39Z', 'https://avatars.githubusercontent.com/u/1862580?v=4', 'https://api.github.com/users/jtomaszewski', 'https://github.com/jtomaszewski', 'https://api.github.com/users/jtomaszewski/followers', 'https://api.github.com/users/jtomaszewski/following', 'https://api.github.com/users/jtomaszewski/gists', 'https://api.github.com/users/jtomaszewski/starred', 'https://api.github.com/users/jtomaszewski/repos', 'https://api.github.com/users/jtomaszewski/events', 'https://api.github.com/users/jtomaszewski/received_events', 0); +INSERT INTO `developer` VALUES (1866448, 'yurrriq', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Bailey', '@sportradar', 'https://blorg.ericb.me', 'Minneapolis, MN', NULL, NULL, 'Highly functional yak stylist, {HoT,PL}T enthusiast, {Erlang,Lisp}er, Kubernaut, MaMuTh meddler, Nix user, (comics) reader, linguaphile, musician, philomath, &c', NULL, 0, 0, 229, 645, 0, 0, 0, '2012-06-19T07:41:21Z', '2024-09-18T00:45:17Z', 'https://avatars.githubusercontent.com/u/1866448?v=4', 'https://api.github.com/users/yurrriq', 'https://github.com/yurrriq', 'https://api.github.com/users/yurrriq/followers', 'https://api.github.com/users/yurrriq/following', 'https://api.github.com/users/yurrriq/gists', 'https://api.github.com/users/yurrriq/starred', 'https://api.github.com/users/yurrriq/repos', 'https://api.github.com/users/yurrriq/events', 'https://api.github.com/users/yurrriq/received_events', 0); +INSERT INTO `developer` VALUES (1879641, 'yjqg6666', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 24, 54, 0, 0, 0, '2012-06-22T03:52:41Z', '2024-10-28T11:22:04Z', 'https://avatars.githubusercontent.com/u/1879641?v=4', 'https://api.github.com/users/yjqg6666', 'https://github.com/yjqg6666', 'https://api.github.com/users/yjqg6666/followers', 'https://api.github.com/users/yjqg6666/following', 'https://api.github.com/users/yjqg6666/gists', 'https://api.github.com/users/yjqg6666/starred', 'https://api.github.com/users/yjqg6666/repos', 'https://api.github.com/users/yjqg6666/events', 'https://api.github.com/users/yjqg6666/received_events', 0); +INSERT INTO `developer` VALUES (1888062, 'doughgle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Douglas Hellinger', NULL, 'https://douglashellinger.com', 'Singapore', NULL, 'true', 'Helping engineers have fun and maximise impact by learning and teaching containers and kubernetes!', 'doughgle', 0, 0, 32, 55, 0, 0, 0, '2012-06-25T02:52:57Z', '2024-10-28T00:27:16Z', 'https://avatars.githubusercontent.com/u/1888062?v=4', 'https://api.github.com/users/doughgle', 'https://github.com/doughgle', 'https://api.github.com/users/doughgle/followers', 'https://api.github.com/users/doughgle/following', 'https://api.github.com/users/doughgle/gists', 'https://api.github.com/users/doughgle/starred', 'https://api.github.com/users/doughgle/repos', 'https://api.github.com/users/doughgle/events', 'https://api.github.com/users/doughgle/received_events', 0); +INSERT INTO `developer` VALUES (1905821, 'elgris', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://elgris.github.io/', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 69, 6, 0, 0, 0, '2012-06-29T11:57:38Z', '2024-07-02T06:46:33Z', 'https://avatars.githubusercontent.com/u/1905821?v=4', 'https://api.github.com/users/elgris', 'https://github.com/elgris', 'https://api.github.com/users/elgris/followers', 'https://api.github.com/users/elgris/following', 'https://api.github.com/users/elgris/gists', 'https://api.github.com/users/elgris/starred', 'https://api.github.com/users/elgris/repos', 'https://api.github.com/users/elgris/events', 'https://api.github.com/users/elgris/received_events', 0); +INSERT INTO `developer` VALUES (1907761, 'enahs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shane', NULL, '', 'Oakland, CA', NULL, NULL, 'SHANE', NULL, 0, 0, 8, 6, 0, 0, 0, '2012-06-30T00:55:05Z', '2024-10-10T15:52:33Z', 'https://avatars.githubusercontent.com/u/1907761?v=4', 'https://api.github.com/users/enahs', 'https://github.com/enahs', 'https://api.github.com/users/enahs/followers', 'https://api.github.com/users/enahs/following', 'https://api.github.com/users/enahs/gists', 'https://api.github.com/users/enahs/starred', 'https://api.github.com/users/enahs/repos', 'https://api.github.com/users/enahs/events', 'https://api.github.com/users/enahs/received_events', 0); +INSERT INTO `developer` VALUES (1913775, 'lukasdietrich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lukas Dietrich', NULL, 'https://lukasdietrich.com', 'Germany', 'lukas@lukasdietrich.com', NULL, '🐸', NULL, 0, 0, 9, 5, 0, 0, 0, '2012-07-02T11:23:02Z', '2024-10-22T11:21:38Z', 'https://avatars.githubusercontent.com/u/1913775?v=4', 'https://api.github.com/users/lukasdietrich', 'https://github.com/lukasdietrich', 'https://api.github.com/users/lukasdietrich/followers', 'https://api.github.com/users/lukasdietrich/following', 'https://api.github.com/users/lukasdietrich/gists', 'https://api.github.com/users/lukasdietrich/starred', 'https://api.github.com/users/lukasdietrich/repos', 'https://api.github.com/users/lukasdietrich/events', 'https://api.github.com/users/lukasdietrich/received_events', 0); +INSERT INTO `developer` VALUES (1946248, 'Ulexus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Seán C. McCord', 'CyCore Systems, Inc', 'https://cycoresys.com', 'NYC', NULL, 'true', 'Principal Architect @CyCoreSystems and engineer @tkhq. Plays with Go, @kubernetes, @ceph, VoIP, and things open-source.', NULL, 0, 0, 130, 4, 0, 0, 0, '2012-07-10T01:01:04Z', '2024-09-20T00:30:41Z', 'https://avatars.githubusercontent.com/u/1946248?v=4', 'https://api.github.com/users/Ulexus', 'https://github.com/Ulexus', 'https://api.github.com/users/Ulexus/followers', 'https://api.github.com/users/Ulexus/following', 'https://api.github.com/users/Ulexus/gists', 'https://api.github.com/users/Ulexus/starred', 'https://api.github.com/users/Ulexus/repos', 'https://api.github.com/users/Ulexus/events', 'https://api.github.com/users/Ulexus/received_events', 0); +INSERT INTO `developer` VALUES (1951866, 'crazy-max', 'B-', 36.99250006740086, 0, 0, 0, 0, 0, 0, 'CrazyMax', '@docker', 'https://crazymax.dev', 'France', NULL, NULL, 'Software Engineer, Open Source, Go, Containers', 'crazyws', 0, 0, 2442, 38, 0, 0, 0, '2012-07-10T18:54:34Z', '2024-10-19T11:07:54Z', 'https://avatars.githubusercontent.com/u/1951866?v=4', 'https://api.github.com/users/crazy-max', 'https://github.com/crazy-max', 'https://api.github.com/users/crazy-max/followers', 'https://api.github.com/users/crazy-max/following', 'https://api.github.com/users/crazy-max/gists', 'https://api.github.com/users/crazy-max/starred', 'https://api.github.com/users/crazy-max/repos', 'https://api.github.com/users/crazy-max/events', 'https://api.github.com/users/crazy-max/received_events', 0); +INSERT INTO `developer` VALUES (1965521, 'jtslear', 'C', 0, 0, 0, 0, 0, 0, 0, 'John T Skarbek', NULL, 'http://jtslear.github.io', 'Raleigh, NC', NULL, 'true', NULL, NULL, 0, 0, 12, 10, 0, 0, 0, '2012-07-12T20:22:20Z', '2024-10-22T11:21:42Z', 'https://avatars.githubusercontent.com/u/1965521?v=4', 'https://api.github.com/users/jtslear', 'https://github.com/jtslear', 'https://api.github.com/users/jtslear/followers', 'https://api.github.com/users/jtslear/following', 'https://api.github.com/users/jtslear/gists', 'https://api.github.com/users/jtslear/starred', 'https://api.github.com/users/jtslear/repos', 'https://api.github.com/users/jtslear/events', 'https://api.github.com/users/jtslear/received_events', 0); +INSERT INTO `developer` VALUES (1980110, 'amnk', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2012-07-15T18:59:02Z', '2024-08-21T07:01:54Z', 'https://avatars.githubusercontent.com/u/1980110?v=4', 'https://api.github.com/users/amnk', 'https://github.com/amnk', 'https://api.github.com/users/amnk/followers', 'https://api.github.com/users/amnk/following', 'https://api.github.com/users/amnk/gists', 'https://api.github.com/users/amnk/starred', 'https://api.github.com/users/amnk/repos', 'https://api.github.com/users/amnk/events', 'https://api.github.com/users/amnk/received_events', 0); +INSERT INTO `developer` VALUES (1981364, 'enterprisey', 'C', 0, 0, 0, 0, 0, 0, 0, 'enterprisey', 'enterprisey', 'https://en.wikipedia.org/wiki/User:Enterprisey', '\'Murica', NULL, NULL, 'enterprisey', NULL, 0, 0, 57, 11, 0, 0, 0, '2012-07-16T01:53:58Z', '2024-10-13T23:12:52Z', 'https://avatars.githubusercontent.com/u/1981364?v=4', 'https://api.github.com/users/enterprisey', 'https://github.com/enterprisey', 'https://api.github.com/users/enterprisey/followers', 'https://api.github.com/users/enterprisey/following', 'https://api.github.com/users/enterprisey/gists', 'https://api.github.com/users/enterprisey/starred', 'https://api.github.com/users/enterprisey/repos', 'https://api.github.com/users/enterprisey/events', 'https://api.github.com/users/enterprisey/received_events', 0); +INSERT INTO `developer` VALUES (2006610, 'mlushpenko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maksym Lushpenko', NULL, '', 'Amsterdam', NULL, NULL, NULL, 'MLushpenko', 0, 0, 14, 12, 0, 0, 0, '2012-07-19T17:31:09Z', '2024-10-10T22:21:00Z', 'https://avatars.githubusercontent.com/u/2006610?v=4', 'https://api.github.com/users/mlushpenko', 'https://github.com/mlushpenko', 'https://api.github.com/users/mlushpenko/followers', 'https://api.github.com/users/mlushpenko/following', 'https://api.github.com/users/mlushpenko/gists', 'https://api.github.com/users/mlushpenko/starred', 'https://api.github.com/users/mlushpenko/repos', 'https://api.github.com/users/mlushpenko/events', 'https://api.github.com/users/mlushpenko/received_events', 0); +INSERT INTO `developer` VALUES (2011351, 'alextes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Tesfamichael', NULL, 'https://alextes.me/', '未知', 'alex.tesfamichael@gmail.com', NULL, NULL, 'alextes', 0, 0, 138, 19, 0, 0, 0, '2012-07-20T11:00:56Z', '2024-10-28T15:34:57Z', 'https://avatars.githubusercontent.com/u/2011351?v=4', 'https://api.github.com/users/alextes', 'https://github.com/alextes', 'https://api.github.com/users/alextes/followers', 'https://api.github.com/users/alextes/following', 'https://api.github.com/users/alextes/gists', 'https://api.github.com/users/alextes/starred', 'https://api.github.com/users/alextes/repos', 'https://api.github.com/users/alextes/events', 'https://api.github.com/users/alextes/received_events', 0); +INSERT INTO `developer` VALUES (2015196, 'aitorpazos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aitor', NULL, 'aitorpazos.es', 'Dublin', NULL, NULL, NULL, NULL, 0, 0, 14, 15, 0, 0, 0, '2012-07-21T00:41:32Z', '2024-10-29T12:59:14Z', 'https://avatars.githubusercontent.com/u/2015196?v=4', 'https://api.github.com/users/aitorpazos', 'https://github.com/aitorpazos', 'https://api.github.com/users/aitorpazos/followers', 'https://api.github.com/users/aitorpazos/following', 'https://api.github.com/users/aitorpazos/gists', 'https://api.github.com/users/aitorpazos/starred', 'https://api.github.com/users/aitorpazos/repos', 'https://api.github.com/users/aitorpazos/events', 'https://api.github.com/users/aitorpazos/received_events', 0); +INSERT INTO `developer` VALUES (2030965, 'duchatran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Duc Ha', NULL, '', 'California', NULL, NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2012-07-24T01:48:24Z', '2024-10-27T21:29:21Z', 'https://avatars.githubusercontent.com/u/2030965?v=4', 'https://api.github.com/users/duchatran', 'https://github.com/duchatran', 'https://api.github.com/users/duchatran/followers', 'https://api.github.com/users/duchatran/following', 'https://api.github.com/users/duchatran/gists', 'https://api.github.com/users/duchatran/starred', 'https://api.github.com/users/duchatran/repos', 'https://api.github.com/users/duchatran/events', 'https://api.github.com/users/duchatran/received_events', 0); +INSERT INTO `developer` VALUES (2033945, 'wallclockbuilder', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mawuli Obuntu', '@bisq-network, @SatoshiDollarParity, @KitiwaImpactPortfolio ', 'https://www.satoshidollarparity.com', 'Hayward, California', 'wallclockbuilder@googlemail.com', 'true', 'I am a Full Stack Software Engineer with about 15 years of experience developing innovative solutions. I\'ve founded over half a dozen startups and coded them.', 'mawueli', 0, 0, 79, 518, 0, 0, 0, '2012-07-24T12:44:11Z', '2024-10-18T17:32:44Z', 'https://avatars.githubusercontent.com/u/2033945?v=4', 'https://api.github.com/users/wallclockbuilder', 'https://github.com/wallclockbuilder', 'https://api.github.com/users/wallclockbuilder/followers', 'https://api.github.com/users/wallclockbuilder/following', 'https://api.github.com/users/wallclockbuilder/gists', 'https://api.github.com/users/wallclockbuilder/starred', 'https://api.github.com/users/wallclockbuilder/repos', 'https://api.github.com/users/wallclockbuilder/events', 'https://api.github.com/users/wallclockbuilder/received_events', 0); +INSERT INTO `developer` VALUES (2034127, 'Danconnolly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Connolly', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 56, 0, 0, 0, 0, '2012-07-24T13:18:09Z', '2024-11-01T11:08:29Z', 'https://avatars.githubusercontent.com/u/2034127?v=4', 'https://api.github.com/users/Danconnolly', 'https://github.com/Danconnolly', 'https://api.github.com/users/Danconnolly/followers', 'https://api.github.com/users/Danconnolly/following', 'https://api.github.com/users/Danconnolly/gists', 'https://api.github.com/users/Danconnolly/starred', 'https://api.github.com/users/Danconnolly/repos', 'https://api.github.com/users/Danconnolly/events', 'https://api.github.com/users/Danconnolly/received_events', 0); +INSERT INTO `developer` VALUES (2039180, 'chriswheeler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Wheeler', 'Hayden', 'www.hayden.co.uk', 'West Sussex, UK', 'chris@haydenwheeler.com', NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2012-07-25T08:41:20Z', '2024-11-04T15:02:19Z', 'https://avatars.githubusercontent.com/u/2039180?v=4', 'https://api.github.com/users/chriswheeler', 'https://github.com/chriswheeler', 'https://api.github.com/users/chriswheeler/followers', 'https://api.github.com/users/chriswheeler/following', 'https://api.github.com/users/chriswheeler/gists', 'https://api.github.com/users/chriswheeler/starred', 'https://api.github.com/users/chriswheeler/repos', 'https://api.github.com/users/chriswheeler/events', 'https://api.github.com/users/chriswheeler/received_events', 0); +INSERT INTO `developer` VALUES (2084648, 'pinheadmz', 'C', 1.0834920975968654, 0, 0, 0, 0, 0, 0, 'Matthew Zipkin', NULL, '', 'port 8333', 'pinheadmz@gmail.com', 'true', 'E617 73CD 6E01 040E 2F1B\r\nD78C E7E2 984B 6289 C93A', NULL, 0, 0, 348, 40, 0, 0, 0, '2012-08-02T16:12:15Z', '2024-10-09T17:13:24Z', 'https://avatars.githubusercontent.com/u/2084648?v=4', 'https://api.github.com/users/pinheadmz', 'https://github.com/pinheadmz', 'https://api.github.com/users/pinheadmz/followers', 'https://api.github.com/users/pinheadmz/following', 'https://api.github.com/users/pinheadmz/gists', 'https://api.github.com/users/pinheadmz/starred', 'https://api.github.com/users/pinheadmz/repos', 'https://api.github.com/users/pinheadmz/events', 'https://api.github.com/users/pinheadmz/received_events', 0); +INSERT INTO `developer` VALUES (2093265, 'keenan-v1', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Walker (Keenan)', '@lindenlab ', 'https://keenan.wantsmore.coffee', 'Somewhere in the world', 'jonathan@wantsmore.coffee', 'true', 'I break things, and usually fix them.', NULL, 0, 0, 7, 7, 0, 0, 0, '2012-08-04T06:04:15Z', '2024-08-05T15:46:05Z', 'https://avatars.githubusercontent.com/u/2093265?v=4', 'https://api.github.com/users/keenan-v1', 'https://github.com/keenan-v1', 'https://api.github.com/users/keenan-v1/followers', 'https://api.github.com/users/keenan-v1/following', 'https://api.github.com/users/keenan-v1/gists', 'https://api.github.com/users/keenan-v1/starred', 'https://api.github.com/users/keenan-v1/repos', 'https://api.github.com/users/keenan-v1/events', 'https://api.github.com/users/keenan-v1/received_events', 0); +INSERT INTO `developer` VALUES (2098878, 'baurmatt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthias Baur', '@syseleven ', '', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 20, 11, 0, 0, 0, '2012-08-05T16:03:43Z', '2024-10-10T18:39:22Z', 'https://avatars.githubusercontent.com/u/2098878?v=4', 'https://api.github.com/users/baurmatt', 'https://github.com/baurmatt', 'https://api.github.com/users/baurmatt/followers', 'https://api.github.com/users/baurmatt/following', 'https://api.github.com/users/baurmatt/gists', 'https://api.github.com/users/baurmatt/starred', 'https://api.github.com/users/baurmatt/repos', 'https://api.github.com/users/baurmatt/events', 'https://api.github.com/users/baurmatt/received_events', 0); +INSERT INTO `developer` VALUES (2099463, 'samshuster', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2012-08-05T19:14:10Z', '2024-09-25T15:06:56Z', 'https://avatars.githubusercontent.com/u/2099463?v=4', 'https://api.github.com/users/samshuster', 'https://github.com/samshuster', 'https://api.github.com/users/samshuster/followers', 'https://api.github.com/users/samshuster/following', 'https://api.github.com/users/samshuster/gists', 'https://api.github.com/users/samshuster/starred', 'https://api.github.com/users/samshuster/repos', 'https://api.github.com/users/samshuster/events', 'https://api.github.com/users/samshuster/received_events', 0); +INSERT INTO `developer` VALUES (2115102, 'davecgh', 'C', 5.147692140024537, 0, 0, 0, 0, 0, 0, 'Dave Collins', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 585, 1, 0, 0, 0, '2012-08-08T07:37:56Z', '2024-09-02T20:54:31Z', 'https://avatars.githubusercontent.com/u/2115102?v=4', 'https://api.github.com/users/davecgh', 'https://github.com/davecgh', 'https://api.github.com/users/davecgh/followers', 'https://api.github.com/users/davecgh/following', 'https://api.github.com/users/davecgh/gists', 'https://api.github.com/users/davecgh/starred', 'https://api.github.com/users/davecgh/repos', 'https://api.github.com/users/davecgh/events', 'https://api.github.com/users/davecgh/received_events', 0); +INSERT INTO `developer` VALUES (2118167, 'r000n', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roman Mindalev', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2012-08-08T17:14:57Z', '2024-03-19T05:30:21Z', 'https://avatars.githubusercontent.com/u/2118167?v=4', 'https://api.github.com/users/r000n', 'https://github.com/r000n', 'https://api.github.com/users/r000n/followers', 'https://api.github.com/users/r000n/following', 'https://api.github.com/users/r000n/gists', 'https://api.github.com/users/r000n/starred', 'https://api.github.com/users/r000n/repos', 'https://api.github.com/users/r000n/events', 'https://api.github.com/users/r000n/received_events', 0); +INSERT INTO `developer` VALUES (2123375, 'lukechilds', 'C+', 21.421640833121003, 0, 0, 0, 0, 0, 0, 'Luke Childs', '@getumbrel', 'https://lu.ke', 'Thailand', 'mail@lu.ke', 'true', 'Building @getumbrel\r\n\r\nPreviously @bitcoinjs @browserify ', 'lukechilds', 0, 0, 1534, 146, 0, 0, 0, '2012-08-09T12:50:11Z', '2024-10-17T08:30:30Z', 'https://avatars.githubusercontent.com/u/2123375?v=4', 'https://api.github.com/users/lukechilds', 'https://github.com/lukechilds', 'https://api.github.com/users/lukechilds/followers', 'https://api.github.com/users/lukechilds/following', 'https://api.github.com/users/lukechilds/gists', 'https://api.github.com/users/lukechilds/starred', 'https://api.github.com/users/lukechilds/repos', 'https://api.github.com/users/lukechilds/events', 'https://api.github.com/users/lukechilds/received_events', 0); +INSERT INTO `developer` VALUES (2129762, 'dany74q', 'C', 0, 0, 0, 0, 0, 0, 0, 'Danny Shemesh', '@wiz-sec ', 'https://www.linkedin.com/in/dany74q', 'Israel', 'dany74q@gmail.com', NULL, 'Software is my passion.', NULL, 0, 0, 19, 0, 0, 0, 0, '2012-08-10T12:54:07Z', '2024-10-30T08:32:52Z', 'https://avatars.githubusercontent.com/u/2129762?v=4', 'https://api.github.com/users/dany74q', 'https://github.com/dany74q', 'https://api.github.com/users/dany74q/followers', 'https://api.github.com/users/dany74q/following', 'https://api.github.com/users/dany74q/gists', 'https://api.github.com/users/dany74q/starred', 'https://api.github.com/users/dany74q/repos', 'https://api.github.com/users/dany74q/events', 'https://api.github.com/users/dany74q/received_events', 0); +INSERT INTO `developer` VALUES (2134660, 'Mikhail-Ivanov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mikhail Ivanov', NULL, '', '未知', 'mikhail.ivanov8@gmail.com', NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2012-08-11T10:12:35Z', '2024-08-11T08:45:37Z', 'https://avatars.githubusercontent.com/u/2134660?v=4', 'https://api.github.com/users/Mikhail-Ivanov', 'https://github.com/Mikhail-Ivanov', 'https://api.github.com/users/Mikhail-Ivanov/followers', 'https://api.github.com/users/Mikhail-Ivanov/following', 'https://api.github.com/users/Mikhail-Ivanov/gists', 'https://api.github.com/users/Mikhail-Ivanov/starred', 'https://api.github.com/users/Mikhail-Ivanov/repos', 'https://api.github.com/users/Mikhail-Ivanov/events', 'https://api.github.com/users/Mikhail-Ivanov/received_events', 0); +INSERT INTO `developer` VALUES (2142872, 'vibhavp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vibhav Pant', '@meganz', '', 'New Delhi, India', 'vibhavp@gmail.com', 'true', 'Emacs hacker, PL enthusiast.', NULL, 0, 0, 110, 45, 0, 0, 0, '2012-08-13T07:14:21Z', '2024-10-13T11:42:57Z', 'https://avatars.githubusercontent.com/u/2142872?v=4', 'https://api.github.com/users/vibhavp', 'https://github.com/vibhavp', 'https://api.github.com/users/vibhavp/followers', 'https://api.github.com/users/vibhavp/following', 'https://api.github.com/users/vibhavp/gists', 'https://api.github.com/users/vibhavp/starred', 'https://api.github.com/users/vibhavp/repos', 'https://api.github.com/users/vibhavp/events', 'https://api.github.com/users/vibhavp/received_events', 0); +INSERT INTO `developer` VALUES (2167860, 'elichai', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elichai Turkel', NULL, '', 'Israel', NULL, 'true', NULL, NULL, 0, 0, 215, 132, 0, 0, 0, '2012-08-17T07:04:42Z', '2024-10-07T11:21:55Z', 'https://avatars.githubusercontent.com/u/2167860?v=4', 'https://api.github.com/users/elichai', 'https://github.com/elichai', 'https://api.github.com/users/elichai/followers', 'https://api.github.com/users/elichai/following', 'https://api.github.com/users/elichai/gists', 'https://api.github.com/users/elichai/starred', 'https://api.github.com/users/elichai/repos', 'https://api.github.com/users/elichai/events', 'https://api.github.com/users/elichai/received_events', 0); +INSERT INTO `developer` VALUES (2178421, 'kimiby', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2012-08-19T12:03:51Z', '2024-08-19T18:08:42Z', 'https://avatars.githubusercontent.com/u/2178421?v=4', 'https://api.github.com/users/kimiby', 'https://github.com/kimiby', 'https://api.github.com/users/kimiby/followers', 'https://api.github.com/users/kimiby/following', 'https://api.github.com/users/kimiby/gists', 'https://api.github.com/users/kimiby/starred', 'https://api.github.com/users/kimiby/repos', 'https://api.github.com/users/kimiby/events', 'https://api.github.com/users/kimiby/received_events', 0); +INSERT INTO `developer` VALUES (2183720, 'vincent178', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vincent Huang', 'GOAT Group', 'https://vincent178.github.io', 'Shanghai, China', 'vh7157@gmail.com', 'true', 'Love in open-source, creator of framework LOON, contribute to varies open source projects.', NULL, 0, 0, 124, 323, 0, 0, 0, '2012-08-20T14:23:51Z', '2024-10-19T08:16:49Z', 'https://avatars.githubusercontent.com/u/2183720?v=4', 'https://api.github.com/users/vincent178', 'https://github.com/vincent178', 'https://api.github.com/users/vincent178/followers', 'https://api.github.com/users/vincent178/following', 'https://api.github.com/users/vincent178/gists', 'https://api.github.com/users/vincent178/starred', 'https://api.github.com/users/vincent178/repos', 'https://api.github.com/users/vincent178/events', 'https://api.github.com/users/vincent178/received_events', 0); +INSERT INTO `developer` VALUES (2223163, 'rajat404', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rajat Goyal', NULL, 'https://rajat404.com', 'New Delhi | Bangalore', NULL, NULL, NULL, NULL, 0, 0, 23, 26, 0, 0, 0, '2012-08-26T18:42:08Z', '2024-06-11T20:14:58Z', 'https://avatars.githubusercontent.com/u/2223163?v=4', 'https://api.github.com/users/rajat404', 'https://github.com/rajat404', 'https://api.github.com/users/rajat404/followers', 'https://api.github.com/users/rajat404/following', 'https://api.github.com/users/rajat404/gists', 'https://api.github.com/users/rajat404/starred', 'https://api.github.com/users/rajat404/repos', 'https://api.github.com/users/rajat404/events', 'https://api.github.com/users/rajat404/received_events', 0); +INSERT INTO `developer` VALUES (2223837, 'jaketri', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jake', NULL, '', 'Toronto', NULL, 'true', NULL, NULL, 0, 0, 0, 3, 0, 0, 0, '2012-08-26T22:14:18Z', '2023-10-06T02:59:59Z', 'https://avatars.githubusercontent.com/u/2223837?v=4', 'https://api.github.com/users/jaketri', 'https://github.com/jaketri', 'https://api.github.com/users/jaketri/followers', 'https://api.github.com/users/jaketri/following', 'https://api.github.com/users/jaketri/gists', 'https://api.github.com/users/jaketri/starred', 'https://api.github.com/users/jaketri/repos', 'https://api.github.com/users/jaketri/events', 'https://api.github.com/users/jaketri/received_events', 0); +INSERT INTO `developer` VALUES (2253692, 'knqyf263', 'C', 10.223655062212687, 0, 0, 0, 0, 0, 0, 'Teppei Fukuda', NULL, '', 'Dubai, UAE', 'knqyf263@gmail.com', NULL, NULL, NULL, 0, 0, 881, 0, 0, 0, 0, '2012-08-31T07:56:45Z', '2024-10-10T11:23:26Z', 'https://avatars.githubusercontent.com/u/2253692?v=4', 'https://api.github.com/users/knqyf263', 'https://github.com/knqyf263', 'https://api.github.com/users/knqyf263/followers', 'https://api.github.com/users/knqyf263/following', 'https://api.github.com/users/knqyf263/gists', 'https://api.github.com/users/knqyf263/starred', 'https://api.github.com/users/knqyf263/repos', 'https://api.github.com/users/knqyf263/events', 'https://api.github.com/users/knqyf263/received_events', 0); +INSERT INTO `developer` VALUES (2257501, 'brunoksato', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bruno Sato', NULL, 'http://twitter.com/brunoksato', 'Brazil', 'bruno.sato@live.com', 'true', 'Full Stack Engineer ', 'brunoksato', 0, 0, 134, 171, 0, 0, 0, '2012-08-31T22:38:05Z', '2024-10-26T22:13:05Z', 'https://avatars.githubusercontent.com/u/2257501?v=4', 'https://api.github.com/users/brunoksato', 'https://github.com/brunoksato', 'https://api.github.com/users/brunoksato/followers', 'https://api.github.com/users/brunoksato/following', 'https://api.github.com/users/brunoksato/gists', 'https://api.github.com/users/brunoksato/starred', 'https://api.github.com/users/brunoksato/repos', 'https://api.github.com/users/brunoksato/events', 'https://api.github.com/users/brunoksato/received_events', 0); +INSERT INTO `developer` VALUES (2262876, 'andrewc12', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Innes', NULL, '', 'Perth, Australia', NULL, NULL, NULL, NULL, 0, 0, 17, 19, 0, 0, 0, '2012-09-01T22:50:49Z', '2024-05-27T07:02:51Z', 'https://avatars.githubusercontent.com/u/2262876?v=4', 'https://api.github.com/users/andrewc12', 'https://github.com/andrewc12', 'https://api.github.com/users/andrewc12/followers', 'https://api.github.com/users/andrewc12/following', 'https://api.github.com/users/andrewc12/gists', 'https://api.github.com/users/andrewc12/starred', 'https://api.github.com/users/andrewc12/repos', 'https://api.github.com/users/andrewc12/events', 'https://api.github.com/users/andrewc12/received_events', 0); +INSERT INTO `developer` VALUES (2269242, 'nkovacs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nikola Kovacs', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 0, 0, 0, 0, '2012-09-03T08:07:05Z', '2024-10-30T13:09:48Z', 'https://avatars.githubusercontent.com/u/2269242?v=4', 'https://api.github.com/users/nkovacs', 'https://github.com/nkovacs', 'https://api.github.com/users/nkovacs/followers', 'https://api.github.com/users/nkovacs/following', 'https://api.github.com/users/nkovacs/gists', 'https://api.github.com/users/nkovacs/starred', 'https://api.github.com/users/nkovacs/repos', 'https://api.github.com/users/nkovacs/events', 'https://api.github.com/users/nkovacs/received_events', 0); +INSERT INTO `developer` VALUES (2275667, 'yanfali', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yan-Fa Li', NULL, '', 'Bellevue, WA', 'yanfali@gmail.com', 'true', NULL, NULL, 0, 0, 26, 11, 0, 0, 0, '2012-09-04T06:18:23Z', '2024-11-01T05:58:05Z', 'https://avatars.githubusercontent.com/u/2275667?v=4', 'https://api.github.com/users/yanfali', 'https://github.com/yanfali', 'https://api.github.com/users/yanfali/followers', 'https://api.github.com/users/yanfali/following', 'https://api.github.com/users/yanfali/gists', 'https://api.github.com/users/yanfali/starred', 'https://api.github.com/users/yanfali/repos', 'https://api.github.com/users/yanfali/events', 'https://api.github.com/users/yanfali/received_events', 0); +INSERT INTO `developer` VALUES (2325888, 'RichardKnop', 'C', 3.9815925497921256, 0, 0, 0, 0, 0, 0, 'Richard Knop', 'currently @arabesque-sray, before @NewsUK @GrabSG', 'http://richardknop.com/', 'London', NULL, 'true', 'Writing software for a living since 2011.', NULL, 0, 0, 517, 69, 0, 0, 0, '2012-09-11T16:39:04Z', '2024-10-29T09:02:48Z', 'https://avatars.githubusercontent.com/u/2325888?v=4', 'https://api.github.com/users/RichardKnop', 'https://github.com/RichardKnop', 'https://api.github.com/users/RichardKnop/followers', 'https://api.github.com/users/RichardKnop/following', 'https://api.github.com/users/RichardKnop/gists', 'https://api.github.com/users/RichardKnop/starred', 'https://api.github.com/users/RichardKnop/repos', 'https://api.github.com/users/RichardKnop/events', 'https://api.github.com/users/RichardKnop/received_events', 0); +INSERT INTO `developer` VALUES (2360224, 'olblak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Olivier Vernin', 'Suse', 'https://www.olblak.com/', 'Belgium', 'me@olblak.com', NULL, 'Infrastructure Tinkerer. \r\n\r\n@updatecli founder', NULL, 0, 0, 86, 132, 0, 0, 0, '2012-09-17T05:36:51Z', '2024-11-01T07:45:14Z', 'https://avatars.githubusercontent.com/u/2360224?v=4', 'https://api.github.com/users/olblak', 'https://github.com/olblak', 'https://api.github.com/users/olblak/followers', 'https://api.github.com/users/olblak/following', 'https://api.github.com/users/olblak/gists', 'https://api.github.com/users/olblak/starred', 'https://api.github.com/users/olblak/repos', 'https://api.github.com/users/olblak/events', 'https://api.github.com/users/olblak/received_events', 0); +INSERT INTO `developer` VALUES (2374718, 'brianmcmichael', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian L. McMichael', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 178, 60, 0, 0, 0, '2012-09-19T00:45:24Z', '2024-10-21T16:55:21Z', 'https://avatars.githubusercontent.com/u/2374718?v=4', 'https://api.github.com/users/brianmcmichael', 'https://github.com/brianmcmichael', 'https://api.github.com/users/brianmcmichael/followers', 'https://api.github.com/users/brianmcmichael/following', 'https://api.github.com/users/brianmcmichael/gists', 'https://api.github.com/users/brianmcmichael/starred', 'https://api.github.com/users/brianmcmichael/repos', 'https://api.github.com/users/brianmcmichael/events', 'https://api.github.com/users/brianmcmichael/received_events', 0); +INSERT INTO `developer` VALUES (2379758, 'wmiller848', 'C', 7.440753868350532, 0, 34, 75, 27, 0, 0, 'William Miller', NULL, 'wcmill.com', 'San Francisco', NULL, NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2012-09-19T17:10:23Z', '2022-10-15T20:08:15Z', 'https://avatars.githubusercontent.com/u/2379758?v=4', 'https://api.github.com/users/wmiller848', 'https://github.com/wmiller848', 'https://api.github.com/users/wmiller848/followers', 'https://api.github.com/users/wmiller848/following', 'https://api.github.com/users/wmiller848/gists', 'https://api.github.com/users/wmiller848/starred', 'https://api.github.com/users/wmiller848/repos', 'https://api.github.com/users/wmiller848/events', 'https://api.github.com/users/wmiller848/received_events', 0); +INSERT INTO `developer` VALUES (2385375, '123lee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lee Adams', 'K2', '', '未知', NULL, 'true', NULL, NULL, 0, 0, 2, 2, 0, 0, 0, '2012-09-20T11:29:53Z', '2020-12-07T02:13:46Z', 'https://avatars.githubusercontent.com/u/2385375?v=4', 'https://api.github.com/users/123lee', 'https://github.com/123lee', 'https://api.github.com/users/123lee/followers', 'https://api.github.com/users/123lee/following', 'https://api.github.com/users/123lee/gists', 'https://api.github.com/users/123lee/starred', 'https://api.github.com/users/123lee/repos', 'https://api.github.com/users/123lee/events', 'https://api.github.com/users/123lee/received_events', 0); +INSERT INTO `developer` VALUES (2388024, 'RhettCreighton', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rhett Creighton', '@RhettCreighton', 'https://rhettcreighton.com', 'San Juan, Puerto Rico', NULL, NULL, NULL, 'Rhett_Creighton', 0, 0, 155, 2, 0, 0, 0, '2012-09-20T18:33:42Z', '2024-09-26T06:03:05Z', 'https://avatars.githubusercontent.com/u/2388024?v=4', 'https://api.github.com/users/RhettCreighton', 'https://github.com/RhettCreighton', 'https://api.github.com/users/RhettCreighton/followers', 'https://api.github.com/users/RhettCreighton/following', 'https://api.github.com/users/RhettCreighton/gists', 'https://api.github.com/users/RhettCreighton/starred', 'https://api.github.com/users/RhettCreighton/repos', 'https://api.github.com/users/RhettCreighton/events', 'https://api.github.com/users/RhettCreighton/received_events', 0); +INSERT INTO `developer` VALUES (2391490, 'blacklotos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gotsman Kirill', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2012-09-21T06:52:13Z', '2024-09-22T10:30:28Z', 'https://avatars.githubusercontent.com/u/2391490?v=4', 'https://api.github.com/users/blacklotos', 'https://github.com/blacklotos', 'https://api.github.com/users/blacklotos/followers', 'https://api.github.com/users/blacklotos/following', 'https://api.github.com/users/blacklotos/gists', 'https://api.github.com/users/blacklotos/starred', 'https://api.github.com/users/blacklotos/repos', 'https://api.github.com/users/blacklotos/events', 'https://api.github.com/users/blacklotos/received_events', 0); +INSERT INTO `developer` VALUES (2411947, 'sreeram-dev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sreeram', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2012-09-24T13:25:04Z', '2024-10-05T10:22:41Z', 'https://avatars.githubusercontent.com/u/2411947?v=4', 'https://api.github.com/users/sreeram-dev', 'https://github.com/sreeram-dev', 'https://api.github.com/users/sreeram-dev/followers', 'https://api.github.com/users/sreeram-dev/following', 'https://api.github.com/users/sreeram-dev/gists', 'https://api.github.com/users/sreeram-dev/starred', 'https://api.github.com/users/sreeram-dev/repos', 'https://api.github.com/users/sreeram-dev/events', 'https://api.github.com/users/sreeram-dev/received_events', 0); +INSERT INTO `developer` VALUES (2427959, 'hectorj', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hector Jusforgues', '@thetreep', 'https://hectorj.net/', 'France', NULL, NULL, NULL, NULL, 0, 0, 32, 15, 0, 0, 0, '2012-09-26T10:56:52Z', '2024-05-01T15:14:17Z', 'https://avatars.githubusercontent.com/u/2427959?v=4', 'https://api.github.com/users/hectorj', 'https://github.com/hectorj', 'https://api.github.com/users/hectorj/followers', 'https://api.github.com/users/hectorj/following', 'https://api.github.com/users/hectorj/gists', 'https://api.github.com/users/hectorj/starred', 'https://api.github.com/users/hectorj/repos', 'https://api.github.com/users/hectorj/events', 'https://api.github.com/users/hectorj/received_events', 0); +INSERT INTO `developer` VALUES (2441317, 'krbalag', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 4, 0, 0, 0, '2012-09-28T00:27:53Z', '2023-09-20T11:22:26Z', 'https://avatars.githubusercontent.com/u/2441317?v=4', 'https://api.github.com/users/krbalag', 'https://github.com/krbalag', 'https://api.github.com/users/krbalag/followers', 'https://api.github.com/users/krbalag/following', 'https://api.github.com/users/krbalag/gists', 'https://api.github.com/users/krbalag/starred', 'https://api.github.com/users/krbalag/repos', 'https://api.github.com/users/krbalag/events', 'https://api.github.com/users/krbalag/received_events', 0); +INSERT INTO `developer` VALUES (2446168, 'aldor007', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcin Kaciuba', NULL, 'https://mkaciuba.com', 'Poland', 'marcin.kaciuba@gmail.com', NULL, NULL, NULL, 0, 0, 41, 50, 0, 0, 0, '2012-09-28T14:53:14Z', '2024-10-10T10:54:13Z', 'https://avatars.githubusercontent.com/u/2446168?v=4', 'https://api.github.com/users/aldor007', 'https://github.com/aldor007', 'https://api.github.com/users/aldor007/followers', 'https://api.github.com/users/aldor007/following', 'https://api.github.com/users/aldor007/gists', 'https://api.github.com/users/aldor007/starred', 'https://api.github.com/users/aldor007/repos', 'https://api.github.com/users/aldor007/events', 'https://api.github.com/users/aldor007/received_events', 0); +INSERT INTO `developer` VALUES (2446460, 'katsew', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yu Kato', NULL, '', 'Tokyo', 'y.katsew@gmail.com', 'true', NULL, 'katsew', 0, 0, 46, 69, 0, 0, 0, '2012-09-28T15:41:25Z', '2024-10-17T07:07:44Z', 'https://avatars.githubusercontent.com/u/2446460?v=4', 'https://api.github.com/users/katsew', 'https://github.com/katsew', 'https://api.github.com/users/katsew/followers', 'https://api.github.com/users/katsew/following', 'https://api.github.com/users/katsew/gists', 'https://api.github.com/users/katsew/starred', 'https://api.github.com/users/katsew/repos', 'https://api.github.com/users/katsew/events', 'https://api.github.com/users/katsew/received_events', 0); +INSERT INTO `developer` VALUES (2465418, 'jasonlewicki', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Lewicki', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 3, 0, 0, 0, '2012-10-01T17:15:02Z', '2024-04-04T15:07:42Z', 'https://avatars.githubusercontent.com/u/2465418?v=4', 'https://api.github.com/users/jasonlewicki', 'https://github.com/jasonlewicki', 'https://api.github.com/users/jasonlewicki/followers', 'https://api.github.com/users/jasonlewicki/following', 'https://api.github.com/users/jasonlewicki/gists', 'https://api.github.com/users/jasonlewicki/starred', 'https://api.github.com/users/jasonlewicki/repos', 'https://api.github.com/users/jasonlewicki/events', 'https://api.github.com/users/jasonlewicki/received_events', 0); +INSERT INTO `developer` VALUES (2481249, 'libsamek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samo Jelovšek', NULL, '', 'Ljubljana, Slovenia', 'samo@jelovsek.net', NULL, NULL, NULL, 0, 0, 4, 14, 0, 0, 0, '2012-10-03T18:46:49Z', '2024-05-29T16:36:58Z', 'https://avatars.githubusercontent.com/u/2481249?v=4', 'https://api.github.com/users/libsamek', 'https://github.com/libsamek', 'https://api.github.com/users/libsamek/followers', 'https://api.github.com/users/libsamek/following', 'https://api.github.com/users/libsamek/gists', 'https://api.github.com/users/libsamek/starred', 'https://api.github.com/users/libsamek/repos', 'https://api.github.com/users/libsamek/events', 'https://api.github.com/users/libsamek/received_events', 0); +INSERT INTO `developer` VALUES (2501773, 'leebrooks0', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2012-10-06T18:32:35Z', '2024-09-03T05:22:00Z', 'https://avatars.githubusercontent.com/u/2501773?v=4', 'https://api.github.com/users/leebrooks0', 'https://github.com/leebrooks0', 'https://api.github.com/users/leebrooks0/followers', 'https://api.github.com/users/leebrooks0/following', 'https://api.github.com/users/leebrooks0/gists', 'https://api.github.com/users/leebrooks0/starred', 'https://api.github.com/users/leebrooks0/repos', 'https://api.github.com/users/leebrooks0/events', 'https://api.github.com/users/leebrooks0/received_events', 0); +INSERT INTO `developer` VALUES (2503903, 'dcalvin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Calvin Weng', 'PingCAP', '', 'Beijing', 'wenghao@pingcap.com', NULL, NULL, NULL, 0, 0, 37, 5, 0, 0, 0, '2012-10-07T05:05:10Z', '2024-10-28T11:22:47Z', 'https://avatars.githubusercontent.com/u/2503903?v=4', 'https://api.github.com/users/dcalvin', 'https://github.com/dcalvin', 'https://api.github.com/users/dcalvin/followers', 'https://api.github.com/users/dcalvin/following', 'https://api.github.com/users/dcalvin/gists', 'https://api.github.com/users/dcalvin/starred', 'https://api.github.com/users/dcalvin/repos', 'https://api.github.com/users/dcalvin/events', 'https://api.github.com/users/dcalvin/received_events', 0); +INSERT INTO `developer` VALUES (2506992, 'fabzzap', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2012-10-07T19:38:25Z', '2024-03-23T09:25:38Z', 'https://avatars.githubusercontent.com/u/2506992?v=4', 'https://api.github.com/users/fabzzap', 'https://github.com/fabzzap', 'https://api.github.com/users/fabzzap/followers', 'https://api.github.com/users/fabzzap/following', 'https://api.github.com/users/fabzzap/gists', 'https://api.github.com/users/fabzzap/starred', 'https://api.github.com/users/fabzzap/repos', 'https://api.github.com/users/fabzzap/events', 'https://api.github.com/users/fabzzap/received_events', 0); +INSERT INTO `developer` VALUES (2534060, 'herpiko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Herpiko Dwi Aguno', '@play3gg @BlankOn', 'http://aguno.xyz', 'Jakarta - Indonesia', 'herpiko@aguno.xyz', 'true', '~', NULL, 0, 0, 148, 53, 0, 0, 0, '2012-10-11T04:46:46Z', '2024-10-31T10:13:15Z', 'https://avatars.githubusercontent.com/u/2534060?v=4', 'https://api.github.com/users/herpiko', 'https://github.com/herpiko', 'https://api.github.com/users/herpiko/followers', 'https://api.github.com/users/herpiko/following', 'https://api.github.com/users/herpiko/gists', 'https://api.github.com/users/herpiko/starred', 'https://api.github.com/users/herpiko/repos', 'https://api.github.com/users/herpiko/events', 'https://api.github.com/users/herpiko/received_events', 0); +INSERT INTO `developer` VALUES (2536001, 'jabhishek87', 'C', 0, 0, 0, 0, 0, 0, 0, 'Abhishek Jaiswal (AJ)', '@Wind-River', 'http://jabhishek87.github.io/', 'Bangalore, India', 'abhishekjaiswal.kol+github@gmail.com', NULL, 'Backend Pythonista & DevOps. \r\nIntermediate Gopher, Life Long Learner\r\n', 'jabhishek87', 0, 0, 33, 35, 0, 0, 0, '2012-10-11T10:12:33Z', '2024-09-11T10:38:15Z', 'https://avatars.githubusercontent.com/u/2536001?v=4', 'https://api.github.com/users/jabhishek87', 'https://github.com/jabhishek87', 'https://api.github.com/users/jabhishek87/followers', 'https://api.github.com/users/jabhishek87/following', 'https://api.github.com/users/jabhishek87/gists', 'https://api.github.com/users/jabhishek87/starred', 'https://api.github.com/users/jabhishek87/repos', 'https://api.github.com/users/jabhishek87/events', 'https://api.github.com/users/jabhishek87/received_events', 0); +INSERT INTO `developer` VALUES (2559390, 'Michagogo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 3, 0, 0, 0, '2012-10-14T21:29:35Z', '2024-09-27T08:33:05Z', 'https://avatars.githubusercontent.com/u/2559390?v=4', 'https://api.github.com/users/Michagogo', 'https://github.com/Michagogo', 'https://api.github.com/users/Michagogo/followers', 'https://api.github.com/users/Michagogo/following', 'https://api.github.com/users/Michagogo/gists', 'https://api.github.com/users/Michagogo/starred', 'https://api.github.com/users/Michagogo/repos', 'https://api.github.com/users/Michagogo/events', 'https://api.github.com/users/Michagogo/received_events', 0); +INSERT INTO `developer` VALUES (2568217, 'jcalvinowens', 'C', 0, 0, 0, 0, 0, 0, 0, 'Calvin Owens', NULL, 'wbinvd.org', 'Redwood City, CA', 'calvin@wbinvd.org', NULL, NULL, NULL, 0, 0, 41, 1, 0, 0, 0, '2012-10-15T23:17:47Z', '2024-10-06T23:13:09Z', 'https://avatars.githubusercontent.com/u/2568217?v=4', 'https://api.github.com/users/jcalvinowens', 'https://github.com/jcalvinowens', 'https://api.github.com/users/jcalvinowens/followers', 'https://api.github.com/users/jcalvinowens/following', 'https://api.github.com/users/jcalvinowens/gists', 'https://api.github.com/users/jcalvinowens/starred', 'https://api.github.com/users/jcalvinowens/repos', 'https://api.github.com/users/jcalvinowens/events', 'https://api.github.com/users/jcalvinowens/received_events', 0); +INSERT INTO `developer` VALUES (2569494, 'Alex-van-der-Peet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex van der Peet', NULL, '', 'Netherlands', 'alex.van.der.peet@gmail.com', 'true', 'Code writer who gets a kick out of data modelling, implementing business logic and delivering maintainable code.', NULL, 0, 0, 38, 9, 0, 0, 0, '2012-10-16T03:25:15Z', '2024-09-07T07:23:34Z', 'https://avatars.githubusercontent.com/u/2569494?v=4', 'https://api.github.com/users/Alex-van-der-Peet', 'https://github.com/Alex-van-der-Peet', 'https://api.github.com/users/Alex-van-der-Peet/followers', 'https://api.github.com/users/Alex-van-der-Peet/following', 'https://api.github.com/users/Alex-van-der-Peet/gists', 'https://api.github.com/users/Alex-van-der-Peet/starred', 'https://api.github.com/users/Alex-van-der-Peet/repos', 'https://api.github.com/users/Alex-van-der-Peet/events', 'https://api.github.com/users/Alex-van-der-Peet/received_events', 0); +INSERT INTO `developer` VALUES (2577368, 'hacker65536', 'C', 0, 0, 0, 0, 0, 0, 0, 'hacker65536', NULL, '', '未知', 's.hacker65536@gmail.com', NULL, NULL, NULL, 0, 0, 9, 4, 0, 0, 0, '2012-10-17T02:22:16Z', '2024-10-18T04:00:14Z', 'https://avatars.githubusercontent.com/u/2577368?v=4', 'https://api.github.com/users/hacker65536', 'https://github.com/hacker65536', 'https://api.github.com/users/hacker65536/followers', 'https://api.github.com/users/hacker65536/following', 'https://api.github.com/users/hacker65536/gists', 'https://api.github.com/users/hacker65536/starred', 'https://api.github.com/users/hacker65536/repos', 'https://api.github.com/users/hacker65536/events', 'https://api.github.com/users/hacker65536/received_events', 0); +INSERT INTO `developer` VALUES (2582071, 'jonasnick', 'C', 2.6097106789304636, 0, 0, 0, 0, 0, 0, 'Jonas Nick', NULL, 'https://nickler.ninja', '未知', NULL, NULL, 'GPG 36C7 1A37 C9D9 88BD E825 08D9 B1A7 0E4F 8DCD 0366', NULL, 0, 0, 437, 203, 0, 0, 0, '2012-10-17T15:51:05Z', '2024-06-30T19:37:30Z', 'https://avatars.githubusercontent.com/u/2582071?v=4', 'https://api.github.com/users/jonasnick', 'https://github.com/jonasnick', 'https://api.github.com/users/jonasnick/followers', 'https://api.github.com/users/jonasnick/following', 'https://api.github.com/users/jonasnick/gists', 'https://api.github.com/users/jonasnick/starred', 'https://api.github.com/users/jonasnick/repos', 'https://api.github.com/users/jonasnick/events', 'https://api.github.com/users/jonasnick/received_events', 0); +INSERT INTO `developer` VALUES (2601311, 'destel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Viktor Nikolaiev', '@readdle', '', 'Odessa', NULL, NULL, 'Readdle / Spark / Backend', NULL, 0, 0, 17, 7, 0, 0, 0, '2012-10-19T17:41:14Z', '2024-06-02T15:13:55Z', 'https://avatars.githubusercontent.com/u/2601311?v=4', 'https://api.github.com/users/destel', 'https://github.com/destel', 'https://api.github.com/users/destel/followers', 'https://api.github.com/users/destel/following', 'https://api.github.com/users/destel/gists', 'https://api.github.com/users/destel/starred', 'https://api.github.com/users/destel/repos', 'https://api.github.com/users/destel/events', 'https://api.github.com/users/destel/received_events', 0); +INSERT INTO `developer` VALUES (2611065, 'domenipavec', 'C', 0, 0, 0, 0, 0, 0, 0, 'Domen Ipavec', NULL, 'http://domen.ipavec.net', '未知', 'domen.ipavec@gmail.com', 'true', NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2012-10-21T07:54:03Z', '2024-10-12T15:30:08Z', 'https://avatars.githubusercontent.com/u/2611065?v=4', 'https://api.github.com/users/domenipavec', 'https://github.com/domenipavec', 'https://api.github.com/users/domenipavec/followers', 'https://api.github.com/users/domenipavec/following', 'https://api.github.com/users/domenipavec/gists', 'https://api.github.com/users/domenipavec/starred', 'https://api.github.com/users/domenipavec/repos', 'https://api.github.com/users/domenipavec/events', 'https://api.github.com/users/domenipavec/received_events', 0); +INSERT INTO `developer` VALUES (2632829, 'jduepmeier', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Düpmeier', '@dm-drogeriemarkt ', '', 'Karlsruhe, Germany', 'j.duepmeier@googlemail.com', NULL, NULL, NULL, 0, 0, 17, 7, 0, 0, 0, '2012-10-23T15:32:29Z', '2024-11-02T08:45:44Z', 'https://avatars.githubusercontent.com/u/2632829?v=4', 'https://api.github.com/users/jduepmeier', 'https://github.com/jduepmeier', 'https://api.github.com/users/jduepmeier/followers', 'https://api.github.com/users/jduepmeier/following', 'https://api.github.com/users/jduepmeier/gists', 'https://api.github.com/users/jduepmeier/starred', 'https://api.github.com/users/jduepmeier/repos', 'https://api.github.com/users/jduepmeier/events', 'https://api.github.com/users/jduepmeier/received_events', 0); +INSERT INTO `developer` VALUES (2633065, 'fanatid', 'C', 1.5465022290126766, 0, 0, 0, 0, 0, 0, 'Kirill Fomichev', '@rpcpool', '', '未知', NULL, 'true', 'Do you believe in crypto?\r\nPrev @vectordotdev, @ExodusMovement.', NULL, 0, 0, 375, 126, 0, 0, 0, '2012-10-23T15:58:55Z', '2024-10-31T06:08:30Z', 'https://avatars.githubusercontent.com/u/2633065?v=4', 'https://api.github.com/users/fanatid', 'https://github.com/fanatid', 'https://api.github.com/users/fanatid/followers', 'https://api.github.com/users/fanatid/following', 'https://api.github.com/users/fanatid/gists', 'https://api.github.com/users/fanatid/starred', 'https://api.github.com/users/fanatid/repos', 'https://api.github.com/users/fanatid/events', 'https://api.github.com/users/fanatid/received_events', 0); +INSERT INTO `developer` VALUES (2662497, 'Wadeck', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wadeck Follonier', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 19, 4, 0, 0, 0, '2012-10-27T08:01:54Z', '2024-05-20T19:11:47Z', 'https://avatars.githubusercontent.com/u/2662497?v=4', 'https://api.github.com/users/Wadeck', 'https://github.com/Wadeck', 'https://api.github.com/users/Wadeck/followers', 'https://api.github.com/users/Wadeck/following', 'https://api.github.com/users/Wadeck/gists', 'https://api.github.com/users/Wadeck/starred', 'https://api.github.com/users/Wadeck/repos', 'https://api.github.com/users/Wadeck/events', 'https://api.github.com/users/Wadeck/received_events', 0); +INSERT INTO `developer` VALUES (2666021, 'mcth', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2012-10-27T22:29:56Z', '2016-02-27T04:15:51Z', 'https://avatars.githubusercontent.com/u/2666021?v=4', 'https://api.github.com/users/mcth', 'https://github.com/mcth', 'https://api.github.com/users/mcth/followers', 'https://api.github.com/users/mcth/following', 'https://api.github.com/users/mcth/gists', 'https://api.github.com/users/mcth/starred', 'https://api.github.com/users/mcth/repos', 'https://api.github.com/users/mcth/events', 'https://api.github.com/users/mcth/received_events', 0); +INSERT INTO `developer` VALUES (2698502, 'StefanFl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Fleckenstein', 'MaibornWolff GmbH', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2012-11-01T11:57:52Z', '2024-09-27T19:59:51Z', 'https://avatars.githubusercontent.com/u/2698502?v=4', 'https://api.github.com/users/StefanFl', 'https://github.com/StefanFl', 'https://api.github.com/users/StefanFl/followers', 'https://api.github.com/users/StefanFl/following', 'https://api.github.com/users/StefanFl/gists', 'https://api.github.com/users/StefanFl/starred', 'https://api.github.com/users/StefanFl/repos', 'https://api.github.com/users/StefanFl/events', 'https://api.github.com/users/StefanFl/received_events', 0); +INSERT INTO `developer` VALUES (2703642, 'vladwing', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vlad Wing', NULL, '', 'London, UK', NULL, 'true', NULL, NULL, 0, 0, 4, 11, 0, 0, 0, '2012-11-02T01:53:18Z', '2024-10-31T09:54:49Z', 'https://avatars.githubusercontent.com/u/2703642?v=4', 'https://api.github.com/users/vladwing', 'https://github.com/vladwing', 'https://api.github.com/users/vladwing/followers', 'https://api.github.com/users/vladwing/following', 'https://api.github.com/users/vladwing/gists', 'https://api.github.com/users/vladwing/starred', 'https://api.github.com/users/vladwing/repos', 'https://api.github.com/users/vladwing/events', 'https://api.github.com/users/vladwing/received_events', 0); +INSERT INTO `developer` VALUES (2730310, 'emil2k', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emil Davtyan', 'Davtyan Technologies AB', 'https://davtyan.tech', 'Skåne, Sweden', 'emil@davtyan.tech', NULL, 'Since 2005, my work spans cloud engineering, data integration, infrastructure automation, and app development.', NULL, 0, 0, 25, 28, 0, 0, 0, '2012-11-05T22:30:04Z', '2024-10-12T08:00:22Z', 'https://avatars.githubusercontent.com/u/2730310?v=4', 'https://api.github.com/users/emil2k', 'https://github.com/emil2k', 'https://api.github.com/users/emil2k/followers', 'https://api.github.com/users/emil2k/following', 'https://api.github.com/users/emil2k/gists', 'https://api.github.com/users/emil2k/starred', 'https://api.github.com/users/emil2k/repos', 'https://api.github.com/users/emil2k/events', 'https://api.github.com/users/emil2k/received_events', 0); +INSERT INTO `developer` VALUES (2760734, 'spiffyjr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kyle Spraggs', NULL, '', 'Missouri, USA', NULL, NULL, NULL, NULL, 0, 0, 62, 1, 0, 0, 0, '2012-11-09T17:46:52Z', '2024-07-13T13:36:13Z', 'https://avatars.githubusercontent.com/u/2760734?v=4', 'https://api.github.com/users/spiffyjr', 'https://github.com/spiffyjr', 'https://api.github.com/users/spiffyjr/followers', 'https://api.github.com/users/spiffyjr/following', 'https://api.github.com/users/spiffyjr/gists', 'https://api.github.com/users/spiffyjr/starred', 'https://api.github.com/users/spiffyjr/repos', 'https://api.github.com/users/spiffyjr/events', 'https://api.github.com/users/spiffyjr/received_events', 0); +INSERT INTO `developer` VALUES (2772755, 'xabufr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Loubiou', NULL, '', 'Bordeaux, France', NULL, NULL, NULL, NULL, 0, 0, 15, 13, 0, 0, 0, '2012-11-11T17:56:58Z', '2024-08-21T08:49:31Z', 'https://avatars.githubusercontent.com/u/2772755?v=4', 'https://api.github.com/users/xabufr', 'https://github.com/xabufr', 'https://api.github.com/users/xabufr/followers', 'https://api.github.com/users/xabufr/following', 'https://api.github.com/users/xabufr/gists', 'https://api.github.com/users/xabufr/starred', 'https://api.github.com/users/xabufr/repos', 'https://api.github.com/users/xabufr/events', 'https://api.github.com/users/xabufr/received_events', 0); +INSERT INTO `developer` VALUES (2778741, 'fredleger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frederic Leger', 'webofmars', 'http://webofmars.com/', 'Marseille, France', NULL, 'true', 'Born & grew up in Marseille among other places, i\'m now working as DevOps & try to learn more Ninja Skills every day.\r\nCurrently working as indep in @webofmars ', 'webofmars', 0, 0, 27, 105, 0, 0, 0, '2012-11-12T14:16:53Z', '2024-10-26T18:14:13Z', 'https://avatars.githubusercontent.com/u/2778741?v=4', 'https://api.github.com/users/fredleger', 'https://github.com/fredleger', 'https://api.github.com/users/fredleger/followers', 'https://api.github.com/users/fredleger/following', 'https://api.github.com/users/fredleger/gists', 'https://api.github.com/users/fredleger/starred', 'https://api.github.com/users/fredleger/repos', 'https://api.github.com/users/fredleger/events', 'https://api.github.com/users/fredleger/received_events', 0); +INSERT INTO `developer` VALUES (2814559, 'cozz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'cozzlovan@yahoo.com', NULL, NULL, NULL, 0, 0, 25, 0, 0, 0, 0, '2012-11-16T14:33:45Z', '2017-10-19T23:25:58Z', 'https://avatars.githubusercontent.com/u/2814559?v=4', 'https://api.github.com/users/cozz', 'https://github.com/cozz', 'https://api.github.com/users/cozz/followers', 'https://api.github.com/users/cozz/following', 'https://api.github.com/users/cozz/gists', 'https://api.github.com/users/cozz/starred', 'https://api.github.com/users/cozz/repos', 'https://api.github.com/users/cozz/events', 'https://api.github.com/users/cozz/received_events', 0); +INSERT INTO `developer` VALUES (2834976, 'lukem512', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke', NULL, 'lukemitchell.co', 'UK', NULL, NULL, 'Cryptocurrency Consultant, Freelance Website Developer and former Nomad Traveller', NULL, 0, 0, 67, 51, 0, 0, 0, '2012-11-19T13:54:51Z', '2024-08-19T17:32:10Z', 'https://avatars.githubusercontent.com/u/2834976?v=4', 'https://api.github.com/users/lukem512', 'https://github.com/lukem512', 'https://api.github.com/users/lukem512/followers', 'https://api.github.com/users/lukem512/following', 'https://api.github.com/users/lukem512/gists', 'https://api.github.com/users/lukem512/starred', 'https://api.github.com/users/lukem512/repos', 'https://api.github.com/users/lukem512/events', 'https://api.github.com/users/lukem512/received_events', 0); +INSERT INTO `developer` VALUES (2866757, 'moberemk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark Oberemk', NULL, 'http://moberemk.com', 'Canada', 'me@moberemk.com', NULL, NULL, NULL, 0, 0, 10, 10, 0, 0, 0, '2012-11-22T23:05:27Z', '2024-10-11T15:19:06Z', 'https://avatars.githubusercontent.com/u/2866757?v=4', 'https://api.github.com/users/moberemk', 'https://github.com/moberemk', 'https://api.github.com/users/moberemk/followers', 'https://api.github.com/users/moberemk/following', 'https://api.github.com/users/moberemk/gists', 'https://api.github.com/users/moberemk/starred', 'https://api.github.com/users/moberemk/repos', 'https://api.github.com/users/moberemk/events', 'https://api.github.com/users/moberemk/received_events', 0); +INSERT INTO `developer` VALUES (2904692, 'michaelgibson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michael Gibson', NULL, 'https://www.linkedin.com/in/michaeltgibson', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2012-11-27T18:46:20Z', '2024-10-28T17:20:12Z', 'https://avatars.githubusercontent.com/u/2904692?v=4', 'https://api.github.com/users/michaelgibson', 'https://github.com/michaelgibson', 'https://api.github.com/users/michaelgibson/followers', 'https://api.github.com/users/michaelgibson/following', 'https://api.github.com/users/michaelgibson/gists', 'https://api.github.com/users/michaelgibson/starred', 'https://api.github.com/users/michaelgibson/repos', 'https://api.github.com/users/michaelgibson/events', 'https://api.github.com/users/michaelgibson/received_events', 0); +INSERT INTO `developer` VALUES (2912732, 'gecube', 'C', 0, 0, 0, 0, 0, 0, 0, 'George Gaál', NULL, '', '未知', 'gb12335@gmail.com', 'true', 'Serial DevOops', NULL, 0, 0, 48, 23, 0, 0, 0, '2012-11-28T14:54:23Z', '2024-10-21T05:03:49Z', 'https://avatars.githubusercontent.com/u/2912732?v=4', 'https://api.github.com/users/gecube', 'https://github.com/gecube', 'https://api.github.com/users/gecube/followers', 'https://api.github.com/users/gecube/following', 'https://api.github.com/users/gecube/gists', 'https://api.github.com/users/gecube/starred', 'https://api.github.com/users/gecube/repos', 'https://api.github.com/users/gecube/events', 'https://api.github.com/users/gecube/received_events', 0); +INSERT INTO `developer` VALUES (2931991, 'reixd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rei', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2012-11-30T15:36:47Z', '2024-09-02T05:26:43Z', 'https://avatars.githubusercontent.com/u/2931991?v=4', 'https://api.github.com/users/reixd', 'https://github.com/reixd', 'https://api.github.com/users/reixd/followers', 'https://api.github.com/users/reixd/following', 'https://api.github.com/users/reixd/gists', 'https://api.github.com/users/reixd/starred', 'https://api.github.com/users/reixd/repos', 'https://api.github.com/users/reixd/events', 'https://api.github.com/users/reixd/received_events', 0); +INSERT INTO `developer` VALUES (2936501, 'hori-ryota', 'C', 0, 0, 0, 0, 0, 0, 0, 'hori-ryota', NULL, 'https://hori-ryota.com', '未知', NULL, NULL, NULL, 'hori_ryota', 0, 0, 49, 31, 0, 0, 0, '2012-12-01T05:05:31Z', '2024-10-27T14:28:48Z', 'https://avatars.githubusercontent.com/u/2936501?v=4', 'https://api.github.com/users/hori-ryota', 'https://github.com/hori-ryota', 'https://api.github.com/users/hori-ryota/followers', 'https://api.github.com/users/hori-ryota/following', 'https://api.github.com/users/hori-ryota/gists', 'https://api.github.com/users/hori-ryota/starred', 'https://api.github.com/users/hori-ryota/repos', 'https://api.github.com/users/hori-ryota/events', 'https://api.github.com/users/hori-ryota/received_events', 0); +INSERT INTO `developer` VALUES (2966862, 'gurnec', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christopher Gurnee', NULL, '', 'United States', NULL, NULL, NULL, NULL, 0, 0, 274, 0, 0, 0, 0, '2012-12-05T00:56:43Z', '2024-10-31T00:55:45Z', 'https://avatars.githubusercontent.com/u/2966862?v=4', 'https://api.github.com/users/gurnec', 'https://github.com/gurnec', 'https://api.github.com/users/gurnec/followers', 'https://api.github.com/users/gurnec/following', 'https://api.github.com/users/gurnec/gists', 'https://api.github.com/users/gurnec/starred', 'https://api.github.com/users/gurnec/repos', 'https://api.github.com/users/gurnec/events', 'https://api.github.com/users/gurnec/received_events', 0); +INSERT INTO `developer` VALUES (3000654, 'sharky112065', 'C', 0, 0, 0, 0, 0, 0, 0, 'sharky112065', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2012-12-09T10:22:29Z', '2021-04-27T06:25:37Z', 'https://avatars.githubusercontent.com/u/3000654?v=4', 'https://api.github.com/users/sharky112065', 'https://github.com/sharky112065', 'https://api.github.com/users/sharky112065/followers', 'https://api.github.com/users/sharky112065/following', 'https://api.github.com/users/sharky112065/gists', 'https://api.github.com/users/sharky112065/starred', 'https://api.github.com/users/sharky112065/repos', 'https://api.github.com/users/sharky112065/events', 'https://api.github.com/users/sharky112065/received_events', 0); +INSERT INTO `developer` VALUES (3017019, 'adamar', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Melbourne', NULL, NULL, '---', NULL, 0, 0, 9, 0, 0, 0, 0, '2012-12-11T14:22:21Z', '2024-10-08T04:09:14Z', 'https://avatars.githubusercontent.com/u/3017019?v=4', 'https://api.github.com/users/adamar', 'https://github.com/adamar', 'https://api.github.com/users/adamar/followers', 'https://api.github.com/users/adamar/following', 'https://api.github.com/users/adamar/gists', 'https://api.github.com/users/adamar/starred', 'https://api.github.com/users/adamar/repos', 'https://api.github.com/users/adamar/events', 'https://api.github.com/users/adamar/received_events', 0); +INSERT INTO `developer` VALUES (3020646, 'NicolasDorier', 'C+', 13.310389271651424, 0, 0, 0, 0, 0, 0, 'Nicolas Dorier', 'DG Lab', 'https://blog.nicolas-dorier.com/', 'Tokyo', NULL, NULL, NULL, 'NicolasDorier', 0, 0, 1061, 0, 0, 0, 0, '2012-12-12T00:29:24Z', '2024-09-12T23:51:17Z', 'https://avatars.githubusercontent.com/u/3020646?v=4', 'https://api.github.com/users/NicolasDorier', 'https://github.com/NicolasDorier', 'https://api.github.com/users/NicolasDorier/followers', 'https://api.github.com/users/NicolasDorier/following', 'https://api.github.com/users/NicolasDorier/gists', 'https://api.github.com/users/NicolasDorier/starred', 'https://api.github.com/users/NicolasDorier/repos', 'https://api.github.com/users/NicolasDorier/events', 'https://api.github.com/users/NicolasDorier/received_events', 0); +INSERT INTO `developer` VALUES (3026297, 'Toasterson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Till Wegmüller', '@OpenFlowLabs', 'https://wegmueller.it', 'Niederweningen, Switzerland', 'toasterson@gmail.com', 'true', 'Love OpenSource and the Community. Maintainer for the OpenIndiana Project.', 'TheRealToaster', 0, 0, 51, 33, 0, 0, 0, '2012-12-12T15:13:30Z', '2024-11-04T09:15:11Z', 'https://avatars.githubusercontent.com/u/3026297?v=4', 'https://api.github.com/users/Toasterson', 'https://github.com/Toasterson', 'https://api.github.com/users/Toasterson/followers', 'https://api.github.com/users/Toasterson/following', 'https://api.github.com/users/Toasterson/gists', 'https://api.github.com/users/Toasterson/starred', 'https://api.github.com/users/Toasterson/repos', 'https://api.github.com/users/Toasterson/events', 'https://api.github.com/users/Toasterson/received_events', 0); +INSERT INTO `developer` VALUES (3060199, 'jesserockz', 'C', 0.7233731064956793, 0, 0, 0, 0, 0, 0, 'Jesse Hills', '@NabuCasa ', '', 'Wellington, New Zealand', NULL, NULL, 'Developer @NabuCasa working on @esphome ', NULL, 0, 0, 327, 10, 0, 0, 0, '2012-12-17T05:10:52Z', '2024-06-26T22:28:41Z', 'https://avatars.githubusercontent.com/u/3060199?v=4', 'https://api.github.com/users/jesserockz', 'https://github.com/jesserockz', 'https://api.github.com/users/jesserockz/followers', 'https://api.github.com/users/jesserockz/following', 'https://api.github.com/users/jesserockz/gists', 'https://api.github.com/users/jesserockz/starred', 'https://api.github.com/users/jesserockz/repos', 'https://api.github.com/users/jesserockz/events', 'https://api.github.com/users/jesserockz/received_events', 0); +INSERT INTO `developer` VALUES (3073746, 'lombartec', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carlos Lombarte', NULL, '', 'Barcelona', NULL, NULL, 'Backend Developer, love to try new stuff', 'lombi_', 0, 0, 35, 30, 0, 0, 0, '2012-12-18T16:40:43Z', '2024-08-03T15:25:44Z', 'https://avatars.githubusercontent.com/u/3073746?v=4', 'https://api.github.com/users/lombartec', 'https://github.com/lombartec', 'https://api.github.com/users/lombartec/followers', 'https://api.github.com/users/lombartec/following', 'https://api.github.com/users/lombartec/gists', 'https://api.github.com/users/lombartec/starred', 'https://api.github.com/users/lombartec/repos', 'https://api.github.com/users/lombartec/events', 'https://api.github.com/users/lombartec/received_events', 0); +INSERT INTO `developer` VALUES (3093183, 'chris-crone', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Crone', '@docker', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 108, 1, 0, 0, 0, '2012-12-20T21:39:26Z', '2024-08-20T18:18:47Z', 'https://avatars.githubusercontent.com/u/3093183?v=4', 'https://api.github.com/users/chris-crone', 'https://github.com/chris-crone', 'https://api.github.com/users/chris-crone/followers', 'https://api.github.com/users/chris-crone/following', 'https://api.github.com/users/chris-crone/gists', 'https://api.github.com/users/chris-crone/starred', 'https://api.github.com/users/chris-crone/repos', 'https://api.github.com/users/chris-crone/events', 'https://api.github.com/users/chris-crone/received_events', 0); +INSERT INTO `developer` VALUES (3154357, 'stckwok', 'C', 0, 0, 0, 0, 0, 0, 0, 'stckwok', NULL, '', 'Vancouver, B.C. Canada', 'stckwok@ece.ubc.ca', NULL, 'Software development, integration, and testing', NULL, 0, 0, 1, 4, 0, 0, 0, '2012-12-30T16:48:47Z', '2024-10-06T11:24:22Z', 'https://avatars.githubusercontent.com/u/3154357?v=4', 'https://api.github.com/users/stckwok', 'https://github.com/stckwok', 'https://api.github.com/users/stckwok/followers', 'https://api.github.com/users/stckwok/following', 'https://api.github.com/users/stckwok/gists', 'https://api.github.com/users/stckwok/starred', 'https://api.github.com/users/stckwok/repos', 'https://api.github.com/users/stckwok/events', 'https://api.github.com/users/stckwok/received_events', 0); +INSERT INTO `developer` VALUES (3223098, 'feng-tao', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tao Feng', '@databricks @amundsen-io @apache ', 'https://www.linkedin.com/in/tao-f-17195814/', 'San Francisco', 'tfeng@apache.org', NULL, 'Engineering Leadership @databricks on Data Catalog && Data Lineage | @apache Airflow PMC and committer | @amundsen-io co-creator ', 'photoft45', 0, 0, 251, 240, 0, 0, 0, '2013-01-09T06:45:49Z', '2024-10-03T17:53:03Z', 'https://avatars.githubusercontent.com/u/3223098?v=4', 'https://api.github.com/users/feng-tao', 'https://github.com/feng-tao', 'https://api.github.com/users/feng-tao/followers', 'https://api.github.com/users/feng-tao/following', 'https://api.github.com/users/feng-tao/gists', 'https://api.github.com/users/feng-tao/starred', 'https://api.github.com/users/feng-tao/repos', 'https://api.github.com/users/feng-tao/events', 'https://api.github.com/users/feng-tao/received_events', 0); +INSERT INTO `developer` VALUES (3233181, 'delfer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Chumakov', NULL, 'http://delfer.ru', 'Russia, Moscow', 'i@delfer.ru', 'true', 'https://t.me/mrdelfer', NULL, 0, 0, 9, 1, 0, 0, 0, '2013-01-10T08:11:07Z', '2024-08-04T13:43:28Z', 'https://avatars.githubusercontent.com/u/3233181?v=4', 'https://api.github.com/users/delfer', 'https://github.com/delfer', 'https://api.github.com/users/delfer/followers', 'https://api.github.com/users/delfer/following', 'https://api.github.com/users/delfer/gists', 'https://api.github.com/users/delfer/starred', 'https://api.github.com/users/delfer/repos', 'https://api.github.com/users/delfer/events', 'https://api.github.com/users/delfer/received_events', 0); +INSERT INTO `developer` VALUES (3250776, 'tonglil', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tony Li', '@nytimes', '', 'Vancouver', NULL, 'true', 'I love doing lines of code.', NULL, 0, 0, 92, 46, 0, 0, 0, '2013-01-12T08:41:52Z', '2024-10-21T17:34:24Z', 'https://avatars.githubusercontent.com/u/3250776?v=4', 'https://api.github.com/users/tonglil', 'https://github.com/tonglil', 'https://api.github.com/users/tonglil/followers', 'https://api.github.com/users/tonglil/following', 'https://api.github.com/users/tonglil/gists', 'https://api.github.com/users/tonglil/starred', 'https://api.github.com/users/tonglil/repos', 'https://api.github.com/users/tonglil/events', 'https://api.github.com/users/tonglil/received_events', 0); +INSERT INTO `developer` VALUES (3251373, 'mahjonp', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@PingCAP', '', 'HangZhou', 'junpeng.man@gmail.com', NULL, NULL, NULL, 0, 0, 57, 86, 0, 0, 0, '2013-01-12T11:19:34Z', '2024-09-24T04:04:20Z', 'https://avatars.githubusercontent.com/u/3251373?v=4', 'https://api.github.com/users/mahjonp', 'https://github.com/mahjonp', 'https://api.github.com/users/mahjonp/followers', 'https://api.github.com/users/mahjonp/following', 'https://api.github.com/users/mahjonp/gists', 'https://api.github.com/users/mahjonp/starred', 'https://api.github.com/users/mahjonp/repos', 'https://api.github.com/users/mahjonp/events', 'https://api.github.com/users/mahjonp/received_events', 0); +INSERT INTO `developer` VALUES (3265455, 'msvticket', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mårten Svantesson', 'Ticket Privatresor', '', 'Stockholm', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2013-01-14T13:51:29Z', '2024-10-24T21:02:03Z', 'https://avatars.githubusercontent.com/u/3265455?v=4', 'https://api.github.com/users/msvticket', 'https://github.com/msvticket', 'https://api.github.com/users/msvticket/followers', 'https://api.github.com/users/msvticket/following', 'https://api.github.com/users/msvticket/gists', 'https://api.github.com/users/msvticket/starred', 'https://api.github.com/users/msvticket/repos', 'https://api.github.com/users/msvticket/events', 'https://api.github.com/users/msvticket/received_events', 0); +INSERT INTO `developer` VALUES (3269297, 'HarelM', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harel M', '@IsraelHikingMap ', '', '未知', NULL, NULL, 'Software group leader, architect and code enthusiastic.', NULL, 0, 0, 114, 0, 0, 0, 0, '2013-01-14T21:37:06Z', '2024-09-14T14:22:02Z', 'https://avatars.githubusercontent.com/u/3269297?v=4', 'https://api.github.com/users/HarelM', 'https://github.com/HarelM', 'https://api.github.com/users/HarelM/followers', 'https://api.github.com/users/HarelM/following', 'https://api.github.com/users/HarelM/gists', 'https://api.github.com/users/HarelM/starred', 'https://api.github.com/users/HarelM/repos', 'https://api.github.com/users/HarelM/events', 'https://api.github.com/users/HarelM/received_events', 0); +INSERT INTO `developer` VALUES (3298471, 'bharghav9', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vijay Bheemineni', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2013-01-17T17:44:12Z', '2016-05-25T18:11:53Z', 'https://avatars.githubusercontent.com/u/3298471?v=4', 'https://api.github.com/users/bharghav9', 'https://github.com/bharghav9', 'https://api.github.com/users/bharghav9/followers', 'https://api.github.com/users/bharghav9/following', 'https://api.github.com/users/bharghav9/gists', 'https://api.github.com/users/bharghav9/starred', 'https://api.github.com/users/bharghav9/repos', 'https://api.github.com/users/bharghav9/events', 'https://api.github.com/users/bharghav9/received_events', 0); +INSERT INTO `developer` VALUES (3298484, 'jameshilliard', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Hilliard', NULL, '', '未知', 'james.hilliard1@gmail.com', NULL, NULL, NULL, 0, 0, 149, 2, 0, 0, 0, '2013-01-17T17:47:10Z', '2024-10-23T01:38:26Z', 'https://avatars.githubusercontent.com/u/3298484?v=4', 'https://api.github.com/users/jameshilliard', 'https://github.com/jameshilliard', 'https://api.github.com/users/jameshilliard/followers', 'https://api.github.com/users/jameshilliard/following', 'https://api.github.com/users/jameshilliard/gists', 'https://api.github.com/users/jameshilliard/starred', 'https://api.github.com/users/jameshilliard/repos', 'https://api.github.com/users/jameshilliard/events', 'https://api.github.com/users/jameshilliard/received_events', 0); +INSERT INTO `developer` VALUES (3308193, 'dajohi', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Hill', NULL, '', 'USA', NULL, NULL, NULL, NULL, 0, 0, 176, 19, 0, 0, 0, '2013-01-18T17:16:43Z', '2024-10-11T14:24:46Z', 'https://avatars.githubusercontent.com/u/3308193?v=4', 'https://api.github.com/users/dajohi', 'https://github.com/dajohi', 'https://api.github.com/users/dajohi/followers', 'https://api.github.com/users/dajohi/following', 'https://api.github.com/users/dajohi/gists', 'https://api.github.com/users/dajohi/starred', 'https://api.github.com/users/dajohi/repos', 'https://api.github.com/users/dajohi/events', 'https://api.github.com/users/dajohi/received_events', 0); +INSERT INTO `developer` VALUES (3323585, 'Phraust', 'C', 0, 0, 0, 0, 0, 0, 0, 'Phraust', 'Phraust, Co.', '', 'Henderson, NV', 'yourstruly@phraust.com', NULL, 'Mostly harmless...', NULL, 0, 0, 1, 1, 0, 0, 0, '2013-01-20T22:33:06Z', '2023-10-27T19:10:03Z', 'https://avatars.githubusercontent.com/u/3323585?v=4', 'https://api.github.com/users/Phraust', 'https://github.com/Phraust', 'https://api.github.com/users/Phraust/followers', 'https://api.github.com/users/Phraust/following', 'https://api.github.com/users/Phraust/gists', 'https://api.github.com/users/Phraust/starred', 'https://api.github.com/users/Phraust/repos', 'https://api.github.com/users/Phraust/events', 'https://api.github.com/users/Phraust/received_events', 0); +INSERT INTO `developer` VALUES (3335446, 'jayste', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2013-01-22T04:47:08Z', '2024-09-10T08:37:20Z', 'https://avatars.githubusercontent.com/u/3335446?v=4', 'https://api.github.com/users/jayste', 'https://github.com/jayste', 'https://api.github.com/users/jayste/followers', 'https://api.github.com/users/jayste/following', 'https://api.github.com/users/jayste/gists', 'https://api.github.com/users/jayste/starred', 'https://api.github.com/users/jayste/repos', 'https://api.github.com/users/jayste/events', 'https://api.github.com/users/jayste/received_events', 0); +INSERT INTO `developer` VALUES (3340262, 'tlvenn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Christian Meunier', NULL, '', 'Hong Kong', 'chris@magelo.com', NULL, NULL, 'tlvenn', 0, 0, 26, 28, 0, 0, 0, '2013-01-22T15:00:53Z', '2024-10-26T15:23:26Z', 'https://avatars.githubusercontent.com/u/3340262?v=4', 'https://api.github.com/users/tlvenn', 'https://github.com/tlvenn', 'https://api.github.com/users/tlvenn/followers', 'https://api.github.com/users/tlvenn/following', 'https://api.github.com/users/tlvenn/gists', 'https://api.github.com/users/tlvenn/starred', 'https://api.github.com/users/tlvenn/repos', 'https://api.github.com/users/tlvenn/events', 'https://api.github.com/users/tlvenn/received_events', 0); +INSERT INTO `developer` VALUES (3345293, 'silentred', 'C', 7.916598877323926, 0, 0, 0, 1780, 24, 0, 'NightsWatch', NULL, 'http://silentred.github.io', 'Hangzhou', 'silentred3@gmail.com', NULL, 'A software engineer lost in the binary world.', NULL, 0, 0, 53, 67, 0, 0, 0, '2013-01-23T00:51:34Z', '2024-11-02T07:13:36Z', 'https://avatars.githubusercontent.com/u/3345293?v=4', 'https://api.github.com/users/silentred', 'https://github.com/silentred', 'https://api.github.com/users/silentred/followers', 'https://api.github.com/users/silentred/following', 'https://api.github.com/users/silentred/gists', 'https://api.github.com/users/silentred/starred', 'https://api.github.com/users/silentred/repos', 'https://api.github.com/users/silentred/events', 'https://api.github.com/users/silentred/received_events', 0); +INSERT INTO `developer` VALUES (3352585, 'okhowang', 'C', 0.26339146314264955, 0, 10, 19, 145, 5, 0, NULL, 'Tencent', '', 'Shenzhen', NULL, NULL, NULL, NULL, 0, 0, 38, 13, 0, 0, 0, '2013-01-23T11:31:10Z', '2024-10-28T16:15:34Z', 'https://avatars.githubusercontent.com/u/3352585?v=4', 'https://api.github.com/users/okhowang', 'https://github.com/okhowang', 'https://api.github.com/users/okhowang/followers', 'https://api.github.com/users/okhowang/following', 'https://api.github.com/users/okhowang/gists', 'https://api.github.com/users/okhowang/starred', 'https://api.github.com/users/okhowang/repos', 'https://api.github.com/users/okhowang/events', 'https://api.github.com/users/okhowang/received_events', 0); +INSERT INTO `developer` VALUES (3357942, 'gschmutz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guido Schmutz', 'Accenture', '', 'Berne, Switzerland', 'schmutz68@gmail.com', NULL, 'Platform Architect @ Accenture', 'gschmutz', 0, 0, 100, 10, 0, 0, 0, '2013-01-23T18:42:15Z', '2024-10-25T17:50:38Z', 'https://avatars.githubusercontent.com/u/3357942?v=4', 'https://api.github.com/users/gschmutz', 'https://github.com/gschmutz', 'https://api.github.com/users/gschmutz/followers', 'https://api.github.com/users/gschmutz/following', 'https://api.github.com/users/gschmutz/gists', 'https://api.github.com/users/gschmutz/starred', 'https://api.github.com/users/gschmutz/repos', 'https://api.github.com/users/gschmutz/events', 'https://api.github.com/users/gschmutz/received_events', 0); +INSERT INTO `developer` VALUES (3412241, 'emirb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emir Beganović', 'Booking.com', '', 'Amsterdam', NULL, NULL, NULL, NULL, 0, 0, 54, 70, 0, 0, 0, '2013-01-29T02:35:32Z', '2024-09-10T22:10:23Z', 'https://avatars.githubusercontent.com/u/3412241?v=4', 'https://api.github.com/users/emirb', 'https://github.com/emirb', 'https://api.github.com/users/emirb/followers', 'https://api.github.com/users/emirb/following', 'https://api.github.com/users/emirb/gists', 'https://api.github.com/users/emirb/starred', 'https://api.github.com/users/emirb/repos', 'https://api.github.com/users/emirb/events', 'https://api.github.com/users/emirb/received_events', 0); +INSERT INTO `developer` VALUES (3413361, 'xiaomudk', 'C', 0, 0, 0, 0, 0, 0, 0, 'xiaomudk', NULL, 'https://www.muqinghan.com', 'Shanghai, China', 'xiaomudk@gmail.com', NULL, 'Cloud native worker', NULL, 0, 0, 8, 3, 0, 0, 0, '2013-01-29T05:20:58Z', '2024-04-02T06:46:52Z', 'https://avatars.githubusercontent.com/u/3413361?v=4', 'https://api.github.com/users/xiaomudk', 'https://github.com/xiaomudk', 'https://api.github.com/users/xiaomudk/followers', 'https://api.github.com/users/xiaomudk/following', 'https://api.github.com/users/xiaomudk/gists', 'https://api.github.com/users/xiaomudk/starred', 'https://api.github.com/users/xiaomudk/repos', 'https://api.github.com/users/xiaomudk/events', 'https://api.github.com/users/xiaomudk/received_events', 0); +INSERT INTO `developer` VALUES (3422255, 'kmcquade', 'C', 1.1692347145257191, 0, 0, 0, 0, 0, 0, 'Kinnaird McQuade', 'NightVision Security', 'https://kmcquade.com', 'us-east-1', NULL, NULL, 'Founder/CTO @nvsecurity. I build security testing tools, mostly around AppSec, CloudSec, and AWS. Author of Cloudsplaining and Endgame.', 'kmcquade3', 0, 0, 353, 290, 0, 0, 0, '2013-01-30T00:12:42Z', '2024-10-11T15:01:31Z', 'https://avatars.githubusercontent.com/u/3422255?v=4', 'https://api.github.com/users/kmcquade', 'https://github.com/kmcquade', 'https://api.github.com/users/kmcquade/followers', 'https://api.github.com/users/kmcquade/following', 'https://api.github.com/users/kmcquade/gists', 'https://api.github.com/users/kmcquade/starred', 'https://api.github.com/users/kmcquade/repos', 'https://api.github.com/users/kmcquade/events', 'https://api.github.com/users/kmcquade/received_events', 0); +INSERT INTO `developer` VALUES (3422419, 'mtesauro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Tesauro', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 85, 0, 0, 0, 0, '2013-01-30T00:36:40Z', '2024-10-29T13:11:30Z', 'https://avatars.githubusercontent.com/u/3422419?v=4', 'https://api.github.com/users/mtesauro', 'https://github.com/mtesauro', 'https://api.github.com/users/mtesauro/followers', 'https://api.github.com/users/mtesauro/following', 'https://api.github.com/users/mtesauro/gists', 'https://api.github.com/users/mtesauro/starred', 'https://api.github.com/users/mtesauro/repos', 'https://api.github.com/users/mtesauro/events', 'https://api.github.com/users/mtesauro/received_events', 0); +INSERT INTO `developer` VALUES (3423547, 's-takehana', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2013-01-30T03:13:29Z', '2024-04-13T12:53:53Z', 'https://avatars.githubusercontent.com/u/3423547?v=4', 'https://api.github.com/users/s-takehana', 'https://github.com/s-takehana', 'https://api.github.com/users/s-takehana/followers', 'https://api.github.com/users/s-takehana/following', 'https://api.github.com/users/s-takehana/gists', 'https://api.github.com/users/s-takehana/starred', 'https://api.github.com/users/s-takehana/repos', 'https://api.github.com/users/s-takehana/events', 'https://api.github.com/users/s-takehana/received_events', 0); +INSERT INTO `developer` VALUES (3423981, 'peterdettman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Dettman', '@bcgit ', 'www.bouncycastle.org', '未知', 'peter.dettman@bouncycastle.org', NULL, NULL, NULL, 0, 0, 65, 8, 0, 0, 0, '2013-01-30T04:24:04Z', '2023-04-18T11:10:52Z', 'https://avatars.githubusercontent.com/u/3423981?v=4', 'https://api.github.com/users/peterdettman', 'https://github.com/peterdettman', 'https://api.github.com/users/peterdettman/followers', 'https://api.github.com/users/peterdettman/following', 'https://api.github.com/users/peterdettman/gists', 'https://api.github.com/users/peterdettman/starred', 'https://api.github.com/users/peterdettman/repos', 'https://api.github.com/users/peterdettman/events', 'https://api.github.com/users/peterdettman/received_events', 0); +INSERT INTO `developer` VALUES (3440835, 'sangaman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel McNally', '@MicroStrategy', 'https://www.mcnally.cloud', 'Spotsylvania, VA', 'mcnallydp@gmail.com', NULL, NULL, 'sangaman', 0, 0, 69, 21, 0, 0, 0, '2013-01-31T17:54:23Z', '2024-10-03T16:28:21Z', 'https://avatars.githubusercontent.com/u/3440835?v=4', 'https://api.github.com/users/sangaman', 'https://github.com/sangaman', 'https://api.github.com/users/sangaman/followers', 'https://api.github.com/users/sangaman/following', 'https://api.github.com/users/sangaman/gists', 'https://api.github.com/users/sangaman/starred', 'https://api.github.com/users/sangaman/repos', 'https://api.github.com/users/sangaman/events', 'https://api.github.com/users/sangaman/received_events', 0); +INSERT INTO `developer` VALUES (3444588, 'hobeone', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Hobe', NULL, '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2013-02-01T03:04:51Z', '2024-10-09T16:39:17Z', 'https://avatars.githubusercontent.com/u/3444588?v=4', 'https://api.github.com/users/hobeone', 'https://github.com/hobeone', 'https://api.github.com/users/hobeone/followers', 'https://api.github.com/users/hobeone/following', 'https://api.github.com/users/hobeone/gists', 'https://api.github.com/users/hobeone/starred', 'https://api.github.com/users/hobeone/repos', 'https://api.github.com/users/hobeone/events', 'https://api.github.com/users/hobeone/received_events', 0); +INSERT INTO `developer` VALUES (3449337, 'loshz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan', NULL, 'https://loshz.com', '未知', 'danbond@protonmail.com', NULL, 'Systems programmer, working on Linux networking and security.', NULL, 0, 0, 72, 120, 0, 0, 0, '2013-02-01T14:22:38Z', '2024-10-28T14:39:23Z', 'https://avatars.githubusercontent.com/u/3449337?v=4', 'https://api.github.com/users/loshz', 'https://github.com/loshz', 'https://api.github.com/users/loshz/followers', 'https://api.github.com/users/loshz/following', 'https://api.github.com/users/loshz/gists', 'https://api.github.com/users/loshz/starred', 'https://api.github.com/users/loshz/repos', 'https://api.github.com/users/loshz/events', 'https://api.github.com/users/loshz/received_events', 0); +INSERT INTO `developer` VALUES (3463175, 'metajiji', 'C', 0, 0, 0, 0, 0, 0, 0, 'Denis Kadyshev', NULL, 'http://metajiji.blogspot.com', 'Novosibirsk', NULL, 'true', NULL, NULL, 0, 0, 12, 7, 0, 0, 0, '2013-02-03T12:49:03Z', '2024-09-30T06:10:14Z', 'https://avatars.githubusercontent.com/u/3463175?v=4', 'https://api.github.com/users/metajiji', 'https://github.com/metajiji', 'https://api.github.com/users/metajiji/followers', 'https://api.github.com/users/metajiji/following', 'https://api.github.com/users/metajiji/gists', 'https://api.github.com/users/metajiji/starred', 'https://api.github.com/users/metajiji/repos', 'https://api.github.com/users/metajiji/events', 'https://api.github.com/users/metajiji/received_events', 0); +INSERT INTO `developer` VALUES (3473393, 'kiliczsh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Muhammed Kılıç', NULL, 'muhammedkilic.com', '未知', NULL, 'true', 'Senior Software Engineer', NULL, 0, 0, 157, 1391, 0, 0, 0, '2013-02-04T16:42:28Z', '2024-10-31T14:15:51Z', 'https://avatars.githubusercontent.com/u/3473393?v=4', 'https://api.github.com/users/kiliczsh', 'https://github.com/kiliczsh', 'https://api.github.com/users/kiliczsh/followers', 'https://api.github.com/users/kiliczsh/following', 'https://api.github.com/users/kiliczsh/gists', 'https://api.github.com/users/kiliczsh/starred', 'https://api.github.com/users/kiliczsh/repos', 'https://api.github.com/users/kiliczsh/events', 'https://api.github.com/users/kiliczsh/received_events', 0); +INSERT INTO `developer` VALUES (3499079, 'antness', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2013-02-07T07:07:40Z', '2024-08-28T16:23:29Z', 'https://avatars.githubusercontent.com/u/3499079?v=4', 'https://api.github.com/users/antness', 'https://github.com/antness', 'https://api.github.com/users/antness/followers', 'https://api.github.com/users/antness/following', 'https://api.github.com/users/antness/gists', 'https://api.github.com/users/antness/starred', 'https://api.github.com/users/antness/repos', 'https://api.github.com/users/antness/events', 'https://api.github.com/users/antness/received_events', 0); +INSERT INTO `developer` VALUES (3511318, 'robvanmieghem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rob Van Mieghem', 'threefold.tech', '', 'Belgium', 'robvanmieghem@gmail.com', 'true', NULL, NULL, 0, 0, 54, 1, 0, 0, 0, '2013-02-08T13:09:49Z', '2024-10-25T05:50:14Z', 'https://avatars.githubusercontent.com/u/3511318?v=4', 'https://api.github.com/users/robvanmieghem', 'https://github.com/robvanmieghem', 'https://api.github.com/users/robvanmieghem/followers', 'https://api.github.com/users/robvanmieghem/following', 'https://api.github.com/users/robvanmieghem/gists', 'https://api.github.com/users/robvanmieghem/starred', 'https://api.github.com/users/robvanmieghem/repos', 'https://api.github.com/users/robvanmieghem/events', 'https://api.github.com/users/robvanmieghem/received_events', 0); +INSERT INTO `developer` VALUES (3519911, 'bruston', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Ruston', NULL, '', 'UK', NULL, 'true', NULL, NULL, 0, 0, 29, 92, 0, 0, 0, '2013-02-09T16:56:05Z', '2022-02-21T22:05:05Z', 'https://avatars.githubusercontent.com/u/3519911?v=4', 'https://api.github.com/users/bruston', 'https://github.com/bruston', 'https://api.github.com/users/bruston/followers', 'https://api.github.com/users/bruston/following', 'https://api.github.com/users/bruston/gists', 'https://api.github.com/users/bruston/starred', 'https://api.github.com/users/bruston/repos', 'https://api.github.com/users/bruston/events', 'https://api.github.com/users/bruston/received_events', 0); +INSERT INTO `developer` VALUES (3534309, 'joaoubaldo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joao Ubaldo', NULL, '', 'Portugal', NULL, NULL, 'mess around', NULL, 0, 0, 17, 7, 0, 0, 0, '2013-02-11T17:13:22Z', '2024-10-21T10:27:22Z', 'https://avatars.githubusercontent.com/u/3534309?v=4', 'https://api.github.com/users/joaoubaldo', 'https://github.com/joaoubaldo', 'https://api.github.com/users/joaoubaldo/followers', 'https://api.github.com/users/joaoubaldo/following', 'https://api.github.com/users/joaoubaldo/gists', 'https://api.github.com/users/joaoubaldo/starred', 'https://api.github.com/users/joaoubaldo/repos', 'https://api.github.com/users/joaoubaldo/events', 'https://api.github.com/users/joaoubaldo/received_events', 0); +INSERT INTO `developer` VALUES (3534524, 'promag', 'C', 2.9355326232601078, 0, 0, 0, 0, 0, 0, 'João Barbosa', NULL, '', 'Portugal', NULL, NULL, NULL, 'promag', 0, 0, 456, 43, 0, 0, 0, '2013-02-11T17:41:27Z', '2024-04-09T12:54:14Z', 'https://avatars.githubusercontent.com/u/3534524?v=4', 'https://api.github.com/users/promag', 'https://github.com/promag', 'https://api.github.com/users/promag/followers', 'https://api.github.com/users/promag/following', 'https://api.github.com/users/promag/gists', 'https://api.github.com/users/promag/starred', 'https://api.github.com/users/promag/repos', 'https://api.github.com/users/promag/events', 'https://api.github.com/users/promag/received_events', 0); +INSERT INTO `developer` VALUES (3541652, 'sbani', 'C', 0, 0, 0, 0, 0, 0, 0, 'S Bani', NULL, 'https://netw0rk.io', 'Germany', NULL, 'true', 'Security Engineer & Penetration Tester', NULL, 0, 0, 26, 28, 0, 0, 0, '2013-02-12T12:49:10Z', '2024-08-06T07:19:39Z', 'https://avatars.githubusercontent.com/u/3541652?v=4', 'https://api.github.com/users/sbani', 'https://github.com/sbani', 'https://api.github.com/users/sbani/followers', 'https://api.github.com/users/sbani/following', 'https://api.github.com/users/sbani/gists', 'https://api.github.com/users/sbani/starred', 'https://api.github.com/users/sbani/repos', 'https://api.github.com/users/sbani/events', 'https://api.github.com/users/sbani/received_events', 0); +INSERT INTO `developer` VALUES (3577968, 'Rhymond', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raymond', NULL, '', 'United Kingdom', NULL, NULL, 'In order to understand recursion, you must first understand recursion', NULL, 0, 0, 89, 26, 0, 0, 0, '2013-02-12T19:41:34Z', '2024-09-25T06:57:01Z', 'https://avatars.githubusercontent.com/u/3577968?v=4', 'https://api.github.com/users/Rhymond', 'https://github.com/Rhymond', 'https://api.github.com/users/Rhymond/followers', 'https://api.github.com/users/Rhymond/following', 'https://api.github.com/users/Rhymond/gists', 'https://api.github.com/users/Rhymond/starred', 'https://api.github.com/users/Rhymond/repos', 'https://api.github.com/users/Rhymond/events', 'https://api.github.com/users/Rhymond/received_events', 0); +INSERT INTO `developer` VALUES (3620809, 'ggillies', 'C', 0, 0, 0, 0, 0, 0, 0, 'Graeme Gillies', 'Gitlab', 'https://gitlab.com/ggillies', 'Brisbane, Australia', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2013-02-17T22:35:55Z', '2024-09-25T02:09:13Z', 'https://avatars.githubusercontent.com/u/3620809?v=4', 'https://api.github.com/users/ggillies', 'https://github.com/ggillies', 'https://api.github.com/users/ggillies/followers', 'https://api.github.com/users/ggillies/following', 'https://api.github.com/users/ggillies/gists', 'https://api.github.com/users/ggillies/starred', 'https://api.github.com/users/ggillies/repos', 'https://api.github.com/users/ggillies/events', 'https://api.github.com/users/ggillies/received_events', 0); +INSERT INTO `developer` VALUES (3625785, 'jdemeyer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeroen Demeyer', 'Be-Mobile', '', 'Gent, Belgium', NULL, NULL, NULL, NULL, 0, 0, 18, 1, 0, 0, 0, '2013-02-18T11:41:24Z', '2024-08-12T09:04:44Z', 'https://avatars.githubusercontent.com/u/3625785?v=4', 'https://api.github.com/users/jdemeyer', 'https://github.com/jdemeyer', 'https://api.github.com/users/jdemeyer/followers', 'https://api.github.com/users/jdemeyer/following', 'https://api.github.com/users/jdemeyer/gists', 'https://api.github.com/users/jdemeyer/starred', 'https://api.github.com/users/jdemeyer/repos', 'https://api.github.com/users/jdemeyer/events', 'https://api.github.com/users/jdemeyer/received_events', 0); +INSERT INTO `developer` VALUES (3711645, 'cavemanpi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Johnson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 12, 0, 0, 0, '2013-02-27T02:43:24Z', '2024-10-14T02:44:06Z', 'https://avatars.githubusercontent.com/u/3711645?v=4', 'https://api.github.com/users/cavemanpi', 'https://github.com/cavemanpi', 'https://api.github.com/users/cavemanpi/followers', 'https://api.github.com/users/cavemanpi/following', 'https://api.github.com/users/cavemanpi/gists', 'https://api.github.com/users/cavemanpi/starred', 'https://api.github.com/users/cavemanpi/repos', 'https://api.github.com/users/cavemanpi/events', 'https://api.github.com/users/cavemanpi/received_events', 0); +INSERT INTO `developer` VALUES (3726205, 'abrander', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anders Brander', NULL, '', 'Aalborg, Denmark', 'anders@brander.dk', 'true', NULL, NULL, 0, 0, 57, 25, 0, 0, 0, '2013-02-28T10:12:41Z', '2024-10-31T19:59:22Z', 'https://avatars.githubusercontent.com/u/3726205?v=4', 'https://api.github.com/users/abrander', 'https://github.com/abrander', 'https://api.github.com/users/abrander/followers', 'https://api.github.com/users/abrander/following', 'https://api.github.com/users/abrander/gists', 'https://api.github.com/users/abrander/starred', 'https://api.github.com/users/abrander/repos', 'https://api.github.com/users/abrander/events', 'https://api.github.com/users/abrander/received_events', 0); +INSERT INTO `developer` VALUES (3742367, 'HansHauge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hans Hauge', NULL, '', 'Eastern Washington', 'hansthered@gmail.com', NULL, NULL, NULL, 0, 0, 8, 19, 0, 0, 0, '2013-03-01T20:53:19Z', '2024-10-30T21:54:55Z', 'https://avatars.githubusercontent.com/u/3742367?v=4', 'https://api.github.com/users/HansHauge', 'https://github.com/HansHauge', 'https://api.github.com/users/HansHauge/followers', 'https://api.github.com/users/HansHauge/following', 'https://api.github.com/users/HansHauge/gists', 'https://api.github.com/users/HansHauge/starred', 'https://api.github.com/users/HansHauge/repos', 'https://api.github.com/users/HansHauge/events', 'https://api.github.com/users/HansHauge/received_events', 0); +INSERT INTO `developer` VALUES (3748133, 'joycn', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2013-03-02T12:59:38Z', '2024-07-15T07:21:41Z', 'https://avatars.githubusercontent.com/u/3748133?v=4', 'https://api.github.com/users/joycn', 'https://github.com/joycn', 'https://api.github.com/users/joycn/followers', 'https://api.github.com/users/joycn/following', 'https://api.github.com/users/joycn/gists', 'https://api.github.com/users/joycn/starred', 'https://api.github.com/users/joycn/repos', 'https://api.github.com/users/joycn/events', 'https://api.github.com/users/joycn/received_events', 0); +INSERT INTO `developer` VALUES (3773981, 'alonmuroch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alon Muroch', 'SSV.Network', '', 'Israel', NULL, 'true', NULL, 'ammuroch', 0, 0, 30, 8, 0, 0, 0, '2013-03-05T08:31:56Z', '2024-09-26T11:30:03Z', 'https://avatars.githubusercontent.com/u/3773981?v=4', 'https://api.github.com/users/alonmuroch', 'https://github.com/alonmuroch', 'https://api.github.com/users/alonmuroch/followers', 'https://api.github.com/users/alonmuroch/following', 'https://api.github.com/users/alonmuroch/gists', 'https://api.github.com/users/alonmuroch/starred', 'https://api.github.com/users/alonmuroch/repos', 'https://api.github.com/users/alonmuroch/events', 'https://api.github.com/users/alonmuroch/received_events', 0); +INSERT INTO `developer` VALUES (3778974, 'sstarcher', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shane Starcher', NULL, 'https://shanestarcher.com', '未知', 'shanestarcher@gmail.com', NULL, NULL, NULL, 0, 0, 53, 1, 0, 0, 0, '2013-03-05T18:17:32Z', '2024-08-26T14:33:04Z', 'https://avatars.githubusercontent.com/u/3778974?v=4', 'https://api.github.com/users/sstarcher', 'https://github.com/sstarcher', 'https://api.github.com/users/sstarcher/followers', 'https://api.github.com/users/sstarcher/following', 'https://api.github.com/users/sstarcher/gists', 'https://api.github.com/users/sstarcher/starred', 'https://api.github.com/users/sstarcher/repos', 'https://api.github.com/users/sstarcher/events', 'https://api.github.com/users/sstarcher/received_events', 0); +INSERT INTO `developer` VALUES (3781875, 'iDube', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dube', NULL, '', 'Singapore', NULL, NULL, NULL, NULL, 0, 0, 7, 19, 0, 0, 0, '2013-03-06T00:30:42Z', '2024-10-17T08:18:13Z', 'https://avatars.githubusercontent.com/u/3781875?v=4', 'https://api.github.com/users/iDube', 'https://github.com/iDube', 'https://api.github.com/users/iDube/followers', 'https://api.github.com/users/iDube/following', 'https://api.github.com/users/iDube/gists', 'https://api.github.com/users/iDube/starred', 'https://api.github.com/users/iDube/repos', 'https://api.github.com/users/iDube/events', 'https://api.github.com/users/iDube/received_events', 0); +INSERT INTO `developer` VALUES (3782274, 'achow101', 'C+', 19.08944165265618, 0, 0, 0, 0, 0, 0, 'Ava Chow', NULL, 'achow101.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 1398, 8, 0, 0, 0, '2013-03-06T01:36:16Z', '2024-10-27T06:17:23Z', 'https://avatars.githubusercontent.com/u/3782274?v=4', 'https://api.github.com/users/achow101', 'https://github.com/achow101', 'https://api.github.com/users/achow101/followers', 'https://api.github.com/users/achow101/following', 'https://api.github.com/users/achow101/gists', 'https://api.github.com/users/achow101/starred', 'https://api.github.com/users/achow101/repos', 'https://api.github.com/users/achow101/events', 'https://api.github.com/users/achow101/received_events', 0); +INSERT INTO `developer` VALUES (3797324, 'kgraefe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Konrad Vité', NULL, 'https://kgraefe.paktolos.net/', 'EU', NULL, NULL, NULL, NULL, 0, 0, 7, 5, 0, 0, 0, '2013-03-07T11:15:15Z', '2024-11-04T10:14:24Z', 'https://avatars.githubusercontent.com/u/3797324?v=4', 'https://api.github.com/users/kgraefe', 'https://github.com/kgraefe', 'https://api.github.com/users/kgraefe/followers', 'https://api.github.com/users/kgraefe/following', 'https://api.github.com/users/kgraefe/gists', 'https://api.github.com/users/kgraefe/starred', 'https://api.github.com/users/kgraefe/repos', 'https://api.github.com/users/kgraefe/events', 'https://api.github.com/users/kgraefe/received_events', 0); +INSERT INTO `developer` VALUES (3816267, 'digitsu', 'C', 0, 0, 0, 0, 0, 0, 0, 'digitsu', 'Bittoku KK', 'http://www.bittoku.co.jp', 'Tokyo', 'digitsu@gmail.com', NULL, NULL, 'digitsu', 0, 0, 16, 14, 0, 0, 0, '2013-03-09T10:12:27Z', '2024-09-10T04:13:05Z', 'https://avatars.githubusercontent.com/u/3816267?v=4', 'https://api.github.com/users/digitsu', 'https://github.com/digitsu', 'https://api.github.com/users/digitsu/followers', 'https://api.github.com/users/digitsu/following', 'https://api.github.com/users/digitsu/gists', 'https://api.github.com/users/digitsu/starred', 'https://api.github.com/users/digitsu/repos', 'https://api.github.com/users/digitsu/events', 'https://api.github.com/users/digitsu/received_events', 0); +INSERT INTO `developer` VALUES (3833685, 'shibumi', 'C', 0.8091157234245331, 0, 0, 0, 0, 0, 0, 'Christian Rebischke', '@Google', 'https://shibumi.dev', 'Germany', 'chris@shibumi.dev', 'true', 'Site Reliability Engineer @google ', 'sh1bumi', 0, 0, 332, 102, 0, 0, 0, '2013-03-11T16:31:14Z', '2024-09-17T13:42:47Z', 'https://avatars.githubusercontent.com/u/3833685?v=4', 'https://api.github.com/users/shibumi', 'https://github.com/shibumi', 'https://api.github.com/users/shibumi/followers', 'https://api.github.com/users/shibumi/following', 'https://api.github.com/users/shibumi/gists', 'https://api.github.com/users/shibumi/starred', 'https://api.github.com/users/shibumi/repos', 'https://api.github.com/users/shibumi/events', 'https://api.github.com/users/shibumi/received_events', 0); +INSERT INTO `developer` VALUES (3841578, 'ankitstarski', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ankit', NULL, '', 'Bangalore, India', 'ankitstarski@gmail.com', NULL, NULL, NULL, 0, 0, 21, 46, 0, 0, 0, '2013-03-12T10:45:41Z', '2024-09-25T09:26:04Z', 'https://avatars.githubusercontent.com/u/3841578?v=4', 'https://api.github.com/users/ankitstarski', 'https://github.com/ankitstarski', 'https://api.github.com/users/ankitstarski/followers', 'https://api.github.com/users/ankitstarski/following', 'https://api.github.com/users/ankitstarski/gists', 'https://api.github.com/users/ankitstarski/starred', 'https://api.github.com/users/ankitstarski/repos', 'https://api.github.com/users/ankitstarski/events', 'https://api.github.com/users/ankitstarski/received_events', 0); +INSERT INTO `developer` VALUES (3885905, 'szeist', 'C', 0, 0, 0, 0, 0, 0, 0, 'István Szénási', NULL, '', 'Hungary', 'szeist@gmail.com', NULL, NULL, NULL, 0, 0, 6, 9, 0, 0, 0, '2013-03-16T20:38:52Z', '2024-10-14T09:51:15Z', 'https://avatars.githubusercontent.com/u/3885905?v=4', 'https://api.github.com/users/szeist', 'https://github.com/szeist', 'https://api.github.com/users/szeist/followers', 'https://api.github.com/users/szeist/following', 'https://api.github.com/users/szeist/gists', 'https://api.github.com/users/szeist/starred', 'https://api.github.com/users/szeist/repos', 'https://api.github.com/users/szeist/events', 'https://api.github.com/users/szeist/received_events', 0); +INSERT INTO `developer` VALUES (3887767, 'kiwih', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hammond Pearce (kiwih)', NULL, 'https://www.cyberhammond.com/', 'Auckland / NZ, New York / NY, Sydney / AUS', NULL, NULL, NULL, 'kiwihammond', 0, 0, 85, 3, 0, 0, 0, '2013-03-17T03:54:47Z', '2024-10-29T11:18:42Z', 'https://avatars.githubusercontent.com/u/3887767?v=4', 'https://api.github.com/users/kiwih', 'https://github.com/kiwih', 'https://api.github.com/users/kiwih/followers', 'https://api.github.com/users/kiwih/following', 'https://api.github.com/users/kiwih/gists', 'https://api.github.com/users/kiwih/starred', 'https://api.github.com/users/kiwih/repos', 'https://api.github.com/users/kiwih/events', 'https://api.github.com/users/kiwih/received_events', 0); +INSERT INTO `developer` VALUES (3903889, 'DaniJG', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel', NULL, 'https://danijg.github.io/', 'Dublin', NULL, NULL, NULL, NULL, 0, 0, 76, 1, 0, 0, 0, '2013-03-18T22:41:23Z', '2024-08-29T10:14:24Z', 'https://avatars.githubusercontent.com/u/3903889?v=4', 'https://api.github.com/users/DaniJG', 'https://github.com/DaniJG', 'https://api.github.com/users/DaniJG/followers', 'https://api.github.com/users/DaniJG/following', 'https://api.github.com/users/DaniJG/gists', 'https://api.github.com/users/DaniJG/starred', 'https://api.github.com/users/DaniJG/repos', 'https://api.github.com/users/DaniJG/events', 'https://api.github.com/users/DaniJG/received_events', 0); +INSERT INTO `developer` VALUES (3948217, 'sendyhalim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sendy Halim', NULL, 'https://blog.wavvel.com', 'Jakarta, Indonesia', NULL, 'true', NULL, NULL, 0, 0, 60, 13, 0, 0, 0, '2013-03-23T09:02:12Z', '2024-06-30T04:59:58Z', 'https://avatars.githubusercontent.com/u/3948217?v=4', 'https://api.github.com/users/sendyhalim', 'https://github.com/sendyhalim', 'https://api.github.com/users/sendyhalim/followers', 'https://api.github.com/users/sendyhalim/following', 'https://api.github.com/users/sendyhalim/gists', 'https://api.github.com/users/sendyhalim/starred', 'https://api.github.com/users/sendyhalim/repos', 'https://api.github.com/users/sendyhalim/events', 'https://api.github.com/users/sendyhalim/received_events', 0); +INSERT INTO `developer` VALUES (3965685, 'jimbao', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jimmy Wahlberg', NULL, '', 'Sverige', 'jimmy.wahlberg@gmail.com', NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2013-03-25T15:10:33Z', '2024-08-12T07:44:31Z', 'https://avatars.githubusercontent.com/u/3965685?v=4', 'https://api.github.com/users/jimbao', 'https://github.com/jimbao', 'https://api.github.com/users/jimbao/followers', 'https://api.github.com/users/jimbao/following', 'https://api.github.com/users/jimbao/gists', 'https://api.github.com/users/jimbao/starred', 'https://api.github.com/users/jimbao/repos', 'https://api.github.com/users/jimbao/events', 'https://api.github.com/users/jimbao/received_events', 0); +INSERT INTO `developer` VALUES (3968577, 'Excentertex', 'C', 0, 0, 0, 0, 0, 0, 0, 'Diederik Huys', NULL, '', 'Belgium', NULL, 'true', NULL, NULL, 0, 0, 2, 5, 0, 0, 0, '2013-03-25T21:07:07Z', '2024-10-28T19:22:07Z', 'https://avatars.githubusercontent.com/u/3968577?v=4', 'https://api.github.com/users/Excentertex', 'https://github.com/Excentertex', 'https://api.github.com/users/Excentertex/followers', 'https://api.github.com/users/Excentertex/following', 'https://api.github.com/users/Excentertex/gists', 'https://api.github.com/users/Excentertex/starred', 'https://api.github.com/users/Excentertex/repos', 'https://api.github.com/users/Excentertex/events', 'https://api.github.com/users/Excentertex/received_events', 0); +INSERT INTO `developer` VALUES (3994645, 'vlajos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lajos Veres', 'R3', 'https://lajosveres.com/', 'London', NULL, NULL, NULL, NULL, 0, 0, 32, 30, 0, 0, 0, '2013-03-28T10:24:56Z', '2023-12-18T15:31:17Z', 'https://avatars.githubusercontent.com/u/3994645?v=4', 'https://api.github.com/users/vlajos', 'https://github.com/vlajos', 'https://api.github.com/users/vlajos/followers', 'https://api.github.com/users/vlajos/following', 'https://api.github.com/users/vlajos/gists', 'https://api.github.com/users/vlajos/starred', 'https://api.github.com/users/vlajos/repos', 'https://api.github.com/users/vlajos/events', 'https://api.github.com/users/vlajos/received_events', 0); +INSERT INTO `developer` VALUES (4006010, 'maver1ck', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maciej Bryński', NULL, '', 'Katowice', 'maciek@brynski.pl', NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2013-03-29T14:22:07Z', '2024-11-03T13:48:37Z', 'https://avatars.githubusercontent.com/u/4006010?v=4', 'https://api.github.com/users/maver1ck', 'https://github.com/maver1ck', 'https://api.github.com/users/maver1ck/followers', 'https://api.github.com/users/maver1ck/following', 'https://api.github.com/users/maver1ck/gists', 'https://api.github.com/users/maver1ck/starred', 'https://api.github.com/users/maver1ck/repos', 'https://api.github.com/users/maver1ck/events', 'https://api.github.com/users/maver1ck/received_events', 0); +INSERT INTO `developer` VALUES (4032361, 'natebwangsut', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bhurinat Wangsutthitham', '@agoda-com ', 'https://natebwangsut.github.io', 'Bangkok, Thailand', 'nate.bwangsut@gmail.com', NULL, 'Just another software engineer living on the same planet as you do.', 'natebwangsut', 0, 0, 15, 15, 0, 0, 0, '2013-04-02T02:40:50Z', '2024-10-14T09:46:11Z', 'https://avatars.githubusercontent.com/u/4032361?v=4', 'https://api.github.com/users/natebwangsut', 'https://github.com/natebwangsut', 'https://api.github.com/users/natebwangsut/followers', 'https://api.github.com/users/natebwangsut/following', 'https://api.github.com/users/natebwangsut/gists', 'https://api.github.com/users/natebwangsut/starred', 'https://api.github.com/users/natebwangsut/repos', 'https://api.github.com/users/natebwangsut/events', 'https://api.github.com/users/natebwangsut/received_events', 0); +INSERT INTO `developer` VALUES (4051087, 'facundo-guerrero-olx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Facundo Guerrero', 'OLX', 'github.com/guerremdq', 'Argentina', NULL, NULL, NULL, NULL, 0, 0, 3, 17, 0, 0, 0, '2013-04-03T17:58:30Z', '2022-12-05T10:48:23Z', 'https://avatars.githubusercontent.com/u/4051087?v=4', 'https://api.github.com/users/facundo-guerrero-olx', 'https://github.com/facundo-guerrero-olx', 'https://api.github.com/users/facundo-guerrero-olx/followers', 'https://api.github.com/users/facundo-guerrero-olx/following', 'https://api.github.com/users/facundo-guerrero-olx/gists', 'https://api.github.com/users/facundo-guerrero-olx/starred', 'https://api.github.com/users/facundo-guerrero-olx/repos', 'https://api.github.com/users/facundo-guerrero-olx/events', 'https://api.github.com/users/facundo-guerrero-olx/received_events', 0); +INSERT INTO `developer` VALUES (4059089, 'gzm55', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Z.M. Gao ', 'MediaV', '', 'Shanghai, China', NULL, NULL, NULL, NULL, 0, 0, 10, 1, 0, 0, 0, '2013-04-04T13:06:34Z', '2024-06-06T04:49:14Z', 'https://avatars.githubusercontent.com/u/4059089?v=4', 'https://api.github.com/users/gzm55', 'https://github.com/gzm55', 'https://api.github.com/users/gzm55/followers', 'https://api.github.com/users/gzm55/following', 'https://api.github.com/users/gzm55/gists', 'https://api.github.com/users/gzm55/starred', 'https://api.github.com/users/gzm55/repos', 'https://api.github.com/users/gzm55/events', 'https://api.github.com/users/gzm55/received_events', 0); +INSERT INTO `developer` VALUES (4060799, 'murchandamus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark \"Murch\" Erhardt', 'Chaincode Labs', 'http://murch.one', 'Metropolis, Sol III', 'murch@murch.one', NULL, NULL, 'murchandamus', 0, 0, 228, 27, 0, 0, 0, '2013-04-04T16:13:46Z', '2024-10-09T17:29:34Z', 'https://avatars.githubusercontent.com/u/4060799?v=4', 'https://api.github.com/users/murchandamus', 'https://github.com/murchandamus', 'https://api.github.com/users/murchandamus/followers', 'https://api.github.com/users/murchandamus/following', 'https://api.github.com/users/murchandamus/gists', 'https://api.github.com/users/murchandamus/starred', 'https://api.github.com/users/murchandamus/repos', 'https://api.github.com/users/murchandamus/events', 'https://api.github.com/users/murchandamus/received_events', 0); +INSERT INTO `developer` VALUES (4103710, 'sha-265', 'C', 0, 0, 0, 0, 0, 0, 0, 'sha-265', NULL, 'coinmarketcrap.co', 'Planet Earth', NULL, 'true', '#crapto', '_sha265', 0, 0, 20, 17, 0, 0, 0, '2013-04-09T12:09:20Z', '2024-10-18T23:30:35Z', 'https://avatars.githubusercontent.com/u/4103710?v=4', 'https://api.github.com/users/sha-265', 'https://github.com/sha-265', 'https://api.github.com/users/sha-265/followers', 'https://api.github.com/users/sha-265/following', 'https://api.github.com/users/sha-265/gists', 'https://api.github.com/users/sha-265/starred', 'https://api.github.com/users/sha-265/repos', 'https://api.github.com/users/sha-265/events', 'https://api.github.com/users/sha-265/received_events', 0); +INSERT INTO `developer` VALUES (4144334, 'blrhc', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Holden-Crowther', NULL, 'https://www.benholdencrowther.com/', 'London, United Kingdom', NULL, 'true', NULL, NULL, 0, 0, 19, 0, 0, 0, 0, '2013-04-13T09:14:00Z', '2024-06-03T09:54:57Z', 'https://avatars.githubusercontent.com/u/4144334?v=4', 'https://api.github.com/users/blrhc', 'https://github.com/blrhc', 'https://api.github.com/users/blrhc/followers', 'https://api.github.com/users/blrhc/following', 'https://api.github.com/users/blrhc/gists', 'https://api.github.com/users/blrhc/starred', 'https://api.github.com/users/blrhc/repos', 'https://api.github.com/users/blrhc/events', 'https://api.github.com/users/blrhc/received_events', 0); +INSERT INTO `developer` VALUES (4162215, 'croissong', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Möller', NULL, 'https://patrician.me/', 'Germany', NULL, NULL, 'Full stack developer.\r\nGamification & tooling enthusiast.\r\nI <3 NixOS, vite & k8s.', NULL, 0, 0, 30, 48, 0, 0, 0, '2013-04-15T15:30:13Z', '2024-09-11T06:17:35Z', 'https://avatars.githubusercontent.com/u/4162215?v=4', 'https://api.github.com/users/croissong', 'https://github.com/croissong', 'https://api.github.com/users/croissong/followers', 'https://api.github.com/users/croissong/following', 'https://api.github.com/users/croissong/gists', 'https://api.github.com/users/croissong/starred', 'https://api.github.com/users/croissong/repos', 'https://api.github.com/users/croissong/events', 'https://api.github.com/users/croissong/received_events', 0); +INSERT INTO `developer` VALUES (4192951, 'clinyong', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leo', NULL, '', '未知', 'clinyong@gmail.com', NULL, NULL, NULL, 0, 0, 38, 17, 0, 0, 0, '2013-04-18T15:34:53Z', '2024-10-18T04:04:10Z', 'https://avatars.githubusercontent.com/u/4192951?v=4', 'https://api.github.com/users/clinyong', 'https://github.com/clinyong', 'https://api.github.com/users/clinyong/followers', 'https://api.github.com/users/clinyong/following', 'https://api.github.com/users/clinyong/gists', 'https://api.github.com/users/clinyong/starred', 'https://api.github.com/users/clinyong/repos', 'https://api.github.com/users/clinyong/events', 'https://api.github.com/users/clinyong/received_events', 0); +INSERT INTO `developer` VALUES (4201494, 'harman28', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harman Singh', NULL, 'https://b612q.in/', 'Amsterdam', 'harman28@gmail.com', NULL, NULL, 'ThatHarmanSingh', 0, 0, 19, 2, 0, 0, 0, '2013-04-19T12:52:11Z', '2023-03-08T12:32:53Z', 'https://avatars.githubusercontent.com/u/4201494?v=4', 'https://api.github.com/users/harman28', 'https://github.com/harman28', 'https://api.github.com/users/harman28/followers', 'https://api.github.com/users/harman28/following', 'https://api.github.com/users/harman28/gists', 'https://api.github.com/users/harman28/starred', 'https://api.github.com/users/harman28/repos', 'https://api.github.com/users/harman28/events', 'https://api.github.com/users/harman28/received_events', 0); +INSERT INTO `developer` VALUES (4232165, 'ikawaha', 'C', 0, 0, 0, 0, 0, 0, 0, 'ikawaha', NULL, 'https://zenn.dev/ikawaha/', 'Tokyo, Japan', NULL, 'true', 'gopher', 'ikawaha', 0, 0, 151, 180, 0, 0, 0, '2013-04-23T07:00:22Z', '2024-10-28T09:13:10Z', 'https://avatars.githubusercontent.com/u/4232165?v=4', 'https://api.github.com/users/ikawaha', 'https://github.com/ikawaha', 'https://api.github.com/users/ikawaha/followers', 'https://api.github.com/users/ikawaha/following', 'https://api.github.com/users/ikawaha/gists', 'https://api.github.com/users/ikawaha/starred', 'https://api.github.com/users/ikawaha/repos', 'https://api.github.com/users/ikawaha/events', 'https://api.github.com/users/ikawaha/received_events', 0); +INSERT INTO `developer` VALUES (4240075, 'JoseRoman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jose Roman', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2013-04-24T00:02:01Z', '2024-11-02T00:59:10Z', 'https://avatars.githubusercontent.com/u/4240075?v=4', 'https://api.github.com/users/JoseRoman', 'https://github.com/JoseRoman', 'https://api.github.com/users/JoseRoman/followers', 'https://api.github.com/users/JoseRoman/following', 'https://api.github.com/users/JoseRoman/gists', 'https://api.github.com/users/JoseRoman/starred', 'https://api.github.com/users/JoseRoman/repos', 'https://api.github.com/users/JoseRoman/events', 'https://api.github.com/users/JoseRoman/received_events', 0); +INSERT INTO `developer` VALUES (4272489, 'zvisha', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'Shteingart', NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2013-04-27T10:49:13Z', '2024-10-22T10:50:11Z', 'https://avatars.githubusercontent.com/u/4272489?v=4', 'https://api.github.com/users/zvisha', 'https://github.com/zvisha', 'https://api.github.com/users/zvisha/followers', 'https://api.github.com/users/zvisha/following', 'https://api.github.com/users/zvisha/gists', 'https://api.github.com/users/zvisha/starred', 'https://api.github.com/users/zvisha/repos', 'https://api.github.com/users/zvisha/events', 'https://api.github.com/users/zvisha/received_events', 0); +INSERT INTO `developer` VALUES (4282712, 'bolkedebruin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 86, 2, 0, 0, 0, '2013-04-28T18:00:47Z', '2024-08-18T11:02:03Z', 'https://avatars.githubusercontent.com/u/4282712?v=4', 'https://api.github.com/users/bolkedebruin', 'https://github.com/bolkedebruin', 'https://api.github.com/users/bolkedebruin/followers', 'https://api.github.com/users/bolkedebruin/following', 'https://api.github.com/users/bolkedebruin/gists', 'https://api.github.com/users/bolkedebruin/starred', 'https://api.github.com/users/bolkedebruin/repos', 'https://api.github.com/users/bolkedebruin/events', 'https://api.github.com/users/bolkedebruin/received_events', 0); +INSERT INTO `developer` VALUES (4284124, 'dgenr8', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom Harding', NULL, '', 'California, US', 'tomh@thinlink.com', NULL, 'Let\'s fix money.', NULL, 0, 0, 38, 10, 0, 0, 0, '2013-04-28T23:16:39Z', '2023-07-28T02:55:33Z', 'https://avatars.githubusercontent.com/u/4284124?v=4', 'https://api.github.com/users/dgenr8', 'https://github.com/dgenr8', 'https://api.github.com/users/dgenr8/followers', 'https://api.github.com/users/dgenr8/following', 'https://api.github.com/users/dgenr8/gists', 'https://api.github.com/users/dgenr8/starred', 'https://api.github.com/users/dgenr8/repos', 'https://api.github.com/users/dgenr8/events', 'https://api.github.com/users/dgenr8/received_events', 0); +INSERT INTO `developer` VALUES (4289847, 'fsb4000', 'C', 0, 0, 0, 0, 0, 0, 0, 'Igor Zhukov', NULL, '', 'Russia', 'fsb4000@yandex.ru', 'true', NULL, NULL, 0, 0, 26, 6, 0, 0, 0, '2013-04-29T10:37:48Z', '2024-04-14T07:10:53Z', 'https://avatars.githubusercontent.com/u/4289847?v=4', 'https://api.github.com/users/fsb4000', 'https://github.com/fsb4000', 'https://api.github.com/users/fsb4000/followers', 'https://api.github.com/users/fsb4000/following', 'https://api.github.com/users/fsb4000/gists', 'https://api.github.com/users/fsb4000/starred', 'https://api.github.com/users/fsb4000/repos', 'https://api.github.com/users/fsb4000/events', 'https://api.github.com/users/fsb4000/received_events', 0); +INSERT INTO `developer` VALUES (4294781, 'DzeryCZ', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jaroslav Živný', 'ErsteBank', '', 'Vienna', 'jarda668@gmail.com', NULL, NULL, NULL, 0, 0, 6, 7, 0, 0, 0, '2013-04-29T17:38:15Z', '2024-10-28T19:19:56Z', 'https://avatars.githubusercontent.com/u/4294781?v=4', 'https://api.github.com/users/DzeryCZ', 'https://github.com/DzeryCZ', 'https://api.github.com/users/DzeryCZ/followers', 'https://api.github.com/users/DzeryCZ/following', 'https://api.github.com/users/DzeryCZ/gists', 'https://api.github.com/users/DzeryCZ/starred', 'https://api.github.com/users/DzeryCZ/repos', 'https://api.github.com/users/DzeryCZ/events', 'https://api.github.com/users/DzeryCZ/received_events', 0); +INSERT INTO `developer` VALUES (4298450, 'saurav12', 'C', 0, 0, 0, 0, 0, 0, 0, 'Saurav Rastogi', '@razorpay', 'http://saurav.design', 'India', 'saurav.rastogi25@gmail.com', 'true', 'A designer who loves to code! Passionate about design systems. Love interaction design. Die-hard football/CR7 fan!', 'rastogi_saurav', 0, 0, 38, 52, 0, 0, 0, '2013-04-30T03:42:54Z', '2024-09-27T08:14:49Z', 'https://avatars.githubusercontent.com/u/4298450?v=4', 'https://api.github.com/users/saurav12', 'https://github.com/saurav12', 'https://api.github.com/users/saurav12/followers', 'https://api.github.com/users/saurav12/following', 'https://api.github.com/users/saurav12/gists', 'https://api.github.com/users/saurav12/starred', 'https://api.github.com/users/saurav12/repos', 'https://api.github.com/users/saurav12/events', 'https://api.github.com/users/saurav12/received_events', 0); +INSERT INTO `developer` VALUES (4315207, 'sinahab', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sina Habibian', NULL, 'twitter.com/sinahab', '未知', NULL, NULL, 'Engineer', NULL, 0, 0, 43, 72, 0, 0, 0, '2013-05-01T20:46:08Z', '2024-09-24T16:00:38Z', 'https://avatars.githubusercontent.com/u/4315207?v=4', 'https://api.github.com/users/sinahab', 'https://github.com/sinahab', 'https://api.github.com/users/sinahab/followers', 'https://api.github.com/users/sinahab/following', 'https://api.github.com/users/sinahab/gists', 'https://api.github.com/users/sinahab/starred', 'https://api.github.com/users/sinahab/repos', 'https://api.github.com/users/sinahab/events', 'https://api.github.com/users/sinahab/received_events', 0); +INSERT INTO `developer` VALUES (4324727, 'marcusdiaz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 27, 0, 0, 0, '2013-05-02T18:46:03Z', '2023-09-04T01:26:56Z', 'https://avatars.githubusercontent.com/u/4324727?v=4', 'https://api.github.com/users/marcusdiaz', 'https://github.com/marcusdiaz', 'https://api.github.com/users/marcusdiaz/followers', 'https://api.github.com/users/marcusdiaz/following', 'https://api.github.com/users/marcusdiaz/gists', 'https://api.github.com/users/marcusdiaz/starred', 'https://api.github.com/users/marcusdiaz/repos', 'https://api.github.com/users/marcusdiaz/events', 'https://api.github.com/users/marcusdiaz/received_events', 0); +INSERT INTO `developer` VALUES (4339527, 'xlc1985', 'C', 0, 0, 0, 0, 0, 0, 0, 'xlc1985', NULL, '', '未知', 'xlc1985@126.com', NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2013-05-04T12:33:41Z', '2023-10-08T13:02:24Z', 'https://avatars.githubusercontent.com/u/4339527?v=4', 'https://api.github.com/users/xlc1985', 'https://github.com/xlc1985', 'https://api.github.com/users/xlc1985/followers', 'https://api.github.com/users/xlc1985/following', 'https://api.github.com/users/xlc1985/gists', 'https://api.github.com/users/xlc1985/starred', 'https://api.github.com/users/xlc1985/repos', 'https://api.github.com/users/xlc1985/events', 'https://api.github.com/users/xlc1985/received_events', 0); +INSERT INTO `developer` VALUES (4360349, 'morcos', 'C', 4.307414494121771, 0, 0, 0, 0, 0, 0, 'Alex Morcos', 'Chaincode Labs', '', '未知', 'morcos@chaincode.com', NULL, NULL, NULL, 0, 0, 536, 3, 0, 0, 0, '2013-05-07T02:16:37Z', '2024-03-13T01:19:13Z', 'https://avatars.githubusercontent.com/u/4360349?v=4', 'https://api.github.com/users/morcos', 'https://github.com/morcos', 'https://api.github.com/users/morcos/followers', 'https://api.github.com/users/morcos/following', 'https://api.github.com/users/morcos/gists', 'https://api.github.com/users/morcos/starred', 'https://api.github.com/users/morcos/repos', 'https://api.github.com/users/morcos/events', 'https://api.github.com/users/morcos/received_events', 0); +INSERT INTO `developer` VALUES (4391003, 'aalness', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andy Alness', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 34, 21, 0, 0, 0, '2013-05-09T21:46:55Z', '2024-08-28T21:25:40Z', 'https://avatars.githubusercontent.com/u/4391003?v=4', 'https://api.github.com/users/aalness', 'https://github.com/aalness', 'https://api.github.com/users/aalness/followers', 'https://api.github.com/users/aalness/following', 'https://api.github.com/users/aalness/gists', 'https://api.github.com/users/aalness/starred', 'https://api.github.com/users/aalness/repos', 'https://api.github.com/users/aalness/events', 'https://api.github.com/users/aalness/received_events', 0); +INSERT INTO `developer` VALUES (4407533, 'mhren', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Hrencecin', NULL, '', 'United States - AR', NULL, NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2013-05-12T04:17:08Z', '2023-02-25T20:14:02Z', 'https://avatars.githubusercontent.com/u/4407533?v=4', 'https://api.github.com/users/mhren', 'https://github.com/mhren', 'https://api.github.com/users/mhren/followers', 'https://api.github.com/users/mhren/following', 'https://api.github.com/users/mhren/gists', 'https://api.github.com/users/mhren/starred', 'https://api.github.com/users/mhren/repos', 'https://api.github.com/users/mhren/events', 'https://api.github.com/users/mhren/received_events', 0); +INSERT INTO `developer` VALUES (4426050, 'valentijnscholten', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'ISAAC', '', 'Eindhoven', NULL, NULL, NULL, 'valentijn', 0, 0, 29, 0, 0, 0, 0, '2013-05-14T09:16:26Z', '2024-09-17T07:29:10Z', 'https://avatars.githubusercontent.com/u/4426050?v=4', 'https://api.github.com/users/valentijnscholten', 'https://github.com/valentijnscholten', 'https://api.github.com/users/valentijnscholten/followers', 'https://api.github.com/users/valentijnscholten/following', 'https://api.github.com/users/valentijnscholten/gists', 'https://api.github.com/users/valentijnscholten/starred', 'https://api.github.com/users/valentijnscholten/repos', 'https://api.github.com/users/valentijnscholten/events', 'https://api.github.com/users/valentijnscholten/received_events', 0); +INSERT INTO `developer` VALUES (4458931, 'AlexJeng', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Jeng', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 84, 136, 0, 0, 0, '2013-05-17T16:44:06Z', '2023-10-05T17:25:56Z', 'https://avatars.githubusercontent.com/u/4458931?v=4', 'https://api.github.com/users/AlexJeng', 'https://github.com/AlexJeng', 'https://api.github.com/users/AlexJeng/followers', 'https://api.github.com/users/AlexJeng/following', 'https://api.github.com/users/AlexJeng/gists', 'https://api.github.com/users/AlexJeng/starred', 'https://api.github.com/users/AlexJeng/repos', 'https://api.github.com/users/AlexJeng/events', 'https://api.github.com/users/AlexJeng/received_events', 0); +INSERT INTO `developer` VALUES (4497866, 'reinier-vegter', 'C', 0, 0, 0, 0, 0, 0, 0, 'Reinier Vegter', NULL, '', '未知', NULL, NULL, 'security researcher, (web/api) developer, ethical hacker, secure coding instructor', NULL, 0, 0, 1, 2, 0, 0, 0, '2013-05-22T09:17:37Z', '2024-06-05T14:50:49Z', 'https://avatars.githubusercontent.com/u/4497866?v=4', 'https://api.github.com/users/reinier-vegter', 'https://github.com/reinier-vegter', 'https://api.github.com/users/reinier-vegter/followers', 'https://api.github.com/users/reinier-vegter/following', 'https://api.github.com/users/reinier-vegter/gists', 'https://api.github.com/users/reinier-vegter/starred', 'https://api.github.com/users/reinier-vegter/repos', 'https://api.github.com/users/reinier-vegter/events', 'https://api.github.com/users/reinier-vegter/received_events', 0); +INSERT INTO `developer` VALUES (4504708, 'cpacia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Pacia', NULL, '', 'New Hampshire', 'ctpacia@gmail.com', NULL, NULL, NULL, 0, 0, 234, 2, 0, 0, 0, '2013-05-23T01:09:32Z', '2024-07-11T11:42:33Z', 'https://avatars.githubusercontent.com/u/4504708?v=4', 'https://api.github.com/users/cpacia', 'https://github.com/cpacia', 'https://api.github.com/users/cpacia/followers', 'https://api.github.com/users/cpacia/following', 'https://api.github.com/users/cpacia/gists', 'https://api.github.com/users/cpacia/starred', 'https://api.github.com/users/cpacia/repos', 'https://api.github.com/users/cpacia/events', 'https://api.github.com/users/cpacia/received_events', 0); +INSERT INTO `developer` VALUES (4511029, 'nlandais', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicolas Landais', NULL, '', 'USA', NULL, 'true', NULL, NULL, 0, 0, 5, 8, 0, 0, 0, '2013-05-23T15:58:01Z', '2023-08-14T21:29:42Z', 'https://avatars.githubusercontent.com/u/4511029?v=4', 'https://api.github.com/users/nlandais', 'https://github.com/nlandais', 'https://api.github.com/users/nlandais/followers', 'https://api.github.com/users/nlandais/following', 'https://api.github.com/users/nlandais/gists', 'https://api.github.com/users/nlandais/starred', 'https://api.github.com/users/nlandais/repos', 'https://api.github.com/users/nlandais/events', 'https://api.github.com/users/nlandais/received_events', 0); +INSERT INTO `developer` VALUES (4520322, 'hfinger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Holger Finger', NULL, '', '未知', NULL, 'true', 'Deep Learning, Machine Learning, Robotics, Cloud-Software.', NULL, 0, 0, 3, 0, 0, 0, 0, '2013-05-24T14:56:33Z', '2024-08-19T07:35:50Z', 'https://avatars.githubusercontent.com/u/4520322?v=4', 'https://api.github.com/users/hfinger', 'https://github.com/hfinger', 'https://api.github.com/users/hfinger/followers', 'https://api.github.com/users/hfinger/following', 'https://api.github.com/users/hfinger/gists', 'https://api.github.com/users/hfinger/starred', 'https://api.github.com/users/hfinger/repos', 'https://api.github.com/users/hfinger/events', 'https://api.github.com/users/hfinger/received_events', 0); +INSERT INTO `developer` VALUES (4546298, 'aditmeno', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aditya Menon', NULL, '', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 5, 3, 0, 0, 0, '2013-05-28T06:50:38Z', '2024-10-28T22:35:11Z', 'https://avatars.githubusercontent.com/u/4546298?v=4', 'https://api.github.com/users/aditmeno', 'https://github.com/aditmeno', 'https://api.github.com/users/aditmeno/followers', 'https://api.github.com/users/aditmeno/following', 'https://api.github.com/users/aditmeno/gists', 'https://api.github.com/users/aditmeno/starred', 'https://api.github.com/users/aditmeno/repos', 'https://api.github.com/users/aditmeno/events', 'https://api.github.com/users/aditmeno/received_events', 0); +INSERT INTO `developer` VALUES (4563817, 'Krellan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Lehan', 'Google LLC', '', '未知', 'krellan@krellan.net', 'true', 'Learn Something New Every Day', NULL, 0, 0, 33, 167, 0, 0, 0, '2013-05-29T20:50:56Z', '2024-05-22T06:03:24Z', 'https://avatars.githubusercontent.com/u/4563817?v=4', 'https://api.github.com/users/Krellan', 'https://github.com/Krellan', 'https://api.github.com/users/Krellan/followers', 'https://api.github.com/users/Krellan/following', 'https://api.github.com/users/Krellan/gists', 'https://api.github.com/users/Krellan/starred', 'https://api.github.com/users/Krellan/repos', 'https://api.github.com/users/Krellan/events', 'https://api.github.com/users/Krellan/received_events', 0); +INSERT INTO `developer` VALUES (4568264, 'tholenst', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Holenstein', 'Google', '', 'Zurich', NULL, NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2013-05-30T08:04:11Z', '2024-08-26T15:08:00Z', 'https://avatars.githubusercontent.com/u/4568264?v=4', 'https://api.github.com/users/tholenst', 'https://github.com/tholenst', 'https://api.github.com/users/tholenst/followers', 'https://api.github.com/users/tholenst/following', 'https://api.github.com/users/tholenst/gists', 'https://api.github.com/users/tholenst/starred', 'https://api.github.com/users/tholenst/repos', 'https://api.github.com/users/tholenst/events', 'https://api.github.com/users/tholenst/received_events', 0); +INSERT INTO `developer` VALUES (4571133, 'lscieux', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 12, 0, 0, 0, '2013-05-30T14:04:46Z', '2019-05-24T12:25:46Z', 'https://avatars.githubusercontent.com/u/4571133?v=4', 'https://api.github.com/users/lscieux', 'https://github.com/lscieux', 'https://api.github.com/users/lscieux/followers', 'https://api.github.com/users/lscieux/following', 'https://api.github.com/users/lscieux/gists', 'https://api.github.com/users/lscieux/starred', 'https://api.github.com/users/lscieux/repos', 'https://api.github.com/users/lscieux/events', 'https://api.github.com/users/lscieux/received_events', 0); +INSERT INTO `developer` VALUES (4600363, 'chr4', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Aumann', NULL, 'https://chr4.org', '未知', 'me@chr4.org', 'true', NULL, NULL, 0, 0, 74, 7, 0, 0, 0, '2013-06-03T12:04:23Z', '2024-10-22T13:50:05Z', 'https://avatars.githubusercontent.com/u/4600363?v=4', 'https://api.github.com/users/chr4', 'https://github.com/chr4', 'https://api.github.com/users/chr4/followers', 'https://api.github.com/users/chr4/following', 'https://api.github.com/users/chr4/gists', 'https://api.github.com/users/chr4/starred', 'https://api.github.com/users/chr4/repos', 'https://api.github.com/users/chr4/events', 'https://api.github.com/users/chr4/received_events', 0); +INSERT INTO `developer` VALUES (4622615, 'tstorch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tristan Storch', NULL, '', 'Münster, Germany', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2013-06-05T16:21:22Z', '2022-12-30T10:40:02Z', 'https://avatars.githubusercontent.com/u/4622615?v=4', 'https://api.github.com/users/tstorch', 'https://github.com/tstorch', 'https://api.github.com/users/tstorch/followers', 'https://api.github.com/users/tstorch/following', 'https://api.github.com/users/tstorch/gists', 'https://api.github.com/users/tstorch/starred', 'https://api.github.com/users/tstorch/repos', 'https://api.github.com/users/tstorch/events', 'https://api.github.com/users/tstorch/received_events', 0); +INSERT INTO `developer` VALUES (4632450, 'llamasoft', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcus T', NULL, '', '未知', 'llamasoft@rm-rf.email', NULL, NULL, NULL, 0, 0, 48, 0, 0, 0, 0, '2013-06-06T16:38:17Z', '2024-10-31T16:27:28Z', 'https://avatars.githubusercontent.com/u/4632450?v=4', 'https://api.github.com/users/llamasoft', 'https://github.com/llamasoft', 'https://api.github.com/users/llamasoft/followers', 'https://api.github.com/users/llamasoft/following', 'https://api.github.com/users/llamasoft/gists', 'https://api.github.com/users/llamasoft/starred', 'https://api.github.com/users/llamasoft/repos', 'https://api.github.com/users/llamasoft/events', 'https://api.github.com/users/llamasoft/received_events', 0); +INSERT INTO `developer` VALUES (4633773, 'nejtr0n', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 4, 0, 0, 0, '2013-06-06T19:29:39Z', '2024-10-15T12:59:58Z', 'https://avatars.githubusercontent.com/u/4633773?v=4', 'https://api.github.com/users/nejtr0n', 'https://github.com/nejtr0n', 'https://api.github.com/users/nejtr0n/followers', 'https://api.github.com/users/nejtr0n/following', 'https://api.github.com/users/nejtr0n/gists', 'https://api.github.com/users/nejtr0n/starred', 'https://api.github.com/users/nejtr0n/repos', 'https://api.github.com/users/nejtr0n/events', 'https://api.github.com/users/nejtr0n/received_events', 0); +INSERT INTO `developer` VALUES (4655775, 'austince', 'C', 0, 0, 0, 0, 0, 0, 0, 'Austin Cawley-Edwards', '@confluentinc', '', 'Brooklyn, NY', 'austin.cawley@gmail.com', 'true', 'Engineering, Stream Processing @confluentinc \r\n\r\n', 'austin_space_ce', 0, 0, 105, 398, 0, 0, 0, '2013-06-09T19:24:54Z', '2024-09-16T15:56:29Z', 'https://avatars.githubusercontent.com/u/4655775?v=4', 'https://api.github.com/users/austince', 'https://github.com/austince', 'https://api.github.com/users/austince/followers', 'https://api.github.com/users/austince/following', 'https://api.github.com/users/austince/gists', 'https://api.github.com/users/austince/starred', 'https://api.github.com/users/austince/repos', 'https://api.github.com/users/austince/events', 'https://api.github.com/users/austince/received_events', 0); +INSERT INTO `developer` VALUES (4672518, 'tasdikrahman', 'C', 4.633236438451415, 0, 0, 0, 0, 0, 0, 'Tasdik Rahman', '@newrelic', 'https://www.tasdikrahman.com/', 'Berlin, Germany', NULL, 'true', 'Engineering @newrelic | @kubernetes-sigs Cluster API 1.9 Release Team | Formerly @deliveryhero, @gojek, @razorpay, past contributor to @oVirt', 'tasdikrahman', 0, 0, 555, 796, 0, 0, 0, '2013-06-11T17:41:01Z', '2024-10-23T11:39:25Z', 'https://avatars.githubusercontent.com/u/4672518?v=4', 'https://api.github.com/users/tasdikrahman', 'https://github.com/tasdikrahman', 'https://api.github.com/users/tasdikrahman/followers', 'https://api.github.com/users/tasdikrahman/following', 'https://api.github.com/users/tasdikrahman/gists', 'https://api.github.com/users/tasdikrahman/starred', 'https://api.github.com/users/tasdikrahman/repos', 'https://api.github.com/users/tasdikrahman/events', 'https://api.github.com/users/tasdikrahman/received_events', 0); +INSERT INTO `developer` VALUES (4741312, 'devGregA', 'C', 0, 0, 0, 0, 0, 0, 0, 'Greg Anderson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 33, 0, 0, 0, 0, '2013-06-19T18:49:00Z', '2024-10-31T18:06:08Z', 'https://avatars.githubusercontent.com/u/4741312?v=4', 'https://api.github.com/users/devGregA', 'https://github.com/devGregA', 'https://api.github.com/users/devGregA/followers', 'https://api.github.com/users/devGregA/following', 'https://api.github.com/users/devGregA/gists', 'https://api.github.com/users/devGregA/starred', 'https://api.github.com/users/devGregA/repos', 'https://api.github.com/users/devGregA/events', 'https://api.github.com/users/devGregA/received_events', 0); +INSERT INTO `developer` VALUES (4772216, 'craigfurman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Craig Furman', NULL, '', 'London', NULL, NULL, NULL, NULL, 0, 0, 32, 5, 0, 0, 0, '2013-06-22T09:28:51Z', '2024-10-14T14:15:23Z', 'https://avatars.githubusercontent.com/u/4772216?v=4', 'https://api.github.com/users/craigfurman', 'https://github.com/craigfurman', 'https://api.github.com/users/craigfurman/followers', 'https://api.github.com/users/craigfurman/following', 'https://api.github.com/users/craigfurman/gists', 'https://api.github.com/users/craigfurman/starred', 'https://api.github.com/users/craigfurman/repos', 'https://api.github.com/users/craigfurman/events', 'https://api.github.com/users/craigfurman/received_events', 0); +INSERT INTO `developer` VALUES (4781551, 'shaulkf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shaul Kfir', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 0, 0, 0, 0, '2013-06-23T03:42:27Z', '2024-05-01T13:22:56Z', 'https://avatars.githubusercontent.com/u/4781551?v=4', 'https://api.github.com/users/shaulkf', 'https://github.com/shaulkf', 'https://api.github.com/users/shaulkf/followers', 'https://api.github.com/users/shaulkf/following', 'https://api.github.com/users/shaulkf/gists', 'https://api.github.com/users/shaulkf/starred', 'https://api.github.com/users/shaulkf/repos', 'https://api.github.com/users/shaulkf/events', 'https://api.github.com/users/shaulkf/received_events', 0); +INSERT INTO `developer` VALUES (4787256, 'erickskrauch', 'C', 0, 0, 0, 0, 0, 0, 0, 'ErickSkrauch', '@elyby ', 'https://t.me/erickskrauch', 'Poland, Krakow', 'erickskrauch@ely.by', 'true', NULL, 'erickskrauch', 0, 0, 24, 5, 0, 0, 0, '2013-06-23T14:08:37Z', '2024-10-27T01:34:34Z', 'https://avatars.githubusercontent.com/u/4787256?v=4', 'https://api.github.com/users/erickskrauch', 'https://github.com/erickskrauch', 'https://api.github.com/users/erickskrauch/followers', 'https://api.github.com/users/erickskrauch/following', 'https://api.github.com/users/erickskrauch/gists', 'https://api.github.com/users/erickskrauch/starred', 'https://api.github.com/users/erickskrauch/repos', 'https://api.github.com/users/erickskrauch/events', 'https://api.github.com/users/erickskrauch/received_events', 0); +INSERT INTO `developer` VALUES (4829131, 'lano1106', 'C', 0, 0, 0, 0, 0, 0, 0, 'Olivier Langlois', 'Trillion01 Inc.', 'https://trillion01.com', 'Montreal, Canada', 'olivier@olivierlanglois.net', NULL, NULL, 'lano1106', 0, 0, 8, 2, 0, 0, 0, '2013-06-26T04:15:31Z', '2022-08-18T19:08:30Z', 'https://avatars.githubusercontent.com/u/4829131?v=4', 'https://api.github.com/users/lano1106', 'https://github.com/lano1106', 'https://api.github.com/users/lano1106/followers', 'https://api.github.com/users/lano1106/following', 'https://api.github.com/users/lano1106/gists', 'https://api.github.com/users/lano1106/starred', 'https://api.github.com/users/lano1106/repos', 'https://api.github.com/users/lano1106/events', 'https://api.github.com/users/lano1106/received_events', 0); +INSERT INTO `developer` VALUES (4873959, 'thesquaregroot', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Groot', '@SoftwareVerde', 'https://thesquaregroot.com', 'Westerville, OH', 'groot.andrew@gmail.com', NULL, 'Software engineer and game designer.\r\n\r\nIt\'s okay to think hard about things. It\'s okay to have fun, too.\r\n\r\nTea goes well with both. Beer is even better.', 'thesquaregroot', 0, 0, 18, 16, 0, 0, 0, '2013-06-28T21:45:12Z', '2024-08-11T05:14:28Z', 'https://avatars.githubusercontent.com/u/4873959?v=4', 'https://api.github.com/users/thesquaregroot', 'https://github.com/thesquaregroot', 'https://api.github.com/users/thesquaregroot/followers', 'https://api.github.com/users/thesquaregroot/following', 'https://api.github.com/users/thesquaregroot/gists', 'https://api.github.com/users/thesquaregroot/starred', 'https://api.github.com/users/thesquaregroot/repos', 'https://api.github.com/users/thesquaregroot/events', 'https://api.github.com/users/thesquaregroot/received_events', 0); +INSERT INTO `developer` VALUES (4882541, 'Wonong', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wonyeong Choi', 'Samsung Electronics', 'https://www.linkedin.com/in/wonyeongchoi/', 'Korea', 'ciwnyg0815@gmail.com', NULL, 'Serial mistaker.\r\nI learn from mistakes and write codes to prevent same mistakes👨‍💻', NULL, 0, 0, 26, 41, 0, 0, 0, '2013-06-29T12:58:05Z', '2024-10-04T03:01:42Z', 'https://avatars.githubusercontent.com/u/4882541?v=4', 'https://api.github.com/users/Wonong', 'https://github.com/Wonong', 'https://api.github.com/users/Wonong/followers', 'https://api.github.com/users/Wonong/following', 'https://api.github.com/users/Wonong/gists', 'https://api.github.com/users/Wonong/starred', 'https://api.github.com/users/Wonong/repos', 'https://api.github.com/users/Wonong/events', 'https://api.github.com/users/Wonong/received_events', 0); +INSERT INTO `developer` VALUES (4926491, 'huangwei2013', 'C', 0, 0, 0, 0, 0, 0, 0, 'chris', NULL, '', 'shenzhen,china', '38746057@qq.com', 'true', NULL, NULL, 0, 0, 20, 13, 0, 0, 0, '2013-07-03T03:14:24Z', '2024-08-27T14:04:31Z', 'https://avatars.githubusercontent.com/u/4926491?v=4', 'https://api.github.com/users/huangwei2013', 'https://github.com/huangwei2013', 'https://api.github.com/users/huangwei2013/followers', 'https://api.github.com/users/huangwei2013/following', 'https://api.github.com/users/huangwei2013/gists', 'https://api.github.com/users/huangwei2013/starred', 'https://api.github.com/users/huangwei2013/repos', 'https://api.github.com/users/huangwei2013/events', 'https://api.github.com/users/huangwei2013/received_events', 0); +INSERT INTO `developer` VALUES (4928176, 'sarchar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sarchar', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 29, 3, 0, 0, 0, '2013-07-03T07:52:21Z', '2024-10-14T04:10:46Z', 'https://avatars.githubusercontent.com/u/4928176?v=4', 'https://api.github.com/users/sarchar', 'https://github.com/sarchar', 'https://api.github.com/users/sarchar/followers', 'https://api.github.com/users/sarchar/following', 'https://api.github.com/users/sarchar/gists', 'https://api.github.com/users/sarchar/starred', 'https://api.github.com/users/sarchar/repos', 'https://api.github.com/users/sarchar/events', 'https://api.github.com/users/sarchar/received_events', 0); +INSERT INTO `developer` VALUES (4943644, 'domob1812', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Kraft', '@xaya', 'https://www.domob.eu/', 'Zürich', 'd@domob.eu', NULL, NULL, NULL, 0, 0, 89, 0, 0, 0, 0, '2013-07-04T19:34:13Z', '2024-10-08T18:04:16Z', 'https://avatars.githubusercontent.com/u/4943644?v=4', 'https://api.github.com/users/domob1812', 'https://github.com/domob1812', 'https://api.github.com/users/domob1812/followers', 'https://api.github.com/users/domob1812/following', 'https://api.github.com/users/domob1812/gists', 'https://api.github.com/users/domob1812/starred', 'https://api.github.com/users/domob1812/repos', 'https://api.github.com/users/domob1812/events', 'https://api.github.com/users/domob1812/received_events', 0); +INSERT INTO `developer` VALUES (4952784, 'lifelofranco', 'C', 0, 0, 0, 0, 0, 0, 0, 'Life Christian', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 7, 0, 0, 0, '2013-07-06T07:41:05Z', '2024-10-17T16:47:59Z', 'https://avatars.githubusercontent.com/u/4952784?v=4', 'https://api.github.com/users/lifelofranco', 'https://github.com/lifelofranco', 'https://api.github.com/users/lifelofranco/followers', 'https://api.github.com/users/lifelofranco/following', 'https://api.github.com/users/lifelofranco/gists', 'https://api.github.com/users/lifelofranco/starred', 'https://api.github.com/users/lifelofranco/repos', 'https://api.github.com/users/lifelofranco/events', 'https://api.github.com/users/lifelofranco/received_events', 0); +INSERT INTO `developer` VALUES (4971419, 'ccrims0n', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vivek', NULL, '', 'Bangalore', NULL, NULL, NULL, NULL, 0, 0, 28, 7, 0, 0, 0, '2013-07-09T07:44:03Z', '2024-10-20T15:01:15Z', 'https://avatars.githubusercontent.com/u/4971419?v=4', 'https://api.github.com/users/ccrims0n', 'https://github.com/ccrims0n', 'https://api.github.com/users/ccrims0n/followers', 'https://api.github.com/users/ccrims0n/following', 'https://api.github.com/users/ccrims0n/gists', 'https://api.github.com/users/ccrims0n/starred', 'https://api.github.com/users/ccrims0n/repos', 'https://api.github.com/users/ccrims0n/events', 'https://api.github.com/users/ccrims0n/received_events', 0); +INSERT INTO `developer` VALUES (4993799, 'str4d', 'C', 11.3897546524451, 0, 0, 0, 0, 0, 0, 'Jack Grigg', '@zcash', 'https://str4d.xyz/', '未知', NULL, NULL, NULL, NULL, 0, 0, 949, 2, 0, 0, 0, '2013-07-12T01:40:03Z', '2024-11-01T00:12:24Z', 'https://avatars.githubusercontent.com/u/4993799?v=4', 'https://api.github.com/users/str4d', 'https://github.com/str4d', 'https://api.github.com/users/str4d/followers', 'https://api.github.com/users/str4d/following', 'https://api.github.com/users/str4d/gists', 'https://api.github.com/users/str4d/starred', 'https://api.github.com/users/str4d/repos', 'https://api.github.com/users/str4d/events', 'https://api.github.com/users/str4d/received_events', 0); +INSERT INTO `developer` VALUES (4997180, 'emptywee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Igor', NULL, '', 'Dallas, TX', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2013-07-12T13:07:20Z', '2023-02-12T20:45:17Z', 'https://avatars.githubusercontent.com/u/4997180?v=4', 'https://api.github.com/users/emptywee', 'https://github.com/emptywee', 'https://api.github.com/users/emptywee/followers', 'https://api.github.com/users/emptywee/following', 'https://api.github.com/users/emptywee/gists', 'https://api.github.com/users/emptywee/starred', 'https://api.github.com/users/emptywee/repos', 'https://api.github.com/users/emptywee/events', 'https://api.github.com/users/emptywee/received_events', 0); +INSERT INTO `developer` VALUES (5000654, 'oxtoacart', 'C', 0.4318482089375758, 0, 0, 0, 0, 0, 0, 'Percy Wegmann', NULL, 'https://blog.percywegmann.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 310, 5, 0, 0, 0, '2013-07-13T01:48:56Z', '2024-10-23T00:01:02Z', 'https://avatars.githubusercontent.com/u/5000654?v=4', 'https://api.github.com/users/oxtoacart', 'https://github.com/oxtoacart', 'https://api.github.com/users/oxtoacart/followers', 'https://api.github.com/users/oxtoacart/following', 'https://api.github.com/users/oxtoacart/gists', 'https://api.github.com/users/oxtoacart/starred', 'https://api.github.com/users/oxtoacart/repos', 'https://api.github.com/users/oxtoacart/events', 'https://api.github.com/users/oxtoacart/received_events', 0); +INSERT INTO `developer` VALUES (5031346, 'oraluben', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yichen Yan', 'Alibaba', '', 'Shanghai', NULL, NULL, 'Software Testing & Compiler.\r\nPreviously @oracle / @graalvm,\r\n@pingcap', NULL, 0, 0, 76, 53, 0, 0, 0, '2013-07-17T13:34:27Z', '2024-10-28T01:47:50Z', 'https://avatars.githubusercontent.com/u/5031346?v=4', 'https://api.github.com/users/oraluben', 'https://github.com/oraluben', 'https://api.github.com/users/oraluben/followers', 'https://api.github.com/users/oraluben/following', 'https://api.github.com/users/oraluben/gists', 'https://api.github.com/users/oraluben/starred', 'https://api.github.com/users/oraluben/repos', 'https://api.github.com/users/oraluben/events', 'https://api.github.com/users/oraluben/received_events', 0); +INSERT INTO `developer` VALUES (5031457, 'stephen-turner', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephen Turner', '@docker ', '', 'Cambridge, UK', 's.r.e.turner@gmail.com', NULL, NULL, NULL, 0, 0, 38, 0, 0, 0, 0, '2013-07-17T13:48:29Z', '2024-10-22T11:25:11Z', 'https://avatars.githubusercontent.com/u/5031457?v=4', 'https://api.github.com/users/stephen-turner', 'https://github.com/stephen-turner', 'https://api.github.com/users/stephen-turner/followers', 'https://api.github.com/users/stephen-turner/following', 'https://api.github.com/users/stephen-turner/gists', 'https://api.github.com/users/stephen-turner/starred', 'https://api.github.com/users/stephen-turner/repos', 'https://api.github.com/users/stephen-turner/events', 'https://api.github.com/users/stephen-turner/received_events', 0); +INSERT INTO `developer` VALUES (5038597, 'musalbas', 'C', 5.936524215769994, 0, 0, 0, 0, 0, 0, 'Mustafa Al-Bassam', NULL, '', '未知', NULL, 'true', NULL, 'musalbas', 0, 0, 631, 0, 0, 0, 0, '2013-07-18T10:38:03Z', '2024-11-01T10:41:17Z', 'https://avatars.githubusercontent.com/u/5038597?v=4', 'https://api.github.com/users/musalbas', 'https://github.com/musalbas', 'https://api.github.com/users/musalbas/followers', 'https://api.github.com/users/musalbas/following', 'https://api.github.com/users/musalbas/gists', 'https://api.github.com/users/musalbas/starred', 'https://api.github.com/users/musalbas/repos', 'https://api.github.com/users/musalbas/events', 'https://api.github.com/users/musalbas/received_events', 0); +INSERT INTO `developer` VALUES (5055041, 'trevinhofmann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Trevin Hofmann', NULL, 'https://trevinhofmann.com', 'California', 'trevinhofmann@gmail.com', NULL, 'Software Engineer', NULL, 0, 0, 45, 31, 0, 0, 0, '2013-07-20T18:48:18Z', '2024-10-12T16:33:39Z', 'https://avatars.githubusercontent.com/u/5055041?v=4', 'https://api.github.com/users/trevinhofmann', 'https://github.com/trevinhofmann', 'https://api.github.com/users/trevinhofmann/followers', 'https://api.github.com/users/trevinhofmann/following', 'https://api.github.com/users/trevinhofmann/gists', 'https://api.github.com/users/trevinhofmann/starred', 'https://api.github.com/users/trevinhofmann/repos', 'https://api.github.com/users/trevinhofmann/events', 'https://api.github.com/users/trevinhofmann/received_events', 0); +INSERT INTO `developer` VALUES (5056334, 'jake---', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 5, 0, 0, 0, '2013-07-21T01:35:35Z', '2020-09-05T05:47:15Z', 'https://avatars.githubusercontent.com/u/5056334?v=4', 'https://api.github.com/users/jake---', 'https://github.com/jake---', 'https://api.github.com/users/jake---/followers', 'https://api.github.com/users/jake---/following', 'https://api.github.com/users/jake---/gists', 'https://api.github.com/users/jake---/starred', 'https://api.github.com/users/jake---/repos', 'https://api.github.com/users/jake---/events', 'https://api.github.com/users/jake---/received_events', 0); +INSERT INTO `developer` VALUES (5060473, 'ms32035', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcin Szymański', '@crugroup ', 'www.marcinszymanski.pl', 'London, UK', 'ms32035@gmail.com', NULL, 'Everything about data!', NULL, 0, 0, 23, 9, 0, 0, 0, '2013-07-21T21:51:12Z', '2024-10-30T21:35:39Z', 'https://avatars.githubusercontent.com/u/5060473?v=4', 'https://api.github.com/users/ms32035', 'https://github.com/ms32035', 'https://api.github.com/users/ms32035/followers', 'https://api.github.com/users/ms32035/following', 'https://api.github.com/users/ms32035/gists', 'https://api.github.com/users/ms32035/starred', 'https://api.github.com/users/ms32035/repos', 'https://api.github.com/users/ms32035/events', 'https://api.github.com/users/ms32035/received_events', 0); +INSERT INTO `developer` VALUES (5071988, '4406arthur', 'C', 0, 0, 0, 0, 0, 0, 0, 'ArthurMa', NULL, '', 'Taiwan', '4406arthur@gmail.com', 'true', NULL, NULL, 0, 0, 26, 36, 0, 0, 0, '2013-07-23T09:43:08Z', '2024-10-02T08:56:30Z', 'https://avatars.githubusercontent.com/u/5071988?v=4', 'https://api.github.com/users/4406arthur', 'https://github.com/4406arthur', 'https://api.github.com/users/4406arthur/followers', 'https://api.github.com/users/4406arthur/following', 'https://api.github.com/users/4406arthur/gists', 'https://api.github.com/users/4406arthur/starred', 'https://api.github.com/users/4406arthur/repos', 'https://api.github.com/users/4406arthur/events', 'https://api.github.com/users/4406arthur/received_events', 0); +INSERT INTO `developer` VALUES (5115163, 'Enigmatyk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fábio Dias', NULL, 'https://enigmatyk.github.io/web/', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 7, 0, 0, 0, '2013-07-29T17:54:48Z', '2024-10-29T17:30:05Z', 'https://avatars.githubusercontent.com/u/5115163?v=4', 'https://api.github.com/users/Enigmatyk', 'https://github.com/Enigmatyk', 'https://api.github.com/users/Enigmatyk/followers', 'https://api.github.com/users/Enigmatyk/following', 'https://api.github.com/users/Enigmatyk/gists', 'https://api.github.com/users/Enigmatyk/starred', 'https://api.github.com/users/Enigmatyk/repos', 'https://api.github.com/users/Enigmatyk/events', 'https://api.github.com/users/Enigmatyk/received_events', 0); +INSERT INTO `developer` VALUES (5115470, 'jonathancross', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Cross', 'PGP: C0C076132FFA7695', 'https://JonathanCross.com', 'Earth', NULL, NULL, 'UX Engineer contributing to secure, privacy-preserving cryptocurrencies & decentralized communication tools.', 'jonf3n', 0, 0, 153, 97, 0, 0, 0, '2013-07-29T18:40:40Z', '2024-10-18T11:28:48Z', 'https://avatars.githubusercontent.com/u/5115470?v=4', 'https://api.github.com/users/jonathancross', 'https://github.com/jonathancross', 'https://api.github.com/users/jonathancross/followers', 'https://api.github.com/users/jonathancross/following', 'https://api.github.com/users/jonathancross/gists', 'https://api.github.com/users/jonathancross/starred', 'https://api.github.com/users/jonathancross/repos', 'https://api.github.com/users/jonathancross/events', 'https://api.github.com/users/jonathancross/received_events', 0); +INSERT INTO `developer` VALUES (5143604, 'imwuzhh', 'C', 0, 0, 0, 0, 0, 0, 0, 'harry', 'tvunetworks.com', '', 'Shanghai, P.R.China', 'harrywu@tvunetworks.com', 'true', NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2013-08-02T02:17:11Z', '2016-02-27T10:24:25Z', 'https://avatars.githubusercontent.com/u/5143604?v=4', 'https://api.github.com/users/imwuzhh', 'https://github.com/imwuzhh', 'https://api.github.com/users/imwuzhh/followers', 'https://api.github.com/users/imwuzhh/following', 'https://api.github.com/users/imwuzhh/gists', 'https://api.github.com/users/imwuzhh/starred', 'https://api.github.com/users/imwuzhh/repos', 'https://api.github.com/users/imwuzhh/events', 'https://api.github.com/users/imwuzhh/received_events', 0); +INSERT INTO `developer` VALUES (5143993, 'Altoidnerd', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 6, 0, 0, 0, '2013-08-02T03:24:06Z', '2024-02-07T15:28:16Z', 'https://avatars.githubusercontent.com/u/5143993?v=4', 'https://api.github.com/users/Altoidnerd', 'https://github.com/Altoidnerd', 'https://api.github.com/users/Altoidnerd/followers', 'https://api.github.com/users/Altoidnerd/following', 'https://api.github.com/users/Altoidnerd/gists', 'https://api.github.com/users/Altoidnerd/starred', 'https://api.github.com/users/Altoidnerd/repos', 'https://api.github.com/users/Altoidnerd/events', 'https://api.github.com/users/Altoidnerd/received_events', 0); +INSERT INTO `developer` VALUES (5176832, 'jmprcx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Virginia', NULL, NULL, NULL, NULL, 0, 0, 56, 12, 0, 0, 0, '2013-08-06T19:42:10Z', '2023-11-01T01:06:38Z', 'https://avatars.githubusercontent.com/u/5176832?v=4', 'https://api.github.com/users/jmprcx', 'https://github.com/jmprcx', 'https://api.github.com/users/jmprcx/followers', 'https://api.github.com/users/jmprcx/following', 'https://api.github.com/users/jmprcx/gists', 'https://api.github.com/users/jmprcx/starred', 'https://api.github.com/users/jmprcx/repos', 'https://api.github.com/users/jmprcx/events', 'https://api.github.com/users/jmprcx/received_events', 0); +INSERT INTO `developer` VALUES (5244316, 'YangKeao', 'C', 0, 0, 0, 0, 0, 0, 0, 'YangKeao', '@pingcap ', '', 'Hangzhou,China', 'yangkeao@chunibyo.icu', NULL, NULL, 'YangKeao', 0, 0, 238, 59, 0, 0, 0, '2013-08-16T11:47:33Z', '2024-10-12T10:46:07Z', 'https://avatars.githubusercontent.com/u/5244316?v=4', 'https://api.github.com/users/YangKeao', 'https://github.com/YangKeao', 'https://api.github.com/users/YangKeao/followers', 'https://api.github.com/users/YangKeao/following', 'https://api.github.com/users/YangKeao/gists', 'https://api.github.com/users/YangKeao/starred', 'https://api.github.com/users/YangKeao/repos', 'https://api.github.com/users/YangKeao/events', 'https://api.github.com/users/YangKeao/received_events', 0); +INSERT INTO `developer` VALUES (5269298, 'greenaddress', 'C', 2.884087053102795, 0, 0, 0, 0, 0, 0, 'GreenAddress', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 453, 32, 0, 0, 0, '2013-08-20T11:21:21Z', '2024-09-27T14:11:52Z', 'https://avatars.githubusercontent.com/u/5269298?v=4', 'https://api.github.com/users/greenaddress', 'https://github.com/greenaddress', 'https://api.github.com/users/greenaddress/followers', 'https://api.github.com/users/greenaddress/following', 'https://api.github.com/users/greenaddress/gists', 'https://api.github.com/users/greenaddress/starred', 'https://api.github.com/users/greenaddress/repos', 'https://api.github.com/users/greenaddress/events', 'https://api.github.com/users/greenaddress/received_events', 0); +INSERT INTO `developer` VALUES (5351682, 'hieven', 'C', 0, 0, 0, 0, 0, 0, 0, 'Even', NULL, 'https://www.linkedin.com/in/hieven', 'London, United Kingdom', 'hieven.c@gmail.com', 'true', NULL, NULL, 0, 0, 40, 28, 0, 0, 0, '2013-08-31T07:00:24Z', '2024-09-13T13:41:05Z', 'https://avatars.githubusercontent.com/u/5351682?v=4', 'https://api.github.com/users/hieven', 'https://github.com/hieven', 'https://api.github.com/users/hieven/followers', 'https://api.github.com/users/hieven/following', 'https://api.github.com/users/hieven/gists', 'https://api.github.com/users/hieven/starred', 'https://api.github.com/users/hieven/repos', 'https://api.github.com/users/hieven/events', 'https://api.github.com/users/hieven/received_events', 0); +INSERT INTO `developer` VALUES (5372770, 'maxheld83', 'C', 0, 0, 0, 0, 0, 0, 0, 'Max Held', '@dataheld', 'https://www.maxheld.de/', 'Bad Sachsa, Germany', 'info@maxheld.de', 'true', '#rstats shiny developer and data scientist.\r\nCurrently freelance @dataheld, formerly @subugoe, @rstudio, @Jacobs-University.', 'maxheld', 0, 0, 211, 195, 0, 0, 0, '2013-09-03T12:27:51Z', '2024-07-19T13:36:16Z', 'https://avatars.githubusercontent.com/u/5372770?v=4', 'https://api.github.com/users/maxheld83', 'https://github.com/maxheld83', 'https://api.github.com/users/maxheld83/followers', 'https://api.github.com/users/maxheld83/following', 'https://api.github.com/users/maxheld83/gists', 'https://api.github.com/users/maxheld83/starred', 'https://api.github.com/users/maxheld83/repos', 'https://api.github.com/users/maxheld83/events', 'https://api.github.com/users/maxheld83/received_events', 0); +INSERT INTO `developer` VALUES (5378713, 'turboencabulator', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2013-09-04T04:07:23Z', '2024-10-24T01:50:44Z', 'https://avatars.githubusercontent.com/u/5378713?v=4', 'https://api.github.com/users/turboencabulator', 'https://github.com/turboencabulator', 'https://api.github.com/users/turboencabulator/followers', 'https://api.github.com/users/turboencabulator/following', 'https://api.github.com/users/turboencabulator/gists', 'https://api.github.com/users/turboencabulator/starred', 'https://api.github.com/users/turboencabulator/repos', 'https://api.github.com/users/turboencabulator/events', 'https://api.github.com/users/turboencabulator/received_events', 0); +INSERT INTO `developer` VALUES (5380830, 'bgaifullin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bulat Gaifullin', 'Yandex', '', 'Moscow', 'gaifullinbf@gmail.com', NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2013-09-04T09:41:48Z', '2024-10-03T11:27:05Z', 'https://avatars.githubusercontent.com/u/5380830?v=4', 'https://api.github.com/users/bgaifullin', 'https://github.com/bgaifullin', 'https://api.github.com/users/bgaifullin/followers', 'https://api.github.com/users/bgaifullin/following', 'https://api.github.com/users/bgaifullin/gists', 'https://api.github.com/users/bgaifullin/starred', 'https://api.github.com/users/bgaifullin/repos', 'https://api.github.com/users/bgaifullin/events', 'https://api.github.com/users/bgaifullin/received_events', 0); +INSERT INTO `developer` VALUES (5427022, 'gbiss', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 2, 0, 0, 0, '2013-09-10T12:24:32Z', '2024-10-29T11:19:00Z', 'https://avatars.githubusercontent.com/u/5427022?v=4', 'https://api.github.com/users/gbiss', 'https://github.com/gbiss', 'https://api.github.com/users/gbiss/followers', 'https://api.github.com/users/gbiss/following', 'https://api.github.com/users/gbiss/gists', 'https://api.github.com/users/gbiss/starred', 'https://api.github.com/users/gbiss/repos', 'https://api.github.com/users/gbiss/events', 'https://api.github.com/users/gbiss/received_events', 0); +INSERT INTO `developer` VALUES (5450783, 'shumin1027', 'C', 0, 0, 0, 0, 0, 0, 0, '舍我其谁', NULL, '', '  中国,江苏,无锡', NULL, NULL, NULL, NULL, 0, 0, 9, 27, 0, 0, 0, '2013-09-13T09:04:51Z', '2024-09-12T03:13:31Z', 'https://avatars.githubusercontent.com/u/5450783?v=4', 'https://api.github.com/users/shumin1027', 'https://github.com/shumin1027', 'https://api.github.com/users/shumin1027/followers', 'https://api.github.com/users/shumin1027/following', 'https://api.github.com/users/shumin1027/gists', 'https://api.github.com/users/shumin1027/starred', 'https://api.github.com/users/shumin1027/repos', 'https://api.github.com/users/shumin1027/events', 'https://api.github.com/users/shumin1027/received_events', 0); +INSERT INTO `developer` VALUES (5460972, 'bgorlick', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Gorlick', NULL, '', 'Global ', NULL, NULL, 'Low level, quantum computing, bits and bytes -- creating a peaceful and meaningful world for humans, AI and the rest :)', NULL, 0, 0, 28, 31, 0, 0, 0, '2013-09-15T00:26:10Z', '2024-10-23T03:05:37Z', 'https://avatars.githubusercontent.com/u/5460972?v=4', 'https://api.github.com/users/bgorlick', 'https://github.com/bgorlick', 'https://api.github.com/users/bgorlick/followers', 'https://api.github.com/users/bgorlick/following', 'https://api.github.com/users/bgorlick/gists', 'https://api.github.com/users/bgorlick/starred', 'https://api.github.com/users/bgorlick/repos', 'https://api.github.com/users/bgorlick/events', 'https://api.github.com/users/bgorlick/received_events', 0); +INSERT INTO `developer` VALUES (5468769, 'madchap', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fred Blaise', NULL, '', 'Vaud, Switzerland', NULL, NULL, 'Product Security', NULL, 0, 0, 43, 14, 0, 0, 0, '2013-09-16T10:09:23Z', '2024-10-28T16:17:54Z', 'https://avatars.githubusercontent.com/u/5468769?v=4', 'https://api.github.com/users/madchap', 'https://github.com/madchap', 'https://api.github.com/users/madchap/followers', 'https://api.github.com/users/madchap/following', 'https://api.github.com/users/madchap/gists', 'https://api.github.com/users/madchap/starred', 'https://api.github.com/users/madchap/repos', 'https://api.github.com/users/madchap/events', 'https://api.github.com/users/madchap/received_events', 0); +INSERT INTO `developer` VALUES (5471749, 'Xfennec', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julien LOLLIVIER', NULL, '', 'Nantes, France', NULL, 'true', NULL, 'Xfennec', 0, 0, 136, 5, 0, 0, 0, '2013-09-16T17:28:24Z', '2024-01-22T09:39:21Z', 'https://avatars.githubusercontent.com/u/5471749?v=4', 'https://api.github.com/users/Xfennec', 'https://github.com/Xfennec', 'https://api.github.com/users/Xfennec/followers', 'https://api.github.com/users/Xfennec/following', 'https://api.github.com/users/Xfennec/gists', 'https://api.github.com/users/Xfennec/starred', 'https://api.github.com/users/Xfennec/repos', 'https://api.github.com/users/Xfennec/events', 'https://api.github.com/users/Xfennec/received_events', 0); +INSERT INTO `developer` VALUES (5477111, 'JamesCullum', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Cullum (Pseudonym)', NULL, 'https://mailhide.io/e/Wno7k', '未知', NULL, NULL, NULL, NULL, 0, 0, 129, 1, 0, 0, 0, '2013-09-17T10:21:26Z', '2024-09-02T21:27:19Z', 'https://avatars.githubusercontent.com/u/5477111?v=4', 'https://api.github.com/users/JamesCullum', 'https://github.com/JamesCullum', 'https://api.github.com/users/JamesCullum/followers', 'https://api.github.com/users/JamesCullum/following', 'https://api.github.com/users/JamesCullum/gists', 'https://api.github.com/users/JamesCullum/starred', 'https://api.github.com/users/JamesCullum/repos', 'https://api.github.com/users/JamesCullum/events', 'https://api.github.com/users/JamesCullum/received_events', 0); +INSERT INTO `developer` VALUES (5484988, 'kohago', 'C', 0, 0, 0, 0, 0, 0, 0, 'kouha syuu', NULL, 'http://kohago.blogspot.com/', 'East Asia', 'k-syuu@msn.com', NULL, 'A freelance Engineer.\r\n', NULL, 0, 0, 0, 0, 0, 0, 0, '2013-09-18T08:52:42Z', '2024-08-21T10:47:47Z', 'https://avatars.githubusercontent.com/u/5484988?v=4', 'https://api.github.com/users/kohago', 'https://github.com/kohago', 'https://api.github.com/users/kohago/followers', 'https://api.github.com/users/kohago/following', 'https://api.github.com/users/kohago/gists', 'https://api.github.com/users/kohago/starred', 'https://api.github.com/users/kohago/repos', 'https://api.github.com/users/kohago/events', 'https://api.github.com/users/kohago/received_events', 0); +INSERT INTO `developer` VALUES (5502789, 'Frostweeds', 'C', 0, 0, 0, 0, 0, 0, 0, 'Frostweeds', NULL, '', '未知', 'romain.jufer@gmail.com', NULL, 'Working @avnu-labs ', NULL, 0, 0, 6, 1, 0, 0, 0, '2013-09-20T15:39:56Z', '2024-10-27T09:34:08Z', 'https://avatars.githubusercontent.com/u/5502789?v=4', 'https://api.github.com/users/Frostweeds', 'https://github.com/Frostweeds', 'https://api.github.com/users/Frostweeds/followers', 'https://api.github.com/users/Frostweeds/following', 'https://api.github.com/users/Frostweeds/gists', 'https://api.github.com/users/Frostweeds/starred', 'https://api.github.com/users/Frostweeds/repos', 'https://api.github.com/users/Frostweeds/events', 'https://api.github.com/users/Frostweeds/received_events', 0); +INSERT INTO `developer` VALUES (5513218, 'zardak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 1, 0, 0, 0, '2013-09-22T15:39:38Z', '2024-09-17T09:20:25Z', 'https://avatars.githubusercontent.com/u/5513218?v=4', 'https://api.github.com/users/zardak', 'https://github.com/zardak', 'https://api.github.com/users/zardak/followers', 'https://api.github.com/users/zardak/following', 'https://api.github.com/users/zardak/gists', 'https://api.github.com/users/zardak/starred', 'https://api.github.com/users/zardak/repos', 'https://api.github.com/users/zardak/events', 'https://api.github.com/users/zardak/received_events', 0); +INSERT INTO `developer` VALUES (5585923, 'mathieubergeron', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathieu Bergeron', 'Nu Echo Inc.', '', 'Montréal, Québec, Canada', 'bergeron.mathieu@gmail.com', NULL, NULL, NULL, 0, 0, 5, 8, 0, 0, 0, '2013-10-01T13:29:34Z', '2024-06-25T18:17:53Z', 'https://avatars.githubusercontent.com/u/5585923?v=4', 'https://api.github.com/users/mathieubergeron', 'https://github.com/mathieubergeron', 'https://api.github.com/users/mathieubergeron/followers', 'https://api.github.com/users/mathieubergeron/following', 'https://api.github.com/users/mathieubergeron/gists', 'https://api.github.com/users/mathieubergeron/starred', 'https://api.github.com/users/mathieubergeron/repos', 'https://api.github.com/users/mathieubergeron/events', 'https://api.github.com/users/mathieubergeron/received_events', 0); +INSERT INTO `developer` VALUES (5587711, 'EyeOfPython', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tobias', NULL, '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 42, 2, 0, 0, 0, '2013-10-01T17:06:10Z', '2024-11-02T22:28:56Z', 'https://avatars.githubusercontent.com/u/5587711?v=4', 'https://api.github.com/users/EyeOfPython', 'https://github.com/EyeOfPython', 'https://api.github.com/users/EyeOfPython/followers', 'https://api.github.com/users/EyeOfPython/following', 'https://api.github.com/users/EyeOfPython/gists', 'https://api.github.com/users/EyeOfPython/starred', 'https://api.github.com/users/EyeOfPython/repos', 'https://api.github.com/users/EyeOfPython/events', 'https://api.github.com/users/EyeOfPython/received_events', 0); +INSERT INTO `developer` VALUES (5596913, 'rmartinez3', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'rmarti619@gmail.com', NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2013-10-02T17:42:13Z', '2023-11-07T17:07:32Z', 'https://avatars.githubusercontent.com/u/5596913?v=4', 'https://api.github.com/users/rmartinez3', 'https://github.com/rmartinez3', 'https://api.github.com/users/rmartinez3/followers', 'https://api.github.com/users/rmartinez3/following', 'https://api.github.com/users/rmartinez3/gists', 'https://api.github.com/users/rmartinez3/starred', 'https://api.github.com/users/rmartinez3/repos', 'https://api.github.com/users/rmartinez3/events', 'https://api.github.com/users/rmartinez3/received_events', 0); +INSERT INTO `developer` VALUES (5601854, 'roybadami', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2013-10-03T08:49:44Z', '2024-01-23T21:47:46Z', 'https://avatars.githubusercontent.com/u/5601854?v=4', 'https://api.github.com/users/roybadami', 'https://github.com/roybadami', 'https://api.github.com/users/roybadami/followers', 'https://api.github.com/users/roybadami/following', 'https://api.github.com/users/roybadami/gists', 'https://api.github.com/users/roybadami/starred', 'https://api.github.com/users/roybadami/repos', 'https://api.github.com/users/roybadami/events', 'https://api.github.com/users/roybadami/received_events', 0); +INSERT INTO `developer` VALUES (5606267, 'LiveJay', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2013-10-03T19:41:27Z', '2024-06-26T16:33:52Z', 'https://avatars.githubusercontent.com/u/5606267?v=4', 'https://api.github.com/users/LiveJay', 'https://github.com/LiveJay', 'https://api.github.com/users/LiveJay/followers', 'https://api.github.com/users/LiveJay/following', 'https://api.github.com/users/LiveJay/gists', 'https://api.github.com/users/LiveJay/starred', 'https://api.github.com/users/LiveJay/repos', 'https://api.github.com/users/LiveJay/events', 'https://api.github.com/users/LiveJay/received_events', 0); +INSERT INTO `developer` VALUES (5609770, 'kiblik', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Earth', NULL, 'true', NULL, NULL, 0, 0, 9, 34, 0, 0, 0, '2013-10-04T08:21:42Z', '2024-10-28T16:27:54Z', 'https://avatars.githubusercontent.com/u/5609770?v=4', 'https://api.github.com/users/kiblik', 'https://github.com/kiblik', 'https://api.github.com/users/kiblik/followers', 'https://api.github.com/users/kiblik/following', 'https://api.github.com/users/kiblik/gists', 'https://api.github.com/users/kiblik/starred', 'https://api.github.com/users/kiblik/repos', 'https://api.github.com/users/kiblik/events', 'https://api.github.com/users/kiblik/received_events', 0); +INSERT INTO `developer` VALUES (5617245, 'afk11', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Kerin', NULL, '', 'Ireland', NULL, NULL, NULL, NULL, 0, 0, 182, 98, 0, 0, 0, '2013-10-05T11:37:43Z', '2024-09-26T11:20:19Z', 'https://avatars.githubusercontent.com/u/5617245?v=4', 'https://api.github.com/users/afk11', 'https://github.com/afk11', 'https://api.github.com/users/afk11/followers', 'https://api.github.com/users/afk11/following', 'https://api.github.com/users/afk11/gists', 'https://api.github.com/users/afk11/starred', 'https://api.github.com/users/afk11/repos', 'https://api.github.com/users/afk11/events', 'https://api.github.com/users/afk11/received_events', 0); +INSERT INTO `developer` VALUES (5619153, 'paralax', 'C', 6.793950385058533, 0, 0, 0, 0, 0, 0, 'jose nazario', NULL, '', 'ann arbor, mi', NULL, 'true', 'cybersecurity, threat intel, cooking, biochemistry.', 'jnazario', 0, 0, 681, 1, 0, 0, 0, '2013-10-05T18:54:01Z', '2024-11-02T11:22:01Z', 'https://avatars.githubusercontent.com/u/5619153?v=4', 'https://api.github.com/users/paralax', 'https://github.com/paralax', 'https://api.github.com/users/paralax/followers', 'https://api.github.com/users/paralax/following', 'https://api.github.com/users/paralax/gists', 'https://api.github.com/users/paralax/starred', 'https://api.github.com/users/paralax/repos', 'https://api.github.com/users/paralax/events', 'https://api.github.com/users/paralax/received_events', 0); +INSERT INTO `developer` VALUES (5619476, 'aegershman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaron Gershman', NULL, 'https://github.com/aegershman', '未知', NULL, NULL, NULL, NULL, 0, 0, 115, 838, 0, 0, 0, '2013-10-05T20:10:21Z', '2024-09-07T04:20:25Z', 'https://avatars.githubusercontent.com/u/5619476?v=4', 'https://api.github.com/users/aegershman', 'https://github.com/aegershman', 'https://api.github.com/users/aegershman/followers', 'https://api.github.com/users/aegershman/following', 'https://api.github.com/users/aegershman/gists', 'https://api.github.com/users/aegershman/starred', 'https://api.github.com/users/aegershman/repos', 'https://api.github.com/users/aegershman/events', 'https://api.github.com/users/aegershman/received_events', 0); +INSERT INTO `developer` VALUES (5621298, 'at15', 'C', 0.4661452557091174, 0, 0, 0, 0, 0, 0, 'Pinglei Guo', '@dyweb, @xephonhq, @benchhub ', 'https://at15.dev', 'Vancouver', NULL, NULL, 'Work account @pingleig. Gopher @dyweb. Previously @google & @paypal & UCSC & SJTU 学业不精 厨艺不佳 挖坑不填', NULL, 0, 0, 312, 644, 0, 0, 0, '2013-10-06T06:24:52Z', '2023-12-19T09:51:57Z', 'https://avatars.githubusercontent.com/u/5621298?v=4', 'https://api.github.com/users/at15', 'https://github.com/at15', 'https://api.github.com/users/at15/followers', 'https://api.github.com/users/at15/following', 'https://api.github.com/users/at15/gists', 'https://api.github.com/users/at15/starred', 'https://api.github.com/users/at15/repos', 'https://api.github.com/users/at15/events', 'https://api.github.com/users/at15/received_events', 0); +INSERT INTO `developer` VALUES (5624453, 'tomjackman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tom', NULL, '', 'Ireland', NULL, NULL, 'Formerly Uber, Red Hat.', NULL, 0, 0, 35, 73, 0, 0, 0, '2013-10-06T20:24:37Z', '2024-09-14T17:05:32Z', 'https://avatars.githubusercontent.com/u/5624453?v=4', 'https://api.github.com/users/tomjackman', 'https://github.com/tomjackman', 'https://api.github.com/users/tomjackman/followers', 'https://api.github.com/users/tomjackman/following', 'https://api.github.com/users/tomjackman/gists', 'https://api.github.com/users/tomjackman/starred', 'https://api.github.com/users/tomjackman/repos', 'https://api.github.com/users/tomjackman/events', 'https://api.github.com/users/tomjackman/received_events', 0); +INSERT INTO `developer` VALUES (5639877, 'vasicvuk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vuk Vasić', NULL, '', '未知', 'vuk.vasic@asseco-see.rs', NULL, NULL, NULL, 0, 0, 17, 1, 0, 0, 0, '2013-10-08T16:05:57Z', '2024-09-23T14:51:30Z', 'https://avatars.githubusercontent.com/u/5639877?v=4', 'https://api.github.com/users/vasicvuk', 'https://github.com/vasicvuk', 'https://api.github.com/users/vasicvuk/followers', 'https://api.github.com/users/vasicvuk/following', 'https://api.github.com/users/vasicvuk/gists', 'https://api.github.com/users/vasicvuk/starred', 'https://api.github.com/users/vasicvuk/repos', 'https://api.github.com/users/vasicvuk/events', 'https://api.github.com/users/vasicvuk/received_events', 0); +INSERT INTO `developer` VALUES (5650785, 's4kibs4mi', 'C', 7.462742797103592, 0, 0, 0, 0, 0, 0, 'Sakib Sami', '@fiskaly', 'http://www.sakib.ninja', 'Tallinn', NULL, 'true', 'Senior Software Engineer @fiskaly || Founder @shopemaa || In love with @golang, Java || Distributed Systems || Blockchain || IoT', 's4kibs4mi', 0, 0, 720, 882, 0, 0, 0, '2013-10-09T21:20:48Z', '2024-11-01T17:20:13Z', 'https://avatars.githubusercontent.com/u/5650785?v=4', 'https://api.github.com/users/s4kibs4mi', 'https://github.com/s4kibs4mi', 'https://api.github.com/users/s4kibs4mi/followers', 'https://api.github.com/users/s4kibs4mi/following', 'https://api.github.com/users/s4kibs4mi/gists', 'https://api.github.com/users/s4kibs4mi/starred', 'https://api.github.com/users/s4kibs4mi/repos', 'https://api.github.com/users/s4kibs4mi/events', 'https://api.github.com/users/s4kibs4mi/received_events', 0); +INSERT INTO `developer` VALUES (5660265, 'tuaris', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Morante', 'The Daniel Morante Company, Inc.', 'http://www.unibia.com', 'Florida', NULL, NULL, NULL, NULL, 0, 0, 30, 30, 0, 0, 0, '2013-10-11T00:00:39Z', '2024-08-02T16:04:32Z', 'https://avatars.githubusercontent.com/u/5660265?v=4', 'https://api.github.com/users/tuaris', 'https://github.com/tuaris', 'https://api.github.com/users/tuaris/followers', 'https://api.github.com/users/tuaris/following', 'https://api.github.com/users/tuaris/gists', 'https://api.github.com/users/tuaris/starred', 'https://api.github.com/users/tuaris/repos', 'https://api.github.com/users/tuaris/events', 'https://api.github.com/users/tuaris/received_events', 0); +INSERT INTO `developer` VALUES (5676959, 'sahutd', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 20, 3, 0, 0, 0, '2013-10-13T16:12:11Z', '2024-11-01T03:26:57Z', 'https://avatars.githubusercontent.com/u/5676959?v=4', 'https://api.github.com/users/sahutd', 'https://github.com/sahutd', 'https://api.github.com/users/sahutd/followers', 'https://api.github.com/users/sahutd/following', 'https://api.github.com/users/sahutd/gists', 'https://api.github.com/users/sahutd/starred', 'https://api.github.com/users/sahutd/repos', 'https://api.github.com/users/sahutd/events', 'https://api.github.com/users/sahutd/received_events', 0); +INSERT INTO `developer` VALUES (5680655, 'mgorsk1', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Warsaw, Poland', 'gorskimariusz13@gmail.com', NULL, 'Open Source enthusiast. Amundsen (LF AI) maintainer. Coffee addict.', NULL, 0, 0, 24, 1, 0, 0, 0, '2013-10-14T07:37:11Z', '2024-10-27T09:08:50Z', 'https://avatars.githubusercontent.com/u/5680655?v=4', 'https://api.github.com/users/mgorsk1', 'https://github.com/mgorsk1', 'https://api.github.com/users/mgorsk1/followers', 'https://api.github.com/users/mgorsk1/following', 'https://api.github.com/users/mgorsk1/gists', 'https://api.github.com/users/mgorsk1/starred', 'https://api.github.com/users/mgorsk1/repos', 'https://api.github.com/users/mgorsk1/events', 'https://api.github.com/users/mgorsk1/received_events', 0); +INSERT INTO `developer` VALUES (5689788, 'webpronk', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2013-10-15T09:19:49Z', '2023-05-08T11:54:35Z', 'https://avatars.githubusercontent.com/u/5689788?v=4', 'https://api.github.com/users/webpronk', 'https://github.com/webpronk', 'https://api.github.com/users/webpronk/followers', 'https://api.github.com/users/webpronk/following', 'https://api.github.com/users/webpronk/gists', 'https://api.github.com/users/webpronk/starred', 'https://api.github.com/users/webpronk/repos', 'https://api.github.com/users/webpronk/events', 'https://api.github.com/users/webpronk/received_events', 0); +INSERT INTO `developer` VALUES (5691966, 'danhardman', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan Hardman', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2013-10-15T14:18:24Z', '2023-08-18T13:50:42Z', 'https://avatars.githubusercontent.com/u/5691966?v=4', 'https://api.github.com/users/danhardman', 'https://github.com/danhardman', 'https://api.github.com/users/danhardman/followers', 'https://api.github.com/users/danhardman/following', 'https://api.github.com/users/danhardman/gists', 'https://api.github.com/users/danhardman/starred', 'https://api.github.com/users/danhardman/repos', 'https://api.github.com/users/danhardman/events', 'https://api.github.com/users/danhardman/received_events', 0); +INSERT INTO `developer` VALUES (5698706, 'umanghome', 'C', 0, 0, 0, 0, 0, 0, 0, 'Umang Galaiya', '@apolloio', 'https://umanggalaiya.in', 'Bangalore, India', 'umang@apollo.io', 'true', 'I like UX, DX', 'umanghome', 0, 0, 132, 66, 0, 0, 0, '2013-10-16T08:55:03Z', '2024-10-31T04:38:47Z', 'https://avatars.githubusercontent.com/u/5698706?v=4', 'https://api.github.com/users/umanghome', 'https://github.com/umanghome', 'https://api.github.com/users/umanghome/followers', 'https://api.github.com/users/umanghome/following', 'https://api.github.com/users/umanghome/gists', 'https://api.github.com/users/umanghome/starred', 'https://api.github.com/users/umanghome/repos', 'https://api.github.com/users/umanghome/events', 'https://api.github.com/users/umanghome/received_events', 0); +INSERT INTO `developer` VALUES (5728164, 'Knetic', 'C', 0, 0, 0, 0, 0, 0, 0, 'George Lester', '@EpicGames ', '', 'Seattle', NULL, NULL, 'If something is hard, that\'s a pretty good reason to solve it in a way that makes it easy in the future.', NULL, 0, 0, 116, 12, 0, 0, 0, '2013-10-20T01:12:11Z', '2023-11-24T02:01:57Z', 'https://avatars.githubusercontent.com/u/5728164?v=4', 'https://api.github.com/users/Knetic', 'https://github.com/Knetic', 'https://api.github.com/users/Knetic/followers', 'https://api.github.com/users/Knetic/following', 'https://api.github.com/users/Knetic/gists', 'https://api.github.com/users/Knetic/starred', 'https://api.github.com/users/Knetic/repos', 'https://api.github.com/users/Knetic/events', 'https://api.github.com/users/Knetic/received_events', 0); +INSERT INTO `developer` VALUES (5754476, 'MacTynow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charles Martinot', NULL, 'https://www.mactynow.ovh', '未知', NULL, 'true', NULL, NULL, 0, 0, 7, 11, 0, 0, 0, '2013-10-23T08:41:03Z', '2024-10-09T03:21:05Z', 'https://avatars.githubusercontent.com/u/5754476?v=4', 'https://api.github.com/users/MacTynow', 'https://github.com/MacTynow', 'https://api.github.com/users/MacTynow/followers', 'https://api.github.com/users/MacTynow/following', 'https://api.github.com/users/MacTynow/gists', 'https://api.github.com/users/MacTynow/starred', 'https://api.github.com/users/MacTynow/repos', 'https://api.github.com/users/MacTynow/events', 'https://api.github.com/users/MacTynow/received_events', 0); +INSERT INTO `developer` VALUES (5754674, 'aperigault', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2013-10-23T09:06:35Z', '2023-11-10T08:52:06Z', 'https://avatars.githubusercontent.com/u/5754674?v=4', 'https://api.github.com/users/aperigault', 'https://github.com/aperigault', 'https://api.github.com/users/aperigault/followers', 'https://api.github.com/users/aperigault/following', 'https://api.github.com/users/aperigault/gists', 'https://api.github.com/users/aperigault/starred', 'https://api.github.com/users/aperigault/repos', 'https://api.github.com/users/aperigault/events', 'https://api.github.com/users/aperigault/received_events', 0); +INSERT INTO `developer` VALUES (5756743, 'carnesen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Arnesen', 'Tradeweb', 'https://www.linkedin.com/in/carnesen/', 'San Diego, California, USA', NULL, NULL, 'Software Engineer', NULL, 0, 0, 47, 48, 0, 0, 0, '2013-10-23T13:50:00Z', '2024-10-25T18:46:10Z', 'https://avatars.githubusercontent.com/u/5756743?v=4', 'https://api.github.com/users/carnesen', 'https://github.com/carnesen', 'https://api.github.com/users/carnesen/followers', 'https://api.github.com/users/carnesen/following', 'https://api.github.com/users/carnesen/gists', 'https://api.github.com/users/carnesen/starred', 'https://api.github.com/users/carnesen/repos', 'https://api.github.com/users/carnesen/events', 'https://api.github.com/users/carnesen/received_events', 0); +INSERT INTO `developer` VALUES (5767891, 'instagibbs', 'C', 4.667533485222956, 0, 0, 0, 0, 0, 0, 'Gregory Sanders', NULL, '', '未知', 'gsanders87@gmail.com', NULL, NULL, NULL, 0, 0, 557, 0, 0, 0, 0, '2013-10-24T18:18:08Z', '2024-07-12T20:29:24Z', 'https://avatars.githubusercontent.com/u/5767891?v=4', 'https://api.github.com/users/instagibbs', 'https://github.com/instagibbs', 'https://api.github.com/users/instagibbs/followers', 'https://api.github.com/users/instagibbs/following', 'https://api.github.com/users/instagibbs/gists', 'https://api.github.com/users/instagibbs/starred', 'https://api.github.com/users/instagibbs/repos', 'https://api.github.com/users/instagibbs/events', 'https://api.github.com/users/instagibbs/received_events', 0); +INSERT INTO `developer` VALUES (5782063, 'lrita', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'BeiJing', 'lrita@163.com', NULL, NULL, NULL, 0, 0, 281, 32, 0, 0, 0, '2013-10-26T15:13:43Z', '2024-06-23T15:59:26Z', 'https://avatars.githubusercontent.com/u/5782063?v=4', 'https://api.github.com/users/lrita', 'https://github.com/lrita', 'https://api.github.com/users/lrita/followers', 'https://api.github.com/users/lrita/following', 'https://api.github.com/users/lrita/gists', 'https://api.github.com/users/lrita/starred', 'https://api.github.com/users/lrita/repos', 'https://api.github.com/users/lrita/events', 'https://api.github.com/users/lrita/received_events', 0); +INSERT INTO `developer` VALUES (5793339, 'rghose', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rahul Ghose', NULL, 'https://blog.rghose.in', 'London', NULL, 'true', NULL, 'rahul_ghose', 0, 0, 20, 18, 0, 0, 0, '2013-10-28T11:09:54Z', '2024-09-03T13:31:19Z', 'https://avatars.githubusercontent.com/u/5793339?v=4', 'https://api.github.com/users/rghose', 'https://github.com/rghose', 'https://api.github.com/users/rghose/followers', 'https://api.github.com/users/rghose/following', 'https://api.github.com/users/rghose/gists', 'https://api.github.com/users/rghose/starred', 'https://api.github.com/users/rghose/repos', 'https://api.github.com/users/rghose/events', 'https://api.github.com/users/rghose/received_events', 0); +INSERT INTO `developer` VALUES (5803044, 'xthk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tilmann H.', NULL, '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2013-10-29T11:18:32Z', '2024-06-11T07:51:56Z', 'https://avatars.githubusercontent.com/u/5803044?v=4', 'https://api.github.com/users/xthk', 'https://github.com/xthk', 'https://api.github.com/users/xthk/followers', 'https://api.github.com/users/xthk/following', 'https://api.github.com/users/xthk/gists', 'https://api.github.com/users/xthk/starred', 'https://api.github.com/users/xthk/repos', 'https://api.github.com/users/xthk/events', 'https://api.github.com/users/xthk/received_events', 0); +INSERT INTO `developer` VALUES (5811476, 'neocogent', 'C', 0, 0, 0, 0, 0, 0, 0, 'New Clarity', NULL, 'https://neocogent.home.kg', 'Canada', NULL, NULL, 'Programmer, Photographer - many interests. Devotee of FOSS and contributor to various projects over the years.', NULL, 0, 0, 23, 0, 0, 0, 0, '2013-10-30T07:53:20Z', '2024-09-24T01:33:58Z', 'https://avatars.githubusercontent.com/u/5811476?v=4', 'https://api.github.com/users/neocogent', 'https://github.com/neocogent', 'https://api.github.com/users/neocogent/followers', 'https://api.github.com/users/neocogent/following', 'https://api.github.com/users/neocogent/gists', 'https://api.github.com/users/neocogent/starred', 'https://api.github.com/users/neocogent/repos', 'https://api.github.com/users/neocogent/events', 'https://api.github.com/users/neocogent/received_events', 0); +INSERT INTO `developer` VALUES (5836089, 'dexX7', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@OmniLayer ', 'http://bitwatch.co', '未知', NULL, NULL, 'Maintainer of Omni Core, the reference client for the Omni Layer, and contributor to a variety of Bitcoin related projects.', NULL, 0, 0, 132, 23, 0, 0, 0, '2013-11-02T04:37:00Z', '2024-08-22T08:20:22Z', 'https://avatars.githubusercontent.com/u/5836089?v=4', 'https://api.github.com/users/dexX7', 'https://github.com/dexX7', 'https://api.github.com/users/dexX7/followers', 'https://api.github.com/users/dexX7/following', 'https://api.github.com/users/dexX7/gists', 'https://api.github.com/users/dexX7/starred', 'https://api.github.com/users/dexX7/repos', 'https://api.github.com/users/dexX7/events', 'https://api.github.com/users/dexX7/received_events', 0); +INSERT INTO `developer` VALUES (5840042, 'patriknordlen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrik Nordlén', NULL, '', 'Sweden', 'patriki@gmail.com', NULL, 'Security guy', NULL, 0, 0, 9, 3, 0, 0, 0, '2013-11-02T19:57:08Z', '2024-10-30T16:46:29Z', 'https://avatars.githubusercontent.com/u/5840042?v=4', 'https://api.github.com/users/patriknordlen', 'https://github.com/patriknordlen', 'https://api.github.com/users/patriknordlen/followers', 'https://api.github.com/users/patriknordlen/following', 'https://api.github.com/users/patriknordlen/gists', 'https://api.github.com/users/patriknordlen/starred', 'https://api.github.com/users/patriknordlen/repos', 'https://api.github.com/users/patriknordlen/events', 'https://api.github.com/users/patriknordlen/received_events', 0); +INSERT INTO `developer` VALUES (5849793, 'elliotolds', 'C', 0, 0, 0, 0, 0, 0, 0, 'Elliot Olds', NULL, '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 11, 16, 0, 0, 0, '2013-11-04T10:31:46Z', '2024-08-31T13:32:25Z', 'https://avatars.githubusercontent.com/u/5849793?v=4', 'https://api.github.com/users/elliotolds', 'https://github.com/elliotolds', 'https://api.github.com/users/elliotolds/followers', 'https://api.github.com/users/elliotolds/following', 'https://api.github.com/users/elliotolds/gists', 'https://api.github.com/users/elliotolds/starred', 'https://api.github.com/users/elliotolds/repos', 'https://api.github.com/users/elliotolds/events', 'https://api.github.com/users/elliotolds/received_events', 0); +INSERT INTO `developer` VALUES (5852052, 'mestrade', 'C', 0, 0, 0, 0, 0, 0, 0, 'mestrade', NULL, '', '未知', NULL, 'true', NULL, 'mestrade', 0, 0, 3, 4, 0, 0, 0, '2013-11-04T15:29:24Z', '2024-08-22T15:47:11Z', 'https://avatars.githubusercontent.com/u/5852052?v=4', 'https://api.github.com/users/mestrade', 'https://github.com/mestrade', 'https://api.github.com/users/mestrade/followers', 'https://api.github.com/users/mestrade/following', 'https://api.github.com/users/mestrade/gists', 'https://api.github.com/users/mestrade/starred', 'https://api.github.com/users/mestrade/repos', 'https://api.github.com/users/mestrade/events', 'https://api.github.com/users/mestrade/received_events', 0); +INSERT INTO `developer` VALUES (5857998, 'BenchR267', 'C', 0, 0, 0, 0, 0, 0, 0, 'Benjamin Herzog', '', 'https://benchr.de', 'Berlin, Germany', 'mail@benchr.de', NULL, ' Dev Tools', NULL, 0, 0, 236, 102, 0, 0, 0, '2013-11-05T07:43:37Z', '2024-06-17T23:04:58Z', 'https://avatars.githubusercontent.com/u/5857998?v=4', 'https://api.github.com/users/BenchR267', 'https://github.com/BenchR267', 'https://api.github.com/users/BenchR267/followers', 'https://api.github.com/users/BenchR267/following', 'https://api.github.com/users/BenchR267/gists', 'https://api.github.com/users/BenchR267/starred', 'https://api.github.com/users/BenchR267/repos', 'https://api.github.com/users/BenchR267/events', 'https://api.github.com/users/BenchR267/received_events', 0); +INSERT INTO `developer` VALUES (5859944, 'dkade', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel aka DKADE', NULL, '', '未知', NULL, NULL, 'Lead Security Engineer', NULL, 0, 0, 9, 3, 0, 0, 0, '2013-11-05T12:37:36Z', '2024-01-15T18:55:14Z', 'https://avatars.githubusercontent.com/u/5859944?v=4', 'https://api.github.com/users/dkade', 'https://github.com/dkade', 'https://api.github.com/users/dkade/followers', 'https://api.github.com/users/dkade/following', 'https://api.github.com/users/dkade/gists', 'https://api.github.com/users/dkade/starred', 'https://api.github.com/users/dkade/repos', 'https://api.github.com/users/dkade/events', 'https://api.github.com/users/dkade/received_events', 0); +INSERT INTO `developer` VALUES (5874026, 'efournival', 'C', 0, 0, 0, 0, 0, 0, 0, 'Edgar Fournival', NULL, '', 'Cauffry, France', NULL, NULL, NULL, NULL, 0, 0, 19, 21, 0, 0, 0, '2013-11-06T21:41:26Z', '2024-04-17T17:37:58Z', 'https://avatars.githubusercontent.com/u/5874026?v=4', 'https://api.github.com/users/efournival', 'https://github.com/efournival', 'https://api.github.com/users/efournival/followers', 'https://api.github.com/users/efournival/following', 'https://api.github.com/users/efournival/gists', 'https://api.github.com/users/efournival/starred', 'https://api.github.com/users/efournival/repos', 'https://api.github.com/users/efournival/events', 'https://api.github.com/users/efournival/received_events', 0); +INSERT INTO `developer` VALUES (5908875, 'philmb3487', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philippe Michaud-Boudreault', 'Consultant', 'sinetek.io', '未知', 'philmb3487@proton.me', 'true', 'Find me on Upwork!\r\nI answer C++, Go development requests.', 'pitwuu', 0, 0, 52, 66, 0, 0, 0, '2013-11-11T12:06:38Z', '2024-10-28T17:09:10Z', 'https://avatars.githubusercontent.com/u/5908875?v=4', 'https://api.github.com/users/philmb3487', 'https://github.com/philmb3487', 'https://api.github.com/users/philmb3487/followers', 'https://api.github.com/users/philmb3487/following', 'https://api.github.com/users/philmb3487/gists', 'https://api.github.com/users/philmb3487/starred', 'https://api.github.com/users/philmb3487/repos', 'https://api.github.com/users/philmb3487/events', 'https://api.github.com/users/philmb3487/received_events', 0); +INSERT INTO `developer` VALUES (5929526, 'marcosValle', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marcos Valle', NULL, 'https://about.me/marcosvalle', 'Barcelona, ES', NULL, NULL, '@_mvalle_', NULL, 0, 0, 83, 8, 0, 0, 0, '2013-11-13T13:19:34Z', '2024-10-10T11:26:17Z', 'https://avatars.githubusercontent.com/u/5929526?v=4', 'https://api.github.com/users/marcosValle', 'https://github.com/marcosValle', 'https://api.github.com/users/marcosValle/followers', 'https://api.github.com/users/marcosValle/following', 'https://api.github.com/users/marcosValle/gists', 'https://api.github.com/users/marcosValle/starred', 'https://api.github.com/users/marcosValle/repos', 'https://api.github.com/users/marcosValle/events', 'https://api.github.com/users/marcosValle/received_events', 0); +INSERT INTO `developer` VALUES (5957838, 'smithjessk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jess Smith', NULL, '', 'United States', 'smith.jessk@gmail.com', NULL, 'SDA / KCTT', NULL, 0, 0, 29, 14, 0, 0, 0, '2013-11-16T22:26:08Z', '2023-05-15T20:48:58Z', 'https://avatars.githubusercontent.com/u/5957838?v=4', 'https://api.github.com/users/smithjessk', 'https://github.com/smithjessk', 'https://api.github.com/users/smithjessk/followers', 'https://api.github.com/users/smithjessk/following', 'https://api.github.com/users/smithjessk/gists', 'https://api.github.com/users/smithjessk/starred', 'https://api.github.com/users/smithjessk/repos', 'https://api.github.com/users/smithjessk/events', 'https://api.github.com/users/smithjessk/received_events', 0); +INSERT INTO `developer` VALUES (5961873, 'dhruvdutt', 'C', 0.24321445169409725, 0, 0, 0, 0, 0, 0, 'Dhruvdutt Jadhav', '@webpack @googlesummerofcode', 'https://dhruvdutt.js.org', 'India: C-137', NULL, 'true', 'Tooling @razorpay | Ex @treebohotels', NULL, 0, 0, 299, 112, 0, 0, 0, '2013-11-17T16:50:27Z', '2024-10-04T13:47:41Z', 'https://avatars.githubusercontent.com/u/5961873?v=4', 'https://api.github.com/users/dhruvdutt', 'https://github.com/dhruvdutt', 'https://api.github.com/users/dhruvdutt/followers', 'https://api.github.com/users/dhruvdutt/following', 'https://api.github.com/users/dhruvdutt/gists', 'https://api.github.com/users/dhruvdutt/starred', 'https://api.github.com/users/dhruvdutt/repos', 'https://api.github.com/users/dhruvdutt/events', 'https://api.github.com/users/dhruvdutt/received_events', 0); +INSERT INTO `developer` VALUES (5972329, 'DSchalla', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Schalla', 'Mattermost, Inc.', '', 'Germany', 'daniel@schalla.me', NULL, 'Head of Security @mattermost ', NULL, 0, 0, 41, 0, 0, 0, 0, '2013-11-18T18:51:39Z', '2024-07-11T08:22:26Z', 'https://avatars.githubusercontent.com/u/5972329?v=4', 'https://api.github.com/users/DSchalla', 'https://github.com/DSchalla', 'https://api.github.com/users/DSchalla/followers', 'https://api.github.com/users/DSchalla/following', 'https://api.github.com/users/DSchalla/gists', 'https://api.github.com/users/DSchalla/starred', 'https://api.github.com/users/DSchalla/repos', 'https://api.github.com/users/DSchalla/events', 'https://api.github.com/users/DSchalla/received_events', 0); +INSERT INTO `developer` VALUES (6023709, 'ra1fh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ralf Horstmann', NULL, 'https://ackstorm.de', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 7, 2, 0, 0, 0, '2013-11-24T14:07:48Z', '2024-06-19T19:41:50Z', 'https://avatars.githubusercontent.com/u/6023709?v=4', 'https://api.github.com/users/ra1fh', 'https://github.com/ra1fh', 'https://api.github.com/users/ra1fh/followers', 'https://api.github.com/users/ra1fh/following', 'https://api.github.com/users/ra1fh/gists', 'https://api.github.com/users/ra1fh/starred', 'https://api.github.com/users/ra1fh/repos', 'https://api.github.com/users/ra1fh/events', 'https://api.github.com/users/ra1fh/received_events', 0); +INSERT INTO `developer` VALUES (6026107, 'benno001', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben de Haan', 'ENACT-IT', '', 'Netherlands', NULL, NULL, 'Freelance security consultant & engineer.\r\nNOTE: Moving to @bendehaan', 'BJFdeHaan', 0, 0, 10, 7, 0, 0, 0, '2013-11-24T22:44:05Z', '2024-10-27T11:23:38Z', 'https://avatars.githubusercontent.com/u/6026107?v=4', 'https://api.github.com/users/benno001', 'https://github.com/benno001', 'https://api.github.com/users/benno001/followers', 'https://api.github.com/users/benno001/following', 'https://api.github.com/users/benno001/gists', 'https://api.github.com/users/benno001/starred', 'https://api.github.com/users/benno001/repos', 'https://api.github.com/users/benno001/events', 'https://api.github.com/users/benno001/received_events', 0); +INSERT INTO `developer` VALUES (6037730, 'syntaqx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chase Pierce', NULL, 'https://syntaqx.com', 'USA', 'syntaqx@gmail.com', 'true', 'Hacker, open sorcerer, software engineer, cloudified. Your favorite internet junkie with a love of all things digital and bacon-based.', 'syntaqx', 0, 0, 84, 105, 0, 0, 0, '2013-11-26T05:59:36Z', '2024-11-02T01:42:09Z', 'https://avatars.githubusercontent.com/u/6037730?v=4', 'https://api.github.com/users/syntaqx', 'https://github.com/syntaqx', 'https://api.github.com/users/syntaqx/followers', 'https://api.github.com/users/syntaqx/following', 'https://api.github.com/users/syntaqx/gists', 'https://api.github.com/users/syntaqx/starred', 'https://api.github.com/users/syntaqx/repos', 'https://api.github.com/users/syntaqx/events', 'https://api.github.com/users/syntaqx/received_events', 0); +INSERT INTO `developer` VALUES (6039952, 'gernest', 'C', 1.3750169951549684, 0, 0, 0, 0, 0, 0, 'Geofrey Ernest', NULL, '', 'Arusha, Tanzania', 'geofreyernest@live.com', 'true', NULL, NULL, 0, 0, 365, 0, 0, 0, 0, '2013-11-26T11:11:07Z', '2024-10-14T19:38:54Z', 'https://avatars.githubusercontent.com/u/6039952?v=4', 'https://api.github.com/users/gernest', 'https://github.com/gernest', 'https://api.github.com/users/gernest/followers', 'https://api.github.com/users/gernest/following', 'https://api.github.com/users/gernest/gists', 'https://api.github.com/users/gernest/starred', 'https://api.github.com/users/gernest/repos', 'https://api.github.com/users/gernest/events', 'https://api.github.com/users/gernest/received_events', 0); +INSERT INTO `developer` VALUES (6055628, 'aseem2625', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aseem Gupta', 'superkalam', 'https://superkalam.com', '未知', NULL, NULL, 'Building @superkalam ▪ like building products', 'aseemgupta_', 0, 0, 28, 2, 0, 0, 0, '2013-11-28T04:08:25Z', '2024-08-09T16:52:47Z', 'https://avatars.githubusercontent.com/u/6055628?v=4', 'https://api.github.com/users/aseem2625', 'https://github.com/aseem2625', 'https://api.github.com/users/aseem2625/followers', 'https://api.github.com/users/aseem2625/following', 'https://api.github.com/users/aseem2625/gists', 'https://api.github.com/users/aseem2625/starred', 'https://api.github.com/users/aseem2625/repos', 'https://api.github.com/users/aseem2625/events', 'https://api.github.com/users/aseem2625/received_events', 0); +INSERT INTO `developer` VALUES (6075483, 'stevezau', 'C', 0, 0, 0, 0, 0, 0, 0, 'Steve Adams', NULL, '', '未知', 'stevezau@gmail.com', NULL, NULL, NULL, 0, 0, 8, 2, 0, 0, 0, '2013-11-30T23:35:35Z', '2024-09-28T06:40:49Z', 'https://avatars.githubusercontent.com/u/6075483?v=4', 'https://api.github.com/users/stevezau', 'https://github.com/stevezau', 'https://api.github.com/users/stevezau/followers', 'https://api.github.com/users/stevezau/following', 'https://api.github.com/users/stevezau/gists', 'https://api.github.com/users/stevezau/starred', 'https://api.github.com/users/stevezau/repos', 'https://api.github.com/users/stevezau/events', 'https://api.github.com/users/stevezau/received_events', 0); +INSERT INTO `developer` VALUES (6094424, 'shravan-shandilya', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shravan Shandilya', NULL, 'https://thoughtscoop.com', 'Bangalore', NULL, NULL, 'A generalist who can become a specialist in logarithmic time', NULL, 0, 0, 35, 95, 0, 0, 0, '2013-12-03T10:33:01Z', '2024-10-09T13:44:47Z', 'https://avatars.githubusercontent.com/u/6094424?v=4', 'https://api.github.com/users/shravan-shandilya', 'https://github.com/shravan-shandilya', 'https://api.github.com/users/shravan-shandilya/followers', 'https://api.github.com/users/shravan-shandilya/following', 'https://api.github.com/users/shravan-shandilya/gists', 'https://api.github.com/users/shravan-shandilya/starred', 'https://api.github.com/users/shravan-shandilya/repos', 'https://api.github.com/users/shravan-shandilya/events', 'https://api.github.com/users/shravan-shandilya/received_events', 0); +INSERT INTO `developer` VALUES (6118832, 'sandakersmann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marius Kjærstad', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 68, 44, 0, 0, 0, '2013-12-06T01:04:15Z', '2024-10-26T20:52:05Z', 'https://avatars.githubusercontent.com/u/6118832?v=4', 'https://api.github.com/users/sandakersmann', 'https://github.com/sandakersmann', 'https://api.github.com/users/sandakersmann/followers', 'https://api.github.com/users/sandakersmann/following', 'https://api.github.com/users/sandakersmann/gists', 'https://api.github.com/users/sandakersmann/starred', 'https://api.github.com/users/sandakersmann/repos', 'https://api.github.com/users/sandakersmann/events', 'https://api.github.com/users/sandakersmann/received_events', 0); +INSERT INTO `developer` VALUES (6133616, 'AdamSLevy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam S Levy', NULL, 'https://www.aslevy.com', 'Anchorage, AK', 'adam@aslevy.com', 'true', 'Golang, shell scripting, C, linux, math', NULL, 0, 0, 32, 28, 0, 0, 0, '2013-12-08T04:50:22Z', '2024-10-22T02:41:00Z', 'https://avatars.githubusercontent.com/u/6133616?v=4', 'https://api.github.com/users/AdamSLevy', 'https://github.com/AdamSLevy', 'https://api.github.com/users/AdamSLevy/followers', 'https://api.github.com/users/AdamSLevy/following', 'https://api.github.com/users/AdamSLevy/gists', 'https://api.github.com/users/AdamSLevy/starred', 'https://api.github.com/users/AdamSLevy/repos', 'https://api.github.com/users/AdamSLevy/events', 'https://api.github.com/users/AdamSLevy/received_events', 0); +INSERT INTO `developer` VALUES (6164115, 'lomkju', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arjun Hemrajani', '@excloud-in ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 38, 0, 0, 0, '2013-12-11T19:33:30Z', '2024-10-24T11:24:24Z', 'https://avatars.githubusercontent.com/u/6164115?v=4', 'https://api.github.com/users/lomkju', 'https://github.com/lomkju', 'https://api.github.com/users/lomkju/followers', 'https://api.github.com/users/lomkju/following', 'https://api.github.com/users/lomkju/gists', 'https://api.github.com/users/lomkju/starred', 'https://api.github.com/users/lomkju/repos', 'https://api.github.com/users/lomkju/events', 'https://api.github.com/users/lomkju/received_events', 0); +INSERT INTO `developer` VALUES (6196768, 'freebitcoinslist', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2013-12-16T12:09:19Z', '2017-12-21T01:22:17Z', 'https://avatars.githubusercontent.com/u/6196768?v=4', 'https://api.github.com/users/freebitcoinslist', 'https://github.com/freebitcoinslist', 'https://api.github.com/users/freebitcoinslist/followers', 'https://api.github.com/users/freebitcoinslist/following', 'https://api.github.com/users/freebitcoinslist/gists', 'https://api.github.com/users/freebitcoinslist/starred', 'https://api.github.com/users/freebitcoinslist/repos', 'https://api.github.com/users/freebitcoinslist/events', 'https://api.github.com/users/freebitcoinslist/received_events', 0); +INSERT INTO `developer` VALUES (6198562, 'travisgroth', 'C', 0, 0, 0, 0, 0, 0, 0, 'Travis Groth', '@CapsuleHealth @pomerium @google', '', 'New York, NY', NULL, NULL, NULL, NULL, 0, 0, 12, 1, 0, 0, 0, '2013-12-16T16:07:00Z', '2024-10-16T11:23:37Z', 'https://avatars.githubusercontent.com/u/6198562?v=4', 'https://api.github.com/users/travisgroth', 'https://github.com/travisgroth', 'https://api.github.com/users/travisgroth/followers', 'https://api.github.com/users/travisgroth/following', 'https://api.github.com/users/travisgroth/gists', 'https://api.github.com/users/travisgroth/starred', 'https://api.github.com/users/travisgroth/repos', 'https://api.github.com/users/travisgroth/events', 'https://api.github.com/users/travisgroth/received_events', 0); +INSERT INTO `developer` VALUES (6206931, 's3erios', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andriy', NULL, '', '未知', 'Voskoboinyk', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2013-12-17T15:20:44Z', '2024-09-03T11:54:59Z', 'https://avatars.githubusercontent.com/u/6206931?v=4', 'https://api.github.com/users/s3erios', 'https://github.com/s3erios', 'https://api.github.com/users/s3erios/followers', 'https://api.github.com/users/s3erios/following', 'https://api.github.com/users/s3erios/gists', 'https://api.github.com/users/s3erios/starred', 'https://api.github.com/users/s3erios/repos', 'https://api.github.com/users/s3erios/events', 'https://api.github.com/users/s3erios/received_events', 0); +INSERT INTO `developer` VALUES (6214663, 'adracea', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexandru Dracea', NULL, 'drakkarson.com', 'Romania', 'adracea@gmail.com', NULL, NULL, NULL, 0, 0, 13, 16, 0, 0, 0, '2013-12-18T13:22:46Z', '2024-07-22T17:15:24Z', 'https://avatars.githubusercontent.com/u/6214663?v=4', 'https://api.github.com/users/adracea', 'https://github.com/adracea', 'https://api.github.com/users/adracea/followers', 'https://api.github.com/users/adracea/following', 'https://api.github.com/users/adracea/gists', 'https://api.github.com/users/adracea/starred', 'https://api.github.com/users/adracea/repos', 'https://api.github.com/users/adracea/events', 'https://api.github.com/users/adracea/received_events', 0); +INSERT INTO `developer` VALUES (6217829, 'mattvaldes', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matthew Valdes', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 5, 0, 0, 0, '2013-12-18T20:35:44Z', '2023-11-15T16:06:13Z', 'https://avatars.githubusercontent.com/u/6217829?v=4', 'https://api.github.com/users/mattvaldes', 'https://github.com/mattvaldes', 'https://api.github.com/users/mattvaldes/followers', 'https://api.github.com/users/mattvaldes/following', 'https://api.github.com/users/mattvaldes/gists', 'https://api.github.com/users/mattvaldes/starred', 'https://api.github.com/users/mattvaldes/repos', 'https://api.github.com/users/mattvaldes/events', 'https://api.github.com/users/mattvaldes/received_events', 0); +INSERT INTO `developer` VALUES (6219280, 'dragonflylee', 'C', 0, 0, 0, 0, 0, 0, 0, 'dragonflylee', NULL, 'https://dragonfly.fun', 'Beijing, China', 'dragonflylee@outlook.com', NULL, NULL, NULL, 0, 0, 65, 13, 0, 0, 0, '2013-12-19T01:56:22Z', '2024-10-19T06:31:36Z', 'https://avatars.githubusercontent.com/u/6219280?v=4', 'https://api.github.com/users/dragonflylee', 'https://github.com/dragonflylee', 'https://api.github.com/users/dragonflylee/followers', 'https://api.github.com/users/dragonflylee/following', 'https://api.github.com/users/dragonflylee/gists', 'https://api.github.com/users/dragonflylee/starred', 'https://api.github.com/users/dragonflylee/repos', 'https://api.github.com/users/dragonflylee/events', 'https://api.github.com/users/dragonflylee/received_events', 0); +INSERT INTO `developer` VALUES (6291188, 'AlexB138', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Barnes', NULL, '', 'Atlanta, GA', 'AlexRBarnes@gmail.com', 'true', NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2013-12-31T05:33:40Z', '2024-08-26T20:05:17Z', 'https://avatars.githubusercontent.com/u/6291188?v=4', 'https://api.github.com/users/AlexB138', 'https://github.com/AlexB138', 'https://api.github.com/users/AlexB138/followers', 'https://api.github.com/users/AlexB138/following', 'https://api.github.com/users/AlexB138/gists', 'https://api.github.com/users/AlexB138/starred', 'https://api.github.com/users/AlexB138/repos', 'https://api.github.com/users/AlexB138/events', 'https://api.github.com/users/AlexB138/received_events', 0); +INSERT INTO `developer` VALUES (6310792, 'wichmannpas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pascal Wichmann', NULL, '', 'Hamburg, Germany', NULL, 'true', NULL, NULL, 0, 0, 26, 6, 0, 0, 0, '2014-01-03T12:02:43Z', '2024-10-02T11:24:14Z', 'https://avatars.githubusercontent.com/u/6310792?v=4', 'https://api.github.com/users/wichmannpas', 'https://github.com/wichmannpas', 'https://api.github.com/users/wichmannpas/followers', 'https://api.github.com/users/wichmannpas/following', 'https://api.github.com/users/wichmannpas/gists', 'https://api.github.com/users/wichmannpas/starred', 'https://api.github.com/users/wichmannpas/repos', 'https://api.github.com/users/wichmannpas/events', 'https://api.github.com/users/wichmannpas/received_events', 0); +INSERT INTO `developer` VALUES (6342027, 'jhettler', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jakub Hettler', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2014-01-07T18:14:16Z', '2024-10-16T20:48:50Z', 'https://avatars.githubusercontent.com/u/6342027?v=4', 'https://api.github.com/users/jhettler', 'https://github.com/jhettler', 'https://api.github.com/users/jhettler/followers', 'https://api.github.com/users/jhettler/following', 'https://api.github.com/users/jhettler/gists', 'https://api.github.com/users/jhettler/starred', 'https://api.github.com/users/jhettler/repos', 'https://api.github.com/users/jhettler/events', 'https://api.github.com/users/jhettler/received_events', 0); +INSERT INTO `developer` VALUES (6370064, 'adrianchifor', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adrian Chifor', NULL, '', '未知', 'me@adrianchifor.com', 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-01-10T15:28:01Z', '2024-10-03T15:32:23Z', 'https://avatars.githubusercontent.com/u/6370064?v=4', 'https://api.github.com/users/adrianchifor', 'https://github.com/adrianchifor', 'https://api.github.com/users/adrianchifor/followers', 'https://api.github.com/users/adrianchifor/following', 'https://api.github.com/users/adrianchifor/gists', 'https://api.github.com/users/adrianchifor/starred', 'https://api.github.com/users/adrianchifor/repos', 'https://api.github.com/users/adrianchifor/events', 'https://api.github.com/users/adrianchifor/received_events', 0); +INSERT INTO `developer` VALUES (6393603, 'MathyV', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathy Vanvoorden', '@draca-be', 'http://mathy.vanvoorden.be', 'Belgium', 'mathy@vanvoorden.be', 'true', 'Is this where I can buy eggs? Are they bio?', 'MathyVanvoorden', 0, 0, 8, 0, 0, 0, 0, '2014-01-13T21:18:25Z', '2024-08-14T13:31:52Z', 'https://avatars.githubusercontent.com/u/6393603?v=4', 'https://api.github.com/users/MathyV', 'https://github.com/MathyV', 'https://api.github.com/users/MathyV/followers', 'https://api.github.com/users/MathyV/following', 'https://api.github.com/users/MathyV/gists', 'https://api.github.com/users/MathyV/starred', 'https://api.github.com/users/MathyV/repos', 'https://api.github.com/users/MathyV/events', 'https://api.github.com/users/MathyV/received_events', 0); +INSERT INTO `developer` VALUES (6402604, 'Justaphf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justaphf', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-01-14T19:23:34Z', '2023-11-04T16:28:25Z', 'https://avatars.githubusercontent.com/u/6402604?v=4', 'https://api.github.com/users/Justaphf', 'https://github.com/Justaphf', 'https://api.github.com/users/Justaphf/followers', 'https://api.github.com/users/Justaphf/following', 'https://api.github.com/users/Justaphf/gists', 'https://api.github.com/users/Justaphf/starred', 'https://api.github.com/users/Justaphf/repos', 'https://api.github.com/users/Justaphf/events', 'https://api.github.com/users/Justaphf/received_events', 0); +INSERT INTO `developer` VALUES (6408099, 'nehajyoti04', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jyoti Bohra', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2014-01-15T09:42:53Z', '2024-10-09T11:25:09Z', 'https://avatars.githubusercontent.com/u/6408099?v=4', 'https://api.github.com/users/nehajyoti04', 'https://github.com/nehajyoti04', 'https://api.github.com/users/nehajyoti04/followers', 'https://api.github.com/users/nehajyoti04/following', 'https://api.github.com/users/nehajyoti04/gists', 'https://api.github.com/users/nehajyoti04/starred', 'https://api.github.com/users/nehajyoti04/repos', 'https://api.github.com/users/nehajyoti04/events', 'https://api.github.com/users/nehajyoti04/received_events', 0); +INSERT INTO `developer` VALUES (6440430, 'mruddy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2014-01-19T00:40:31Z', '2024-07-03T06:51:06Z', 'https://avatars.githubusercontent.com/u/6440430?v=4', 'https://api.github.com/users/mruddy', 'https://github.com/mruddy', 'https://api.github.com/users/mruddy/followers', 'https://api.github.com/users/mruddy/following', 'https://api.github.com/users/mruddy/gists', 'https://api.github.com/users/mruddy/starred', 'https://api.github.com/users/mruddy/repos', 'https://api.github.com/users/mruddy/events', 'https://api.github.com/users/mruddy/received_events', 0); +INSERT INTO `developer` VALUES (6462722, 'lpescher', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2014-01-21T17:17:08Z', '2020-04-25T23:31:29Z', 'https://avatars.githubusercontent.com/u/6462722?v=4', 'https://api.github.com/users/lpescher', 'https://github.com/lpescher', 'https://api.github.com/users/lpescher/followers', 'https://api.github.com/users/lpescher/following', 'https://api.github.com/users/lpescher/gists', 'https://api.github.com/users/lpescher/starred', 'https://api.github.com/users/lpescher/repos', 'https://api.github.com/users/lpescher/events', 'https://api.github.com/users/lpescher/received_events', 0); +INSERT INTO `developer` VALUES (6468064, 'kevcooper', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kevin Cooper', '@amzn', 'https://kevincooper.io', 'Austin, TX', NULL, 'true', NULL, NULL, 0, 0, 21, 37, 0, 0, 0, '2014-01-22T05:29:01Z', '2024-09-17T16:52:32Z', 'https://avatars.githubusercontent.com/u/6468064?v=4', 'https://api.github.com/users/kevcooper', 'https://github.com/kevcooper', 'https://api.github.com/users/kevcooper/followers', 'https://api.github.com/users/kevcooper/following', 'https://api.github.com/users/kevcooper/gists', 'https://api.github.com/users/kevcooper/starred', 'https://api.github.com/users/kevcooper/repos', 'https://api.github.com/users/kevcooper/events', 'https://api.github.com/users/kevcooper/received_events', 0); +INSERT INTO `developer` VALUES (6469803, 'Scukerman', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@MascotGaming', '', 'Spain', NULL, NULL, 'A picky developer', NULL, 0, 0, 10, 9, 0, 0, 0, '2014-01-22T09:35:48Z', '2024-08-28T18:19:06Z', 'https://avatars.githubusercontent.com/u/6469803?v=4', 'https://api.github.com/users/Scukerman', 'https://github.com/Scukerman', 'https://api.github.com/users/Scukerman/followers', 'https://api.github.com/users/Scukerman/following', 'https://api.github.com/users/Scukerman/gists', 'https://api.github.com/users/Scukerman/starred', 'https://api.github.com/users/Scukerman/repos', 'https://api.github.com/users/Scukerman/events', 'https://api.github.com/users/Scukerman/received_events', 0); +INSERT INTO `developer` VALUES (6470319, 'RCasatta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Riccardo Casatta', NULL, '', 'Italia', NULL, NULL, '#bitcoin', NULL, 0, 0, 212, 80, 0, 0, 0, '2014-01-22T10:42:12Z', '2024-10-27T12:16:50Z', 'https://avatars.githubusercontent.com/u/6470319?v=4', 'https://api.github.com/users/RCasatta', 'https://github.com/RCasatta', 'https://api.github.com/users/RCasatta/followers', 'https://api.github.com/users/RCasatta/following', 'https://api.github.com/users/RCasatta/gists', 'https://api.github.com/users/RCasatta/starred', 'https://api.github.com/users/RCasatta/repos', 'https://api.github.com/users/RCasatta/events', 'https://api.github.com/users/RCasatta/received_events', 0); +INSERT INTO `developer` VALUES (6486328, 'pmienk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Phillip Mienk', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 21, 2, 0, 0, 0, '2014-01-23T22:24:35Z', '2024-10-24T22:53:07Z', 'https://avatars.githubusercontent.com/u/6486328?v=4', 'https://api.github.com/users/pmienk', 'https://github.com/pmienk', 'https://api.github.com/users/pmienk/followers', 'https://api.github.com/users/pmienk/following', 'https://api.github.com/users/pmienk/gists', 'https://api.github.com/users/pmienk/starred', 'https://api.github.com/users/pmienk/repos', 'https://api.github.com/users/pmienk/events', 'https://api.github.com/users/pmienk/received_events', 0); +INSERT INTO `developer` VALUES (6504097, 'Altoidnerd1', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2014-01-26T02:43:35Z', '2020-09-11T10:44:43Z', 'https://avatars.githubusercontent.com/u/6504097?v=4', 'https://api.github.com/users/Altoidnerd1', 'https://github.com/Altoidnerd1', 'https://api.github.com/users/Altoidnerd1/followers', 'https://api.github.com/users/Altoidnerd1/following', 'https://api.github.com/users/Altoidnerd1/gists', 'https://api.github.com/users/Altoidnerd1/starred', 'https://api.github.com/users/Altoidnerd1/repos', 'https://api.github.com/users/Altoidnerd1/events', 'https://api.github.com/users/Altoidnerd1/received_events', 0); +INSERT INTO `developer` VALUES (6577390, 'astorath', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2014-02-03T18:00:09Z', '2024-10-17T12:13:39Z', 'https://avatars.githubusercontent.com/u/6577390?v=4', 'https://api.github.com/users/astorath', 'https://github.com/astorath', 'https://api.github.com/users/astorath/followers', 'https://api.github.com/users/astorath/following', 'https://api.github.com/users/astorath/gists', 'https://api.github.com/users/astorath/starred', 'https://api.github.com/users/astorath/repos', 'https://api.github.com/users/astorath/events', 'https://api.github.com/users/astorath/received_events', 0); +INSERT INTO `developer` VALUES (6623629, 'sumit-gupta91', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sumit Gupta', NULL, '', 'Bangalore', 'sg1096@gmail.com', NULL, NULL, NULL, 0, 0, 20, 5, 0, 0, 0, '2014-02-08T10:21:12Z', '2024-08-23T07:33:21Z', 'https://avatars.githubusercontent.com/u/6623629?v=4', 'https://api.github.com/users/sumit-gupta91', 'https://github.com/sumit-gupta91', 'https://api.github.com/users/sumit-gupta91/followers', 'https://api.github.com/users/sumit-gupta91/following', 'https://api.github.com/users/sumit-gupta91/gists', 'https://api.github.com/users/sumit-gupta91/starred', 'https://api.github.com/users/sumit-gupta91/repos', 'https://api.github.com/users/sumit-gupta91/events', 'https://api.github.com/users/sumit-gupta91/received_events', 0); +INSERT INTO `developer` VALUES (6662648, 'NDevox', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Sarbicki', 'NxCodes', 'https://nick.sarbicki.com', 'London', NULL, NULL, 'Consultant Full Stack Developer', NULL, 0, 0, 56, 60, 0, 0, 0, '2014-02-12T15:08:55Z', '2023-08-08T17:43:09Z', 'https://avatars.githubusercontent.com/u/6662648?v=4', 'https://api.github.com/users/NDevox', 'https://github.com/NDevox', 'https://api.github.com/users/NDevox/followers', 'https://api.github.com/users/NDevox/following', 'https://api.github.com/users/NDevox/gists', 'https://api.github.com/users/NDevox/starred', 'https://api.github.com/users/NDevox/repos', 'https://api.github.com/users/NDevox/events', 'https://api.github.com/users/NDevox/received_events', 0); +INSERT INTO `developer` VALUES (6672196, 'jimmysitu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jimmy Situ', 'ZHAOXIN, JMST', '', '1KHujLT4AzQwQKSLEUSbcergqv7fMnQNXA', NULL, NULL, 'CPU Micro Architect', NULL, 0, 0, 63, 244, 0, 0, 0, '2014-02-13T12:59:38Z', '2024-08-20T08:14:29Z', 'https://avatars.githubusercontent.com/u/6672196?v=4', 'https://api.github.com/users/jimmysitu', 'https://github.com/jimmysitu', 'https://api.github.com/users/jimmysitu/followers', 'https://api.github.com/users/jimmysitu/following', 'https://api.github.com/users/jimmysitu/gists', 'https://api.github.com/users/jimmysitu/starred', 'https://api.github.com/users/jimmysitu/repos', 'https://api.github.com/users/jimmysitu/events', 'https://api.github.com/users/jimmysitu/received_events', 0); +INSERT INTO `developer` VALUES (6677170, 'malkam03', 'C', 0, 0, 0, 0, 0, 0, 0, 'Malcolm Davis', NULL, 'http://www.malcolmdavis.xyz', 'Costa Rica', 'me@malcolmdavis.xyz', NULL, 'Computer Engineer, Entrepreneur, Hardware Hacker :nerd_face:', NULL, 0, 0, 19, 19, 0, 0, 0, '2014-02-13T23:10:26Z', '2024-08-27T22:54:45Z', 'https://avatars.githubusercontent.com/u/6677170?v=4', 'https://api.github.com/users/malkam03', 'https://github.com/malkam03', 'https://api.github.com/users/malkam03/followers', 'https://api.github.com/users/malkam03/following', 'https://api.github.com/users/malkam03/gists', 'https://api.github.com/users/malkam03/starred', 'https://api.github.com/users/malkam03/repos', 'https://api.github.com/users/malkam03/events', 'https://api.github.com/users/malkam03/received_events', 0); +INSERT INTO `developer` VALUES (6682655, 'divyanshu013', 'C', 1.7694330330276964, 0, 0, 0, 0, 0, 0, 'Divyanshu Maithani', '@pspdfkit', 'divyanshu013.dev', 'India', NULL, 'true', 'Ideas are more resilient than code', 'divyanshu013', 0, 0, 388, 104, 0, 0, 0, '2014-02-14T13:53:30Z', '2024-10-01T15:13:04Z', 'https://avatars.githubusercontent.com/u/6682655?v=4', 'https://api.github.com/users/divyanshu013', 'https://github.com/divyanshu013', 'https://api.github.com/users/divyanshu013/followers', 'https://api.github.com/users/divyanshu013/following', 'https://api.github.com/users/divyanshu013/gists', 'https://api.github.com/users/divyanshu013/starred', 'https://api.github.com/users/divyanshu013/repos', 'https://api.github.com/users/divyanshu013/events', 'https://api.github.com/users/divyanshu013/received_events', 0); +INSERT INTO `developer` VALUES (6709831, 'naphta', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jake Hill', NULL, '', 'Kidderminster, UK', 'jake@naphta.uk', NULL, NULL, NULL, 0, 0, 5, 4, 0, 0, 0, '2014-02-17T22:28:20Z', '2024-10-31T12:52:55Z', 'https://avatars.githubusercontent.com/u/6709831?v=4', 'https://api.github.com/users/naphta', 'https://github.com/naphta', 'https://api.github.com/users/naphta/followers', 'https://api.github.com/users/naphta/following', 'https://api.github.com/users/naphta/gists', 'https://api.github.com/users/naphta/starred', 'https://api.github.com/users/naphta/repos', 'https://api.github.com/users/naphta/events', 'https://api.github.com/users/naphta/received_events', 0); +INSERT INTO `developer` VALUES (6712518, 'Ravenons', 'C', 0, 0, 0, 0, 0, 0, 0, 'Carlos Ledesma', NULL, 'https://twitter.com/Ravenons', 'Málaga, Spain', NULL, NULL, NULL, NULL, 0, 0, 18, 12, 0, 0, 0, '2014-02-18T06:05:26Z', '2023-11-28T21:13:56Z', 'https://avatars.githubusercontent.com/u/6712518?v=4', 'https://api.github.com/users/Ravenons', 'https://github.com/Ravenons', 'https://api.github.com/users/Ravenons/followers', 'https://api.github.com/users/Ravenons/following', 'https://api.github.com/users/Ravenons/gists', 'https://api.github.com/users/Ravenons/starred', 'https://api.github.com/users/Ravenons/repos', 'https://api.github.com/users/Ravenons/events', 'https://api.github.com/users/Ravenons/received_events', 0); +INSERT INTO `developer` VALUES (6721742, 'whitj00', 'C', 0, 0, 0, 0, 0, 0, 0, 'Whit Jackson', NULL, 'whitjack.me', 'Los Angeles, CA', 'whit@whitjack.me', NULL, NULL, NULL, 0, 0, 38, 1, 0, 0, 0, '2014-02-19T00:03:54Z', '2023-12-31T00:08:50Z', 'https://avatars.githubusercontent.com/u/6721742?v=4', 'https://api.github.com/users/whitj00', 'https://github.com/whitj00', 'https://api.github.com/users/whitj00/followers', 'https://api.github.com/users/whitj00/following', 'https://api.github.com/users/whitj00/gists', 'https://api.github.com/users/whitj00/starred', 'https://api.github.com/users/whitj00/repos', 'https://api.github.com/users/whitj00/events', 'https://api.github.com/users/whitj00/received_events', 0); +INSERT INTO `developer` VALUES (6726054, 'sairoutine', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sai', '@ColorSing', 'https://sai-chan.com/', '未知', 'sairoutine@gmail.com', 'true', 'Gopher, HTML5 Game Developer', 'sairoutine', 0, 0, 126, 19, 0, 0, 0, '2014-02-19T11:08:57Z', '2023-07-24T04:15:21Z', 'https://avatars.githubusercontent.com/u/6726054?v=4', 'https://api.github.com/users/sairoutine', 'https://github.com/sairoutine', 'https://api.github.com/users/sairoutine/followers', 'https://api.github.com/users/sairoutine/following', 'https://api.github.com/users/sairoutine/gists', 'https://api.github.com/users/sairoutine/starred', 'https://api.github.com/users/sairoutine/repos', 'https://api.github.com/users/sairoutine/events', 'https://api.github.com/users/sairoutine/received_events', 0); +INSERT INTO `developer` VALUES (6730584, 'omerlh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Omer Levi Hevroni', '@goledge', '', 'Tel Aviv', NULL, NULL, 'Engineer @goledge , OSS maintainer and a proud father', 'omerlh', 0, 0, 85, 5, 0, 0, 0, '2014-02-19T19:37:33Z', '2024-11-01T11:26:36Z', 'https://avatars.githubusercontent.com/u/6730584?v=4', 'https://api.github.com/users/omerlh', 'https://github.com/omerlh', 'https://api.github.com/users/omerlh/followers', 'https://api.github.com/users/omerlh/following', 'https://api.github.com/users/omerlh/gists', 'https://api.github.com/users/omerlh/starred', 'https://api.github.com/users/omerlh/repos', 'https://api.github.com/users/omerlh/events', 'https://api.github.com/users/omerlh/received_events', 0); +INSERT INTO `developer` VALUES (6740786, 'coderbarns', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aarni Alasaarela', NULL, '', 'Helsinki, Finland', 'aarni.alasaarela@gmail.com', NULL, 'Full-stack engineer and data scientist', NULL, 0, 0, 3, 3, 0, 0, 0, '2014-02-20T18:49:27Z', '2024-07-29T16:57:32Z', 'https://avatars.githubusercontent.com/u/6740786?v=4', 'https://api.github.com/users/coderbarns', 'https://github.com/coderbarns', 'https://api.github.com/users/coderbarns/followers', 'https://api.github.com/users/coderbarns/following', 'https://api.github.com/users/coderbarns/gists', 'https://api.github.com/users/coderbarns/starred', 'https://api.github.com/users/coderbarns/repos', 'https://api.github.com/users/coderbarns/events', 'https://api.github.com/users/coderbarns/received_events', 0); +INSERT INTO `developer` VALUES (6744596, 'agabani', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ahmed Agabani', NULL, '', 'United Kingdom', NULL, NULL, NULL, NULL, 0, 0, 28, 3, 0, 0, 0, '2014-02-21T04:48:12Z', '2024-10-16T05:03:08Z', 'https://avatars.githubusercontent.com/u/6744596?v=4', 'https://api.github.com/users/agabani', 'https://github.com/agabani', 'https://api.github.com/users/agabani/followers', 'https://api.github.com/users/agabani/following', 'https://api.github.com/users/agabani/gists', 'https://api.github.com/users/agabani/starred', 'https://api.github.com/users/agabani/repos', 'https://api.github.com/users/agabani/events', 'https://api.github.com/users/agabani/received_events', 0); +INSERT INTO `developer` VALUES (6751032, 'squ1rr3lly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 4, 0, 0, 0, '2014-02-21T19:20:37Z', '2024-10-09T20:13:42Z', 'https://avatars.githubusercontent.com/u/6751032?v=4', 'https://api.github.com/users/squ1rr3lly', 'https://github.com/squ1rr3lly', 'https://api.github.com/users/squ1rr3lly/followers', 'https://api.github.com/users/squ1rr3lly/following', 'https://api.github.com/users/squ1rr3lly/gists', 'https://api.github.com/users/squ1rr3lly/starred', 'https://api.github.com/users/squ1rr3lly/repos', 'https://api.github.com/users/squ1rr3lly/events', 'https://api.github.com/users/squ1rr3lly/received_events', 0); +INSERT INTO `developer` VALUES (6758104, 'elodani', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dániel Élő', 'Transferwise', '', 'Budapest, Hungary', NULL, NULL, 'I am working for Transferwise as an SRE, interested in automatizing the world. work account is @elodani-transferwise', NULL, 0, 0, 6, 0, 0, 0, 0, '2014-02-22T18:27:20Z', '2021-06-11T12:51:56Z', 'https://avatars.githubusercontent.com/u/6758104?v=4', 'https://api.github.com/users/elodani', 'https://github.com/elodani', 'https://api.github.com/users/elodani/followers', 'https://api.github.com/users/elodani/following', 'https://api.github.com/users/elodani/gists', 'https://api.github.com/users/elodani/starred', 'https://api.github.com/users/elodani/repos', 'https://api.github.com/users/elodani/events', 'https://api.github.com/users/elodani/received_events', 0); +INSERT INTO `developer` VALUES (6762123, 'zeddee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zed', 'ShootBird', 'https://www.shootbird.work', '未知', 'zed@shootbird.work', NULL, 'Zed writes tech things for people. He\'s a former educator, and documentarian by nature (i.e. asks a lot of questions and writes stuff down).', NULL, 0, 0, 9, 5, 0, 0, 0, '2014-02-23T09:56:52Z', '2024-10-25T19:53:54Z', 'https://avatars.githubusercontent.com/u/6762123?v=4', 'https://api.github.com/users/zeddee', 'https://github.com/zeddee', 'https://api.github.com/users/zeddee/followers', 'https://api.github.com/users/zeddee/following', 'https://api.github.com/users/zeddee/gists', 'https://api.github.com/users/zeddee/starred', 'https://api.github.com/users/zeddee/repos', 'https://api.github.com/users/zeddee/events', 'https://api.github.com/users/zeddee/received_events', 0); +INSERT INTO `developer` VALUES (6770106, 'inaseem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Naseem Ali', '@razorpay @namica @gscdit', '', 'Roorkee Uttarakhand India', 'inaseem@protonmail.com', NULL, 'Software engineer. I like to engineer full-stack apps using a suitable tech stack.', NULL, 0, 0, 44, 7, 0, 0, 0, '2014-02-24T10:35:52Z', '2024-10-02T11:24:31Z', 'https://avatars.githubusercontent.com/u/6770106?v=4', 'https://api.github.com/users/inaseem', 'https://github.com/inaseem', 'https://api.github.com/users/inaseem/followers', 'https://api.github.com/users/inaseem/following', 'https://api.github.com/users/inaseem/gists', 'https://api.github.com/users/inaseem/starred', 'https://api.github.com/users/inaseem/repos', 'https://api.github.com/users/inaseem/events', 'https://api.github.com/users/inaseem/received_events', 0); +INSERT INTO `developer` VALUES (6813397, 'yujunz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yujun Zhang', '@NVIDIA', '', 'Shanghai', 'zhangyujun@gmail.com', NULL, '(🤖️)Autonomous(🚗)Vehicles(☁️)Infrastructure(💻)Engineer(👽)Human, not octopus(🐙)', 'yujunzhn', 0, 0, 72, 219, 0, 0, 0, '2014-02-28T07:41:58Z', '2024-10-25T01:45:24Z', 'https://avatars.githubusercontent.com/u/6813397?v=4', 'https://api.github.com/users/yujunz', 'https://github.com/yujunz', 'https://api.github.com/users/yujunz/followers', 'https://api.github.com/users/yujunz/following', 'https://api.github.com/users/yujunz/gists', 'https://api.github.com/users/yujunz/starred', 'https://api.github.com/users/yujunz/repos', 'https://api.github.com/users/yujunz/events', 'https://api.github.com/users/yujunz/received_events', 0); +INSERT INTO `developer` VALUES (6832571, 'pavkir', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kirill Pavlov', NULL, '', 'Russia, Saint-Petersburg', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2014-03-02T17:57:01Z', '2024-10-02T16:45:55Z', 'https://avatars.githubusercontent.com/u/6832571?v=4', 'https://api.github.com/users/pavkir', 'https://github.com/pavkir', 'https://api.github.com/users/pavkir/followers', 'https://api.github.com/users/pavkir/following', 'https://api.github.com/users/pavkir/gists', 'https://api.github.com/users/pavkir/starred', 'https://api.github.com/users/pavkir/repos', 'https://api.github.com/users/pavkir/events', 'https://api.github.com/users/pavkir/received_events', 0); +INSERT INTO `developer` VALUES (6834676, 'saulortega', 'C', 0, 0, 0, 0, 0, 0, 0, 'Saúl Ortega', NULL, 'https://saulortega.github.io', 'Bogotá, Colombia', NULL, NULL, NULL, NULL, 0, 0, 4, 5, 0, 0, 0, '2014-03-03T00:53:17Z', '2024-05-06T12:57:18Z', 'https://avatars.githubusercontent.com/u/6834676?v=4', 'https://api.github.com/users/saulortega', 'https://github.com/saulortega', 'https://api.github.com/users/saulortega/followers', 'https://api.github.com/users/saulortega/following', 'https://api.github.com/users/saulortega/gists', 'https://api.github.com/users/saulortega/starred', 'https://api.github.com/users/saulortega/repos', 'https://api.github.com/users/saulortega/events', 'https://api.github.com/users/saulortega/received_events', 0); +INSERT INTO `developer` VALUES (6848764, 'paveljanik', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 62, 0, 0, 0, 0, '2014-03-04T09:00:31Z', '2024-06-02T17:27:49Z', 'https://avatars.githubusercontent.com/u/6848764?v=4', 'https://api.github.com/users/paveljanik', 'https://github.com/paveljanik', 'https://api.github.com/users/paveljanik/followers', 'https://api.github.com/users/paveljanik/following', 'https://api.github.com/users/paveljanik/gists', 'https://api.github.com/users/paveljanik/starred', 'https://api.github.com/users/paveljanik/repos', 'https://api.github.com/users/paveljanik/events', 'https://api.github.com/users/paveljanik/received_events', 0); +INSERT INTO `developer` VALUES (6850144, 'iangfc', 'C', 0, 0, 0, 0, 0, 0, 0, 'IanG', NULL, 'http://iang.org/', 'Planet Earth', NULL, NULL, 'financial cryptography since 1995', NULL, 0, 0, 12, 0, 0, 0, 0, '2014-03-04T11:41:13Z', '2024-07-26T09:32:40Z', 'https://avatars.githubusercontent.com/u/6850144?v=4', 'https://api.github.com/users/iangfc', 'https://github.com/iangfc', 'https://api.github.com/users/iangfc/followers', 'https://api.github.com/users/iangfc/following', 'https://api.github.com/users/iangfc/gists', 'https://api.github.com/users/iangfc/starred', 'https://api.github.com/users/iangfc/repos', 'https://api.github.com/users/iangfc/events', 'https://api.github.com/users/iangfc/received_events', 0); +INSERT INTO `developer` VALUES (6856136, 'YarkoL', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jarkko Lehto', NULL, '', 'Finland', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2014-03-04T23:47:18Z', '2020-11-13T20:02:53Z', 'https://avatars.githubusercontent.com/u/6856136?v=4', 'https://api.github.com/users/YarkoL', 'https://github.com/YarkoL', 'https://api.github.com/users/YarkoL/followers', 'https://api.github.com/users/YarkoL/following', 'https://api.github.com/users/YarkoL/gists', 'https://api.github.com/users/YarkoL/starred', 'https://api.github.com/users/YarkoL/repos', 'https://api.github.com/users/YarkoL/events', 'https://api.github.com/users/YarkoL/received_events', 0); +INSERT INTO `developer` VALUES (6893529, 'rensafi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Roya Ensafi', NULL, 'https://ensa.fi', '未知', NULL, NULL, 'I am a faculty member at UMich. My research focuses on security & privacy,w/ an emphasis on designing techniques & systems to protect users from hostile network', NULL, 0, 0, 76, 25, 0, 0, 0, '2014-03-08T18:50:29Z', '2024-10-28T18:53:06Z', 'https://avatars.githubusercontent.com/u/6893529?v=4', 'https://api.github.com/users/rensafi', 'https://github.com/rensafi', 'https://api.github.com/users/rensafi/followers', 'https://api.github.com/users/rensafi/following', 'https://api.github.com/users/rensafi/gists', 'https://api.github.com/users/rensafi/starred', 'https://api.github.com/users/rensafi/repos', 'https://api.github.com/users/rensafi/events', 'https://api.github.com/users/rensafi/received_events', 0); +INSERT INTO `developer` VALUES (6893820, 'ameddin73', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Meddin', 'Tanium', 'https://alex-meddin.com', 'Los Angeles', NULL, 'true', 'Tanium gives endpoint insight at the Speed of Tanium. I\'m bringing Tanium to the scale of cloud.', 'ameddin73', 0, 0, 1, 1, 0, 0, 0, '2014-03-08T19:49:44Z', '2024-10-29T19:43:10Z', 'https://avatars.githubusercontent.com/u/6893820?v=4', 'https://api.github.com/users/ameddin73', 'https://github.com/ameddin73', 'https://api.github.com/users/ameddin73/followers', 'https://api.github.com/users/ameddin73/following', 'https://api.github.com/users/ameddin73/gists', 'https://api.github.com/users/ameddin73/starred', 'https://api.github.com/users/ameddin73/repos', 'https://api.github.com/users/ameddin73/events', 'https://api.github.com/users/ameddin73/received_events', 0); +INSERT INTO `developer` VALUES (6905200, 'adanalvarez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adan Álvarez', NULL, 'https://adan.cloud/', 'Barcelona', NULL, NULL, 'Cybersecurity engineer working at @koa-health :man_technologist:', 'Flekyy90', 0, 0, 54, 6, 0, 0, 0, '2014-03-10T09:07:47Z', '2024-10-25T11:24:41Z', 'https://avatars.githubusercontent.com/u/6905200?v=4', 'https://api.github.com/users/adanalvarez', 'https://github.com/adanalvarez', 'https://api.github.com/users/adanalvarez/followers', 'https://api.github.com/users/adanalvarez/following', 'https://api.github.com/users/adanalvarez/gists', 'https://api.github.com/users/adanalvarez/starred', 'https://api.github.com/users/adanalvarez/repos', 'https://api.github.com/users/adanalvarez/events', 'https://api.github.com/users/adanalvarez/received_events', 0); +INSERT INTO `developer` VALUES (6930104, 'forkye', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2014-03-12T13:39:07Z', '2020-02-29T03:56:21Z', 'https://avatars.githubusercontent.com/u/6930104?v=4', 'https://api.github.com/users/forkye', 'https://github.com/forkye', 'https://api.github.com/users/forkye/followers', 'https://api.github.com/users/forkye/following', 'https://api.github.com/users/forkye/gists', 'https://api.github.com/users/forkye/starred', 'https://api.github.com/users/forkye/repos', 'https://api.github.com/users/forkye/events', 'https://api.github.com/users/forkye/received_events', 0); +INSERT INTO `developer` VALUES (6941627, 'nidhi-tandon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nidhi Tandon', NULL, '', 'Bangalore', NULL, NULL, NULL, 'nidhitandon08', 0, 0, 30, 14, 0, 0, 0, '2014-03-13T13:56:53Z', '2024-09-18T11:08:43Z', 'https://avatars.githubusercontent.com/u/6941627?v=4', 'https://api.github.com/users/nidhi-tandon', 'https://github.com/nidhi-tandon', 'https://api.github.com/users/nidhi-tandon/followers', 'https://api.github.com/users/nidhi-tandon/following', 'https://api.github.com/users/nidhi-tandon/gists', 'https://api.github.com/users/nidhi-tandon/starred', 'https://api.github.com/users/nidhi-tandon/repos', 'https://api.github.com/users/nidhi-tandon/events', 'https://api.github.com/users/nidhi-tandon/received_events', 0); +INSERT INTO `developer` VALUES (6948162, 'AndrewClifford', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Clifford', 'Bitcoin Unlimited', 'bitcoinunlimited.info', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2014-03-14T05:15:55Z', '2023-06-05T00:54:50Z', 'https://avatars.githubusercontent.com/u/6948162?v=4', 'https://api.github.com/users/AndrewClifford', 'https://github.com/AndrewClifford', 'https://api.github.com/users/AndrewClifford/followers', 'https://api.github.com/users/AndrewClifford/following', 'https://api.github.com/users/AndrewClifford/gists', 'https://api.github.com/users/AndrewClifford/starred', 'https://api.github.com/users/AndrewClifford/repos', 'https://api.github.com/users/AndrewClifford/events', 'https://api.github.com/users/AndrewClifford/received_events', 0); +INSERT INTO `developer` VALUES (6957843, 'srinidhis05', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2014-03-15T06:41:57Z', '2024-07-24T02:36:08Z', 'https://avatars.githubusercontent.com/u/6957843?v=4', 'https://api.github.com/users/srinidhis05', 'https://github.com/srinidhis05', 'https://api.github.com/users/srinidhis05/followers', 'https://api.github.com/users/srinidhis05/following', 'https://api.github.com/users/srinidhis05/gists', 'https://api.github.com/users/srinidhis05/starred', 'https://api.github.com/users/srinidhis05/repos', 'https://api.github.com/users/srinidhis05/events', 'https://api.github.com/users/srinidhis05/received_events', 0); +INSERT INTO `developer` VALUES (6960810, 'eik18', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Kelson', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2014-03-15T16:16:00Z', '2024-02-22T16:16:00Z', 'https://avatars.githubusercontent.com/u/6960810?v=4', 'https://api.github.com/users/eik18', 'https://github.com/eik18', 'https://api.github.com/users/eik18/followers', 'https://api.github.com/users/eik18/following', 'https://api.github.com/users/eik18/gists', 'https://api.github.com/users/eik18/starred', 'https://api.github.com/users/eik18/repos', 'https://api.github.com/users/eik18/events', 'https://api.github.com/users/eik18/received_events', 0); +INSERT INTO `developer` VALUES (6975054, 'TarlogicSecurity', 'C', 3.4499883248332317, 0, 0, 0, 0, 0, 0, NULL, 'Tarlogic', 'https://www.tarlogic.com/', '未知', 'andres.tarasco@tarlogic.com', NULL, 'Cyber security, cyber intelligence, Red Team', 'tarlogic', 0, 0, 486, 0, 0, 0, 0, '2014-03-17T13:01:27Z', '2024-06-26T07:56:38Z', 'https://avatars.githubusercontent.com/u/6975054?v=4', 'https://api.github.com/users/TarlogicSecurity', 'https://github.com/TarlogicSecurity', 'https://api.github.com/users/TarlogicSecurity/followers', 'https://api.github.com/users/TarlogicSecurity/following', 'https://api.github.com/users/TarlogicSecurity/gists', 'https://api.github.com/users/TarlogicSecurity/starred', 'https://api.github.com/users/TarlogicSecurity/repos', 'https://api.github.com/users/TarlogicSecurity/events', 'https://api.github.com/users/TarlogicSecurity/received_events', 0); +INSERT INTO `developer` VALUES (6979744, 'jaguasch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jose Guasch', 'Microsoft', '', 'WA', NULL, 'true', NULL, NULL, 0, 0, 10, 7, 0, 0, 0, '2014-03-17T20:19:13Z', '2024-10-28T13:44:34Z', 'https://avatars.githubusercontent.com/u/6979744?v=4', 'https://api.github.com/users/jaguasch', 'https://github.com/jaguasch', 'https://api.github.com/users/jaguasch/followers', 'https://api.github.com/users/jaguasch/following', 'https://api.github.com/users/jaguasch/gists', 'https://api.github.com/users/jaguasch/starred', 'https://api.github.com/users/jaguasch/repos', 'https://api.github.com/users/jaguasch/events', 'https://api.github.com/users/jaguasch/received_events', 0); +INSERT INTO `developer` VALUES (6987180, 'adr-h', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adr', NULL, '', '未知', 'adrianhyk@gmail.com', NULL, 'Still figuring it out', NULL, 0, 0, 8, 8, 0, 0, 0, '2014-03-18T13:01:11Z', '2024-09-22T09:47:01Z', 'https://avatars.githubusercontent.com/u/6987180?v=4', 'https://api.github.com/users/adr-h', 'https://github.com/adr-h', 'https://api.github.com/users/adr-h/followers', 'https://api.github.com/users/adr-h/following', 'https://api.github.com/users/adr-h/gists', 'https://api.github.com/users/adr-h/starred', 'https://api.github.com/users/adr-h/repos', 'https://api.github.com/users/adr-h/events', 'https://api.github.com/users/adr-h/received_events', 0); +INSERT INTO `developer` VALUES (6998367, 'DomT4', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dominyk Tiller', NULL, '', 'United Kingdom', NULL, NULL, ':snake:', 'Dom_T4', 0, 0, 146, 18, 0, 0, 0, '2014-03-19T12:28:09Z', '2024-10-01T17:01:08Z', 'https://avatars.githubusercontent.com/u/6998367?v=4', 'https://api.github.com/users/DomT4', 'https://github.com/DomT4', 'https://api.github.com/users/DomT4/followers', 'https://api.github.com/users/DomT4/following', 'https://api.github.com/users/DomT4/gists', 'https://api.github.com/users/DomT4/starred', 'https://api.github.com/users/DomT4/repos', 'https://api.github.com/users/DomT4/events', 'https://api.github.com/users/DomT4/received_events', 0); +INSERT INTO `developer` VALUES (7011819, 'andreynering', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrey Nering', '@jobscore', 'andrey.nering.com.br/about', 'Joinville, Santa Catarina, Brazil', NULL, 'true', 'Senior Software Engineer at @jobscore working mostly with Ruby (and Rails), Go, databases and more. Creator of @go-task.', NULL, 0, 0, 215, 85, 0, 0, 0, '2014-03-20T14:12:48Z', '2024-10-06T00:17:57Z', 'https://avatars.githubusercontent.com/u/7011819?v=4', 'https://api.github.com/users/andreynering', 'https://github.com/andreynering', 'https://api.github.com/users/andreynering/followers', 'https://api.github.com/users/andreynering/following', 'https://api.github.com/users/andreynering/gists', 'https://api.github.com/users/andreynering/starred', 'https://api.github.com/users/andreynering/repos', 'https://api.github.com/users/andreynering/events', 'https://api.github.com/users/andreynering/received_events', 0); +INSERT INTO `developer` VALUES (7026262, 'SPoint42', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sebastien gioria', 'Lectra', 'https://www.lectra.com', 'Cestas, bordeaux', NULL, 'true', 'https://www.linkedin.com/in/gioria', 'SPoint', 0, 0, 15, 56, 0, 0, 0, '2014-03-21T20:39:21Z', '2024-10-26T08:35:19Z', 'https://avatars.githubusercontent.com/u/7026262?v=4', 'https://api.github.com/users/SPoint42', 'https://github.com/SPoint42', 'https://api.github.com/users/SPoint42/followers', 'https://api.github.com/users/SPoint42/following', 'https://api.github.com/users/SPoint42/gists', 'https://api.github.com/users/SPoint42/starred', 'https://api.github.com/users/SPoint42/repos', 'https://api.github.com/users/SPoint42/events', 'https://api.github.com/users/SPoint42/received_events', 0); +INSERT INTO `developer` VALUES (7117866, 'gdm85', 'C', 0, 0, 0, 0, 0, 0, 0, 'gdm85', NULL, 'https://medium.com/@gdm85', 'Amsterdam', NULL, NULL, NULL, NULL, 0, 0, 49, 3, 0, 0, 0, '2014-03-31T16:40:15Z', '2024-08-30T19:05:01Z', 'https://avatars.githubusercontent.com/u/7117866?v=4', 'https://api.github.com/users/gdm85', 'https://github.com/gdm85', 'https://api.github.com/users/gdm85/followers', 'https://api.github.com/users/gdm85/following', 'https://api.github.com/users/gdm85/gists', 'https://api.github.com/users/gdm85/starred', 'https://api.github.com/users/gdm85/repos', 'https://api.github.com/users/gdm85/events', 'https://api.github.com/users/gdm85/received_events', 0); +INSERT INTO `developer` VALUES (7133040, 'ryanofsky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ryan Ofsky', '@chaincodelabs ', '', '未知', 'ryan@ofsky.org', 'true', NULL, NULL, 0, 0, 194, 1, 0, 0, 0, '2014-04-02T00:15:02Z', '2024-10-29T18:11:54Z', 'https://avatars.githubusercontent.com/u/7133040?v=4', 'https://api.github.com/users/ryanofsky', 'https://github.com/ryanofsky', 'https://api.github.com/users/ryanofsky/followers', 'https://api.github.com/users/ryanofsky/following', 'https://api.github.com/users/ryanofsky/gists', 'https://api.github.com/users/ryanofsky/starred', 'https://api.github.com/users/ryanofsky/repos', 'https://api.github.com/users/ryanofsky/events', 'https://api.github.com/users/ryanofsky/received_events', 0); +INSERT INTO `developer` VALUES (7147958, 'lpxxn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick', NULL, 'http://www.cnblogs.com/li-peng/', 'beijing', 'mi_duo@live.com', NULL, 'think twice, code once!', NULL, 0, 0, 83, 69, 0, 0, 0, '2014-04-03T08:42:24Z', '2024-10-28T15:14:15Z', 'https://avatars.githubusercontent.com/u/7147958?v=4', 'https://api.github.com/users/lpxxn', 'https://github.com/lpxxn', 'https://api.github.com/users/lpxxn/followers', 'https://api.github.com/users/lpxxn/following', 'https://api.github.com/users/lpxxn/gists', 'https://api.github.com/users/lpxxn/starred', 'https://api.github.com/users/lpxxn/repos', 'https://api.github.com/users/lpxxn/events', 'https://api.github.com/users/lpxxn/received_events', 0); +INSERT INTO `developer` VALUES (7154373, 'dmaxl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dominik Lehner', NULL, '', '未知', 'dominik.lehner17@gmail.com', NULL, NULL, NULL, 0, 0, 16, 0, 0, 0, 0, '2014-04-03T20:05:48Z', '2024-08-06T23:55:21Z', 'https://avatars.githubusercontent.com/u/7154373?v=4', 'https://api.github.com/users/dmaxl', 'https://github.com/dmaxl', 'https://api.github.com/users/dmaxl/followers', 'https://api.github.com/users/dmaxl/following', 'https://api.github.com/users/dmaxl/gists', 'https://api.github.com/users/dmaxl/starred', 'https://api.github.com/users/dmaxl/repos', 'https://api.github.com/users/dmaxl/events', 'https://api.github.com/users/dmaxl/received_events', 0); +INSERT INTO `developer` VALUES (7190678, 'bitbandi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 38, 0, 0, 0, 0, '2014-04-05T17:29:46Z', '2024-10-01T23:36:16Z', 'https://avatars.githubusercontent.com/u/7190678?v=4', 'https://api.github.com/users/bitbandi', 'https://github.com/bitbandi', 'https://api.github.com/users/bitbandi/followers', 'https://api.github.com/users/bitbandi/following', 'https://api.github.com/users/bitbandi/gists', 'https://api.github.com/users/bitbandi/starred', 'https://api.github.com/users/bitbandi/repos', 'https://api.github.com/users/bitbandi/events', 'https://api.github.com/users/bitbandi/received_events', 0); +INSERT INTO `developer` VALUES (7211879, 'dsever', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sever', NULL, '', 'Croatia', NULL, NULL, 'Squad Lead, Deutsche Telekom Cloud Services', NULL, 0, 0, 9, 9, 0, 0, 0, '2014-04-07T17:08:44Z', '2024-10-28T08:34:45Z', 'https://avatars.githubusercontent.com/u/7211879?v=4', 'https://api.github.com/users/dsever', 'https://github.com/dsever', 'https://api.github.com/users/dsever/followers', 'https://api.github.com/users/dsever/following', 'https://api.github.com/users/dsever/gists', 'https://api.github.com/users/dsever/starred', 'https://api.github.com/users/dsever/repos', 'https://api.github.com/users/dsever/events', 'https://api.github.com/users/dsever/received_events', 0); +INSERT INTO `developer` VALUES (7251431, 'sjentzsch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sören Jentzsch', 'Sören Jentzsch, IT Automation', 'https://www.it-automation.io/', 'Munich, Germany', NULL, NULL, 'Kubernetes & Cloud-native expert / DevSecOps Freelancer / consultant for various enterprises and companies', 'sjentzsch88', 0, 0, 17, 14, 0, 0, 0, '2014-04-10T13:32:13Z', '2024-08-31T13:22:07Z', 'https://avatars.githubusercontent.com/u/7251431?v=4', 'https://api.github.com/users/sjentzsch', 'https://github.com/sjentzsch', 'https://api.github.com/users/sjentzsch/followers', 'https://api.github.com/users/sjentzsch/following', 'https://api.github.com/users/sjentzsch/gists', 'https://api.github.com/users/sjentzsch/starred', 'https://api.github.com/users/sjentzsch/repos', 'https://api.github.com/users/sjentzsch/events', 'https://api.github.com/users/sjentzsch/received_events', 0); +INSERT INTO `developer` VALUES (7269784, 'k315k1010', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keisuke Iwado', 'AnyReach', '', 'Tokyo, Japan', 'k315k1010@gmail.com', NULL, NULL, 'k315k1010', 0, 0, 2, 4, 0, 0, 0, '2014-04-12T04:15:41Z', '2024-10-21T11:30:25Z', 'https://avatars.githubusercontent.com/u/7269784?v=4', 'https://api.github.com/users/k315k1010', 'https://github.com/k315k1010', 'https://api.github.com/users/k315k1010/followers', 'https://api.github.com/users/k315k1010/following', 'https://api.github.com/users/k315k1010/gists', 'https://api.github.com/users/k315k1010/starred', 'https://api.github.com/users/k315k1010/repos', 'https://api.github.com/users/k315k1010/events', 'https://api.github.com/users/k315k1010/received_events', 0); +INSERT INTO `developer` VALUES (7275704, 'btcdrak', 'C', 4.170226307035604, 0, 0, 0, 0, 0, 0, '฿tcDrak', NULL, 'twitter.com/btcdrak', '未知', NULL, NULL, NULL, NULL, 0, 0, 528, 0, 0, 0, 0, '2014-04-12T20:33:00Z', '2019-05-21T02:52:26Z', 'https://avatars.githubusercontent.com/u/7275704?v=4', 'https://api.github.com/users/btcdrak', 'https://github.com/btcdrak', 'https://api.github.com/users/btcdrak/followers', 'https://api.github.com/users/btcdrak/following', 'https://api.github.com/users/btcdrak/gists', 'https://api.github.com/users/btcdrak/starred', 'https://api.github.com/users/btcdrak/repos', 'https://api.github.com/users/btcdrak/events', 'https://api.github.com/users/btcdrak/received_events', 0); +INSERT INTO `developer` VALUES (7281841, 'GSongHashrate', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guangyan Song', 'University College London & Satalia', '', 'London', NULL, NULL, NULL, NULL, 0, 0, 13, 0, 0, 0, 0, '2014-04-13T16:56:13Z', '2021-09-02T17:16:08Z', 'https://avatars.githubusercontent.com/u/7281841?v=4', 'https://api.github.com/users/GSongHashrate', 'https://github.com/GSongHashrate', 'https://api.github.com/users/GSongHashrate/followers', 'https://api.github.com/users/GSongHashrate/following', 'https://api.github.com/users/GSongHashrate/gists', 'https://api.github.com/users/GSongHashrate/starred', 'https://api.github.com/users/GSongHashrate/repos', 'https://api.github.com/users/GSongHashrate/events', 'https://api.github.com/users/GSongHashrate/received_events', 0); +INSERT INTO `developer` VALUES (7329312, 'devlinmr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Devlin', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2014-04-17T17:32:08Z', '2024-08-23T11:06:55Z', 'https://avatars.githubusercontent.com/u/7329312?v=4', 'https://api.github.com/users/devlinmr', 'https://github.com/devlinmr', 'https://api.github.com/users/devlinmr/followers', 'https://api.github.com/users/devlinmr/following', 'https://api.github.com/users/devlinmr/gists', 'https://api.github.com/users/devlinmr/starred', 'https://api.github.com/users/devlinmr/repos', 'https://api.github.com/users/devlinmr/events', 'https://api.github.com/users/devlinmr/received_events', 0); +INSERT INTO `developer` VALUES (7380969, 'ch3rub1m', 'C', 0, 0, 0, 0, 0, 0, 0, 'ch3rub1m', NULL, '', 'China, Shenzhen', NULL, 'true', 'Machine learning learner / Cloud-native developer / Full stack web developer / iOS developer', NULL, 0, 0, 36, 15, 0, 0, 0, '2014-04-23T06:09:47Z', '2024-06-14T04:41:37Z', 'https://avatars.githubusercontent.com/u/7380969?v=4', 'https://api.github.com/users/ch3rub1m', 'https://github.com/ch3rub1m', 'https://api.github.com/users/ch3rub1m/followers', 'https://api.github.com/users/ch3rub1m/following', 'https://api.github.com/users/ch3rub1m/gists', 'https://api.github.com/users/ch3rub1m/starred', 'https://api.github.com/users/ch3rub1m/repos', 'https://api.github.com/users/ch3rub1m/events', 'https://api.github.com/users/ch3rub1m/received_events', 0); +INSERT INTO `developer` VALUES (7393257, 'Fuzzbawls', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@PIVX-Project', 'http://www.fuzzbawls.pw', 'Earth', 'fuzzbawls@gmail.com', NULL, NULL, NULL, 0, 0, 61, 4, 0, 0, 0, '2014-04-24T08:54:14Z', '2024-09-26T09:18:26Z', 'https://avatars.githubusercontent.com/u/7393257?v=4', 'https://api.github.com/users/Fuzzbawls', 'https://github.com/Fuzzbawls', 'https://api.github.com/users/Fuzzbawls/followers', 'https://api.github.com/users/Fuzzbawls/following', 'https://api.github.com/users/Fuzzbawls/gists', 'https://api.github.com/users/Fuzzbawls/starred', 'https://api.github.com/users/Fuzzbawls/repos', 'https://api.github.com/users/Fuzzbawls/events', 'https://api.github.com/users/Fuzzbawls/received_events', 0); +INSERT INTO `developer` VALUES (7463573, 'sdaftuar', 'C', 3.1927604740466693, 0, 0, 0, 0, 0, 0, 'Suhas Daftuar', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 471, 0, 0, 0, 0, '2014-05-02T02:32:51Z', '2024-10-24T00:35:01Z', 'https://avatars.githubusercontent.com/u/7463573?v=4', 'https://api.github.com/users/sdaftuar', 'https://github.com/sdaftuar', 'https://api.github.com/users/sdaftuar/followers', 'https://api.github.com/users/sdaftuar/following', 'https://api.github.com/users/sdaftuar/gists', 'https://api.github.com/users/sdaftuar/starred', 'https://api.github.com/users/sdaftuar/repos', 'https://api.github.com/users/sdaftuar/events', 'https://api.github.com/users/sdaftuar/received_events', 0); +INSERT INTO `developer` VALUES (7476289, 'nbenoit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicolas Benoit', NULL, 'http://nbenoit.tuxfamily.org', 'France', NULL, 'true', NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2014-05-03T20:24:17Z', '2024-02-02T10:01:46Z', 'https://avatars.githubusercontent.com/u/7476289?v=4', 'https://api.github.com/users/nbenoit', 'https://github.com/nbenoit', 'https://api.github.com/users/nbenoit/followers', 'https://api.github.com/users/nbenoit/following', 'https://api.github.com/users/nbenoit/gists', 'https://api.github.com/users/nbenoit/starred', 'https://api.github.com/users/nbenoit/repos', 'https://api.github.com/users/nbenoit/events', 'https://api.github.com/users/nbenoit/received_events', 0); +INSERT INTO `developer` VALUES (7483782, 'imharrywu', 'C', 0, 0, 0, 0, 0, 0, 0, 'HarryWu', 'bitbaba.com', 'https://harrywu.bitbaba.com/', 'Shanghai, P.R.China', NULL, NULL, 'a geeker on bitcoin and bitmail.', NULL, 0, 0, 47, 2, 0, 0, 0, '2014-05-05T01:17:02Z', '2022-02-23T03:46:29Z', 'https://avatars.githubusercontent.com/u/7483782?v=4', 'https://api.github.com/users/imharrywu', 'https://github.com/imharrywu', 'https://api.github.com/users/imharrywu/followers', 'https://api.github.com/users/imharrywu/following', 'https://api.github.com/users/imharrywu/gists', 'https://api.github.com/users/imharrywu/starred', 'https://api.github.com/users/imharrywu/repos', 'https://api.github.com/users/imharrywu/events', 'https://api.github.com/users/imharrywu/received_events', 0); +INSERT INTO `developer` VALUES (7502322, 'kosinusbch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kosinus', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 41, 3, 0, 0, 0, '2014-05-06T15:58:05Z', '2022-08-17T04:41:16Z', 'https://avatars.githubusercontent.com/u/7502322?v=4', 'https://api.github.com/users/kosinusbch', 'https://github.com/kosinusbch', 'https://api.github.com/users/kosinusbch/followers', 'https://api.github.com/users/kosinusbch/following', 'https://api.github.com/users/kosinusbch/gists', 'https://api.github.com/users/kosinusbch/starred', 'https://api.github.com/users/kosinusbch/repos', 'https://api.github.com/users/kosinusbch/events', 'https://api.github.com/users/kosinusbch/received_events', 0); +INSERT INTO `developer` VALUES (7504522, 'mrbandrews', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brad Andrews', NULL, '', 'Arizona', 'bandrewsny@gmail.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2014-05-06T19:43:52Z', '2024-02-01T01:28:26Z', 'https://avatars.githubusercontent.com/u/7504522?v=4', 'https://api.github.com/users/mrbandrews', 'https://github.com/mrbandrews', 'https://api.github.com/users/mrbandrews/followers', 'https://api.github.com/users/mrbandrews/following', 'https://api.github.com/users/mrbandrews/gists', 'https://api.github.com/users/mrbandrews/starred', 'https://api.github.com/users/mrbandrews/repos', 'https://api.github.com/users/mrbandrews/events', 'https://api.github.com/users/mrbandrews/received_events', 0); +INSERT INTO `developer` VALUES (7564876, 'AmirAbrams', 'C', 0, 0, 0, 0, 0, 0, 0, 'Amir Abrams', 'Duality Blockchain Solutions', '', '未知', NULL, NULL, 'https://www.linkedin.com/in/amir-abrams', NULL, 0, 0, 27, 12, 0, 0, 0, '2014-05-13T03:12:39Z', '2024-02-25T00:42:36Z', 'https://avatars.githubusercontent.com/u/7564876?v=4', 'https://api.github.com/users/AmirAbrams', 'https://github.com/AmirAbrams', 'https://api.github.com/users/AmirAbrams/followers', 'https://api.github.com/users/AmirAbrams/following', 'https://api.github.com/users/AmirAbrams/gists', 'https://api.github.com/users/AmirAbrams/starred', 'https://api.github.com/users/AmirAbrams/repos', 'https://api.github.com/users/AmirAbrams/events', 'https://api.github.com/users/AmirAbrams/received_events', 0); +INSERT INTO `developer` VALUES (7596017, 'kync', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ali Koyuncu', NULL, '', 'Helsinki', NULL, NULL, NULL, NULL, 0, 0, 15, 51, 0, 0, 0, '2014-05-15T19:40:35Z', '2024-10-27T20:22:12Z', 'https://avatars.githubusercontent.com/u/7596017?v=4', 'https://api.github.com/users/kync', 'https://github.com/kync', 'https://api.github.com/users/kync/followers', 'https://api.github.com/users/kync/following', 'https://api.github.com/users/kync/gists', 'https://api.github.com/users/kync/starred', 'https://api.github.com/users/kync/repos', 'https://api.github.com/users/kync/events', 'https://api.github.com/users/kync/received_events', 0); +INSERT INTO `developer` VALUES (7610845, 'akhilerm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Akhil Mohan', NULL, 'https://akhilerm.com', 'Bengaluru, India', 'akhilerm@gmail.com', NULL, 'OSS | Linux | containers ', 'akhilerm', 0, 0, 80, 79, 0, 0, 0, '2014-05-17T12:26:39Z', '2024-09-26T18:01:22Z', 'https://avatars.githubusercontent.com/u/7610845?v=4', 'https://api.github.com/users/akhilerm', 'https://github.com/akhilerm', 'https://api.github.com/users/akhilerm/followers', 'https://api.github.com/users/akhilerm/following', 'https://api.github.com/users/akhilerm/gists', 'https://api.github.com/users/akhilerm/starred', 'https://api.github.com/users/akhilerm/repos', 'https://api.github.com/users/akhilerm/events', 'https://api.github.com/users/akhilerm/received_events', 0); +INSERT INTO `developer` VALUES (7669610, 'LongShao007', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Beijing China', '007longshao@gmail.com', NULL, 'Bitcoin-Core Contributor', '007LongShao', 0, 0, 39, 227, 0, 0, 0, '2014-05-22T13:30:47Z', '2024-11-01T12:38:43Z', 'https://avatars.githubusercontent.com/u/7669610?v=4', 'https://api.github.com/users/LongShao007', 'https://github.com/LongShao007', 'https://api.github.com/users/LongShao007/followers', 'https://api.github.com/users/LongShao007/following', 'https://api.github.com/users/LongShao007/gists', 'https://api.github.com/users/LongShao007/starred', 'https://api.github.com/users/LongShao007/repos', 'https://api.github.com/users/LongShao007/events', 'https://api.github.com/users/LongShao007/received_events', 0); +INSERT INTO `developer` VALUES (7692501, 'renehernandez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rene Hernandez', '@FullScript', 'renehernandez.io', 'Ottawa, Canada', NULL, NULL, NULL, 'renehernandezio', 0, 0, 29, 40, 0, 0, 0, '2014-05-25T05:01:46Z', '2024-10-07T18:14:10Z', 'https://avatars.githubusercontent.com/u/7692501?v=4', 'https://api.github.com/users/renehernandez', 'https://github.com/renehernandez', 'https://api.github.com/users/renehernandez/followers', 'https://api.github.com/users/renehernandez/following', 'https://api.github.com/users/renehernandez/gists', 'https://api.github.com/users/renehernandez/starred', 'https://api.github.com/users/renehernandez/repos', 'https://api.github.com/users/renehernandez/events', 'https://api.github.com/users/renehernandez/received_events', 0); +INSERT INTO `developer` VALUES (7722412, 'ChintanAcharya', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chintan', '@apolloio', 'chintanacharya.dev', 'Bangalore, India', 'chintan@apollo.io', 'true', 'Frontend Engineer', NULL, 0, 0, 53, 10, 0, 0, 0, '2014-05-28T09:27:48Z', '2024-10-26T08:25:51Z', 'https://avatars.githubusercontent.com/u/7722412?v=4', 'https://api.github.com/users/ChintanAcharya', 'https://github.com/ChintanAcharya', 'https://api.github.com/users/ChintanAcharya/followers', 'https://api.github.com/users/ChintanAcharya/following', 'https://api.github.com/users/ChintanAcharya/gists', 'https://api.github.com/users/ChintanAcharya/starred', 'https://api.github.com/users/ChintanAcharya/repos', 'https://api.github.com/users/ChintanAcharya/events', 'https://api.github.com/users/ChintanAcharya/received_events', 0); +INSERT INTO `developer` VALUES (7779694, 'archangdcc', 'C', 0, 0, 0, 0, 0, 0, 0, 'DING Changchang', NULL, '', 'Bloomington, IN, US', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2014-06-03T10:42:21Z', '2024-10-10T11:27:18Z', 'https://avatars.githubusercontent.com/u/7779694?v=4', 'https://api.github.com/users/archangdcc', 'https://github.com/archangdcc', 'https://api.github.com/users/archangdcc/followers', 'https://api.github.com/users/archangdcc/following', 'https://api.github.com/users/archangdcc/gists', 'https://api.github.com/users/archangdcc/starred', 'https://api.github.com/users/archangdcc/repos', 'https://api.github.com/users/archangdcc/events', 'https://api.github.com/users/archangdcc/received_events', 0); +INSERT INTO `developer` VALUES (7789061, 'marlengit', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 2, 0, 0, 0, '2014-06-04T04:36:08Z', '2020-02-22T02:04:36Z', 'https://avatars.githubusercontent.com/u/7789061?v=4', 'https://api.github.com/users/marlengit', 'https://github.com/marlengit', 'https://api.github.com/users/marlengit/followers', 'https://api.github.com/users/marlengit/following', 'https://api.github.com/users/marlengit/gists', 'https://api.github.com/users/marlengit/starred', 'https://api.github.com/users/marlengit/repos', 'https://api.github.com/users/marlengit/events', 'https://api.github.com/users/marlengit/received_events', 0); +INSERT INTO `developer` VALUES (7806242, 'jasonzong', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jason Zong', NULL, '', '未知', 'jason@bitquan.com', NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2014-06-05T14:20:31Z', '2016-02-27T16:50:17Z', 'https://avatars.githubusercontent.com/u/7806242?v=4', 'https://api.github.com/users/jasonzong', 'https://github.com/jasonzong', 'https://api.github.com/users/jasonzong/followers', 'https://api.github.com/users/jasonzong/following', 'https://api.github.com/users/jasonzong/gists', 'https://api.github.com/users/jasonzong/starred', 'https://api.github.com/users/jasonzong/repos', 'https://api.github.com/users/jasonzong/events', 'https://api.github.com/users/jasonzong/received_events', 0); +INSERT INTO `developer` VALUES (7826565, 'practicalswift', 'C', 8.440208630092528, 0, 0, 0, 0, 0, 0, 'practicalswift (Thomas J)', NULL, '', '未知', NULL, NULL, 'Mail: thomas.j.bitcoin at protonmail dot tld.\r\n\r\nAvoid mail if possible: I like my Bitcoin communication to be public for transparency/documentation purposes.', NULL, 0, 0, 777, 0, 0, 0, 0, '2014-06-07T20:06:14Z', '2021-10-29T12:30:13Z', 'https://avatars.githubusercontent.com/u/7826565?v=4', 'https://api.github.com/users/practicalswift', 'https://github.com/practicalswift', 'https://api.github.com/users/practicalswift/followers', 'https://api.github.com/users/practicalswift/following', 'https://api.github.com/users/practicalswift/gists', 'https://api.github.com/users/practicalswift/starred', 'https://api.github.com/users/practicalswift/repos', 'https://api.github.com/users/practicalswift/events', 'https://api.github.com/users/practicalswift/received_events', 0); +INSERT INTO `developer` VALUES (7895696, 'welshjf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jacob Welsh', NULL, 'http://welshcomputing.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2014-06-15T18:11:58Z', '2018-03-11T20:57:48Z', 'https://avatars.githubusercontent.com/u/7895696?v=4', 'https://api.github.com/users/welshjf', 'https://github.com/welshjf', 'https://api.github.com/users/welshjf/followers', 'https://api.github.com/users/welshjf/following', 'https://api.github.com/users/welshjf/gists', 'https://api.github.com/users/welshjf/starred', 'https://api.github.com/users/welshjf/repos', 'https://api.github.com/users/welshjf/events', 'https://api.github.com/users/welshjf/received_events', 0); +INSERT INTO `developer` VALUES (7901208, 'bitcoindevotee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stephan Nilsson', 'UNISOT AS', 'https://unisot.com', 'Oslo, Norway', NULL, NULL, NULL, NULL, 0, 0, 0, 2, 0, 0, 0, '2014-06-16T10:35:02Z', '2023-06-05T13:53:05Z', 'https://avatars.githubusercontent.com/u/7901208?v=4', 'https://api.github.com/users/bitcoindevotee', 'https://github.com/bitcoindevotee', 'https://api.github.com/users/bitcoindevotee/followers', 'https://api.github.com/users/bitcoindevotee/following', 'https://api.github.com/users/bitcoindevotee/gists', 'https://api.github.com/users/bitcoindevotee/starred', 'https://api.github.com/users/bitcoindevotee/repos', 'https://api.github.com/users/bitcoindevotee/events', 'https://api.github.com/users/bitcoindevotee/received_events', 0); +INSERT INTO `developer` VALUES (7950060, 'akkhil7', 'C', 0, 0, 0, 0, 0, 0, 0, 'Akhil R', '@stripe', 'https://twitter.com/akkhil7', 'India', NULL, 'true', 'swe at @stripe, ex-razorpay', NULL, 0, 0, 6, 20, 0, 0, 0, '2014-06-21T11:32:40Z', '2024-09-08T17:48:35Z', 'https://avatars.githubusercontent.com/u/7950060?v=4', 'https://api.github.com/users/akkhil7', 'https://github.com/akkhil7', 'https://api.github.com/users/akkhil7/followers', 'https://api.github.com/users/akkhil7/following', 'https://api.github.com/users/akkhil7/gists', 'https://api.github.com/users/akkhil7/starred', 'https://api.github.com/users/akkhil7/repos', 'https://api.github.com/users/akkhil7/events', 'https://api.github.com/users/akkhil7/received_events', 0); +INSERT INTO `developer` VALUES (7999704, 'esotericnonsense', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Edgecumbe', NULL, 'https://git.esotericnonsense.com/pub', 'London, UK', NULL, NULL, 'https://esotericnonsense.com', NULL, 0, 0, 17, 0, 0, 0, 0, '2014-06-26T20:31:42Z', '2024-09-23T01:16:34Z', 'https://avatars.githubusercontent.com/u/7999704?v=4', 'https://api.github.com/users/esotericnonsense', 'https://github.com/esotericnonsense', 'https://api.github.com/users/esotericnonsense/followers', 'https://api.github.com/users/esotericnonsense/following', 'https://api.github.com/users/esotericnonsense/gists', 'https://api.github.com/users/esotericnonsense/starred', 'https://api.github.com/users/esotericnonsense/repos', 'https://api.github.com/users/esotericnonsense/events', 'https://api.github.com/users/esotericnonsense/received_events', 0); +INSERT INTO `developer` VALUES (8009243, 'MitchellCash', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mitchell Cash', NULL, 'https://mitchellcash.com', 'Aussie in Scotland', NULL, NULL, NULL, 'Mitch_Cash', 0, 0, 37, 16, 0, 0, 0, '2014-06-27T22:00:13Z', '2024-08-28T08:16:59Z', 'https://avatars.githubusercontent.com/u/8009243?v=4', 'https://api.github.com/users/MitchellCash', 'https://github.com/MitchellCash', 'https://api.github.com/users/MitchellCash/followers', 'https://api.github.com/users/MitchellCash/following', 'https://api.github.com/users/MitchellCash/gists', 'https://api.github.com/users/MitchellCash/starred', 'https://api.github.com/users/MitchellCash/repos', 'https://api.github.com/users/MitchellCash/events', 'https://api.github.com/users/MitchellCash/received_events', 0); +INSERT INTO `developer` VALUES (8021992, 'tmeneau', 'C', 0, 0, 0, 0, 0, 0, 0, 'Theo Meneau', 'Xetus', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 3, 0, 0, 0, '2014-06-30T02:33:35Z', '2024-07-22T20:09:02Z', 'https://avatars.githubusercontent.com/u/8021992?v=4', 'https://api.github.com/users/tmeneau', 'https://github.com/tmeneau', 'https://api.github.com/users/tmeneau/followers', 'https://api.github.com/users/tmeneau/following', 'https://api.github.com/users/tmeneau/gists', 'https://api.github.com/users/tmeneau/starred', 'https://api.github.com/users/tmeneau/repos', 'https://api.github.com/users/tmeneau/events', 'https://api.github.com/users/tmeneau/received_events', 0); +INSERT INTO `developer` VALUES (8038547, 'oliver-heesakkers-prorail-nl', 'C', 0, 0, 0, 0, 0, 0, 0, 'Oliver Heesakkers', 'Conclusion Mission Critical', '', 'Utrecht', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-07-01T15:08:30Z', '2023-08-29T07:24:23Z', 'https://avatars.githubusercontent.com/u/8038547?v=4', 'https://api.github.com/users/oliver-heesakkers-prorail-nl', 'https://github.com/oliver-heesakkers-prorail-nl', 'https://api.github.com/users/oliver-heesakkers-prorail-nl/followers', 'https://api.github.com/users/oliver-heesakkers-prorail-nl/following', 'https://api.github.com/users/oliver-heesakkers-prorail-nl/gists', 'https://api.github.com/users/oliver-heesakkers-prorail-nl/starred', 'https://api.github.com/users/oliver-heesakkers-prorail-nl/repos', 'https://api.github.com/users/oliver-heesakkers-prorail-nl/events', 'https://api.github.com/users/oliver-heesakkers-prorail-nl/received_events', 0); +INSERT INTO `developer` VALUES (8078788, 'iwalton3', 'C', 0, 0, 0, 0, 0, 0, 0, 'Izzie Walton', NULL, 'https://iwalton.com/', 'United States', 'izzie@iwalton.com', NULL, 'I work on Jellyfin and other side projects, mostly media related.', NULL, 0, 0, 80, 0, 0, 0, 0, '2014-07-06T04:07:29Z', '2024-09-28T02:28:10Z', 'https://avatars.githubusercontent.com/u/8078788?v=4', 'https://api.github.com/users/iwalton3', 'https://github.com/iwalton3', 'https://api.github.com/users/iwalton3/followers', 'https://api.github.com/users/iwalton3/following', 'https://api.github.com/users/iwalton3/gists', 'https://api.github.com/users/iwalton3/starred', 'https://api.github.com/users/iwalton3/repos', 'https://api.github.com/users/iwalton3/events', 'https://api.github.com/users/iwalton3/received_events', 0); +INSERT INTO `developer` VALUES (8086668, 'qkzsky', 'C', 0, 0, 0, 0, 0, 0, 0, 'kuangzhiqiang', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-07-07T06:30:59Z', '2024-07-03T23:19:35Z', 'https://avatars.githubusercontent.com/u/8086668?v=4', 'https://api.github.com/users/qkzsky', 'https://github.com/qkzsky', 'https://api.github.com/users/qkzsky/followers', 'https://api.github.com/users/qkzsky/following', 'https://api.github.com/users/qkzsky/gists', 'https://api.github.com/users/qkzsky/starred', 'https://api.github.com/users/qkzsky/repos', 'https://api.github.com/users/qkzsky/events', 'https://api.github.com/users/qkzsky/received_events', 0); +INSERT INTO `developer` VALUES (8126617, 'ivanpustogarov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ivan Pustogarov', 'Concordia University', '', 'Montreal, Canada', NULL, 'true', 'Assistant Professor', NULL, 0, 0, 23, 0, 0, 0, 0, '2014-07-10T16:23:25Z', '2024-10-09T21:06:35Z', 'https://avatars.githubusercontent.com/u/8126617?v=4', 'https://api.github.com/users/ivanpustogarov', 'https://github.com/ivanpustogarov', 'https://api.github.com/users/ivanpustogarov/followers', 'https://api.github.com/users/ivanpustogarov/following', 'https://api.github.com/users/ivanpustogarov/gists', 'https://api.github.com/users/ivanpustogarov/starred', 'https://api.github.com/users/ivanpustogarov/repos', 'https://api.github.com/users/ivanpustogarov/events', 'https://api.github.com/users/ivanpustogarov/received_events', 0); +INSERT INTO `developer` VALUES (8142348, 'lyzhang1999', 'C', 0, 0, 0, 0, 0, 0, 0, 'wangwei', 'Helium3 Tech', '', '广东深圳', NULL, NULL, 'Microsoft MVP', NULL, 0, 0, 0, 0, 0, 0, 0, '2014-07-12T09:31:51Z', '2024-10-24T07:58:44Z', 'https://avatars.githubusercontent.com/u/8142348?v=4', 'https://api.github.com/users/lyzhang1999', 'https://github.com/lyzhang1999', 'https://api.github.com/users/lyzhang1999/followers', 'https://api.github.com/users/lyzhang1999/following', 'https://api.github.com/users/lyzhang1999/gists', 'https://api.github.com/users/lyzhang1999/starred', 'https://api.github.com/users/lyzhang1999/repos', 'https://api.github.com/users/lyzhang1999/events', 'https://api.github.com/users/lyzhang1999/received_events', 0); +INSERT INTO `developer` VALUES (8143942, 'nikhilk1993', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nikhil Khadilkar', 'Saber Holdings', '', 'Bangalore', 'nikhilkhadilkar1993@gmail.com', NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2014-07-12T14:41:56Z', '2024-10-08T15:36:15Z', 'https://avatars.githubusercontent.com/u/8143942?v=4', 'https://api.github.com/users/nikhilk1993', 'https://github.com/nikhilk1993', 'https://api.github.com/users/nikhilk1993/followers', 'https://api.github.com/users/nikhilk1993/following', 'https://api.github.com/users/nikhilk1993/gists', 'https://api.github.com/users/nikhilk1993/starred', 'https://api.github.com/users/nikhilk1993/repos', 'https://api.github.com/users/nikhilk1993/events', 'https://api.github.com/users/nikhilk1993/received_events', 0); +INSERT INTO `developer` VALUES (8191198, 'aslafy-z', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zadkiel AHARONIAN', 'CCL Consulting', 'go.zadkiel.fr/linkedin', 'Toulouse, France', 'hello@zadkiel.fr', 'true', 'Linux lover and OSS enthusiast. Currently working at @ccl-consulting on scalable @kubernetes platforms.', NULL, 0, 0, 178, 467, 0, 0, 0, '2014-07-17T12:34:55Z', '2024-09-02T09:37:34Z', 'https://avatars.githubusercontent.com/u/8191198?v=4', 'https://api.github.com/users/aslafy-z', 'https://github.com/aslafy-z', 'https://api.github.com/users/aslafy-z/followers', 'https://api.github.com/users/aslafy-z/following', 'https://api.github.com/users/aslafy-z/gists', 'https://api.github.com/users/aslafy-z/starred', 'https://api.github.com/users/aslafy-z/repos', 'https://api.github.com/users/aslafy-z/events', 'https://api.github.com/users/aslafy-z/received_events', 0); +INSERT INTO `developer` VALUES (8265419, 'axelpavageau', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2014-07-25T08:09:06Z', '2024-09-02T20:50:33Z', 'https://avatars.githubusercontent.com/u/8265419?v=4', 'https://api.github.com/users/axelpavageau', 'https://github.com/axelpavageau', 'https://api.github.com/users/axelpavageau/followers', 'https://api.github.com/users/axelpavageau/following', 'https://api.github.com/users/axelpavageau/gists', 'https://api.github.com/users/axelpavageau/starred', 'https://api.github.com/users/axelpavageau/repos', 'https://api.github.com/users/axelpavageau/events', 'https://api.github.com/users/axelpavageau/received_events', 0); +INSERT INTO `developer` VALUES (8268469, 'fb33', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'Lectra', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 16, 0, 0, 0, '2014-07-25T14:50:01Z', '2024-06-14T10:26:45Z', 'https://avatars.githubusercontent.com/u/8268469?v=4', 'https://api.github.com/users/fb33', 'https://github.com/fb33', 'https://api.github.com/users/fb33/followers', 'https://api.github.com/users/fb33/following', 'https://api.github.com/users/fb33/gists', 'https://api.github.com/users/fb33/starred', 'https://api.github.com/users/fb33/repos', 'https://api.github.com/users/fb33/events', 'https://api.github.com/users/fb33/received_events', 0); +INSERT INTO `developer` VALUES (8288964, 'SmotrovaLilit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lilit', NULL, '', 'Germany', 'smotrovalilit@gmail.com', NULL, 'Golang Developer | 10 years experience | Golang | TTD, DDD, SOLID | Mysql, Postgres | oauth2.0, openid connect, SSO', NULL, 0, 0, 23, 22, 0, 0, 0, '2014-07-28T11:38:20Z', '2024-10-31T14:31:29Z', 'https://avatars.githubusercontent.com/u/8288964?v=4', 'https://api.github.com/users/SmotrovaLilit', 'https://github.com/SmotrovaLilit', 'https://api.github.com/users/SmotrovaLilit/followers', 'https://api.github.com/users/SmotrovaLilit/following', 'https://api.github.com/users/SmotrovaLilit/gists', 'https://api.github.com/users/SmotrovaLilit/starred', 'https://api.github.com/users/SmotrovaLilit/repos', 'https://api.github.com/users/SmotrovaLilit/events', 'https://api.github.com/users/SmotrovaLilit/received_events', 0); +INSERT INTO `developer` VALUES (8297130, 'manfred-h', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-07-29T07:39:08Z', '2024-07-14T19:14:07Z', 'https://avatars.githubusercontent.com/u/8297130?v=4', 'https://api.github.com/users/manfred-h', 'https://github.com/manfred-h', 'https://api.github.com/users/manfred-h/followers', 'https://api.github.com/users/manfred-h/following', 'https://api.github.com/users/manfred-h/gists', 'https://api.github.com/users/manfred-h/starred', 'https://api.github.com/users/manfred-h/repos', 'https://api.github.com/users/manfred-h/events', 'https://api.github.com/users/manfred-h/received_events', 0); +INSERT INTO `developer` VALUES (8300635, 'NShani', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2014-07-29T15:12:47Z', '2024-11-01T09:36:09Z', 'https://avatars.githubusercontent.com/u/8300635?v=4', 'https://api.github.com/users/NShani', 'https://github.com/NShani', 'https://api.github.com/users/NShani/followers', 'https://api.github.com/users/NShani/following', 'https://api.github.com/users/NShani/gists', 'https://api.github.com/users/NShani/starred', 'https://api.github.com/users/NShani/repos', 'https://api.github.com/users/NShani/events', 'https://api.github.com/users/NShani/received_events', 0); +INSERT INTO `developer` VALUES (8345264, 'Greg-Griffith', 'C', 0, 0, 0, 0, 0, 0, 0, 'Griffith', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 52, 0, 0, 0, 0, '2014-08-03T20:25:35Z', '2021-07-13T06:07:02Z', 'https://avatars.githubusercontent.com/u/8345264?v=4', 'https://api.github.com/users/Greg-Griffith', 'https://github.com/Greg-Griffith', 'https://api.github.com/users/Greg-Griffith/followers', 'https://api.github.com/users/Greg-Griffith/following', 'https://api.github.com/users/Greg-Griffith/gists', 'https://api.github.com/users/Greg-Griffith/starred', 'https://api.github.com/users/Greg-Griffith/repos', 'https://api.github.com/users/Greg-Griffith/events', 'https://api.github.com/users/Greg-Griffith/received_events', 0); +INSERT INTO `developer` VALUES (8374472, 'fsilberstein', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fabien Silberstein', '@ricardo-ch ', 'https://hachyderm.io/@fsilberstein', '未知', 'silberfab@gmail.com', NULL, NULL, 'silberfab', 0, 0, 5, 0, 0, 0, 0, '2014-08-06T12:55:06Z', '2024-11-04T16:21:06Z', 'https://avatars.githubusercontent.com/u/8374472?v=4', 'https://api.github.com/users/fsilberstein', 'https://github.com/fsilberstein', 'https://api.github.com/users/fsilberstein/followers', 'https://api.github.com/users/fsilberstein/following', 'https://api.github.com/users/fsilberstein/gists', 'https://api.github.com/users/fsilberstein/starred', 'https://api.github.com/users/fsilberstein/repos', 'https://api.github.com/users/fsilberstein/events', 'https://api.github.com/users/fsilberstein/received_events', 0); +INSERT INTO `developer` VALUES (8400096, 'Derek701', 'C', 0, 0, 0, 0, 0, 0, 0, 'Derek Miller', NULL, '', 'Bismarck, ND', NULL, NULL, NULL, NULL, 0, 0, 5, 10, 0, 0, 0, '2014-08-09T04:04:45Z', '2023-01-24T16:59:06Z', 'https://avatars.githubusercontent.com/u/8400096?v=4', 'https://api.github.com/users/Derek701', 'https://github.com/Derek701', 'https://api.github.com/users/Derek701/followers', 'https://api.github.com/users/Derek701/following', 'https://api.github.com/users/Derek701/gists', 'https://api.github.com/users/Derek701/starred', 'https://api.github.com/users/Derek701/repos', 'https://api.github.com/users/Derek701/events', 'https://api.github.com/users/Derek701/received_events', 0); +INSERT INTO `developer` VALUES (8403418, 'jl2012', 'C', 0.0888777412221604, 0, 0, 0, 0, 0, 0, 'Johnson Lau', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 290, 0, 0, 0, 0, '2014-08-09T16:30:55Z', '2021-02-27T17:15:51Z', 'https://avatars.githubusercontent.com/u/8403418?v=4', 'https://api.github.com/users/jl2012', 'https://github.com/jl2012', 'https://api.github.com/users/jl2012/followers', 'https://api.github.com/users/jl2012/following', 'https://api.github.com/users/jl2012/gists', 'https://api.github.com/users/jl2012/starred', 'https://api.github.com/users/jl2012/repos', 'https://api.github.com/users/jl2012/events', 'https://api.github.com/users/jl2012/received_events', 0); +INSERT INTO `developer` VALUES (8416556, 'axfor', 'C', 0, 0, 0, 0, 0, 0, 0, 'axx', NULL, '', '未知', 'aixiaoxiang2009@hotmail.com', NULL, NULL, NULL, 0, 0, 55, 172, 0, 0, 0, '2014-08-11T12:38:29Z', '2024-10-10T16:01:13Z', 'https://avatars.githubusercontent.com/u/8416556?v=4', 'https://api.github.com/users/axfor', 'https://github.com/axfor', 'https://api.github.com/users/axfor/followers', 'https://api.github.com/users/axfor/following', 'https://api.github.com/users/axfor/gists', 'https://api.github.com/users/axfor/starred', 'https://api.github.com/users/axfor/repos', 'https://api.github.com/users/axfor/events', 'https://api.github.com/users/axfor/received_events', 0); +INSERT INTO `developer` VALUES (8421793, 'TheCharlatan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Reproducibility Matters', NULL, 'https://thecharlatan.ch', '未知', 'seb.kung@gmail.com', 'true', 'PGP key\r\n0x9303b33a305224cb\r\n', NULL, 0, 0, 100, 5, 0, 0, 0, '2014-08-11T22:06:43Z', '2024-10-20T15:43:11Z', 'https://avatars.githubusercontent.com/u/8421793?v=4', 'https://api.github.com/users/TheCharlatan', 'https://github.com/TheCharlatan', 'https://api.github.com/users/TheCharlatan/followers', 'https://api.github.com/users/TheCharlatan/following', 'https://api.github.com/users/TheCharlatan/gists', 'https://api.github.com/users/TheCharlatan/starred', 'https://api.github.com/users/TheCharlatan/repos', 'https://api.github.com/users/TheCharlatan/events', 'https://api.github.com/users/TheCharlatan/received_events', 0); +INSERT INTO `developer` VALUES (8427788, 'galeone', 'C', 1.2378288080688022, 0, 0, 0, 0, 0, 0, 'Paolo Galeone', 'Zuru Tech', 'https://pgaleone.eu/', 'Italy', 'nessuno@nerdz.eu', NULL, 'Researcher in love with: Machine/Deep Learning, PostgreSQL, Tensorflow and Go.\r\nOwner of @nerdzeu ', 'paolo_galeone', 0, 0, 357, 0, 0, 0, 0, '2014-08-12T12:51:59Z', '2024-10-16T11:24:56Z', 'https://avatars.githubusercontent.com/u/8427788?v=4', 'https://api.github.com/users/galeone', 'https://github.com/galeone', 'https://api.github.com/users/galeone/followers', 'https://api.github.com/users/galeone/following', 'https://api.github.com/users/galeone/gists', 'https://api.github.com/users/galeone/starred', 'https://api.github.com/users/galeone/repos', 'https://api.github.com/users/galeone/events', 'https://api.github.com/users/galeone/received_events', 0); +INSERT INTO `developer` VALUES (8607741, 'lintondf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Donald Linton', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-08-31T19:40:12Z', '2024-06-15T10:33:40Z', 'https://avatars.githubusercontent.com/u/8607741?v=4', 'https://api.github.com/users/lintondf', 'https://github.com/lintondf', 'https://api.github.com/users/lintondf/followers', 'https://api.github.com/users/lintondf/following', 'https://api.github.com/users/lintondf/gists', 'https://api.github.com/users/lintondf/starred', 'https://api.github.com/users/lintondf/repos', 'https://api.github.com/users/lintondf/events', 'https://api.github.com/users/lintondf/received_events', 0); +INSERT INTO `developer` VALUES (8619310, 'AakashRaina', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aakash Raina', '@razorpay ', 'https://aakashraina.com/', 'Bangalore, India', 'aakashraina9@gmail.com', NULL, 'Frontend engineer\r\n', NULL, 0, 0, 45, 60, 0, 0, 0, '2014-09-01T20:28:26Z', '2024-10-11T11:27:30Z', 'https://avatars.githubusercontent.com/u/8619310?v=4', 'https://api.github.com/users/AakashRaina', 'https://github.com/AakashRaina', 'https://api.github.com/users/AakashRaina/followers', 'https://api.github.com/users/AakashRaina/following', 'https://api.github.com/users/AakashRaina/gists', 'https://api.github.com/users/AakashRaina/starred', 'https://api.github.com/users/AakashRaina/repos', 'https://api.github.com/users/AakashRaina/events', 'https://api.github.com/users/AakashRaina/received_events', 0); +INSERT INTO `developer` VALUES (8662037, 'PacketFiend', 'C', 0, 0, 0, 0, 0, 0, 0, 'PacketFiend', NULL, '', 'Toronto, Ontario, Canada', 'github-01@voort.ca', NULL, NULL, NULL, 0, 0, 3, 2, 0, 0, 0, '2014-09-04T23:55:04Z', '2024-03-19T11:37:38Z', 'https://avatars.githubusercontent.com/u/8662037?v=4', 'https://api.github.com/users/PacketFiend', 'https://github.com/PacketFiend', 'https://api.github.com/users/PacketFiend/followers', 'https://api.github.com/users/PacketFiend/following', 'https://api.github.com/users/PacketFiend/gists', 'https://api.github.com/users/PacketFiend/starred', 'https://api.github.com/users/PacketFiend/repos', 'https://api.github.com/users/PacketFiend/events', 'https://api.github.com/users/PacketFiend/received_events', 0); +INSERT INTO `developer` VALUES (8718109, 'lucklove', 'C', 0, 0, 0, 0, 0, 0, 0, 'SIGSEGV', '@pingcap @tikv', '', 'Hangzhou, China', 'gnu.crazier@gmail.com', 'true', NULL, NULL, 0, 0, 192, 35, 0, 0, 0, '2014-09-10T03:58:32Z', '2024-10-21T10:43:33Z', 'https://avatars.githubusercontent.com/u/8718109?v=4', 'https://api.github.com/users/lucklove', 'https://github.com/lucklove', 'https://api.github.com/users/lucklove/followers', 'https://api.github.com/users/lucklove/following', 'https://api.github.com/users/lucklove/gists', 'https://api.github.com/users/lucklove/starred', 'https://api.github.com/users/lucklove/repos', 'https://api.github.com/users/lucklove/events', 'https://api.github.com/users/lucklove/received_events', 0); +INSERT INTO `developer` VALUES (8721695, 'monsterbitar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Silverblood', 'Interfaceways AB', '', 'Sweden', NULL, NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2014-09-10T10:14:21Z', '2022-12-18T09:24:15Z', 'https://avatars.githubusercontent.com/u/8721695?v=4', 'https://api.github.com/users/monsterbitar', 'https://github.com/monsterbitar', 'https://api.github.com/users/monsterbitar/followers', 'https://api.github.com/users/monsterbitar/following', 'https://api.github.com/users/monsterbitar/gists', 'https://api.github.com/users/monsterbitar/starred', 'https://api.github.com/users/monsterbitar/repos', 'https://api.github.com/users/monsterbitar/events', 'https://api.github.com/users/monsterbitar/received_events', 0); +INSERT INTO `developer` VALUES (8724975, 'robertlipe', 'C', 0, 0, 0, 0, 0, 0, 0, 'Robert Lipe', NULL, 'http://www.gpsbabel.org/people/robertlipe.html', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-09-10T15:26:02Z', '2024-10-28T01:11:46Z', 'https://avatars.githubusercontent.com/u/8724975?v=4', 'https://api.github.com/users/robertlipe', 'https://github.com/robertlipe', 'https://api.github.com/users/robertlipe/followers', 'https://api.github.com/users/robertlipe/following', 'https://api.github.com/users/robertlipe/gists', 'https://api.github.com/users/robertlipe/starred', 'https://api.github.com/users/robertlipe/repos', 'https://api.github.com/users/robertlipe/events', 'https://api.github.com/users/robertlipe/received_events', 0); +INSERT INTO `developer` VALUES (8827165, 'CohibAA', 'C', 0, 0, 0, 0, 0, 0, 0, 'CohibAA', NULL, 'https://bitcoin-node.com/', 'USA', NULL, 'true', NULL, NULL, 0, 0, 6, 13, 0, 0, 0, '2014-09-19T01:17:22Z', '2024-09-21T02:12:32Z', 'https://avatars.githubusercontent.com/u/8827165?v=4', 'https://api.github.com/users/CohibAA', 'https://github.com/CohibAA', 'https://api.github.com/users/CohibAA/followers', 'https://api.github.com/users/CohibAA/following', 'https://api.github.com/users/CohibAA/gists', 'https://api.github.com/users/CohibAA/starred', 'https://api.github.com/users/CohibAA/repos', 'https://api.github.com/users/CohibAA/events', 'https://api.github.com/users/CohibAA/received_events', 0); +INSERT INTO `developer` VALUES (8859277, 'max-rocket-internet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Max Williams', 'Delivery Hero', '', 'Berlin', NULL, NULL, 'Principal Systems Engineer @ Delivery Hero', NULL, 0, 0, 120, 2, 0, 0, 0, '2014-09-22T09:36:21Z', '2024-10-11T11:51:41Z', 'https://avatars.githubusercontent.com/u/8859277?v=4', 'https://api.github.com/users/max-rocket-internet', 'https://github.com/max-rocket-internet', 'https://api.github.com/users/max-rocket-internet/followers', 'https://api.github.com/users/max-rocket-internet/following', 'https://api.github.com/users/max-rocket-internet/gists', 'https://api.github.com/users/max-rocket-internet/starred', 'https://api.github.com/users/max-rocket-internet/repos', 'https://api.github.com/users/max-rocket-internet/events', 'https://api.github.com/users/max-rocket-internet/received_events', 0); +INSERT INTO `developer` VALUES (8865167, 'thenaturalist', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jan Kyri', NULL, 'jankyri.com', 'Berlin', NULL, NULL, NULL, NULL, 0, 0, 52, 12, 0, 0, 0, '2014-09-22T18:41:47Z', '2024-10-08T17:15:54Z', 'https://avatars.githubusercontent.com/u/8865167?v=4', 'https://api.github.com/users/thenaturalist', 'https://github.com/thenaturalist', 'https://api.github.com/users/thenaturalist/followers', 'https://api.github.com/users/thenaturalist/following', 'https://api.github.com/users/thenaturalist/gists', 'https://api.github.com/users/thenaturalist/starred', 'https://api.github.com/users/thenaturalist/repos', 'https://api.github.com/users/thenaturalist/events', 'https://api.github.com/users/thenaturalist/received_events', 0); +INSERT INTO `developer` VALUES (8870191, 'ehabit', 'C', 0, 0, 0, 0, 0, 0, 0, 'Glen', 'Ehab.it', '', 'Los Angeles', 'glen@ehab.it', NULL, NULL, NULL, 0, 0, 0, 2, 0, 0, 0, '2014-09-23T03:36:04Z', '2016-02-27T19:29:02Z', 'https://avatars.githubusercontent.com/u/8870191?v=4', 'https://api.github.com/users/ehabit', 'https://github.com/ehabit', 'https://api.github.com/users/ehabit/followers', 'https://api.github.com/users/ehabit/following', 'https://api.github.com/users/ehabit/gists', 'https://api.github.com/users/ehabit/starred', 'https://api.github.com/users/ehabit/repos', 'https://api.github.com/users/ehabit/events', 'https://api.github.com/users/ehabit/received_events', 0); +INSERT INTO `developer` VALUES (8880817, 'csteez', 'C', 0, 0, 0, 0, 0, 0, 0, 'christina stead', 'lyft', '', 'oakland, ca', NULL, NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2014-09-23T16:09:30Z', '2020-12-14T23:49:30Z', 'https://avatars.githubusercontent.com/u/8880817?v=4', 'https://api.github.com/users/csteez', 'https://github.com/csteez', 'https://api.github.com/users/csteez/followers', 'https://api.github.com/users/csteez/following', 'https://api.github.com/users/csteez/gists', 'https://api.github.com/users/csteez/starred', 'https://api.github.com/users/csteez/repos', 'https://api.github.com/users/csteez/events', 'https://api.github.com/users/csteez/received_events', 0); +INSERT INTO `developer` VALUES (8883642, 'rolfoz', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-09-23T17:59:53Z', '2024-05-18T11:01:00Z', 'https://avatars.githubusercontent.com/u/8883642?v=4', 'https://api.github.com/users/rolfoz', 'https://github.com/rolfoz', 'https://api.github.com/users/rolfoz/followers', 'https://api.github.com/users/rolfoz/following', 'https://api.github.com/users/rolfoz/gists', 'https://api.github.com/users/rolfoz/starred', 'https://api.github.com/users/rolfoz/repos', 'https://api.github.com/users/rolfoz/events', 'https://api.github.com/users/rolfoz/received_events', 0); +INSERT INTO `developer` VALUES (8891115, 'bycEEE', 'C', 0, 0, 0, 0, 0, 0, 0, 'Brian Choy', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 20, 0, 0, 0, '2014-09-24T01:27:39Z', '2024-10-07T03:32:58Z', 'https://avatars.githubusercontent.com/u/8891115?v=4', 'https://api.github.com/users/bycEEE', 'https://github.com/bycEEE', 'https://api.github.com/users/bycEEE/followers', 'https://api.github.com/users/bycEEE/following', 'https://api.github.com/users/bycEEE/gists', 'https://api.github.com/users/bycEEE/starred', 'https://api.github.com/users/bycEEE/repos', 'https://api.github.com/users/bycEEE/events', 'https://api.github.com/users/bycEEE/received_events', 0); +INSERT INTO `developer` VALUES (8924921, 'rajeevrai', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rajeev Rai', 'RazorPay', '', 'Bangalore, India', 'raj.rajeevrai@gmail.com', NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2014-09-26T06:02:48Z', '2024-09-30T04:10:49Z', 'https://avatars.githubusercontent.com/u/8924921?v=4', 'https://api.github.com/users/rajeevrai', 'https://github.com/rajeevrai', 'https://api.github.com/users/rajeevrai/followers', 'https://api.github.com/users/rajeevrai/following', 'https://api.github.com/users/rajeevrai/gists', 'https://api.github.com/users/rajeevrai/starred', 'https://api.github.com/users/rajeevrai/repos', 'https://api.github.com/users/rajeevrai/events', 'https://api.github.com/users/rajeevrai/received_events', 0); +INSERT INTO `developer` VALUES (8943871, 'easonlin404', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eason Lin', NULL, '', 'Taiwan', 'easonlin404@gmail.com', 'true', NULL, NULL, 0, 0, 192, 96, 0, 0, 0, '2014-09-28T02:50:17Z', '2024-08-20T08:16:11Z', 'https://avatars.githubusercontent.com/u/8943871?v=4', 'https://api.github.com/users/easonlin404', 'https://github.com/easonlin404', 'https://api.github.com/users/easonlin404/followers', 'https://api.github.com/users/easonlin404/following', 'https://api.github.com/users/easonlin404/gists', 'https://api.github.com/users/easonlin404/starred', 'https://api.github.com/users/easonlin404/repos', 'https://api.github.com/users/easonlin404/events', 'https://api.github.com/users/easonlin404/received_events', 0); +INSERT INTO `developer` VALUES (8949706, 'dimitris-t', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dimitris Tsapakidis', NULL, 'https://linkedin.com/in/dimitris', '未知', NULL, NULL, NULL, NULL, 0, 0, 34, 7, 0, 0, 0, '2014-09-28T18:24:25Z', '2024-09-19T19:14:23Z', 'https://avatars.githubusercontent.com/u/8949706?v=4', 'https://api.github.com/users/dimitris-t', 'https://github.com/dimitris-t', 'https://api.github.com/users/dimitris-t/followers', 'https://api.github.com/users/dimitris-t/following', 'https://api.github.com/users/dimitris-t/gists', 'https://api.github.com/users/dimitris-t/starred', 'https://api.github.com/users/dimitris-t/repos', 'https://api.github.com/users/dimitris-t/events', 'https://api.github.com/users/dimitris-t/received_events', 0); +INSERT INTO `developer` VALUES (9039012, 'XuHuaiyu', 'C', 0, 0, 0, 0, 0, 0, 0, 'HuaiyuXu', '@pingcap ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 83, 2, 0, 0, 0, '2014-10-06T16:31:00Z', '2024-07-16T03:48:26Z', 'https://avatars.githubusercontent.com/u/9039012?v=4', 'https://api.github.com/users/XuHuaiyu', 'https://github.com/XuHuaiyu', 'https://api.github.com/users/XuHuaiyu/followers', 'https://api.github.com/users/XuHuaiyu/following', 'https://api.github.com/users/XuHuaiyu/gists', 'https://api.github.com/users/XuHuaiyu/starred', 'https://api.github.com/users/XuHuaiyu/repos', 'https://api.github.com/users/XuHuaiyu/events', 'https://api.github.com/users/XuHuaiyu/received_events', 0); +INSERT INTO `developer` VALUES (9150371, 'shubhnik', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shubhnik Singh', NULL, 'https://medium.com/@shubhnik', 'Chandigarh, India', 'shubhniksingh@gmail.com', 'true', NULL, NULL, 0, 0, 60, 149, 0, 0, 0, '2014-10-11T10:22:20Z', '2024-09-18T10:38:10Z', 'https://avatars.githubusercontent.com/u/9150371?v=4', 'https://api.github.com/users/shubhnik', 'https://github.com/shubhnik', 'https://api.github.com/users/shubhnik/followers', 'https://api.github.com/users/shubhnik/following', 'https://api.github.com/users/shubhnik/gists', 'https://api.github.com/users/shubhnik/starred', 'https://api.github.com/users/shubhnik/repos', 'https://api.github.com/users/shubhnik/events', 'https://api.github.com/users/shubhnik/received_events', 0); +INSERT INTO `developer` VALUES (9165473, 'namco1992', 'C', 0, 0, 0, 0, 0, 0, 0, 'Namco', NULL, 'namco.dev', 'Singapore', 'namco1992@gmail.com', NULL, NULL, NULL, 0, 0, 19, 1, 0, 0, 0, '2014-10-12T15:06:38Z', '2024-08-05T04:11:35Z', 'https://avatars.githubusercontent.com/u/9165473?v=4', 'https://api.github.com/users/namco1992', 'https://github.com/namco1992', 'https://api.github.com/users/namco1992/followers', 'https://api.github.com/users/namco1992/following', 'https://api.github.com/users/namco1992/gists', 'https://api.github.com/users/namco1992/starred', 'https://api.github.com/users/namco1992/repos', 'https://api.github.com/users/namco1992/events', 'https://api.github.com/users/namco1992/received_events', 0); +INSERT INTO `developer` VALUES (9196341, 'HumanoidPhantom', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 3, 0, 0, 0, '2014-10-13T12:29:33Z', '2024-09-30T15:24:16Z', 'https://avatars.githubusercontent.com/u/9196341?v=4', 'https://api.github.com/users/HumanoidPhantom', 'https://github.com/HumanoidPhantom', 'https://api.github.com/users/HumanoidPhantom/followers', 'https://api.github.com/users/HumanoidPhantom/following', 'https://api.github.com/users/HumanoidPhantom/gists', 'https://api.github.com/users/HumanoidPhantom/starred', 'https://api.github.com/users/HumanoidPhantom/repos', 'https://api.github.com/users/HumanoidPhantom/events', 'https://api.github.com/users/HumanoidPhantom/received_events', 0); +INSERT INTO `developer` VALUES (9211413, 'yilmi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yassine Ilmi', 'Thomson Reuters', '', 'not too far', NULL, NULL, '...', NULL, 0, 0, 13, 10, 0, 0, 0, '2014-10-14T09:24:26Z', '2024-10-26T10:49:43Z', 'https://avatars.githubusercontent.com/u/9211413?v=4', 'https://api.github.com/users/yilmi', 'https://github.com/yilmi', 'https://api.github.com/users/yilmi/followers', 'https://api.github.com/users/yilmi/following', 'https://api.github.com/users/yilmi/gists', 'https://api.github.com/users/yilmi/starred', 'https://api.github.com/users/yilmi/repos', 'https://api.github.com/users/yilmi/events', 'https://api.github.com/users/yilmi/received_events', 0); +INSERT INTO `developer` VALUES (9346360, 'hungtd9', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hung Tran Duc', NULL, '', 'Ho Chi Minh City', 'hungtd9@gmail.com', NULL, 'Software Builder', NULL, 0, 0, 12, 9, 0, 0, 0, '2014-10-22T04:51:47Z', '2024-06-29T11:55:53Z', 'https://avatars.githubusercontent.com/u/9346360?v=4', 'https://api.github.com/users/hungtd9', 'https://github.com/hungtd9', 'https://api.github.com/users/hungtd9/followers', 'https://api.github.com/users/hungtd9/following', 'https://api.github.com/users/hungtd9/gists', 'https://api.github.com/users/hungtd9/starred', 'https://api.github.com/users/hungtd9/repos', 'https://api.github.com/users/hungtd9/events', 'https://api.github.com/users/hungtd9/received_events', 0); +INSERT INTO `developer` VALUES (9461597, 'okleitsa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Olga Kleitsa', NULL, '', '未知', 'o.kleitsa@dotbydot.gr', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-10-30T11:02:47Z', '2024-11-01T09:20:19Z', 'https://avatars.githubusercontent.com/u/9461597?v=4', 'https://api.github.com/users/okleitsa', 'https://github.com/okleitsa', 'https://api.github.com/users/okleitsa/followers', 'https://api.github.com/users/okleitsa/following', 'https://api.github.com/users/okleitsa/gists', 'https://api.github.com/users/okleitsa/starred', 'https://api.github.com/users/okleitsa/repos', 'https://api.github.com/users/okleitsa/events', 'https://api.github.com/users/okleitsa/received_events', 0); +INSERT INTO `developer` VALUES (9465658, 'nlueb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nils', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 9, 0, 0, 0, '2014-10-30T16:21:14Z', '2024-10-29T07:21:18Z', 'https://avatars.githubusercontent.com/u/9465658?v=4', 'https://api.github.com/users/nlueb', 'https://github.com/nlueb', 'https://api.github.com/users/nlueb/followers', 'https://api.github.com/users/nlueb/following', 'https://api.github.com/users/nlueb/gists', 'https://api.github.com/users/nlueb/starred', 'https://api.github.com/users/nlueb/repos', 'https://api.github.com/users/nlueb/events', 'https://api.github.com/users/nlueb/received_events', 0); +INSERT INTO `developer` VALUES (9538998, 'pastly', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt Traudt', 'Naval Research Laboratory', 'https://blog.pastly.net', 'Kansas', NULL, 'true', 'I do Tor stuff and Python stuff. Sometimes the stuff is useful. Rust stuff when I\'m lucky.', NULL, 0, 0, 86, 11, 0, 0, 0, '2014-11-03T20:45:59Z', '2024-06-20T20:29:18Z', 'https://avatars.githubusercontent.com/u/9538998?v=4', 'https://api.github.com/users/pastly', 'https://github.com/pastly', 'https://api.github.com/users/pastly/followers', 'https://api.github.com/users/pastly/following', 'https://api.github.com/users/pastly/gists', 'https://api.github.com/users/pastly/starred', 'https://api.github.com/users/pastly/repos', 'https://api.github.com/users/pastly/events', 'https://api.github.com/users/pastly/received_events', 0); +INSERT INTO `developer` VALUES (9570112, 'nauxliu', 'C', 1.8380271265707797, 0, 0, 0, 0, 0, 0, 'Xiangxuan Liu', 'RightCapital', '', 'Beijing China', NULL, NULL, 'DevOps Engineer', NULL, 0, 0, 392, 41, 0, 0, 0, '2014-11-05T11:55:55Z', '2024-10-31T07:10:28Z', 'https://avatars.githubusercontent.com/u/9570112?v=4', 'https://api.github.com/users/nauxliu', 'https://github.com/nauxliu', 'https://api.github.com/users/nauxliu/followers', 'https://api.github.com/users/nauxliu/following', 'https://api.github.com/users/nauxliu/gists', 'https://api.github.com/users/nauxliu/starred', 'https://api.github.com/users/nauxliu/repos', 'https://api.github.com/users/nauxliu/events', 'https://api.github.com/users/nauxliu/received_events', 0); +INSERT INTO `developer` VALUES (9587680, 'you06', 'C', 0, 0, 0, 0, 0, 0, 0, 'you06', '@Airyworks ', 'https://blog.tongmu.me', 'Moon', NULL, NULL, 'ゲーム馬鹿', NULL, 0, 0, 95, 34, 0, 0, 0, '2014-11-06T08:46:47Z', '2024-10-31T05:52:49Z', 'https://avatars.githubusercontent.com/u/9587680?v=4', 'https://api.github.com/users/you06', 'https://github.com/you06', 'https://api.github.com/users/you06/followers', 'https://api.github.com/users/you06/following', 'https://api.github.com/users/you06/gists', 'https://api.github.com/users/you06/starred', 'https://api.github.com/users/you06/repos', 'https://api.github.com/users/you06/events', 'https://api.github.com/users/you06/received_events', 0); +INSERT INTO `developer` VALUES (9609370, 'AndreyMZ', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrey', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2014-11-07T13:14:23Z', '2024-08-29T12:11:58Z', 'https://avatars.githubusercontent.com/u/9609370?v=4', 'https://api.github.com/users/AndreyMZ', 'https://github.com/AndreyMZ', 'https://api.github.com/users/AndreyMZ/followers', 'https://api.github.com/users/AndreyMZ/following', 'https://api.github.com/users/AndreyMZ/gists', 'https://api.github.com/users/AndreyMZ/starred', 'https://api.github.com/users/AndreyMZ/repos', 'https://api.github.com/users/AndreyMZ/events', 'https://api.github.com/users/AndreyMZ/received_events', 0); +INSERT INTO `developer` VALUES (9614404, 'nguyendangminh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nguyen Dang Minh', 'Techcom Securities', 'http://www.minhnd.com', 'Hanoi, Vietnam', NULL, 'true', '\r\n A Gopher interested in cloud computing and distributed system. \r\n', NULL, 0, 0, 54, 2, 0, 0, 0, '2014-11-07T19:18:51Z', '2024-10-30T15:38:54Z', 'https://avatars.githubusercontent.com/u/9614404?v=4', 'https://api.github.com/users/nguyendangminh', 'https://github.com/nguyendangminh', 'https://api.github.com/users/nguyendangminh/followers', 'https://api.github.com/users/nguyendangminh/following', 'https://api.github.com/users/nguyendangminh/gists', 'https://api.github.com/users/nguyendangminh/starred', 'https://api.github.com/users/nguyendangminh/repos', 'https://api.github.com/users/nguyendangminh/events', 'https://api.github.com/users/nguyendangminh/received_events', 0); +INSERT INTO `developer` VALUES (9676798, 'thedevsaddam', 'C', 5.507811131125725, 0, 0, 0, 0, 0, 0, 'Saddam H', 'Pathao Limited.', 'https://thedevsaddam.github.io/', 'Bangladesh', 'thedevsaddam@gmail.com', 'true', 'A passionate software engineer & open-source enthusiast | Golang | Postgres | Distributed System | EDA', 'thedevsaddam', 0, 0, 606, 65, 0, 0, 0, '2014-11-11T14:07:13Z', '2024-10-28T11:31:08Z', 'https://avatars.githubusercontent.com/u/9676798?v=4', 'https://api.github.com/users/thedevsaddam', 'https://github.com/thedevsaddam', 'https://api.github.com/users/thedevsaddam/followers', 'https://api.github.com/users/thedevsaddam/following', 'https://api.github.com/users/thedevsaddam/gists', 'https://api.github.com/users/thedevsaddam/starred', 'https://api.github.com/users/thedevsaddam/repos', 'https://api.github.com/users/thedevsaddam/events', 'https://api.github.com/users/thedevsaddam/received_events', 0); +INSERT INTO `developer` VALUES (9717944, 'abelmokadem', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ash', NULL, '', '未知', 'a.belmokadem@gmail.com', NULL, NULL, NULL, 0, 0, 25, 13, 0, 0, 0, '2014-11-13T11:11:57Z', '2024-10-22T13:47:05Z', 'https://avatars.githubusercontent.com/u/9717944?v=4', 'https://api.github.com/users/abelmokadem', 'https://github.com/abelmokadem', 'https://api.github.com/users/abelmokadem/followers', 'https://api.github.com/users/abelmokadem/following', 'https://api.github.com/users/abelmokadem/gists', 'https://api.github.com/users/abelmokadem/starred', 'https://api.github.com/users/abelmokadem/repos', 'https://api.github.com/users/abelmokadem/events', 'https://api.github.com/users/abelmokadem/received_events', 0); +INSERT INTO `developer` VALUES (9831992, 'rachmari', 'C', 1.5979477991699884, 0, 0, 0, 0, 0, 0, 'Rachael Sewell', NULL, '', 'Seattle, WA', NULL, NULL, NULL, NULL, 0, 0, 378, 14, 0, 0, 0, '2014-11-18T22:43:39Z', '2024-10-30T20:34:22Z', 'https://avatars.githubusercontent.com/u/9831992?v=4', 'https://api.github.com/users/rachmari', 'https://github.com/rachmari', 'https://api.github.com/users/rachmari/followers', 'https://api.github.com/users/rachmari/following', 'https://api.github.com/users/rachmari/gists', 'https://api.github.com/users/rachmari/starred', 'https://api.github.com/users/rachmari/repos', 'https://api.github.com/users/rachmari/events', 'https://api.github.com/users/rachmari/received_events', 0); +INSERT INTO `developer` VALUES (9942270, 'itcuihao', 'C', 0, 0, 0, 0, 0, 0, 0, '我的名字叫浩仔', NULL, 'blog.cuihao.fun', 'Beijing', 'itcuihao@gmail.com', NULL, 'Keep it simple, stupid.\r\nI am Gopher.\r\nDream life:💻🌌🌊ᗢᕡᓗ', NULL, 0, 0, 46, 559, 0, 0, 0, '2014-11-25T04:37:31Z', '2024-08-08T02:05:10Z', 'https://avatars.githubusercontent.com/u/9942270?v=4', 'https://api.github.com/users/itcuihao', 'https://github.com/itcuihao', 'https://api.github.com/users/itcuihao/followers', 'https://api.github.com/users/itcuihao/following', 'https://api.github.com/users/itcuihao/gists', 'https://api.github.com/users/itcuihao/starred', 'https://api.github.com/users/itcuihao/repos', 'https://api.github.com/users/itcuihao/events', 'https://api.github.com/users/itcuihao/received_events', 0); +INSERT INTO `developer` VALUES (10040765, 'tnclong', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jaden Teng', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 3, 0, 0, 0, '2014-12-02T02:03:41Z', '2024-10-23T06:13:44Z', 'https://avatars.githubusercontent.com/u/10040765?v=4', 'https://api.github.com/users/tnclong', 'https://github.com/tnclong', 'https://api.github.com/users/tnclong/followers', 'https://api.github.com/users/tnclong/following', 'https://api.github.com/users/tnclong/gists', 'https://api.github.com/users/tnclong/starred', 'https://api.github.com/users/tnclong/repos', 'https://api.github.com/users/tnclong/events', 'https://api.github.com/users/tnclong/received_events', 0); +INSERT INTO `developer` VALUES (10055613, 'joshthoward', 'C', 0, 0, 0, 0, 0, 0, 0, 'Josh Howard', 'Cloudflare', 'joshthoward.github.io', 'Atlanta, GA', 'joshthoward@gmail.com', 'true', NULL, NULL, 0, 0, 9, 3, 0, 0, 0, '2014-12-03T03:15:14Z', '2024-11-01T19:45:36Z', 'https://avatars.githubusercontent.com/u/10055613?v=4', 'https://api.github.com/users/joshthoward', 'https://github.com/joshthoward', 'https://api.github.com/users/joshthoward/followers', 'https://api.github.com/users/joshthoward/following', 'https://api.github.com/users/joshthoward/gists', 'https://api.github.com/users/joshthoward/starred', 'https://api.github.com/users/joshthoward/repos', 'https://api.github.com/users/joshthoward/events', 'https://api.github.com/users/joshthoward/received_events', 0); +INSERT INTO `developer` VALUES (10064471, 'madnight', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fabian Beuke', NULL, 'https://beuke.org', 'Bremen, Germany', NULL, 'true', 'Interested in distributed computing, category theory and theoretical physics.', NULL, 0, 0, 245, 240, 0, 0, 0, '2014-12-03T17:36:08Z', '2024-08-14T11:24:46Z', 'https://avatars.githubusercontent.com/u/10064471?v=4', 'https://api.github.com/users/madnight', 'https://github.com/madnight', 'https://api.github.com/users/madnight/followers', 'https://api.github.com/users/madnight/following', 'https://api.github.com/users/madnight/gists', 'https://api.github.com/users/madnight/starred', 'https://api.github.com/users/madnight/repos', 'https://api.github.com/users/madnight/events', 'https://api.github.com/users/madnight/received_events', 0); +INSERT INTO `developer` VALUES (10104826, 'sidag95', 'C', 0, 0, 0, 0, 0, 0, 0, 'Siddhant Agarwal', 'Razorpay', '', 'India', NULL, NULL, 'Software Engineer | Improving Developer Experience @razorpay | Loves all things Javascript', 'sidag95', 0, 0, 5, 3, 0, 0, 0, '2014-12-07T10:41:13Z', '2024-09-01T16:56:40Z', 'https://avatars.githubusercontent.com/u/10104826?v=4', 'https://api.github.com/users/sidag95', 'https://github.com/sidag95', 'https://api.github.com/users/sidag95/followers', 'https://api.github.com/users/sidag95/following', 'https://api.github.com/users/sidag95/gists', 'https://api.github.com/users/sidag95/starred', 'https://api.github.com/users/sidag95/repos', 'https://api.github.com/users/sidag95/events', 'https://api.github.com/users/sidag95/received_events', 0); +INSERT INTO `developer` VALUES (10126593, 'k-nguyen', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2014-12-09T07:59:47Z', '2021-05-05T06:03:37Z', 'https://avatars.githubusercontent.com/u/10126593?v=4', 'https://api.github.com/users/k-nguyen', 'https://github.com/k-nguyen', 'https://api.github.com/users/k-nguyen/followers', 'https://api.github.com/users/k-nguyen/following', 'https://api.github.com/users/k-nguyen/gists', 'https://api.github.com/users/k-nguyen/starred', 'https://api.github.com/users/k-nguyen/repos', 'https://api.github.com/users/k-nguyen/events', 'https://api.github.com/users/k-nguyen/received_events', 0); +INSERT INTO `developer` VALUES (10212325, 'vidhan13j07', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vidhan Jain', NULL, '', 'Jaipur', 'vidhanj1307@gmail.com', 'true', 'Google Code-in\'17 Mentor and GSoC\'17 @OSGeo @pgRouting ', NULL, 0, 0, 58, 16, 0, 0, 0, '2014-12-16T19:10:58Z', '2022-12-07T09:26:18Z', 'https://avatars.githubusercontent.com/u/10212325?v=4', 'https://api.github.com/users/vidhan13j07', 'https://github.com/vidhan13j07', 'https://api.github.com/users/vidhan13j07/followers', 'https://api.github.com/users/vidhan13j07/following', 'https://api.github.com/users/vidhan13j07/gists', 'https://api.github.com/users/vidhan13j07/starred', 'https://api.github.com/users/vidhan13j07/repos', 'https://api.github.com/users/vidhan13j07/events', 'https://api.github.com/users/vidhan13j07/received_events', 0); +INSERT INTO `developer` VALUES (10228550, 'whilei', 'C', 0, 0, 0, 0, 0, 0, 0, 'ia', '@rotblauer', 'http://pgp.mit.edu/pks/lookup?op=vindex&search=0xF36487257419D94C', '未知', NULL, NULL, '工 :heart: 具', NULL, 0, 0, 93, 167, 0, 0, 0, '2014-12-18T04:37:38Z', '2024-10-23T14:09:06Z', 'https://avatars.githubusercontent.com/u/10228550?v=4', 'https://api.github.com/users/whilei', 'https://github.com/whilei', 'https://api.github.com/users/whilei/followers', 'https://api.github.com/users/whilei/following', 'https://api.github.com/users/whilei/gists', 'https://api.github.com/users/whilei/starred', 'https://api.github.com/users/whilei/repos', 'https://api.github.com/users/whilei/events', 'https://api.github.com/users/whilei/received_events', 0); +INSERT INTO `developer` VALUES (10229647, 'krishnaacc123', 'C', 0, 0, 0, 0, 0, 0, 0, 'Krishna Kumar', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 3, 0, 0, 0, '2014-12-18T07:08:55Z', '2024-08-27T08:38:20Z', 'https://avatars.githubusercontent.com/u/10229647?v=4', 'https://api.github.com/users/krishnaacc123', 'https://github.com/krishnaacc123', 'https://api.github.com/users/krishnaacc123/followers', 'https://api.github.com/users/krishnaacc123/following', 'https://api.github.com/users/krishnaacc123/gists', 'https://api.github.com/users/krishnaacc123/starred', 'https://api.github.com/users/krishnaacc123/repos', 'https://api.github.com/users/krishnaacc123/events', 'https://api.github.com/users/krishnaacc123/received_events', 0); +INSERT INTO `developer` VALUES (10308834, 'InTheCloudDan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dan O\'Brien', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 23, 9, 0, 0, 0, '2014-12-26T16:08:24Z', '2024-05-16T21:41:32Z', 'https://avatars.githubusercontent.com/u/10308834?v=4', 'https://api.github.com/users/InTheCloudDan', 'https://github.com/InTheCloudDan', 'https://api.github.com/users/InTheCloudDan/followers', 'https://api.github.com/users/InTheCloudDan/following', 'https://api.github.com/users/InTheCloudDan/gists', 'https://api.github.com/users/InTheCloudDan/starred', 'https://api.github.com/users/InTheCloudDan/repos', 'https://api.github.com/users/InTheCloudDan/events', 'https://api.github.com/users/InTheCloudDan/received_events', 0); +INSERT INTO `developer` VALUES (10369376, 'sdesapriya', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thushara Desapriya', NULL, '', '未知', 'sdesapriya@gmail.com', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2015-01-02T05:45:42Z', '2023-02-04T13:53:40Z', 'https://avatars.githubusercontent.com/u/10369376?v=4', 'https://api.github.com/users/sdesapriya', 'https://github.com/sdesapriya', 'https://api.github.com/users/sdesapriya/followers', 'https://api.github.com/users/sdesapriya/following', 'https://api.github.com/users/sdesapriya/gists', 'https://api.github.com/users/sdesapriya/starred', 'https://api.github.com/users/sdesapriya/repos', 'https://api.github.com/users/sdesapriya/events', 'https://api.github.com/users/sdesapriya/received_events', 0); +INSERT INTO `developer` VALUES (10498732, 'ericsyh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Shen', 'StreamNative', '', '未知', 'ericshenyuhao@outlook.com', NULL, 'Technical Product Manager', 'diffsyh', 0, 0, 21, 67, 0, 0, 0, '2015-01-12T12:50:33Z', '2024-11-01T11:29:24Z', 'https://avatars.githubusercontent.com/u/10498732?v=4', 'https://api.github.com/users/ericsyh', 'https://github.com/ericsyh', 'https://api.github.com/users/ericsyh/followers', 'https://api.github.com/users/ericsyh/following', 'https://api.github.com/users/ericsyh/gists', 'https://api.github.com/users/ericsyh/starred', 'https://api.github.com/users/ericsyh/repos', 'https://api.github.com/users/ericsyh/events', 'https://api.github.com/users/ericsyh/received_events', 0); +INSERT INTO `developer` VALUES (10544393, 'CanardMandarin', 'C', 0, 0, 0, 0, 0, 0, 0, 'CanardMandarin', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 9, 0, 0, 0, '2015-01-15T08:50:14Z', '2024-10-29T08:21:42Z', 'https://avatars.githubusercontent.com/u/10544393?v=4', 'https://api.github.com/users/CanardMandarin', 'https://github.com/CanardMandarin', 'https://api.github.com/users/CanardMandarin/followers', 'https://api.github.com/users/CanardMandarin/following', 'https://api.github.com/users/CanardMandarin/gists', 'https://api.github.com/users/CanardMandarin/starred', 'https://api.github.com/users/CanardMandarin/repos', 'https://api.github.com/users/CanardMandarin/events', 'https://api.github.com/users/CanardMandarin/received_events', 0); +INSERT INTO `developer` VALUES (10548240, 'jsmith-dev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Julian Smith, Main Street Ventures', 'Main Street Ventures', 'https://mainstventures.org.au', 'Melbourne, AU', 'julian.smith@mainstventures.org.au', NULL, '🇦🇺🇨🇳🇺🇸💻 Julian Smith, Partner/Fund Manager @mainstvent, CIO @blockfreight, CTO @melb_digital, Founder @bitcoinbankone, Tech Entrepreneur & Libertarian.', 'jsmith_dev', 0, 0, 17, 37, 0, 0, 0, '2015-01-15T14:44:03Z', '2024-10-02T05:09:14Z', 'https://avatars.githubusercontent.com/u/10548240?v=4', 'https://api.github.com/users/jsmith-dev', 'https://github.com/jsmith-dev', 'https://api.github.com/users/jsmith-dev/followers', 'https://api.github.com/users/jsmith-dev/following', 'https://api.github.com/users/jsmith-dev/gists', 'https://api.github.com/users/jsmith-dev/starred', 'https://api.github.com/users/jsmith-dev/repos', 'https://api.github.com/users/jsmith-dev/events', 'https://api.github.com/users/jsmith-dev/received_events', 0); +INSERT INTO `developer` VALUES (10559371, 'RaymondKYLiu', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Taipei, Taiwan', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2015-01-16T09:15:48Z', '2024-10-15T11:25:41Z', 'https://avatars.githubusercontent.com/u/10559371?v=4', 'https://api.github.com/users/RaymondKYLiu', 'https://github.com/RaymondKYLiu', 'https://api.github.com/users/RaymondKYLiu/followers', 'https://api.github.com/users/RaymondKYLiu/following', 'https://api.github.com/users/RaymondKYLiu/gists', 'https://api.github.com/users/RaymondKYLiu/starred', 'https://api.github.com/users/RaymondKYLiu/repos', 'https://api.github.com/users/RaymondKYLiu/events', 'https://api.github.com/users/RaymondKYLiu/received_events', 0); +INSERT INTO `developer` VALUES (10602147, 'mohcer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'Telepathy Labs Pte Ltd', 'https://mohcer.github.io/', 'National University Of Singapore', 'msayyed456@gmail.com', NULL, 'IoT | M2M | Making Sense Out Of Data', NULL, 0, 0, 1, 5, 0, 0, 0, '2015-01-19T18:18:45Z', '2024-08-20T07:48:10Z', 'https://avatars.githubusercontent.com/u/10602147?v=4', 'https://api.github.com/users/mohcer', 'https://github.com/mohcer', 'https://api.github.com/users/mohcer/followers', 'https://api.github.com/users/mohcer/following', 'https://api.github.com/users/mohcer/gists', 'https://api.github.com/users/mohcer/starred', 'https://api.github.com/users/mohcer/repos', 'https://api.github.com/users/mohcer/events', 'https://api.github.com/users/mohcer/received_events', 0); +INSERT INTO `developer` VALUES (10705308, 'jkmw', 'C', 0, 0, 0, 0, 0, 0, 0, 'JK', 'Mittwald CM Service (@mittwald)', '', '未知', 'j.kuettner@mittwald.de', NULL, NULL, NULL, 0, 0, 6, 6, 0, 0, 0, '2015-01-26T08:15:13Z', '2024-09-06T09:41:02Z', 'https://avatars.githubusercontent.com/u/10705308?v=4', 'https://api.github.com/users/jkmw', 'https://github.com/jkmw', 'https://api.github.com/users/jkmw/followers', 'https://api.github.com/users/jkmw/following', 'https://api.github.com/users/jkmw/gists', 'https://api.github.com/users/jkmw/starred', 'https://api.github.com/users/jkmw/repos', 'https://api.github.com/users/jkmw/events', 'https://api.github.com/users/jkmw/received_events', 0); +INSERT INTO `developer` VALUES (10724016, 'greginvm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gregor Ratajc', NULL, '', 'Slovenia', NULL, NULL, NULL, NULL, 0, 0, 13, 7, 0, 0, 0, '2015-01-27T11:07:55Z', '2024-09-20T17:49:40Z', 'https://avatars.githubusercontent.com/u/10724016?v=4', 'https://api.github.com/users/greginvm', 'https://github.com/greginvm', 'https://api.github.com/users/greginvm/followers', 'https://api.github.com/users/greginvm/following', 'https://api.github.com/users/greginvm/gists', 'https://api.github.com/users/greginvm/starred', 'https://api.github.com/users/greginvm/repos', 'https://api.github.com/users/greginvm/events', 'https://api.github.com/users/greginvm/received_events', 0); +INSERT INTO `developer` VALUES (10768439, 'af12066', 'C', 0, 0, 0, 0, 0, 0, 0, 'Takuma Hashimoto', 'freee K.K.', 'https://8tak4.com/', 'Saitama, Japan', 'takumaxd+github@gmail.com', 'true', 'Database reliability eng.', NULL, 0, 0, 7, 5, 0, 0, 0, '2015-01-30T05:23:02Z', '2024-10-01T04:01:26Z', 'https://avatars.githubusercontent.com/u/10768439?v=4', 'https://api.github.com/users/af12066', 'https://github.com/af12066', 'https://api.github.com/users/af12066/followers', 'https://api.github.com/users/af12066/following', 'https://api.github.com/users/af12066/gists', 'https://api.github.com/users/af12066/starred', 'https://api.github.com/users/af12066/repos', 'https://api.github.com/users/af12066/events', 'https://api.github.com/users/af12066/received_events', 0); +INSERT INTO `developer` VALUES (10799507, 'fishi0x01', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karl Fischer', 'Red Hat', 'https://fishi.devtail.io', 'Berlin, Germany', NULL, NULL, NULL, NULL, 0, 0, 37, 40, 0, 0, 0, '2015-02-01T17:46:08Z', '2024-10-02T13:01:54Z', 'https://avatars.githubusercontent.com/u/10799507?v=4', 'https://api.github.com/users/fishi0x01', 'https://github.com/fishi0x01', 'https://api.github.com/users/fishi0x01/followers', 'https://api.github.com/users/fishi0x01/following', 'https://api.github.com/users/fishi0x01/gists', 'https://api.github.com/users/fishi0x01/starred', 'https://api.github.com/users/fishi0x01/repos', 'https://api.github.com/users/fishi0x01/events', 'https://api.github.com/users/fishi0x01/received_events', 0); +INSERT INTO `developer` VALUES (10820281, 'millaguie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Millaguie', NULL, '', '未知', NULL, NULL, 'SecDevOps lemur', NULL, 0, 0, 19, 20, 0, 0, 0, '2015-02-02T23:56:25Z', '2024-08-20T00:02:35Z', 'https://avatars.githubusercontent.com/u/10820281?v=4', 'https://api.github.com/users/millaguie', 'https://github.com/millaguie', 'https://api.github.com/users/millaguie/followers', 'https://api.github.com/users/millaguie/following', 'https://api.github.com/users/millaguie/gists', 'https://api.github.com/users/millaguie/starred', 'https://api.github.com/users/millaguie/repos', 'https://api.github.com/users/millaguie/events', 'https://api.github.com/users/millaguie/received_events', 0); +INSERT INTO `developer` VALUES (10831825, 'stokkie90', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rick Stokkingreef', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 1, 0, 0, 0, '2015-02-03T14:31:25Z', '2024-10-30T13:00:41Z', 'https://avatars.githubusercontent.com/u/10831825?v=4', 'https://api.github.com/users/stokkie90', 'https://github.com/stokkie90', 'https://api.github.com/users/stokkie90/followers', 'https://api.github.com/users/stokkie90/following', 'https://api.github.com/users/stokkie90/gists', 'https://api.github.com/users/stokkie90/starred', 'https://api.github.com/users/stokkie90/repos', 'https://api.github.com/users/stokkie90/events', 'https://api.github.com/users/stokkie90/received_events', 0); +INSERT INTO `developer` VALUES (10864240, 'strainovic', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nenad Strainović', 'ASEE Solutions d.o.o.', '', 'Serbia', 'nenad.strainovic@asseco-see.rs', NULL, NULL, NULL, 0, 0, 2, 2, 0, 0, 0, '2015-02-05T10:33:46Z', '2024-11-01T15:33:29Z', 'https://avatars.githubusercontent.com/u/10864240?v=4', 'https://api.github.com/users/strainovic', 'https://github.com/strainovic', 'https://api.github.com/users/strainovic/followers', 'https://api.github.com/users/strainovic/following', 'https://api.github.com/users/strainovic/gists', 'https://api.github.com/users/strainovic/starred', 'https://api.github.com/users/strainovic/repos', 'https://api.github.com/users/strainovic/events', 'https://api.github.com/users/strainovic/received_events', 0); +INSERT INTO `developer` VALUES (10966923, 'jbrockopp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jordan Brockopp', '@cargill @go-vela', 'https://go-vela.github.io/docs/', 'Ramsey, Minnesota', 'jordan_brockopp@cargill.com', NULL, 'Lead Engineer @ Cargill', NULL, 0, 0, 9, 15, 0, 0, 0, '2015-02-11T22:15:13Z', '2024-07-10T18:19:49Z', 'https://avatars.githubusercontent.com/u/10966923?v=4', 'https://api.github.com/users/jbrockopp', 'https://github.com/jbrockopp', 'https://api.github.com/users/jbrockopp/followers', 'https://api.github.com/users/jbrockopp/following', 'https://api.github.com/users/jbrockopp/gists', 'https://api.github.com/users/jbrockopp/starred', 'https://api.github.com/users/jbrockopp/repos', 'https://api.github.com/users/jbrockopp/events', 'https://api.github.com/users/jbrockopp/received_events', 0); +INSERT INTO `developer` VALUES (10994794, 'maxaudron', 'C', 0, 0, 0, 0, 0, 0, 0, 'Max Audron', 'cocaine.farm', 'https://cocaine.farm', 'Germany', 'audron@cocaine.farm', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2015-02-13T15:39:44Z', '2024-08-27T17:38:24Z', 'https://avatars.githubusercontent.com/u/10994794?v=4', 'https://api.github.com/users/maxaudron', 'https://github.com/maxaudron', 'https://api.github.com/users/maxaudron/followers', 'https://api.github.com/users/maxaudron/following', 'https://api.github.com/users/maxaudron/gists', 'https://api.github.com/users/maxaudron/starred', 'https://api.github.com/users/maxaudron/repos', 'https://api.github.com/users/maxaudron/events', 'https://api.github.com/users/maxaudron/received_events', 0); +INSERT INTO `developer` VALUES (11025519, 'xwjdsh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wen Sun', NULL, 'heyws.com', 'Tokyo, Japan', 'i@hey.ws', NULL, NULL, NULL, 0, 0, 123, 24, 0, 0, 0, '2015-02-16T07:09:31Z', '2024-10-24T01:08:34Z', 'https://avatars.githubusercontent.com/u/11025519?v=4', 'https://api.github.com/users/xwjdsh', 'https://github.com/xwjdsh', 'https://api.github.com/users/xwjdsh/followers', 'https://api.github.com/users/xwjdsh/following', 'https://api.github.com/users/xwjdsh/gists', 'https://api.github.com/users/xwjdsh/starred', 'https://api.github.com/users/xwjdsh/repos', 'https://api.github.com/users/xwjdsh/events', 'https://api.github.com/users/xwjdsh/received_events', 0); +INSERT INTO `developer` VALUES (11087727, 'yxxhero', 'C', 0, 0, 0, 0, 0, 0, 0, 'yxxhero', '@kubernetes @helmfile @gitlab.cn @helm @dragonflyoss', 'www.aiopsclub.com', 'china', NULL, NULL, ' Gopher Pythonista SRE                          During the day, Software Engineer 🥗    During the night, Open source 🦇 ', 'yxxhero', 0, 0, 150, 84, 0, 0, 0, '2015-02-20T08:48:32Z', '2024-02-24T09:30:04Z', 'https://avatars.githubusercontent.com/u/11087727?v=4', 'https://api.github.com/users/yxxhero', 'https://github.com/yxxhero', 'https://api.github.com/users/yxxhero/followers', 'https://api.github.com/users/yxxhero/following', 'https://api.github.com/users/yxxhero/gists', 'https://api.github.com/users/yxxhero/starred', 'https://api.github.com/users/yxxhero/repos', 'https://api.github.com/users/yxxhero/events', 'https://api.github.com/users/yxxhero/received_events', 0); +INSERT INTO `developer` VALUES (11150054, 'cablespaghetti', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Weston', 'tails.com', 'https://cablespaghetti.dev', 'Romsey, UK', NULL, NULL, 'DevOps guy/professional YAML wrangler. Occasional coder and whitespace enthusiast.', NULL, 0, 0, 59, 7, 0, 0, 0, '2015-02-22T19:52:36Z', '2024-10-26T12:30:17Z', 'https://avatars.githubusercontent.com/u/11150054?v=4', 'https://api.github.com/users/cablespaghetti', 'https://github.com/cablespaghetti', 'https://api.github.com/users/cablespaghetti/followers', 'https://api.github.com/users/cablespaghetti/following', 'https://api.github.com/users/cablespaghetti/gists', 'https://api.github.com/users/cablespaghetti/starred', 'https://api.github.com/users/cablespaghetti/repos', 'https://api.github.com/users/cablespaghetti/events', 'https://api.github.com/users/cablespaghetti/received_events', 0); +INSERT INTO `developer` VALUES (11154118, 'ken2812221', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Taiwan', NULL, NULL, NULL, NULL, 0, 0, 115, 3, 0, 0, 0, '2015-02-23T03:49:53Z', '2024-11-02T14:58:41Z', 'https://avatars.githubusercontent.com/u/11154118?v=4', 'https://api.github.com/users/ken2812221', 'https://github.com/ken2812221', 'https://api.github.com/users/ken2812221/followers', 'https://api.github.com/users/ken2812221/following', 'https://api.github.com/users/ken2812221/gists', 'https://api.github.com/users/ken2812221/starred', 'https://api.github.com/users/ken2812221/repos', 'https://api.github.com/users/ken2812221/events', 'https://api.github.com/users/ken2812221/received_events', 0); +INSERT INTO `developer` VALUES (11176953, 'oskyk', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 4, 0, 0, 0, '2015-02-24T13:49:01Z', '2023-11-22T11:16:51Z', 'https://avatars.githubusercontent.com/u/11176953?v=4', 'https://api.github.com/users/oskyk', 'https://github.com/oskyk', 'https://api.github.com/users/oskyk/followers', 'https://api.github.com/users/oskyk/following', 'https://api.github.com/users/oskyk/gists', 'https://api.github.com/users/oskyk/starred', 'https://api.github.com/users/oskyk/repos', 'https://api.github.com/users/oskyk/events', 'https://api.github.com/users/oskyk/received_events', 0); +INSERT INTO `developer` VALUES (11198372, 'WestonReed', 'C', 0, 0, 0, 0, 0, 0, 0, 'Weston Reed', '@verkada', 'https://westonreed.com', 'San Francisco, CA', NULL, NULL, 'Software Engineer @verkada ', 'Weston1998Reed', 0, 0, 23, 15, 0, 0, 0, '2015-02-25T18:30:55Z', '2024-11-05T04:21:12Z', 'https://avatars.githubusercontent.com/u/11198372?v=4', 'https://api.github.com/users/WestonReed', 'https://github.com/WestonReed', 'https://api.github.com/users/WestonReed/followers', 'https://api.github.com/users/WestonReed/following', 'https://api.github.com/users/WestonReed/gists', 'https://api.github.com/users/WestonReed/starred', 'https://api.github.com/users/WestonReed/repos', 'https://api.github.com/users/WestonReed/events', 'https://api.github.com/users/WestonReed/received_events', 0); +INSERT INTO `developer` VALUES (11255710, 'andrewnazarov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Nazarov', 'Natlex', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 22, 41, 0, 0, 0, '2015-03-01T11:36:42Z', '2024-04-05T07:32:13Z', 'https://avatars.githubusercontent.com/u/11255710?v=4', 'https://api.github.com/users/andrewnazarov', 'https://github.com/andrewnazarov', 'https://api.github.com/users/andrewnazarov/followers', 'https://api.github.com/users/andrewnazarov/following', 'https://api.github.com/users/andrewnazarov/gists', 'https://api.github.com/users/andrewnazarov/starred', 'https://api.github.com/users/andrewnazarov/repos', 'https://api.github.com/users/andrewnazarov/events', 'https://api.github.com/users/andrewnazarov/received_events', 0); +INSERT INTO `developer` VALUES (11299391, 'sidx1024', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sid', '@apolloio', '', 'India', 'sid@apollo.io', 'true', 'Staff Frontend Engineer', 'sidx1024', 0, 0, 34, 16, 0, 0, 0, '2015-03-03T17:51:31Z', '2024-10-30T11:48:00Z', 'https://avatars.githubusercontent.com/u/11299391?v=4', 'https://api.github.com/users/sidx1024', 'https://github.com/sidx1024', 'https://api.github.com/users/sidx1024/followers', 'https://api.github.com/users/sidx1024/following', 'https://api.github.com/users/sidx1024/gists', 'https://api.github.com/users/sidx1024/starred', 'https://api.github.com/users/sidx1024/repos', 'https://api.github.com/users/sidx1024/events', 'https://api.github.com/users/sidx1024/received_events', 0); +INSERT INTO `developer` VALUES (11324004, 'xuechunL', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leia', NULL, '', '未知', 'xuechunlei922@gmail.com', NULL, 'Have u lost your dazzle?', NULL, 0, 0, 23, 24, 0, 0, 0, '2015-03-05T01:49:37Z', '2024-06-26T12:46:48Z', 'https://avatars.githubusercontent.com/u/11324004?v=4', 'https://api.github.com/users/xuechunL', 'https://github.com/xuechunL', 'https://api.github.com/users/xuechunL/followers', 'https://api.github.com/users/xuechunL/following', 'https://api.github.com/users/xuechunL/gists', 'https://api.github.com/users/xuechunL/starred', 'https://api.github.com/users/xuechunL/repos', 'https://api.github.com/users/xuechunL/events', 'https://api.github.com/users/xuechunL/received_events', 0); +INSERT INTO `developer` VALUES (11384858, 'kamleshchandnani', 'C', 2.832641482945484, 0, 0, 0, 0, 0, 0, 'Kamlesh Chandnani', 'Razorpay', 'https://kamleshchandnani.com', 'Bangalore, India', 'kamlesh.chandnani@gmail.com', NULL, 'Design System and Dev Tools @razorpay • Past: Frontend Architect \r\n@treebohotels', '_kamlesh_', 0, 0, 450, 23, 0, 0, 0, '2015-03-09T06:22:46Z', '2024-10-30T06:18:09Z', 'https://avatars.githubusercontent.com/u/11384858?v=4', 'https://api.github.com/users/kamleshchandnani', 'https://github.com/kamleshchandnani', 'https://api.github.com/users/kamleshchandnani/followers', 'https://api.github.com/users/kamleshchandnani/following', 'https://api.github.com/users/kamleshchandnani/gists', 'https://api.github.com/users/kamleshchandnani/starred', 'https://api.github.com/users/kamleshchandnani/repos', 'https://api.github.com/users/kamleshchandnani/events', 'https://api.github.com/users/kamleshchandnani/received_events', 0); +INSERT INTO `developer` VALUES (11450812, 'WheelsVT', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2015-03-13T01:52:24Z', '2024-08-28T15:53:46Z', 'https://avatars.githubusercontent.com/u/11450812?v=4', 'https://api.github.com/users/WheelsVT', 'https://github.com/WheelsVT', 'https://api.github.com/users/WheelsVT/followers', 'https://api.github.com/users/WheelsVT/following', 'https://api.github.com/users/WheelsVT/gists', 'https://api.github.com/users/WheelsVT/starred', 'https://api.github.com/users/WheelsVT/repos', 'https://api.github.com/users/WheelsVT/events', 'https://api.github.com/users/WheelsVT/received_events', 0); +INSERT INTO `developer` VALUES (11501282, 'utk-spartan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Utkarsh Saxena', '@razorpay ', '', 'Bengaluru', 'utkarsh.spartan@gmail.com', NULL, NULL, NULL, 0, 0, 25, 14, 0, 0, 0, '2015-03-16T11:04:16Z', '2024-10-17T21:16:53Z', 'https://avatars.githubusercontent.com/u/11501282?v=4', 'https://api.github.com/users/utk-spartan', 'https://github.com/utk-spartan', 'https://api.github.com/users/utk-spartan/followers', 'https://api.github.com/users/utk-spartan/following', 'https://api.github.com/users/utk-spartan/gists', 'https://api.github.com/users/utk-spartan/starred', 'https://api.github.com/users/utk-spartan/repos', 'https://api.github.com/users/utk-spartan/events', 'https://api.github.com/users/utk-spartan/received_events', 0); +INSERT INTO `developer` VALUES (11583233, 'alran', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alyssa', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 25, 17, 0, 0, 0, '2015-03-21T08:14:10Z', '2024-09-20T21:01:25Z', 'https://avatars.githubusercontent.com/u/11583233?v=4', 'https://api.github.com/users/alran', 'https://github.com/alran', 'https://api.github.com/users/alran/followers', 'https://api.github.com/users/alran/following', 'https://api.github.com/users/alran/gists', 'https://api.github.com/users/alran/starred', 'https://api.github.com/users/alran/repos', 'https://api.github.com/users/alran/events', 'https://api.github.com/users/alran/received_events', 0); +INSERT INTO `developer` VALUES (11585840, 'miz884', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2015-03-21T13:48:49Z', '2024-10-15T22:22:28Z', 'https://avatars.githubusercontent.com/u/11585840?v=4', 'https://api.github.com/users/miz884', 'https://github.com/miz884', 'https://api.github.com/users/miz884/followers', 'https://api.github.com/users/miz884/following', 'https://api.github.com/users/miz884/gists', 'https://api.github.com/users/miz884/starred', 'https://api.github.com/users/miz884/repos', 'https://api.github.com/users/miz884/events', 'https://api.github.com/users/miz884/received_events', 0); +INSERT INTO `developer` VALUES (11601194, 'stefan-a-bauer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Bauer', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2015-03-22T18:54:54Z', '2021-01-24T17:27:08Z', 'https://avatars.githubusercontent.com/u/11601194?v=4', 'https://api.github.com/users/stefan-a-bauer', 'https://github.com/stefan-a-bauer', 'https://api.github.com/users/stefan-a-bauer/followers', 'https://api.github.com/users/stefan-a-bauer/following', 'https://api.github.com/users/stefan-a-bauer/gists', 'https://api.github.com/users/stefan-a-bauer/starred', 'https://api.github.com/users/stefan-a-bauer/repos', 'https://api.github.com/users/stefan-a-bauer/events', 'https://api.github.com/users/stefan-a-bauer/received_events', 0); +INSERT INTO `developer` VALUES (11645979, 'KMConner', 'C', 0, 0, 0, 0, 0, 0, 0, 'KMConner', NULL, 'kmconner.net', 'Tokyo, Japan', NULL, NULL, NULL, 'km_conner', 0, 0, 28, 16, 0, 0, 0, '2015-03-25T10:22:53Z', '2024-10-22T10:23:45Z', 'https://avatars.githubusercontent.com/u/11645979?v=4', 'https://api.github.com/users/KMConner', 'https://github.com/KMConner', 'https://api.github.com/users/KMConner/followers', 'https://api.github.com/users/KMConner/following', 'https://api.github.com/users/KMConner/gists', 'https://api.github.com/users/KMConner/starred', 'https://api.github.com/users/KMConner/repos', 'https://api.github.com/users/KMConner/events', 'https://api.github.com/users/KMConner/received_events', 0); +INSERT INTO `developer` VALUES (11647838, 'dvelardez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Velardez', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 4, 0, 0, 0, '2015-03-25T12:48:40Z', '2024-08-07T15:21:34Z', 'https://avatars.githubusercontent.com/u/11647838?v=4', 'https://api.github.com/users/dvelardez', 'https://github.com/dvelardez', 'https://api.github.com/users/dvelardez/followers', 'https://api.github.com/users/dvelardez/following', 'https://api.github.com/users/dvelardez/gists', 'https://api.github.com/users/dvelardez/starred', 'https://api.github.com/users/dvelardez/repos', 'https://api.github.com/users/dvelardez/events', 'https://api.github.com/users/dvelardez/received_events', 0); +INSERT INTO `developer` VALUES (11683992, 'vavdoshka', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vladimir Avdoshka', '@kyriba ', '', 'Paris', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2015-03-27T17:45:02Z', '2024-09-01T18:08:27Z', 'https://avatars.githubusercontent.com/u/11683992?v=4', 'https://api.github.com/users/vavdoshka', 'https://github.com/vavdoshka', 'https://api.github.com/users/vavdoshka/followers', 'https://api.github.com/users/vavdoshka/following', 'https://api.github.com/users/vavdoshka/gists', 'https://api.github.com/users/vavdoshka/starred', 'https://api.github.com/users/vavdoshka/repos', 'https://api.github.com/users/vavdoshka/events', 'https://api.github.com/users/vavdoshka/received_events', 0); +INSERT INTO `developer` VALUES (11695998, 'secfigo', 'C', 0.6033334427952834, 0, 0, 0, 0, 0, 0, 'Mohammed A Imran', 'Practical DevSecOps', 'https://www.practical-devsecops.com', 'Singapore', NULL, NULL, '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 ', NULL, 0, 0, 320, 6, 0, 0, 0, '2015-03-28T15:26:15Z', '2024-07-12T07:28:36Z', 'https://avatars.githubusercontent.com/u/11695998?v=4', 'https://api.github.com/users/secfigo', 'https://github.com/secfigo', 'https://api.github.com/users/secfigo/followers', 'https://api.github.com/users/secfigo/following', 'https://api.github.com/users/secfigo/gists', 'https://api.github.com/users/secfigo/starred', 'https://api.github.com/users/secfigo/repos', 'https://api.github.com/users/secfigo/events', 'https://api.github.com/users/secfigo/received_events', 0); +INSERT INTO `developer` VALUES (11711101, 'YSaxon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yaakov Saxon', 'North American Bancard', '', '未知', 'ysaxon@gmail.com', NULL, NULL, NULL, 0, 0, 9, 1, 0, 0, 0, '2015-03-29T23:07:25Z', '2024-08-22T20:53:11Z', 'https://avatars.githubusercontent.com/u/11711101?v=4', 'https://api.github.com/users/YSaxon', 'https://github.com/YSaxon', 'https://api.github.com/users/YSaxon/followers', 'https://api.github.com/users/YSaxon/following', 'https://api.github.com/users/YSaxon/gists', 'https://api.github.com/users/YSaxon/starred', 'https://api.github.com/users/YSaxon/repos', 'https://api.github.com/users/YSaxon/events', 'https://api.github.com/users/YSaxon/received_events', 0); +INSERT INTO `developer` VALUES (11719334, 'johncming', 'C', 0, 0, 0, 0, 0, 0, 0, 'johncming', NULL, '', 'Beijing', NULL, NULL, NULL, NULL, 0, 0, 22, 92, 0, 0, 0, '2015-03-30T12:05:39Z', '2024-10-24T10:33:01Z', 'https://avatars.githubusercontent.com/u/11719334?v=4', 'https://api.github.com/users/johncming', 'https://github.com/johncming', 'https://api.github.com/users/johncming/followers', 'https://api.github.com/users/johncming/following', 'https://api.github.com/users/johncming/gists', 'https://api.github.com/users/johncming/starred', 'https://api.github.com/users/johncming/repos', 'https://api.github.com/users/johncming/events', 'https://api.github.com/users/johncming/received_events', 0); +INSERT INTO `developer` VALUES (11757030, 'achmafooma', 'C', 0, 0, 0, 0, 0, 0, 0, 'Scott Bradford', 'Intersanity Enterprises', 'http://www.intersanity.com/', 'Chantilly, VA', NULL, NULL, 'I am Scott. This is GitHub. This is Scott on Github.', NULL, 0, 0, 1, 0, 0, 0, 0, '2015-04-01T15:54:42Z', '2024-07-01T21:46:59Z', 'https://avatars.githubusercontent.com/u/11757030?v=4', 'https://api.github.com/users/achmafooma', 'https://github.com/achmafooma', 'https://api.github.com/users/achmafooma/followers', 'https://api.github.com/users/achmafooma/following', 'https://api.github.com/users/achmafooma/gists', 'https://api.github.com/users/achmafooma/starred', 'https://api.github.com/users/achmafooma/repos', 'https://api.github.com/users/achmafooma/events', 'https://api.github.com/users/achmafooma/received_events', 0); +INSERT INTO `developer` VALUES (11800478, 'BitcoinPRReadingGroup', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2015-04-04T20:00:13Z', '2016-02-28T03:20:28Z', 'https://avatars.githubusercontent.com/u/11800478?v=4', 'https://api.github.com/users/BitcoinPRReadingGroup', 'https://github.com/BitcoinPRReadingGroup', 'https://api.github.com/users/BitcoinPRReadingGroup/followers', 'https://api.github.com/users/BitcoinPRReadingGroup/following', 'https://api.github.com/users/BitcoinPRReadingGroup/gists', 'https://api.github.com/users/BitcoinPRReadingGroup/starred', 'https://api.github.com/users/BitcoinPRReadingGroup/repos', 'https://api.github.com/users/BitcoinPRReadingGroup/events', 'https://api.github.com/users/BitcoinPRReadingGroup/received_events', 0); +INSERT INTO `developer` VALUES (11864887, 'Aravee', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 7, 0, 0, 0, '2015-04-09T04:14:05Z', '2022-05-16T13:50:06Z', 'https://avatars.githubusercontent.com/u/11864887?v=4', 'https://api.github.com/users/Aravee', 'https://github.com/Aravee', 'https://api.github.com/users/Aravee/followers', 'https://api.github.com/users/Aravee/following', 'https://api.github.com/users/Aravee/gists', 'https://api.github.com/users/Aravee/starred', 'https://api.github.com/users/Aravee/repos', 'https://api.github.com/users/Aravee/events', 'https://api.github.com/users/Aravee/received_events', 0); +INSERT INTO `developer` VALUES (11898859, 'jtoomim', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Toomim', 'Toomim Brothers Bitcoin Mining Concern', 'http://toom.im', 'Earth', NULL, NULL, NULL, NULL, 0, 0, 45, 0, 0, 0, 0, '2015-04-11T10:30:36Z', '2024-02-26T08:56:23Z', 'https://avatars.githubusercontent.com/u/11898859?v=4', 'https://api.github.com/users/jtoomim', 'https://github.com/jtoomim', 'https://api.github.com/users/jtoomim/followers', 'https://api.github.com/users/jtoomim/following', 'https://api.github.com/users/jtoomim/gists', 'https://api.github.com/users/jtoomim/starred', 'https://api.github.com/users/jtoomim/repos', 'https://api.github.com/users/jtoomim/events', 'https://api.github.com/users/jtoomim/received_events', 0); +INSERT INTO `developer` VALUES (11940780, 'bojan-embroker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Bojan Petrovic', NULL, 'https://www.embroker.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2015-04-14T09:44:16Z', '2022-04-18T21:30:48Z', 'https://avatars.githubusercontent.com/u/11940780?v=4', 'https://api.github.com/users/bojan-embroker', 'https://github.com/bojan-embroker', 'https://api.github.com/users/bojan-embroker/followers', 'https://api.github.com/users/bojan-embroker/following', 'https://api.github.com/users/bojan-embroker/gists', 'https://api.github.com/users/bojan-embroker/starred', 'https://api.github.com/users/bojan-embroker/repos', 'https://api.github.com/users/bojan-embroker/events', 'https://api.github.com/users/bojan-embroker/received_events', 0); +INSERT INTO `developer` VALUES (12013583, 'GPSBabelDeveloper', 'C', 0, 0, 0, 0, 0, 0, 0, 'GPSBabel', 'GPSBabel', 'http://www.gpsbabel.org', '未知', NULL, NULL, NULL, NULL, 0, 0, 18, 0, 0, 0, 0, '2015-04-19T01:41:19Z', '2023-10-28T22:53:22Z', 'https://avatars.githubusercontent.com/u/12013583?v=4', 'https://api.github.com/users/GPSBabelDeveloper', 'https://github.com/GPSBabelDeveloper', 'https://api.github.com/users/GPSBabelDeveloper/followers', 'https://api.github.com/users/GPSBabelDeveloper/following', 'https://api.github.com/users/GPSBabelDeveloper/gists', 'https://api.github.com/users/GPSBabelDeveloper/starred', 'https://api.github.com/users/GPSBabelDeveloper/repos', 'https://api.github.com/users/GPSBabelDeveloper/events', 'https://api.github.com/users/GPSBabelDeveloper/received_events', 0); +INSERT INTO `developer` VALUES (12074633, 'jef', 'C', 1.5293537056269053, 0, 0, 0, 0, 0, 0, 'Jef LeCompte', '@GreenlightMe ', 'https://jef.buzz', 'Seattle, WA', NULL, 'true', 'Currently working on tools at @GreenlightMe. Owner of streetmerchant and maintainer of @beetbox.', 'litterboxbidet', 0, 0, 374, 11, 0, 0, 0, '2015-04-22T20:57:32Z', '2024-10-21T19:09:25Z', 'https://avatars.githubusercontent.com/u/12074633?v=4', 'https://api.github.com/users/jef', 'https://github.com/jef', 'https://api.github.com/users/jef/followers', 'https://api.github.com/users/jef/following', 'https://api.github.com/users/jef/gists', 'https://api.github.com/users/jef/starred', 'https://api.github.com/users/jef/repos', 'https://api.github.com/users/jef/events', 'https://api.github.com/users/jef/received_events', 0); +INSERT INTO `developer` VALUES (12102068, 'ericsciple', 'C', 0, 0, 0, 0, 0, 0, 0, 'eric sciple', NULL, 'https://linkedin.com/in/ericsciple', '未知', NULL, NULL, NULL, NULL, 0, 0, 250, 1, 0, 0, 0, '2015-04-24T16:14:15Z', '2024-11-03T12:28:19Z', 'https://avatars.githubusercontent.com/u/12102068?v=4', 'https://api.github.com/users/ericsciple', 'https://github.com/ericsciple', 'https://api.github.com/users/ericsciple/followers', 'https://api.github.com/users/ericsciple/following', 'https://api.github.com/users/ericsciple/gists', 'https://api.github.com/users/ericsciple/starred', 'https://api.github.com/users/ericsciple/repos', 'https://api.github.com/users/ericsciple/events', 'https://api.github.com/users/ericsciple/received_events', 0); +INSERT INTO `developer` VALUES (12181586, 'ghostiam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vladislav Fursov', NULL, 'https://ghost.im', 'Somewhere on planet Earth', NULL, NULL, NULL, NULL, 0, 0, 24, 2, 0, 0, 0, '2015-04-30T06:31:43Z', '2024-10-23T16:08:03Z', 'https://avatars.githubusercontent.com/u/12181586?v=4', 'https://api.github.com/users/ghostiam', 'https://github.com/ghostiam', 'https://api.github.com/users/ghostiam/followers', 'https://api.github.com/users/ghostiam/following', 'https://api.github.com/users/ghostiam/gists', 'https://api.github.com/users/ghostiam/starred', 'https://api.github.com/users/ghostiam/repos', 'https://api.github.com/users/ghostiam/events', 'https://api.github.com/users/ghostiam/received_events', 0); +INSERT INTO `developer` VALUES (12205109, 'akompos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Kompos', NULL, '', 'Australia', NULL, NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2015-05-02T01:11:54Z', '2024-06-24T01:28:48Z', 'https://avatars.githubusercontent.com/u/12205109?v=4', 'https://api.github.com/users/akompos', 'https://github.com/akompos', 'https://api.github.com/users/akompos/followers', 'https://api.github.com/users/akompos/following', 'https://api.github.com/users/akompos/gists', 'https://api.github.com/users/akompos/starred', 'https://api.github.com/users/akompos/repos', 'https://api.github.com/users/akompos/events', 'https://api.github.com/users/akompos/received_events', 0); +INSERT INTO `developer` VALUES (12264132, 'vugardzhamalov', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 2, 0, 0, 0, '2015-05-06T00:47:36Z', '2024-03-26T14:16:06Z', 'https://avatars.githubusercontent.com/u/12264132?v=4', 'https://api.github.com/users/vugardzhamalov', 'https://github.com/vugardzhamalov', 'https://api.github.com/users/vugardzhamalov/followers', 'https://api.github.com/users/vugardzhamalov/following', 'https://api.github.com/users/vugardzhamalov/gists', 'https://api.github.com/users/vugardzhamalov/starred', 'https://api.github.com/users/vugardzhamalov/repos', 'https://api.github.com/users/vugardzhamalov/events', 'https://api.github.com/users/vugardzhamalov/received_events', 0); +INSERT INTO `developer` VALUES (12384263, 'xhdix', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'Intergalaksiaj amikecoj', 'https://wikicensorship.github.io/', 'Tero, Lakta Vojo', 'xhdix@yahoo.com', NULL, '\r\n IT (Elektronika-Programado-Reto-Sekureco-Artefarita Inteligenteco)\r\n\r\n', 'xhdix', 0, 0, 91, 38, 0, 0, 0, '2015-05-10T18:51:03Z', '2022-01-05T15:58:35Z', 'https://avatars.githubusercontent.com/u/12384263?v=4', 'https://api.github.com/users/xhdix', 'https://github.com/xhdix', 'https://api.github.com/users/xhdix/followers', 'https://api.github.com/users/xhdix/following', 'https://api.github.com/users/xhdix/gists', 'https://api.github.com/users/xhdix/starred', 'https://api.github.com/users/xhdix/repos', 'https://api.github.com/users/xhdix/events', 'https://api.github.com/users/xhdix/received_events', 0); +INSERT INTO `developer` VALUES (12499813, 'andrew-demb', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrii Dembitskyi', NULL, '', 'Ukraine', NULL, NULL, NULL, NULL, 0, 0, 24, 49, 0, 0, 0, '2015-05-18T16:45:12Z', '2024-10-09T11:01:13Z', 'https://avatars.githubusercontent.com/u/12499813?v=4', 'https://api.github.com/users/andrew-demb', 'https://github.com/andrew-demb', 'https://api.github.com/users/andrew-demb/followers', 'https://api.github.com/users/andrew-demb/following', 'https://api.github.com/users/andrew-demb/gists', 'https://api.github.com/users/andrew-demb/starred', 'https://api.github.com/users/andrew-demb/repos', 'https://api.github.com/users/andrew-demb/events', 'https://api.github.com/users/andrew-demb/received_events', 0); +INSERT INTO `developer` VALUES (12585202, 'AllanDoensen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Allan Doensen', 'Doensen.Com Pty Ltd', 'Www.Doensen.Com', 'The Great Southern Land', NULL, 'true', 'C/C++/Java/C# coder, Linux Kernel Developer, Embedded Systems, IoT, Blockchains, Bitcoin and other interesting things.', NULL, 0, 0, 5, 7, 0, 0, 0, '2015-05-24T14:40:17Z', '2024-11-03T10:44:46Z', 'https://avatars.githubusercontent.com/u/12585202?v=4', 'https://api.github.com/users/AllanDoensen', 'https://github.com/AllanDoensen', 'https://api.github.com/users/AllanDoensen/followers', 'https://api.github.com/users/AllanDoensen/following', 'https://api.github.com/users/AllanDoensen/gists', 'https://api.github.com/users/AllanDoensen/starred', 'https://api.github.com/users/AllanDoensen/repos', 'https://api.github.com/users/AllanDoensen/events', 'https://api.github.com/users/AllanDoensen/received_events', 0); +INSERT INTO `developer` VALUES (12694873, 'jaroslaw-osmanski', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2015-06-01T10:56:41Z', '2024-02-29T14:59:00Z', 'https://avatars.githubusercontent.com/u/12694873?v=4', 'https://api.github.com/users/jaroslaw-osmanski', 'https://github.com/jaroslaw-osmanski', 'https://api.github.com/users/jaroslaw-osmanski/followers', 'https://api.github.com/users/jaroslaw-osmanski/following', 'https://api.github.com/users/jaroslaw-osmanski/gists', 'https://api.github.com/users/jaroslaw-osmanski/starred', 'https://api.github.com/users/jaroslaw-osmanski/repos', 'https://api.github.com/users/jaroslaw-osmanski/events', 'https://api.github.com/users/jaroslaw-osmanski/received_events', 0); +INSERT INTO `developer` VALUES (12775766, 'wowinter13', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vladislav Dyachenko', NULL, 'https://vladyachenko.com', 'Tbilisi, Georgia | Madrid, Spain ', 'gotta.go.vlad@gmail.com', 'true', 'Software Engineer aka glorious code invoker. ', NULL, 0, 0, 34, 6, 0, 0, 0, '2015-06-06T14:42:01Z', '2024-08-09T07:27:33Z', 'https://avatars.githubusercontent.com/u/12775766?v=4', 'https://api.github.com/users/wowinter13', 'https://github.com/wowinter13', 'https://api.github.com/users/wowinter13/followers', 'https://api.github.com/users/wowinter13/following', 'https://api.github.com/users/wowinter13/gists', 'https://api.github.com/users/wowinter13/starred', 'https://api.github.com/users/wowinter13/repos', 'https://api.github.com/users/wowinter13/events', 'https://api.github.com/users/wowinter13/received_events', 0); +INSERT INTO `developer` VALUES (12862928, 'ptschip', 'C', 0, 0, 0, 0, 0, 0, 0, 'Peter Tschipper', NULL, '', '未知', 'peter.tschipper@gmail.com', NULL, NULL, NULL, 0, 0, 20, 0, 0, 0, 0, '2015-06-12T15:59:59Z', '2021-10-15T16:54:13Z', 'https://avatars.githubusercontent.com/u/12862928?v=4', 'https://api.github.com/users/ptschip', 'https://github.com/ptschip', 'https://api.github.com/users/ptschip/followers', 'https://api.github.com/users/ptschip/following', 'https://api.github.com/users/ptschip/gists', 'https://api.github.com/users/ptschip/starred', 'https://api.github.com/users/ptschip/repos', 'https://api.github.com/users/ptschip/events', 'https://api.github.com/users/ptschip/received_events', 0); +INSERT INTO `developer` VALUES (12932925, 'jsalado', 'C', 0, 0, 0, 0, 0, 0, 0, 'Javier Salado', 'Anyverse', '', 'Madrid, Spain', NULL, NULL, NULL, NULL, 0, 0, 6, 1, 0, 0, 0, '2015-06-17T08:12:16Z', '2024-10-06T11:29:25Z', 'https://avatars.githubusercontent.com/u/12932925?v=4', 'https://api.github.com/users/jsalado', 'https://github.com/jsalado', 'https://api.github.com/users/jsalado/followers', 'https://api.github.com/users/jsalado/following', 'https://api.github.com/users/jsalado/gists', 'https://api.github.com/users/jsalado/starred', 'https://api.github.com/users/jsalado/repos', 'https://api.github.com/users/jsalado/events', 'https://api.github.com/users/jsalado/received_events', 0); +INSERT INTO `developer` VALUES (13134193, 'unsystemizer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2015-07-01T11:16:52Z', '2023-01-31T14:58:32Z', 'https://avatars.githubusercontent.com/u/13134193?v=4', 'https://api.github.com/users/unsystemizer', 'https://github.com/unsystemizer', 'https://api.github.com/users/unsystemizer/followers', 'https://api.github.com/users/unsystemizer/following', 'https://api.github.com/users/unsystemizer/gists', 'https://api.github.com/users/unsystemizer/starred', 'https://api.github.com/users/unsystemizer/repos', 'https://api.github.com/users/unsystemizer/events', 'https://api.github.com/users/unsystemizer/received_events', 0); +INSERT INTO `developer` VALUES (13171342, 'tailsjoin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://ruc47yiosooolrzw.onion', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2015-07-03T22:39:22Z', '2018-05-20T15:12:00Z', 'https://avatars.githubusercontent.com/u/13171342?v=4', 'https://api.github.com/users/tailsjoin', 'https://github.com/tailsjoin', 'https://api.github.com/users/tailsjoin/followers', 'https://api.github.com/users/tailsjoin/following', 'https://api.github.com/users/tailsjoin/gists', 'https://api.github.com/users/tailsjoin/starred', 'https://api.github.com/users/tailsjoin/repos', 'https://api.github.com/users/tailsjoin/events', 'https://api.github.com/users/tailsjoin/received_events', 0); +INSERT INTO `developer` VALUES (13314548, 'tsthght', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', '781181214@qq.com', NULL, 'CS Master of NPU', NULL, 0, 0, 13, 2, 0, 0, 0, '2015-07-13T12:24:37Z', '2024-10-30T14:08:19Z', 'https://avatars.githubusercontent.com/u/13314548?v=4', 'https://api.github.com/users/tsthght', 'https://github.com/tsthght', 'https://api.github.com/users/tsthght/followers', 'https://api.github.com/users/tsthght/following', 'https://api.github.com/users/tsthght/gists', 'https://api.github.com/users/tsthght/starred', 'https://api.github.com/users/tsthght/repos', 'https://api.github.com/users/tsthght/events', 'https://api.github.com/users/tsthght/received_events', 0); +INSERT INTO `developer` VALUES (13323303, 'suzuki-shunsuke', 'C', 0.9463039105106988, 0, 0, 0, 0, 0, 0, 'Shunsuke Suzuki', NULL, 'https://suzuki-shunsuke.github.io/profile/', 'Tokyo, Japan', NULL, NULL, 'Platform Engineer / OSS Developer / Go', 'szkdash_en', 0, 0, 340, 0, 0, 0, 0, '2015-07-13T23:22:32Z', '2024-08-01T02:05:21Z', 'https://avatars.githubusercontent.com/u/13323303?v=4', 'https://api.github.com/users/suzuki-shunsuke', 'https://github.com/suzuki-shunsuke', 'https://api.github.com/users/suzuki-shunsuke/followers', 'https://api.github.com/users/suzuki-shunsuke/following', 'https://api.github.com/users/suzuki-shunsuke/gists', 'https://api.github.com/users/suzuki-shunsuke/starred', 'https://api.github.com/users/suzuki-shunsuke/repos', 'https://api.github.com/users/suzuki-shunsuke/events', 'https://api.github.com/users/suzuki-shunsuke/received_events', 0); +INSERT INTO `developer` VALUES (13357977, 'lukelowery', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Lowery', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2015-07-16T01:04:39Z', '2020-04-18T18:47:31Z', 'https://avatars.githubusercontent.com/u/13357977?v=4', 'https://api.github.com/users/lukelowery', 'https://github.com/lukelowery', 'https://api.github.com/users/lukelowery/followers', 'https://api.github.com/users/lukelowery/following', 'https://api.github.com/users/lukelowery/gists', 'https://api.github.com/users/lukelowery/starred', 'https://api.github.com/users/lukelowery/repos', 'https://api.github.com/users/lukelowery/events', 'https://api.github.com/users/lukelowery/received_events', 0); +INSERT INTO `developer` VALUES (13361187, 'dineshba', 'C', 0, 0, 0, 0, 0, 0, 0, 'Dinesh B', 'Microsoft', '', 'Bangalore', NULL, NULL, NULL, NULL, 0, 0, 79, 35, 0, 0, 0, '2015-07-16T06:39:03Z', '2024-10-22T08:17:07Z', 'https://avatars.githubusercontent.com/u/13361187?v=4', 'https://api.github.com/users/dineshba', 'https://github.com/dineshba', 'https://api.github.com/users/dineshba/followers', 'https://api.github.com/users/dineshba/following', 'https://api.github.com/users/dineshba/gists', 'https://api.github.com/users/dineshba/starred', 'https://api.github.com/users/dineshba/repos', 'https://api.github.com/users/dineshba/events', 'https://api.github.com/users/dineshba/received_events', 0); +INSERT INTO `developer` VALUES (13362741, 'ianmuge', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ian Muge', NULL, 'https://ian-muge.medium.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 21, 39, 0, 0, 0, '2015-07-16T08:36:44Z', '2024-10-03T08:58:09Z', 'https://avatars.githubusercontent.com/u/13362741?v=4', 'https://api.github.com/users/ianmuge', 'https://github.com/ianmuge', 'https://api.github.com/users/ianmuge/followers', 'https://api.github.com/users/ianmuge/following', 'https://api.github.com/users/ianmuge/gists', 'https://api.github.com/users/ianmuge/starred', 'https://api.github.com/users/ianmuge/repos', 'https://api.github.com/users/ianmuge/events', 'https://api.github.com/users/ianmuge/received_events', 0); +INSERT INTO `developer` VALUES (13427348, 'Yisaer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Song Gao', NULL, 'https://www.zhihu.com/people/gao-song-11-97/posts', 'China_Shanghai', 'disxiaofei@163.com', NULL, 'Most of the time learning database, some time developing it.\r\n', NULL, 0, 0, 0, 0, 0, 0, 0, '2015-07-21T02:03:25Z', '2024-07-25T11:50:46Z', 'https://avatars.githubusercontent.com/u/13427348?v=4', 'https://api.github.com/users/Yisaer', 'https://github.com/Yisaer', 'https://api.github.com/users/Yisaer/followers', 'https://api.github.com/users/Yisaer/following', 'https://api.github.com/users/Yisaer/gists', 'https://api.github.com/users/Yisaer/starred', 'https://api.github.com/users/Yisaer/repos', 'https://api.github.com/users/Yisaer/events', 'https://api.github.com/users/Yisaer/received_events', 0); +INSERT INTO `developer` VALUES (13482895, 'liboz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Libo Zeng', NULL, 'libozeng.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2015-07-24T11:01:49Z', '2024-11-02T11:25:48Z', 'https://avatars.githubusercontent.com/u/13482895?v=4', 'https://api.github.com/users/liboz', 'https://github.com/liboz', 'https://api.github.com/users/liboz/followers', 'https://api.github.com/users/liboz/following', 'https://api.github.com/users/liboz/gists', 'https://api.github.com/users/liboz/starred', 'https://api.github.com/users/liboz/repos', 'https://api.github.com/users/liboz/events', 'https://api.github.com/users/liboz/received_events', 0); +INSERT INTO `developer` VALUES (13522698, 'joe-at-startupmedia', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@Startup-Media', '', 'Sandpoint, ID', NULL, NULL, NULL, NULL, 0, 0, 2, 3, 0, 0, 0, '2015-07-27T14:11:05Z', '2024-11-03T23:26:18Z', 'https://avatars.githubusercontent.com/u/13522698?v=4', 'https://api.github.com/users/joe-at-startupmedia', 'https://github.com/joe-at-startupmedia', 'https://api.github.com/users/joe-at-startupmedia/followers', 'https://api.github.com/users/joe-at-startupmedia/following', 'https://api.github.com/users/joe-at-startupmedia/gists', 'https://api.github.com/users/joe-at-startupmedia/starred', 'https://api.github.com/users/joe-at-startupmedia/repos', 'https://api.github.com/users/joe-at-startupmedia/events', 'https://api.github.com/users/joe-at-startupmedia/received_events', 0); +INSERT INTO `developer` VALUES (13596209, 'tsteven4', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2015-08-01T03:08:08Z', '2024-10-06T11:41:45Z', 'https://avatars.githubusercontent.com/u/13596209?v=4', 'https://api.github.com/users/tsteven4', 'https://github.com/tsteven4', 'https://api.github.com/users/tsteven4/followers', 'https://api.github.com/users/tsteven4/following', 'https://api.github.com/users/tsteven4/gists', 'https://api.github.com/users/tsteven4/starred', 'https://api.github.com/users/tsteven4/repos', 'https://api.github.com/users/tsteven4/events', 'https://api.github.com/users/tsteven4/received_events', 0); +INSERT INTO `developer` VALUES (13682642, 'rohitkeshwani07', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rohit Keshwani', '@razorpay ', 'rkeshwani.com', 'Bangaluru', NULL, NULL, NULL, NULL, 0, 0, 6, 33, 0, 0, 0, '2015-08-06T17:57:41Z', '2024-10-21T10:55:14Z', 'https://avatars.githubusercontent.com/u/13682642?v=4', 'https://api.github.com/users/rohitkeshwani07', 'https://github.com/rohitkeshwani07', 'https://api.github.com/users/rohitkeshwani07/followers', 'https://api.github.com/users/rohitkeshwani07/following', 'https://api.github.com/users/rohitkeshwani07/gists', 'https://api.github.com/users/rohitkeshwani07/starred', 'https://api.github.com/users/rohitkeshwani07/repos', 'https://api.github.com/users/rohitkeshwani07/events', 'https://api.github.com/users/rohitkeshwani07/received_events', 0); +INSERT INTO `developer` VALUES (13701856, 'dpaolella', 'C', 0, 0, 0, 0, 0, 0, 0, 'David Paolella', 'Yale University', '', 'New Haven, CT', 'ddpaolella@gmail.com', NULL, 'I am a master\'s student at the Yale studying clean energy and data science.', NULL, 0, 0, 5, 5, 0, 0, 0, '2015-08-08T01:45:08Z', '2021-06-15T23:20:48Z', 'https://avatars.githubusercontent.com/u/13701856?v=4', 'https://api.github.com/users/dpaolella', 'https://github.com/dpaolella', 'https://api.github.com/users/dpaolella/followers', 'https://api.github.com/users/dpaolella/following', 'https://api.github.com/users/dpaolella/gists', 'https://api.github.com/users/dpaolella/starred', 'https://api.github.com/users/dpaolella/repos', 'https://api.github.com/users/dpaolella/events', 'https://api.github.com/users/dpaolella/received_events', 0); +INSERT INTO `developer` VALUES (13718575, 'jony4', 'C', 0, 0, 0, 0, 0, 0, 0, '牛强', 'Sensetime', 'https://jony4.vip', 'China Shanghai', 'hi@jony4.vip', 'true', 'Using #Go #PHP #Rust #TypeScript #JavaScript #Python', NULL, 0, 0, 118, 683, 0, 0, 0, '2015-08-09T14:13:09Z', '2024-10-21T13:35:41Z', 'https://avatars.githubusercontent.com/u/13718575?v=4', 'https://api.github.com/users/jony4', 'https://github.com/jony4', 'https://api.github.com/users/jony4/followers', 'https://api.github.com/users/jony4/following', 'https://api.github.com/users/jony4/gists', 'https://api.github.com/users/jony4/starred', 'https://api.github.com/users/jony4/repos', 'https://api.github.com/users/jony4/events', 'https://api.github.com/users/jony4/received_events', 0); +INSERT INTO `developer` VALUES (13718901, 'J12934', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jannik Hollenbach', '@iteratec', '', 'Hamburg, Germany', NULL, NULL, NULL, NULL, 0, 0, 71, 12, 0, 0, 0, '2015-08-09T14:48:52Z', '2024-10-09T06:29:22Z', 'https://avatars.githubusercontent.com/u/13718901?v=4', 'https://api.github.com/users/J12934', 'https://github.com/J12934', 'https://api.github.com/users/J12934/followers', 'https://api.github.com/users/J12934/following', 'https://api.github.com/users/J12934/gists', 'https://api.github.com/users/J12934/starred', 'https://api.github.com/users/J12934/repos', 'https://api.github.com/users/J12934/events', 'https://api.github.com/users/J12934/received_events', 0); +INSERT INTO `developer` VALUES (13782745, 'cyril-corbon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cyril Corbon', '@dailymotion', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 23, 49, 0, 0, 0, '2015-08-13T13:55:59Z', '2024-05-13T06:30:06Z', 'https://avatars.githubusercontent.com/u/13782745?v=4', 'https://api.github.com/users/cyril-corbon', 'https://github.com/cyril-corbon', 'https://api.github.com/users/cyril-corbon/followers', 'https://api.github.com/users/cyril-corbon/following', 'https://api.github.com/users/cyril-corbon/gists', 'https://api.github.com/users/cyril-corbon/starred', 'https://api.github.com/users/cyril-corbon/repos', 'https://api.github.com/users/cyril-corbon/events', 'https://api.github.com/users/cyril-corbon/received_events', 0); +INSERT INTO `developer` VALUES (13828605, 'shonge', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'im.songge@gmail.com', NULL, NULL, NULL, 0, 0, 27, 50, 0, 0, 0, '2015-08-17T07:02:28Z', '2024-10-05T11:27:58Z', 'https://avatars.githubusercontent.com/u/13828605?v=4', 'https://api.github.com/users/shonge', 'https://github.com/shonge', 'https://api.github.com/users/shonge/followers', 'https://api.github.com/users/shonge/following', 'https://api.github.com/users/shonge/gists', 'https://api.github.com/users/shonge/starred', 'https://api.github.com/users/shonge/repos', 'https://api.github.com/users/shonge/events', 'https://api.github.com/users/shonge/received_events', 0); +INSERT INTO `developer` VALUES (13838274, 'awemany', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 23, 0, 0, 0, 0, '2015-08-17T18:16:24Z', '2019-08-29T12:12:07Z', 'https://avatars.githubusercontent.com/u/13838274?v=4', 'https://api.github.com/users/awemany', 'https://github.com/awemany', 'https://api.github.com/users/awemany/followers', 'https://api.github.com/users/awemany/following', 'https://api.github.com/users/awemany/gists', 'https://api.github.com/users/awemany/starred', 'https://api.github.com/users/awemany/repos', 'https://api.github.com/users/awemany/events', 'https://api.github.com/users/awemany/received_events', 0); +INSERT INTO `developer` VALUES (14014254, 'ankitjain28may', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ankit Jain', '@Razorpay', 'https://ankitjain28.me/', 'Bangalore', 'ankitjain28may77@gmail.com', 'true', 'DevOps Engineer @razorpay | GSoC alum @drupal | #GitHubCampusExpert | GCI mentor @drupal | Speaker | Writer', 'ankitjain28may', 0, 0, 216, 157, 0, 0, 0, '2015-08-28T10:29:36Z', '2024-10-20T11:37:59Z', 'https://avatars.githubusercontent.com/u/14014254?v=4', 'https://api.github.com/users/ankitjain28may', 'https://github.com/ankitjain28may', 'https://api.github.com/users/ankitjain28may/followers', 'https://api.github.com/users/ankitjain28may/following', 'https://api.github.com/users/ankitjain28may/gists', 'https://api.github.com/users/ankitjain28may/starred', 'https://api.github.com/users/ankitjain28may/repos', 'https://api.github.com/users/ankitjain28may/events', 'https://api.github.com/users/ankitjain28may/received_events', 0); +INSERT INTO `developer` VALUES (14102616, 'ogugu9', 'C', 0, 0, 0, 0, 0, 0, 0, 'ogugu', 'freee', '', 'Tokyo', 'e.cos.isin@gmail.com', 'true', NULL, 'ogugudayo', 0, 0, 18, 13, 0, 0, 0, '2015-09-03T02:09:23Z', '2024-10-22T11:32:25Z', 'https://avatars.githubusercontent.com/u/14102616?v=4', 'https://api.github.com/users/ogugu9', 'https://github.com/ogugu9', 'https://api.github.com/users/ogugu9/followers', 'https://api.github.com/users/ogugu9/following', 'https://api.github.com/users/ogugu9/gists', 'https://api.github.com/users/ogugu9/starred', 'https://api.github.com/users/ogugu9/repos', 'https://api.github.com/users/ogugu9/events', 'https://api.github.com/users/ogugu9/received_events', 0); +INSERT INTO `developer` VALUES (14179520, 'eerkunt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emre Erkunt', NULL, '', 'London, UK', NULL, NULL, 'Jack of all trades, master of none.', NULL, 0, 0, 135, 12, 0, 0, 0, '2015-09-08T12:28:48Z', '2024-11-02T11:26:08Z', 'https://avatars.githubusercontent.com/u/14179520?v=4', 'https://api.github.com/users/eerkunt', 'https://github.com/eerkunt', 'https://api.github.com/users/eerkunt/followers', 'https://api.github.com/users/eerkunt/following', 'https://api.github.com/users/eerkunt/gists', 'https://api.github.com/users/eerkunt/starred', 'https://api.github.com/users/eerkunt/repos', 'https://api.github.com/users/eerkunt/events', 'https://api.github.com/users/eerkunt/received_events', 0); +INSERT INTO `developer` VALUES (14220652, 'conscott', 'C', 0, 0, 0, 0, 0, 0, 0, 'Conor Scott', 'ConorTech', 'https://conscott.info', 'France', 'conor.r.scott.88@gmail.com', 'true', 'Bitcoin never dies. ', NULL, 0, 0, 28, 15, 0, 0, 0, '2015-09-10T15:48:06Z', '2024-07-17T07:22:04Z', 'https://avatars.githubusercontent.com/u/14220652?v=4', 'https://api.github.com/users/conscott', 'https://github.com/conscott', 'https://api.github.com/users/conscott/followers', 'https://api.github.com/users/conscott/following', 'https://api.github.com/users/conscott/gists', 'https://api.github.com/users/conscott/starred', 'https://api.github.com/users/conscott/repos', 'https://api.github.com/users/conscott/events', 'https://api.github.com/users/conscott/received_events', 0); +INSERT INTO `developer` VALUES (14328436, 'andrewkavalionak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrew Kavalionak', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2015-09-17T09:39:23Z', '2018-11-20T09:08:25Z', 'https://avatars.githubusercontent.com/u/14328436?v=4', 'https://api.github.com/users/andrewkavalionak', 'https://github.com/andrewkavalionak', 'https://api.github.com/users/andrewkavalionak/followers', 'https://api.github.com/users/andrewkavalionak/following', 'https://api.github.com/users/andrewkavalionak/gists', 'https://api.github.com/users/andrewkavalionak/starred', 'https://api.github.com/users/andrewkavalionak/repos', 'https://api.github.com/users/andrewkavalionak/events', 'https://api.github.com/users/andrewkavalionak/received_events', 0); +INSERT INTO `developer` VALUES (14330209, 'AngleNet', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'anglenet.github.io/blog', 'ChengDu China', NULL, NULL, 'Fight for safe code !!!', NULL, 0, 0, 25, 111, 0, 0, 0, '2015-09-17T12:05:48Z', '2024-09-11T13:22:31Z', 'https://avatars.githubusercontent.com/u/14330209?v=4', 'https://api.github.com/users/AngleNet', 'https://github.com/AngleNet', 'https://api.github.com/users/AngleNet/followers', 'https://api.github.com/users/AngleNet/following', 'https://api.github.com/users/AngleNet/gists', 'https://api.github.com/users/AngleNet/starred', 'https://api.github.com/users/AngleNet/repos', 'https://api.github.com/users/AngleNet/events', 'https://api.github.com/users/AngleNet/received_events', 0); +INSERT INTO `developer` VALUES (14851307, 'fllaca', 'C', 0, 0, 0, 0, 0, 0, 0, 'Fernando Llaca', NULL, 'http://twitter.com/NandoLlaca', '未知', NULL, NULL, 'Code is a metaphore', NULL, 0, 0, 31, 9, 0, 0, 0, '2015-09-26T15:40:30Z', '2024-10-31T10:42:07Z', 'https://avatars.githubusercontent.com/u/14851307?v=4', 'https://api.github.com/users/fllaca', 'https://github.com/fllaca', 'https://api.github.com/users/fllaca/followers', 'https://api.github.com/users/fllaca/following', 'https://api.github.com/users/fllaca/gists', 'https://api.github.com/users/fllaca/starred', 'https://api.github.com/users/fllaca/repos', 'https://api.github.com/users/fllaca/events', 'https://api.github.com/users/fllaca/received_events', 0); +INSERT INTO `developer` VALUES (14923414, 'awwithro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Withrow', 'Artisan Insight', '', 'Denver, CO', 'alex@artisaninsight.com', NULL, 'Cofounder @ Artisan Insight', NULL, 0, 0, 6, 1, 0, 0, 0, '2015-10-01T10:59:20Z', '2024-10-28T13:51:48Z', 'https://avatars.githubusercontent.com/u/14923414?v=4', 'https://api.github.com/users/awwithro', 'https://github.com/awwithro', 'https://api.github.com/users/awwithro/followers', 'https://api.github.com/users/awwithro/following', 'https://api.github.com/users/awwithro/gists', 'https://api.github.com/users/awwithro/starred', 'https://api.github.com/users/awwithro/repos', 'https://api.github.com/users/awwithro/events', 'https://api.github.com/users/awwithro/received_events', 0); +INSERT INTO `developer` VALUES (14986757, 'jinhyukchang', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jin Hyuk Chang', 'Lyft', '', 'San Francisco, CA', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2015-10-05T21:51:11Z', '2023-07-01T00:11:31Z', 'https://avatars.githubusercontent.com/u/14986757?v=4', 'https://api.github.com/users/jinhyukchang', 'https://github.com/jinhyukchang', 'https://api.github.com/users/jinhyukchang/followers', 'https://api.github.com/users/jinhyukchang/following', 'https://api.github.com/users/jinhyukchang/gists', 'https://api.github.com/users/jinhyukchang/starred', 'https://api.github.com/users/jinhyukchang/repos', 'https://api.github.com/users/jinhyukchang/events', 'https://api.github.com/users/jinhyukchang/received_events', 0); +INSERT INTO `developer` VALUES (15024405, 'slaterx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gleidson Nascimento', 'Urvin Finance', '', 'Wellington, NZ', 'slaterx@live.com', 'true', NULL, 'slaterx', 0, 0, 20, 1, 0, 0, 0, '2015-10-08T01:45:11Z', '2024-10-05T23:23:14Z', 'https://avatars.githubusercontent.com/u/15024405?v=4', 'https://api.github.com/users/slaterx', 'https://github.com/slaterx', 'https://api.github.com/users/slaterx/followers', 'https://api.github.com/users/slaterx/following', 'https://api.github.com/users/slaterx/gists', 'https://api.github.com/users/slaterx/starred', 'https://api.github.com/users/slaterx/repos', 'https://api.github.com/users/slaterx/events', 'https://api.github.com/users/slaterx/received_events', 0); +INSERT INTO `developer` VALUES (15034155, 'g1eny0ung', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yue Yang', NULL, 'https://g1en.site', 'Beijing, China', 'g1enyy0ung@gmail.com', 'true', 'Enjoy life in your own way. 🎐\r\n\r\nMaintainer of @chaos-mesh.\r\n\r\nFormer @pingcap.', 'g1eny0ung', 0, 0, 187, 87, 0, 0, 0, '2015-10-08T14:12:01Z', '2024-09-02T10:14:27Z', 'https://avatars.githubusercontent.com/u/15034155?v=4', 'https://api.github.com/users/g1eny0ung', 'https://github.com/g1eny0ung', 'https://api.github.com/users/g1eny0ung/followers', 'https://api.github.com/users/g1eny0ung/following', 'https://api.github.com/users/g1eny0ung/gists', 'https://api.github.com/users/g1eny0ung/starred', 'https://api.github.com/users/g1eny0ung/repos', 'https://api.github.com/users/g1eny0ung/events', 'https://api.github.com/users/g1eny0ung/received_events', 0); +INSERT INTO `developer` VALUES (15091838, 'MichelKansou', 'C', 0, 0, 0, 0, 0, 0, 0, 'Michel Kansou', 'Disney', 'https://michelkansou.github.io/', 'Andorra', 'michel.kansou@viacesi.fr', 'true', 'Software Developer 🦁 ⚡️\r\nBitcoin enthusiast\r\n', NULL, 0, 0, 21, 15, 0, 0, 0, '2015-10-12T15:35:41Z', '2024-10-16T11:28:24Z', 'https://avatars.githubusercontent.com/u/15091838?v=4', 'https://api.github.com/users/MichelKansou', 'https://github.com/MichelKansou', 'https://api.github.com/users/MichelKansou/followers', 'https://api.github.com/users/MichelKansou/following', 'https://api.github.com/users/MichelKansou/gists', 'https://api.github.com/users/MichelKansou/starred', 'https://api.github.com/users/MichelKansou/repos', 'https://api.github.com/users/MichelKansou/events', 'https://api.github.com/users/MichelKansou/received_events', 0); +INSERT INTO `developer` VALUES (15171720, 'lukeplausin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luke Plausin', NULL, 'https://luke.plaus.in/', 'London, GB', NULL, NULL, 'Cloud, Python, NodeJS, Embedded, IoT, Emerging Tech. \r\n\r\nRead my blog!\r\nhttps://luke.plaus.in/', NULL, 0, 0, 10, 9, 0, 0, 0, '2015-10-17T14:09:20Z', '2024-09-03T23:10:32Z', 'https://avatars.githubusercontent.com/u/15171720?v=4', 'https://api.github.com/users/lukeplausin', 'https://github.com/lukeplausin', 'https://api.github.com/users/lukeplausin/followers', 'https://api.github.com/users/lukeplausin/following', 'https://api.github.com/users/lukeplausin/gists', 'https://api.github.com/users/lukeplausin/starred', 'https://api.github.com/users/lukeplausin/repos', 'https://api.github.com/users/lukeplausin/events', 'https://api.github.com/users/lukeplausin/received_events', 0); +INSERT INTO `developer` VALUES (15193941, 'afoninsky', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrey Afoninsky', NULL, '', 'Saint Petersburg', 'vkfont@gmail.com', NULL, NULL, NULL, 0, 0, 14, 4, 0, 0, 0, '2015-10-19T10:32:57Z', '2024-09-05T12:15:13Z', 'https://avatars.githubusercontent.com/u/15193941?v=4', 'https://api.github.com/users/afoninsky', 'https://github.com/afoninsky', 'https://api.github.com/users/afoninsky/followers', 'https://api.github.com/users/afoninsky/following', 'https://api.github.com/users/afoninsky/gists', 'https://api.github.com/users/afoninsky/starred', 'https://api.github.com/users/afoninsky/repos', 'https://api.github.com/users/afoninsky/events', 'https://api.github.com/users/afoninsky/received_events', 0); +INSERT INTO `developer` VALUES (15531173, 'aarvee11', 'C', 0, 0, 0, 0, 0, 0, 0, 'aarvee', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 18, 0, 0, 0, '2015-11-01T06:10:35Z', '2024-10-30T09:47:29Z', 'https://avatars.githubusercontent.com/u/15531173?v=4', 'https://api.github.com/users/aarvee11', 'https://github.com/aarvee11', 'https://api.github.com/users/aarvee11/followers', 'https://api.github.com/users/aarvee11/following', 'https://api.github.com/users/aarvee11/gists', 'https://api.github.com/users/aarvee11/starred', 'https://api.github.com/users/aarvee11/repos', 'https://api.github.com/users/aarvee11/events', 'https://api.github.com/users/aarvee11/received_events', 0); +INSERT INTO `developer` VALUES (15611634, 'BeyondEvil', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jim Brännlund', NULL, '', 'Sweden', NULL, NULL, NULL, NULL, 0, 0, 20, 0, 0, 0, 0, '2015-11-02T13:08:12Z', '2024-09-28T12:48:21Z', 'https://avatars.githubusercontent.com/u/15611634?v=4', 'https://api.github.com/users/BeyondEvil', 'https://github.com/BeyondEvil', 'https://api.github.com/users/BeyondEvil/followers', 'https://api.github.com/users/BeyondEvil/following', 'https://api.github.com/users/BeyondEvil/gists', 'https://api.github.com/users/BeyondEvil/starred', 'https://api.github.com/users/BeyondEvil/repos', 'https://api.github.com/users/BeyondEvil/events', 'https://api.github.com/users/BeyondEvil/received_events', 0); +INSERT INTO `developer` VALUES (15668291, 'vanneback', 'C', 0, 0, 0, 0, 0, 0, 0, 'Emil', 'elastisys', '', 'Umeå, Sweden', 'emil.vanneback@elastisys.com', NULL, 'Working mainly in the CNCF landscape. Running infrastructure with kubernetes and related tools.', NULL, 0, 0, 2, 0, 0, 0, 0, '2015-11-05T09:13:27Z', '2023-11-16T14:43:43Z', 'https://avatars.githubusercontent.com/u/15668291?v=4', 'https://api.github.com/users/vanneback', 'https://github.com/vanneback', 'https://api.github.com/users/vanneback/followers', 'https://api.github.com/users/vanneback/following', 'https://api.github.com/users/vanneback/gists', 'https://api.github.com/users/vanneback/starred', 'https://api.github.com/users/vanneback/repos', 'https://api.github.com/users/vanneback/events', 'https://api.github.com/users/vanneback/received_events', 0); +INSERT INTO `developer` VALUES (15823999, 'viettaml', 'C', 0, 0, 0, 0, 0, 0, 0, 'Viet-Tam Luu', 'Google LLC', 'https://www.google.com/earth/', 'Mountain View, California, USA', NULL, NULL, 'Senior Software Engineer, Google Earth', NULL, 0, 0, 1, 0, 0, 0, 0, '2015-11-12T21:36:09Z', '2023-01-06T17:57:35Z', 'https://avatars.githubusercontent.com/u/15823999?v=4', 'https://api.github.com/users/viettaml', 'https://github.com/viettaml', 'https://api.github.com/users/viettaml/followers', 'https://api.github.com/users/viettaml/following', 'https://api.github.com/users/viettaml/gists', 'https://api.github.com/users/viettaml/starred', 'https://api.github.com/users/viettaml/repos', 'https://api.github.com/users/viettaml/events', 'https://api.github.com/users/viettaml/received_events', 0); +INSERT INTO `developer` VALUES (15889474, 'mtfelian', 'C', 0, 0, 0, 0, 0, 0, 0, 'Artemii Shepelev', NULL, '', 'Russia', NULL, NULL, NULL, NULL, 0, 0, 3, 16, 0, 0, 0, '2015-11-17T12:21:38Z', '2024-10-09T14:12:24Z', 'https://avatars.githubusercontent.com/u/15889474?v=4', 'https://api.github.com/users/mtfelian', 'https://github.com/mtfelian', 'https://api.github.com/users/mtfelian/followers', 'https://api.github.com/users/mtfelian/following', 'https://api.github.com/users/mtfelian/gists', 'https://api.github.com/users/mtfelian/starred', 'https://api.github.com/users/mtfelian/repos', 'https://api.github.com/users/mtfelian/events', 'https://api.github.com/users/mtfelian/received_events', 0); +INSERT INTO `developer` VALUES (16011087, 'ttrolololll', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2015-11-25T05:05:44Z', '2024-10-28T06:44:46Z', 'https://avatars.githubusercontent.com/u/16011087?v=4', 'https://api.github.com/users/ttrolololll', 'https://github.com/ttrolololll', 'https://api.github.com/users/ttrolololll/followers', 'https://api.github.com/users/ttrolololll/following', 'https://api.github.com/users/ttrolololll/gists', 'https://api.github.com/users/ttrolololll/starred', 'https://api.github.com/users/ttrolololll/repos', 'https://api.github.com/users/ttrolololll/events', 'https://api.github.com/users/ttrolololll/received_events', 0); +INSERT INTO `developer` VALUES (16047455, 'paichinger', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 2, 0, 0, 0, '2015-11-27T13:35:05Z', '2024-09-13T09:49:31Z', 'https://avatars.githubusercontent.com/u/16047455?v=4', 'https://api.github.com/users/paichinger', 'https://github.com/paichinger', 'https://api.github.com/users/paichinger/followers', 'https://api.github.com/users/paichinger/following', 'https://api.github.com/users/paichinger/gists', 'https://api.github.com/users/paichinger/starred', 'https://api.github.com/users/paichinger/repos', 'https://api.github.com/users/paichinger/events', 'https://api.github.com/users/paichinger/received_events', 0); +INSERT INTO `developer` VALUES (16206754, 'joaopaulofonseca', 'C', 0, 0, 0, 0, 0, 0, 0, 'João Fonseca', NULL, '', '未知', 'joao.fonseca@uphold.com', NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2015-12-08T11:25:55Z', '2024-04-29T20:38:21Z', 'https://avatars.githubusercontent.com/u/16206754?v=4', 'https://api.github.com/users/joaopaulofonseca', 'https://github.com/joaopaulofonseca', 'https://api.github.com/users/joaopaulofonseca/followers', 'https://api.github.com/users/joaopaulofonseca/following', 'https://api.github.com/users/joaopaulofonseca/gists', 'https://api.github.com/users/joaopaulofonseca/starred', 'https://api.github.com/users/joaopaulofonseca/repos', 'https://api.github.com/users/joaopaulofonseca/events', 'https://api.github.com/users/joaopaulofonseca/received_events', 0); +INSERT INTO `developer` VALUES (16238479, 'premsvmm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Premkumar', 'Razorpay', 'https://premsvmm.com', 'Bengaluru', 'prem.svmm@gmail.com', NULL, 'Staff SDET at Razorpay', 'PremSvmm', 0, 0, 2, 1, 0, 0, 0, '2015-12-10T09:50:33Z', '2024-10-29T01:36:14Z', 'https://avatars.githubusercontent.com/u/16238479?v=4', 'https://api.github.com/users/premsvmm', 'https://github.com/premsvmm', 'https://api.github.com/users/premsvmm/followers', 'https://api.github.com/users/premsvmm/following', 'https://api.github.com/users/premsvmm/gists', 'https://api.github.com/users/premsvmm/starred', 'https://api.github.com/users/premsvmm/repos', 'https://api.github.com/users/premsvmm/events', 'https://api.github.com/users/premsvmm/received_events', 0); +INSERT INTO `developer` VALUES (16321214, 'alles-klar', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2015-12-16T12:30:46Z', '2024-10-18T11:36:09Z', 'https://avatars.githubusercontent.com/u/16321214?v=4', 'https://api.github.com/users/alles-klar', 'https://github.com/alles-klar', 'https://api.github.com/users/alles-klar/followers', 'https://api.github.com/users/alles-klar/following', 'https://api.github.com/users/alles-klar/gists', 'https://api.github.com/users/alles-klar/starred', 'https://api.github.com/users/alles-klar/repos', 'https://api.github.com/users/alles-klar/events', 'https://api.github.com/users/alles-klar/received_events', 0); +INSERT INTO `developer` VALUES (16388632, 'Aquentus', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 4, 0, 0, 0, '2015-12-21T17:50:57Z', '2016-03-14T17:34:52Z', 'https://avatars.githubusercontent.com/u/16388632?v=4', 'https://api.github.com/users/Aquentus', 'https://github.com/Aquentus', 'https://api.github.com/users/Aquentus/followers', 'https://api.github.com/users/Aquentus/following', 'https://api.github.com/users/Aquentus/gists', 'https://api.github.com/users/Aquentus/starred', 'https://api.github.com/users/Aquentus/repos', 'https://api.github.com/users/Aquentus/events', 'https://api.github.com/users/Aquentus/received_events', 0); +INSERT INTO `developer` VALUES (16437100, 'fewdan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yihao Fu', NULL, '', 'China', NULL, NULL, NULL, NULL, 0, 0, 21, 0, 0, 0, 0, '2015-12-25T14:12:50Z', '2024-04-09T16:53:29Z', 'https://avatars.githubusercontent.com/u/16437100?v=4', 'https://api.github.com/users/fewdan', 'https://github.com/fewdan', 'https://api.github.com/users/fewdan/followers', 'https://api.github.com/users/fewdan/following', 'https://api.github.com/users/fewdan/gists', 'https://api.github.com/users/fewdan/starred', 'https://api.github.com/users/fewdan/repos', 'https://api.github.com/users/fewdan/events', 'https://api.github.com/users/fewdan/received_events', 0); +INSERT INTO `developer` VALUES (16498973, 'gm42', 'C', 0, 0, 0, 0, 0, 0, 0, 'Giuseppe', '@firebolt-analytics ', '', 'Amsterdam', NULL, NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2015-12-31T09:12:23Z', '2024-10-20T10:07:58Z', 'https://avatars.githubusercontent.com/u/16498973?v=4', 'https://api.github.com/users/gm42', 'https://github.com/gm42', 'https://api.github.com/users/gm42/followers', 'https://api.github.com/users/gm42/following', 'https://api.github.com/users/gm42/gists', 'https://api.github.com/users/gm42/starred', 'https://api.github.com/users/gm42/repos', 'https://api.github.com/users/gm42/events', 'https://api.github.com/users/gm42/received_events', 0); +INSERT INTO `developer` VALUES (16540942, 'akremsa', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexey', NULL, '', '未知', NULL, NULL, 'Golang developer', NULL, 0, 0, 2, 2, 0, 0, 0, '2016-01-04T14:02:42Z', '2023-07-15T10:44:30Z', 'https://avatars.githubusercontent.com/u/16540942?v=4', 'https://api.github.com/users/akremsa', 'https://github.com/akremsa', 'https://api.github.com/users/akremsa/followers', 'https://api.github.com/users/akremsa/following', 'https://api.github.com/users/akremsa/gists', 'https://api.github.com/users/akremsa/starred', 'https://api.github.com/users/akremsa/repos', 'https://api.github.com/users/akremsa/events', 'https://api.github.com/users/akremsa/received_events', 0); +INSERT INTO `developer` VALUES (16613123, 'ftrader', 'C', 0, 0, 0, 0, 0, 0, 0, 'freetrader', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 31, 1, 0, 0, 0, '2016-01-08T16:57:44Z', '2023-12-12T21:14:25Z', 'https://avatars.githubusercontent.com/u/16613123?v=4', 'https://api.github.com/users/ftrader', 'https://github.com/ftrader', 'https://api.github.com/users/ftrader/followers', 'https://api.github.com/users/ftrader/following', 'https://api.github.com/users/ftrader/gists', 'https://api.github.com/users/ftrader/starred', 'https://api.github.com/users/ftrader/repos', 'https://api.github.com/users/ftrader/events', 'https://api.github.com/users/ftrader/received_events', 0); +INSERT INTO `developer` VALUES (16665949, 'SartoNess', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sarto', 'ww', '', 'Japan', NULL, NULL, '1LfiETG1hXiPuaP5xzZZib2eTsBQhDCwH9', NULL, 0, 0, 0, 1, 0, 0, 0, '2016-01-12T11:58:47Z', '2017-10-28T22:19:19Z', 'https://avatars.githubusercontent.com/u/16665949?v=4', 'https://api.github.com/users/SartoNess', 'https://github.com/SartoNess', 'https://api.github.com/users/SartoNess/followers', 'https://api.github.com/users/SartoNess/following', 'https://api.github.com/users/SartoNess/gists', 'https://api.github.com/users/SartoNess/starred', 'https://api.github.com/users/SartoNess/repos', 'https://api.github.com/users/SartoNess/events', 'https://api.github.com/users/SartoNess/received_events', 0); +INSERT INTO `developer` VALUES (16930240, 'rosejcday', 'C', 0, 0, 0, 0, 0, 0, 0, 'rosejcday', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 9, 2, 0, 0, 0, '2016-01-28T03:23:57Z', '2021-03-15T23:50:13Z', 'https://avatars.githubusercontent.com/u/16930240?v=4', 'https://api.github.com/users/rosejcday', 'https://github.com/rosejcday', 'https://api.github.com/users/rosejcday/followers', 'https://api.github.com/users/rosejcday/following', 'https://api.github.com/users/rosejcday/gists', 'https://api.github.com/users/rosejcday/starred', 'https://api.github.com/users/rosejcday/repos', 'https://api.github.com/users/rosejcday/events', 'https://api.github.com/users/rosejcday/received_events', 0); +INSERT INTO `developer` VALUES (17042479, 'kagahd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kay Agahd', 'idealo', 'https://www.idealo.de/', 'Berlin', NULL, NULL, 'Software developer and security engineer.', NULL, 0, 0, 18, 3, 0, 0, 0, '2016-02-03T08:52:44Z', '2024-08-25T13:07:07Z', 'https://avatars.githubusercontent.com/u/17042479?v=4', 'https://api.github.com/users/kagahd', 'https://github.com/kagahd', 'https://api.github.com/users/kagahd/followers', 'https://api.github.com/users/kagahd/following', 'https://api.github.com/users/kagahd/gists', 'https://api.github.com/users/kagahd/starred', 'https://api.github.com/users/kagahd/repos', 'https://api.github.com/users/kagahd/events', 'https://api.github.com/users/kagahd/received_events', 0); +INSERT INTO `developer` VALUES (17076802, 'a1ec', 'C', 0, 0, 0, 0, 0, 0, 0, 'A C', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2016-02-05T03:01:53Z', '2024-08-26T19:40:14Z', 'https://avatars.githubusercontent.com/u/17076802?v=4', 'https://api.github.com/users/a1ec', 'https://github.com/a1ec', 'https://api.github.com/users/a1ec/followers', 'https://api.github.com/users/a1ec/following', 'https://api.github.com/users/a1ec/gists', 'https://api.github.com/users/a1ec/starred', 'https://api.github.com/users/a1ec/repos', 'https://api.github.com/users/a1ec/events', 'https://api.github.com/users/a1ec/received_events', 0); +INSERT INTO `developer` VALUES (17157801, 'harmjanblok', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2016-02-10T09:25:17Z', '2024-10-22T15:33:41Z', 'https://avatars.githubusercontent.com/u/17157801?v=4', 'https://api.github.com/users/harmjanblok', 'https://github.com/harmjanblok', 'https://api.github.com/users/harmjanblok/followers', 'https://api.github.com/users/harmjanblok/following', 'https://api.github.com/users/harmjanblok/gists', 'https://api.github.com/users/harmjanblok/starred', 'https://api.github.com/users/harmjanblok/repos', 'https://api.github.com/users/harmjanblok/events', 'https://api.github.com/users/harmjanblok/received_events', 0); +INSERT INTO `developer` VALUES (17161846, 'AsierRF', 'C', 0, 0, 0, 0, 0, 0, 0, 'Asier', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2016-02-10T14:30:29Z', '2024-10-21T12:11:56Z', 'https://avatars.githubusercontent.com/u/17161846?v=4', 'https://api.github.com/users/AsierRF', 'https://github.com/AsierRF', 'https://api.github.com/users/AsierRF/followers', 'https://api.github.com/users/AsierRF/following', 'https://api.github.com/users/AsierRF/gists', 'https://api.github.com/users/AsierRF/starred', 'https://api.github.com/users/AsierRF/repos', 'https://api.github.com/users/AsierRF/events', 'https://api.github.com/users/AsierRF/received_events', 0); +INSERT INTO `developer` VALUES (17177924, 'no-sec-marko', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marko', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2016-02-11T13:02:52Z', '2024-07-25T11:06:59Z', 'https://avatars.githubusercontent.com/u/17177924?v=4', 'https://api.github.com/users/no-sec-marko', 'https://github.com/no-sec-marko', 'https://api.github.com/users/no-sec-marko/followers', 'https://api.github.com/users/no-sec-marko/following', 'https://api.github.com/users/no-sec-marko/gists', 'https://api.github.com/users/no-sec-marko/starred', 'https://api.github.com/users/no-sec-marko/repos', 'https://api.github.com/users/no-sec-marko/events', 'https://api.github.com/users/no-sec-marko/received_events', 0); +INSERT INTO `developer` VALUES (17189683, 'chrismellard', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Mellard', NULL, '', 'New Zealand', NULL, NULL, NULL, NULL, 0, 0, 16, 2, 0, 0, 0, '2016-02-12T03:22:37Z', '2024-10-13T11:27:55Z', 'https://avatars.githubusercontent.com/u/17189683?v=4', 'https://api.github.com/users/chrismellard', 'https://github.com/chrismellard', 'https://api.github.com/users/chrismellard/followers', 'https://api.github.com/users/chrismellard/following', 'https://api.github.com/users/chrismellard/gists', 'https://api.github.com/users/chrismellard/starred', 'https://api.github.com/users/chrismellard/repos', 'https://api.github.com/users/chrismellard/events', 'https://api.github.com/users/chrismellard/received_events', 0); +INSERT INTO `developer` VALUES (17215988, 'propersam', 'C', 0, 0, 0, 0, 0, 0, 0, 'Samuel Ameh', NULL, '', 'Lagos, Nigeria', 'propersam2012@gmail.com', NULL, 'Simple, straight to the point and a fast learner | Software Developer | Data-science / Machine-learning enthusiasts | Bug Researcher in the making', NULL, 0, 0, 14, 5, 0, 0, 0, '2016-02-13T10:48:09Z', '2024-09-17T19:13:47Z', 'https://avatars.githubusercontent.com/u/17215988?v=4', 'https://api.github.com/users/propersam', 'https://github.com/propersam', 'https://api.github.com/users/propersam/followers', 'https://api.github.com/users/propersam/following', 'https://api.github.com/users/propersam/gists', 'https://api.github.com/users/propersam/starred', 'https://api.github.com/users/propersam/repos', 'https://api.github.com/users/propersam/events', 'https://api.github.com/users/propersam/received_events', 0); +INSERT INTO `developer` VALUES (17292393, 'sterchelen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nicolas Sterchele', NULL, 'https://www.sterchelen.net', '未知', 'nicolas@sterchelen.net', NULL, 'Street-fighting unix geek', NULL, 0, 0, 17, 12, 0, 0, 0, '2016-02-17T10:58:40Z', '2024-10-05T05:20:05Z', 'https://avatars.githubusercontent.com/u/17292393?v=4', 'https://api.github.com/users/sterchelen', 'https://github.com/sterchelen', 'https://api.github.com/users/sterchelen/followers', 'https://api.github.com/users/sterchelen/following', 'https://api.github.com/users/sterchelen/gists', 'https://api.github.com/users/sterchelen/starred', 'https://api.github.com/users/sterchelen/repos', 'https://api.github.com/users/sterchelen/events', 'https://api.github.com/users/sterchelen/received_events', 0); +INSERT INTO `developer` VALUES (17550475, 'dud225', 'C', 0, 0, 0, 0, 0, 0, 0, 'Hervé', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2016-02-29T16:10:36Z', '2024-11-04T14:45:13Z', 'https://avatars.githubusercontent.com/u/17550475?v=4', 'https://api.github.com/users/dud225', 'https://github.com/dud225', 'https://api.github.com/users/dud225/followers', 'https://api.github.com/users/dud225/following', 'https://api.github.com/users/dud225/gists', 'https://api.github.com/users/dud225/starred', 'https://api.github.com/users/dud225/repos', 'https://api.github.com/users/dud225/events', 'https://api.github.com/users/dud225/received_events', 0); +INSERT INTO `developer` VALUES (17579850, 'Evesy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Eves', '@autotraderuk ', '', 'Manchester, United Kingdom', NULL, NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2016-03-01T21:49:06Z', '2024-10-28T09:41:17Z', 'https://avatars.githubusercontent.com/u/17579850?v=4', 'https://api.github.com/users/Evesy', 'https://github.com/Evesy', 'https://api.github.com/users/Evesy/followers', 'https://api.github.com/users/Evesy/following', 'https://api.github.com/users/Evesy/gists', 'https://api.github.com/users/Evesy/starred', 'https://api.github.com/users/Evesy/repos', 'https://api.github.com/users/Evesy/events', 'https://api.github.com/users/Evesy/received_events', 0); +INSERT INTO `developer` VALUES (17654553, 'macedogm', 'C', 0, 0, 0, 0, 0, 0, 0, 'Guilherme Macedo', '@suse @rancher', 'gmacedo.com', 'Brazil', 'guilherme.macedo@suse.com', NULL, 'Security tech lead @SUSE @rancher', NULL, 0, 0, 28, 40, 0, 0, 0, '2016-03-04T20:16:26Z', '2024-10-28T10:04:35Z', 'https://avatars.githubusercontent.com/u/17654553?v=4', 'https://api.github.com/users/macedogm', 'https://github.com/macedogm', 'https://api.github.com/users/macedogm/followers', 'https://api.github.com/users/macedogm/following', 'https://api.github.com/users/macedogm/gists', 'https://api.github.com/users/macedogm/starred', 'https://api.github.com/users/macedogm/repos', 'https://api.github.com/users/macedogm/events', 'https://api.github.com/users/macedogm/received_events', 0); +INSERT INTO `developer` VALUES (17666471, 'aimuz', 'C', 0, 0, 0, 0, 0, 0, 0, 'aimuz', NULL, '', '未知', 'mr.imuz@gmail.com', 'true', 'I am actively seeking job opportunities in the field of cloud-native technologies.', NULL, 0, 0, 27, 36, 0, 0, 0, '2016-03-05T06:40:45Z', '2024-10-24T07:12:17Z', 'https://avatars.githubusercontent.com/u/17666471?v=4', 'https://api.github.com/users/aimuz', 'https://github.com/aimuz', 'https://api.github.com/users/aimuz/followers', 'https://api.github.com/users/aimuz/following', 'https://api.github.com/users/aimuz/gists', 'https://api.github.com/users/aimuz/starred', 'https://api.github.com/users/aimuz/repos', 'https://api.github.com/users/aimuz/events', 'https://api.github.com/users/aimuz/received_events', 0); +INSERT INTO `developer` VALUES (17730030, '37b', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Fort', 'LexisNexis', 'http://chrisfort.com', 'Apex, NC', NULL, NULL, NULL, NULL, 0, 0, 2, 6, 0, 0, 0, '2016-03-08T18:59:08Z', '2024-10-25T14:11:41Z', 'https://avatars.githubusercontent.com/u/17730030?v=4', 'https://api.github.com/users/37b', 'https://github.com/37b', 'https://api.github.com/users/37b/followers', 'https://api.github.com/users/37b/following', 'https://api.github.com/users/37b/gists', 'https://api.github.com/users/37b/starred', 'https://api.github.com/users/37b/repos', 'https://api.github.com/users/37b/events', 'https://api.github.com/users/37b/received_events', 0); +INSERT INTO `developer` VALUES (17787069, 'Apipia', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anthony', NULL, '', '未知', NULL, NULL, 'Cybersecurity Engineer and Pentester. ', NULL, 0, 0, 9, 3, 0, 0, 0, '2016-03-11T17:03:06Z', '2023-10-20T18:11:30Z', 'https://avatars.githubusercontent.com/u/17787069?v=4', 'https://api.github.com/users/Apipia', 'https://github.com/Apipia', 'https://api.github.com/users/Apipia/followers', 'https://api.github.com/users/Apipia/following', 'https://api.github.com/users/Apipia/gists', 'https://api.github.com/users/Apipia/starred', 'https://api.github.com/users/Apipia/repos', 'https://api.github.com/users/Apipia/events', 'https://api.github.com/users/Apipia/received_events', 0); +INSERT INTO `developer` VALUES (17905856, 'lotus-wu', 'C', 0, 0, 0, 0, 0, 0, 0, 'lotus.wu', NULL, '', 'china', 'lotus.wu@outlook.com', NULL, '飞鱼(●\'◡\'●)', NULL, 0, 0, 4, 6, 0, 0, 0, '2016-03-17T13:42:05Z', '2019-08-23T02:39:10Z', 'https://avatars.githubusercontent.com/u/17905856?v=4', 'https://api.github.com/users/lotus-wu', 'https://github.com/lotus-wu', 'https://api.github.com/users/lotus-wu/followers', 'https://api.github.com/users/lotus-wu/following', 'https://api.github.com/users/lotus-wu/gists', 'https://api.github.com/users/lotus-wu/starred', 'https://api.github.com/users/lotus-wu/repos', 'https://api.github.com/users/lotus-wu/events', 'https://api.github.com/users/lotus-wu/received_events', 0); +INSERT INTO `developer` VALUES (17934356, 'ember-tomster', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 68, 0, 0, 0, 0, '2016-03-18T18:43:57Z', '2021-01-06T16:10:22Z', 'https://avatars.githubusercontent.com/u/17934356?v=4', 'https://api.github.com/users/ember-tomster', 'https://github.com/ember-tomster', 'https://api.github.com/users/ember-tomster/followers', 'https://api.github.com/users/ember-tomster/following', 'https://api.github.com/users/ember-tomster/gists', 'https://api.github.com/users/ember-tomster/starred', 'https://api.github.com/users/ember-tomster/repos', 'https://api.github.com/users/ember-tomster/events', 'https://api.github.com/users/ember-tomster/received_events', 0); +INSERT INTO `developer` VALUES (17982949, 'arkrwn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Arie Kurniawan', 'GoTo Financial', 'https://linkedin.com/in/arkrwn', 'Jakarta, Indonesia', 'arkrwn@proton.me', 'true', 'An enthusiast in the field of cybersecurity, currently focusing on DevSecOps and the development of software tools to support security needs.', NULL, 0, 0, 130, 10, 0, 0, 0, '2016-03-21T12:22:26Z', '2024-10-18T11:37:13Z', 'https://avatars.githubusercontent.com/u/17982949?v=4', 'https://api.github.com/users/arkrwn', 'https://github.com/arkrwn', 'https://api.github.com/users/arkrwn/followers', 'https://api.github.com/users/arkrwn/following', 'https://api.github.com/users/arkrwn/gists', 'https://api.github.com/users/arkrwn/starred', 'https://api.github.com/users/arkrwn/repos', 'https://api.github.com/users/arkrwn/events', 'https://api.github.com/users/arkrwn/received_events', 0); +INSERT INTO `developer` VALUES (18174818, 'shikhar7', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 3, 0, 0, 0, '2016-03-30T18:42:36Z', '2023-07-29T09:12:37Z', 'https://avatars.githubusercontent.com/u/18174818?v=4', 'https://api.github.com/users/shikhar7', 'https://github.com/shikhar7', 'https://api.github.com/users/shikhar7/followers', 'https://api.github.com/users/shikhar7/following', 'https://api.github.com/users/shikhar7/gists', 'https://api.github.com/users/shikhar7/starred', 'https://api.github.com/users/shikhar7/repos', 'https://api.github.com/users/shikhar7/events', 'https://api.github.com/users/shikhar7/received_events', 0); +INSERT INTO `developer` VALUES (18187486, 'jamesallured', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Allured', NULL, 'allured.me', '未知', NULL, NULL, NULL, 'jamesallured', 0, 0, 14, 20, 0, 0, 0, '2016-03-31T09:44:59Z', '2024-09-22T09:35:13Z', 'https://avatars.githubusercontent.com/u/18187486?v=4', 'https://api.github.com/users/jamesallured', 'https://github.com/jamesallured', 'https://api.github.com/users/jamesallured/followers', 'https://api.github.com/users/jamesallured/following', 'https://api.github.com/users/jamesallured/gists', 'https://api.github.com/users/jamesallured/starred', 'https://api.github.com/users/jamesallured/repos', 'https://api.github.com/users/jamesallured/events', 'https://api.github.com/users/jamesallured/received_events', 0); +INSERT INTO `developer` VALUES (18273620, 'BitcoinErrorLog', 'C', 0, 0, 0, 0, 0, 0, 0, 'John Carvalho', 'Synonym', 'https://synonym.to', 'Earth', NULL, NULL, 'CEO at Synonym.to', 'bitcoinerrorlog', 0, 0, 103, 144, 0, 0, 0, '2016-04-04T23:25:18Z', '2024-10-31T16:29:08Z', 'https://avatars.githubusercontent.com/u/18273620?v=4', 'https://api.github.com/users/BitcoinErrorLog', 'https://github.com/BitcoinErrorLog', 'https://api.github.com/users/BitcoinErrorLog/followers', 'https://api.github.com/users/BitcoinErrorLog/following', 'https://api.github.com/users/BitcoinErrorLog/gists', 'https://api.github.com/users/BitcoinErrorLog/starred', 'https://api.github.com/users/BitcoinErrorLog/repos', 'https://api.github.com/users/BitcoinErrorLog/events', 'https://api.github.com/users/BitcoinErrorLog/received_events', 0); +INSERT INTO `developer` VALUES (18283142, 'tovisen', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2016-04-05T09:58:16Z', '2017-11-11T16:53:41Z', 'https://avatars.githubusercontent.com/u/18283142?v=4', 'https://api.github.com/users/tovisen', 'https://github.com/tovisen', 'https://api.github.com/users/tovisen/followers', 'https://api.github.com/users/tovisen/following', 'https://api.github.com/users/tovisen/gists', 'https://api.github.com/users/tovisen/starred', 'https://api.github.com/users/tovisen/repos', 'https://api.github.com/users/tovisen/events', 'https://api.github.com/users/tovisen/received_events', 0); +INSERT INTO `developer` VALUES (18326194, 'bakalor', 'C', 0, 0, 0, 0, 0, 0, 0, 'I', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2016-04-07T09:41:33Z', '2023-09-21T09:27:35Z', 'https://avatars.githubusercontent.com/u/18326194?v=4', 'https://api.github.com/users/bakalor', 'https://github.com/bakalor', 'https://api.github.com/users/bakalor/followers', 'https://api.github.com/users/bakalor/following', 'https://api.github.com/users/bakalor/gists', 'https://api.github.com/users/bakalor/starred', 'https://api.github.com/users/bakalor/repos', 'https://api.github.com/users/bakalor/events', 'https://api.github.com/users/bakalor/received_events', 0); +INSERT INTO `developer` VALUES (18365222, 'FreakyFreddie', 'C', 0, 0, 0, 0, 0, 0, 0, 'FreakyFreddie', NULL, 'https://www.freaky-it.be', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 2, 0, 0, 0, '2016-04-09T13:00:38Z', '2021-03-05T22:15:27Z', 'https://avatars.githubusercontent.com/u/18365222?v=4', 'https://api.github.com/users/FreakyFreddie', 'https://github.com/FreakyFreddie', 'https://api.github.com/users/FreakyFreddie/followers', 'https://api.github.com/users/FreakyFreddie/following', 'https://api.github.com/users/FreakyFreddie/gists', 'https://api.github.com/users/FreakyFreddie/starred', 'https://api.github.com/users/FreakyFreddie/repos', 'https://api.github.com/users/FreakyFreddie/events', 'https://api.github.com/users/FreakyFreddie/received_events', 0); +INSERT INTO `developer` VALUES (18365890, 'peter-evans', 'C', 6.98258414230201, 0, 0, 0, 0, 0, 0, 'Peter Evans', NULL, 'https://peterevans.dev', 'United Kingdom', NULL, NULL, NULL, 'peterevans0', 0, 0, 692, 23, 0, 0, 0, '2016-04-09T13:51:46Z', '2024-10-11T14:29:44Z', 'https://avatars.githubusercontent.com/u/18365890?v=4', 'https://api.github.com/users/peter-evans', 'https://github.com/peter-evans', 'https://api.github.com/users/peter-evans/followers', 'https://api.github.com/users/peter-evans/following', 'https://api.github.com/users/peter-evans/gists', 'https://api.github.com/users/peter-evans/starred', 'https://api.github.com/users/peter-evans/repos', 'https://api.github.com/users/peter-evans/events', 'https://api.github.com/users/peter-evans/received_events', 0); +INSERT INTO `developer` VALUES (18528990, 'MathiasGr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mathias Griffe', '@bigbluedisco ', '', 'Paris, FR', NULL, NULL, 'CTO @ bigblue', NULL, 0, 0, 3, 0, 0, 0, 0, '2016-04-18T10:16:28Z', '2024-10-29T09:19:05Z', 'https://avatars.githubusercontent.com/u/18528990?v=4', 'https://api.github.com/users/MathiasGr', 'https://github.com/MathiasGr', 'https://api.github.com/users/MathiasGr/followers', 'https://api.github.com/users/MathiasGr/following', 'https://api.github.com/users/MathiasGr/gists', 'https://api.github.com/users/MathiasGr/starred', 'https://api.github.com/users/MathiasGr/repos', 'https://api.github.com/users/MathiasGr/events', 'https://api.github.com/users/MathiasGr/received_events', 0); +INSERT INTO `developer` VALUES (18605580, 'gkkachi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Konosuke Kachi', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 7, 0, 0, 0, '2016-04-22T01:05:05Z', '2024-09-27T06:14:41Z', 'https://avatars.githubusercontent.com/u/18605580?v=4', 'https://api.github.com/users/gkkachi', 'https://github.com/gkkachi', 'https://api.github.com/users/gkkachi/followers', 'https://api.github.com/users/gkkachi/following', 'https://api.github.com/users/gkkachi/gists', 'https://api.github.com/users/gkkachi/starred', 'https://api.github.com/users/gkkachi/repos', 'https://api.github.com/users/gkkachi/events', 'https://api.github.com/users/gkkachi/received_events', 0); +INSERT INTO `developer` VALUES (19386312, 'alex-arce', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Arce', NULL, '', '未知', NULL, NULL, '. . .', NULL, 0, 0, 5, 3, 0, 0, 0, '2016-05-16T09:45:39Z', '2024-10-05T10:47:47Z', 'https://avatars.githubusercontent.com/u/19386312?v=4', 'https://api.github.com/users/alex-arce', 'https://github.com/alex-arce', 'https://api.github.com/users/alex-arce/followers', 'https://api.github.com/users/alex-arce/following', 'https://api.github.com/users/alex-arce/gists', 'https://api.github.com/users/alex-arce/starred', 'https://api.github.com/users/alex-arce/repos', 'https://api.github.com/users/alex-arce/events', 'https://api.github.com/users/alex-arce/received_events', 0); +INSERT INTO `developer` VALUES (19528243, 'QueenyJin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Queeny', 'PingCAP', '', '未知', 'jinkun@pingcap.com', NULL, 'On my way to be a hacker', NULL, 0, 0, 24, 12, 0, 0, 0, '2016-05-23T08:25:12Z', '2022-01-23T14:46:51Z', 'https://avatars.githubusercontent.com/u/19528243?v=4', 'https://api.github.com/users/QueenyJin', 'https://github.com/QueenyJin', 'https://api.github.com/users/QueenyJin/followers', 'https://api.github.com/users/QueenyJin/following', 'https://api.github.com/users/QueenyJin/gists', 'https://api.github.com/users/QueenyJin/starred', 'https://api.github.com/users/QueenyJin/repos', 'https://api.github.com/users/QueenyJin/events', 'https://api.github.com/users/QueenyJin/received_events', 0); +INSERT INTO `developer` VALUES (19572671, 'AdrienGuillerme', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2016-05-25T13:38:25Z', '2019-10-21T17:03:40Z', 'https://avatars.githubusercontent.com/u/19572671?v=4', 'https://api.github.com/users/AdrienGuillerme', 'https://github.com/AdrienGuillerme', 'https://api.github.com/users/AdrienGuillerme/followers', 'https://api.github.com/users/AdrienGuillerme/following', 'https://api.github.com/users/AdrienGuillerme/gists', 'https://api.github.com/users/AdrienGuillerme/starred', 'https://api.github.com/users/AdrienGuillerme/repos', 'https://api.github.com/users/AdrienGuillerme/events', 'https://api.github.com/users/AdrienGuillerme/received_events', 0); +INSERT INTO `developer` VALUES (19647780, 'mulcek', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel', NULL, '', '未知', NULL, NULL, 'Angular + NodeJS developer', NULL, 0, 0, 1, 0, 0, 0, 0, '2016-05-30T10:23:19Z', '2024-03-30T18:22:40Z', 'https://avatars.githubusercontent.com/u/19647780?v=4', 'https://api.github.com/users/mulcek', 'https://github.com/mulcek', 'https://api.github.com/users/mulcek/followers', 'https://api.github.com/users/mulcek/following', 'https://api.github.com/users/mulcek/gists', 'https://api.github.com/users/mulcek/starred', 'https://api.github.com/users/mulcek/repos', 'https://api.github.com/users/mulcek/events', 'https://api.github.com/users/mulcek/received_events', 0); +INSERT INTO `developer` VALUES (19744238, 'pawan0912', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pawan Verma', 'KodeKloud', '', 'Bengaluru, Karnataka', 'pawanverma0912@gmail.com', NULL, 'Senior Frontend Engineer 👨‍💻 ', NULL, 0, 0, 2, 3, 0, 0, 0, '2016-06-04T07:44:59Z', '2024-06-18T04:27:04Z', 'https://avatars.githubusercontent.com/u/19744238?v=4', 'https://api.github.com/users/pawan0912', 'https://github.com/pawan0912', 'https://api.github.com/users/pawan0912/followers', 'https://api.github.com/users/pawan0912/following', 'https://api.github.com/users/pawan0912/gists', 'https://api.github.com/users/pawan0912/starred', 'https://api.github.com/users/pawan0912/repos', 'https://api.github.com/users/pawan0912/events', 'https://api.github.com/users/pawan0912/received_events', 0); +INSERT INTO `developer` VALUES (19924096, 'mehuled', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mehul Sharma', '@razorpay ', '', 'Bangalore', 'mehulcse0209@gmail.com', 'true', 'Show me what\'s under the hood.', NULL, 0, 0, 21, 92, 0, 0, 0, '2016-06-14T07:21:15Z', '2024-10-01T06:24:55Z', 'https://avatars.githubusercontent.com/u/19924096?v=4', 'https://api.github.com/users/mehuled', 'https://github.com/mehuled', 'https://api.github.com/users/mehuled/followers', 'https://api.github.com/users/mehuled/following', 'https://api.github.com/users/mehuled/gists', 'https://api.github.com/users/mehuled/starred', 'https://api.github.com/users/mehuled/repos', 'https://api.github.com/users/mehuled/events', 'https://api.github.com/users/mehuled/received_events', 0); +INSERT INTO `developer` VALUES (19945677, 'pritishvaidya', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pritish', '@razorpay', 'https://pritishvaidya.dev', '未知', 'contact@pritishvaidya.dev', 'true', NULL, 'PritishVaidya', 0, 0, 72, 32, 0, 0, 0, '2016-06-15T06:45:25Z', '2024-10-26T14:05:37Z', 'https://avatars.githubusercontent.com/u/19945677?v=4', 'https://api.github.com/users/pritishvaidya', 'https://github.com/pritishvaidya', 'https://api.github.com/users/pritishvaidya/followers', 'https://api.github.com/users/pritishvaidya/following', 'https://api.github.com/users/pritishvaidya/gists', 'https://api.github.com/users/pritishvaidya/starred', 'https://api.github.com/users/pritishvaidya/repos', 'https://api.github.com/users/pritishvaidya/events', 'https://api.github.com/users/pritishvaidya/received_events', 0); +INSERT INTO `developer` VALUES (19959240, 'jordanpotti', 'C', 0, 0, 0, 0, 0, 0, 0, 'JP', NULL, 'https://jordanpotti.com', '未知', NULL, NULL, NULL, 'ok_bye_now', 0, 0, 226, 10, 0, 0, 0, '2016-06-15T19:02:12Z', '2024-10-02T20:47:46Z', 'https://avatars.githubusercontent.com/u/19959240?v=4', 'https://api.github.com/users/jordanpotti', 'https://github.com/jordanpotti', 'https://api.github.com/users/jordanpotti/followers', 'https://api.github.com/users/jordanpotti/following', 'https://api.github.com/users/jordanpotti/gists', 'https://api.github.com/users/jordanpotti/starred', 'https://api.github.com/users/jordanpotti/repos', 'https://api.github.com/users/jordanpotti/events', 'https://api.github.com/users/jordanpotti/received_events', 0); +INSERT INTO `developer` VALUES (20042787, 'thsubaku9', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kaustubh J', NULL, '', 'India', 'kaustubhkj@gmail.com', NULL, 'catch my professional account -> @thsubaku9-pro\r\n', NULL, 0, 0, 7, 17, 0, 0, 0, '2016-06-20T10:59:32Z', '2024-08-06T14:13:18Z', 'https://avatars.githubusercontent.com/u/20042787?v=4', 'https://api.github.com/users/thsubaku9', 'https://github.com/thsubaku9', 'https://api.github.com/users/thsubaku9/followers', 'https://api.github.com/users/thsubaku9/following', 'https://api.github.com/users/thsubaku9/gists', 'https://api.github.com/users/thsubaku9/starred', 'https://api.github.com/users/thsubaku9/repos', 'https://api.github.com/users/thsubaku9/events', 'https://api.github.com/users/thsubaku9/received_events', 0); +INSERT INTO `developer` VALUES (20135478, 'Juneezee', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eng Zer Jun', NULL, '', 'Malaysia', 'engzerjun@gmail.com', 'true', 'Linux and Open Source enthusiast', 'juneezee', 0, 0, 47, 0, 0, 0, 0, '2016-06-25T01:01:09Z', '2024-11-03T09:05:07Z', 'https://avatars.githubusercontent.com/u/20135478?v=4', 'https://api.github.com/users/Juneezee', 'https://github.com/Juneezee', 'https://api.github.com/users/Juneezee/followers', 'https://api.github.com/users/Juneezee/following', 'https://api.github.com/users/Juneezee/gists', 'https://api.github.com/users/Juneezee/starred', 'https://api.github.com/users/Juneezee/repos', 'https://api.github.com/users/Juneezee/events', 'https://api.github.com/users/Juneezee/received_events', 0); +INSERT INTO `developer` VALUES (20150605, 'tegk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Till Knuesting', NULL, '', '未知', NULL, 'true', 'Go, Microservices, Kubernetes, Distributed systems', 'knuesting', 0, 0, 14, 10, 0, 0, 0, '2016-06-26T10:06:01Z', '2022-08-02T17:08:17Z', 'https://avatars.githubusercontent.com/u/20150605?v=4', 'https://api.github.com/users/tegk', 'https://github.com/tegk', 'https://api.github.com/users/tegk/followers', 'https://api.github.com/users/tegk/following', 'https://api.github.com/users/tegk/gists', 'https://api.github.com/users/tegk/starred', 'https://api.github.com/users/tegk/repos', 'https://api.github.com/users/tegk/events', 'https://api.github.com/users/tegk/received_events', 0); +INSERT INTO `developer` VALUES (20198261, 'FWangZil', 'C', 0, 0, 0, 0, 0, 0, 0, 'Togo', NULL, 'blog.cyberdoge.xyz', '未知', 'acewzk@gmail.com', 'true', NULL, 'chickenpunk_eth', 0, 0, 50, 476, 0, 0, 0, '2016-06-29T02:45:50Z', '2024-10-16T11:30:41Z', 'https://avatars.githubusercontent.com/u/20198261?v=4', 'https://api.github.com/users/FWangZil', 'https://github.com/FWangZil', 'https://api.github.com/users/FWangZil/followers', 'https://api.github.com/users/FWangZil/following', 'https://api.github.com/users/FWangZil/gists', 'https://api.github.com/users/FWangZil/starred', 'https://api.github.com/users/FWangZil/repos', 'https://api.github.com/users/FWangZil/events', 'https://api.github.com/users/FWangZil/received_events', 0); +INSERT INTO `developer` VALUES (20221408, 'STRRL', 'C', 3.8787014094775008, 0, 0, 0, 0, 0, 0, 'Zhiqiang ZHOU', NULL, 'https://strrl.dev', 'Great Vancouver, Canada', 'im@strrl.dev', 'true', 'Chaos Mesh Maintainer.\r\n\r\n👷‍♂️ Developer First. | Keep Sharp. | Coding with Love and Passion! | \r\n\r\n❤️ Cloud Computing | Cloud Native | Full Stack', 'strrl_the_dev', 0, 0, 511, 146, 0, 0, 0, '2016-06-30T08:00:11Z', '2024-11-01T00:08:51Z', 'https://avatars.githubusercontent.com/u/20221408?v=4', 'https://api.github.com/users/STRRL', 'https://github.com/STRRL', 'https://api.github.com/users/STRRL/followers', 'https://api.github.com/users/STRRL/following', 'https://api.github.com/users/STRRL/gists', 'https://api.github.com/users/STRRL/starred', 'https://api.github.com/users/STRRL/repos', 'https://api.github.com/users/STRRL/events', 'https://api.github.com/users/STRRL/received_events', 0); +INSERT INTO `developer` VALUES (20256683, 'saranshgupta1995', 'C', 0, 0, 0, 0, 0, 0, 0, 'Saransh Gupta', 'Airbnb', 'saransh.dev', 'Bangalore', 'saranshgupta1995@gmail.com', 'true', 'Reading about the web in a corner', NULL, 0, 0, 17, 0, 0, 0, 0, '2016-07-02T13:54:41Z', '2024-10-16T11:30:45Z', 'https://avatars.githubusercontent.com/u/20256683?v=4', 'https://api.github.com/users/saranshgupta1995', 'https://github.com/saranshgupta1995', 'https://api.github.com/users/saranshgupta1995/followers', 'https://api.github.com/users/saranshgupta1995/following', 'https://api.github.com/users/saranshgupta1995/gists', 'https://api.github.com/users/saranshgupta1995/starred', 'https://api.github.com/users/saranshgupta1995/repos', 'https://api.github.com/users/saranshgupta1995/events', 'https://api.github.com/users/saranshgupta1995/received_events', 0); +INSERT INTO `developer` VALUES (20342114, 'JonathanWilbur', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Wilbur', NULL, '', 'Tampa, Florida', 'jonathan@wilbur.space', 'true', '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.', NULL, 0, 0, 39, 110, 0, 0, 0, '2016-07-07T16:21:04Z', '2023-12-04T20:11:42Z', 'https://avatars.githubusercontent.com/u/20342114?v=4', 'https://api.github.com/users/JonathanWilbur', 'https://github.com/JonathanWilbur', 'https://api.github.com/users/JonathanWilbur/followers', 'https://api.github.com/users/JonathanWilbur/following', 'https://api.github.com/users/JonathanWilbur/gists', 'https://api.github.com/users/JonathanWilbur/starred', 'https://api.github.com/users/JonathanWilbur/repos', 'https://api.github.com/users/JonathanWilbur/events', 'https://api.github.com/users/JonathanWilbur/received_events', 0); +INSERT INTO `developer` VALUES (20466436, 'Jasstkn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Maria Kotliarevskaia', '@microsoft', 'https://www.linkedin.com/in/maria-kotliarevskaia/', 'Prague', 'mariia.kotliarevskaia@gmail.com', 'true', 'engineering out there', NULL, 0, 0, 86, 40, 0, 0, 0, '2016-07-14T22:15:38Z', '2024-10-25T14:48:40Z', 'https://avatars.githubusercontent.com/u/20466436?v=4', 'https://api.github.com/users/Jasstkn', 'https://github.com/Jasstkn', 'https://api.github.com/users/Jasstkn/followers', 'https://api.github.com/users/Jasstkn/following', 'https://api.github.com/users/Jasstkn/gists', 'https://api.github.com/users/Jasstkn/starred', 'https://api.github.com/users/Jasstkn/repos', 'https://api.github.com/users/Jasstkn/events', 'https://api.github.com/users/Jasstkn/received_events', 0); +INSERT INTO `developer` VALUES (20478023, 'H4ckd4ddy', 'C', 0, 0, 0, 0, 0, 0, 0, 'Etienne Sellan', NULL, '', '未知', NULL, 'true', '🚀', NULL, 0, 0, 198, 31, 0, 0, 0, '2016-07-15T14:16:37Z', '2024-09-08T07:40:49Z', 'https://avatars.githubusercontent.com/u/20478023?v=4', 'https://api.github.com/users/H4ckd4ddy', 'https://github.com/H4ckd4ddy', 'https://api.github.com/users/H4ckd4ddy/followers', 'https://api.github.com/users/H4ckd4ddy/following', 'https://api.github.com/users/H4ckd4ddy/gists', 'https://api.github.com/users/H4ckd4ddy/starred', 'https://api.github.com/users/H4ckd4ddy/repos', 'https://api.github.com/users/H4ckd4ddy/events', 'https://api.github.com/users/H4ckd4ddy/received_events', 0); +INSERT INTO `developer` VALUES (20666896, 'code4innerpeace', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vijay Bheemineni', NULL, '', 'Austin, TX', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2016-07-26T16:42:49Z', '2020-06-20T17:35:35Z', 'https://avatars.githubusercontent.com/u/20666896?v=4', 'https://api.github.com/users/code4innerpeace', 'https://github.com/code4innerpeace', 'https://api.github.com/users/code4innerpeace/followers', 'https://api.github.com/users/code4innerpeace/following', 'https://api.github.com/users/code4innerpeace/gists', 'https://api.github.com/users/code4innerpeace/starred', 'https://api.github.com/users/code4innerpeace/repos', 'https://api.github.com/users/code4innerpeace/events', 'https://api.github.com/users/code4innerpeace/received_events', 0); +INSERT INTO `developer` VALUES (20688668, 'semoac', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sergio Morales', 'Cornershop', '', 'Chile', 'sergio@lunarbase.one', NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2016-07-27T18:39:08Z', '2024-10-20T20:25:20Z', 'https://avatars.githubusercontent.com/u/20688668?v=4', 'https://api.github.com/users/semoac', 'https://github.com/semoac', 'https://api.github.com/users/semoac/followers', 'https://api.github.com/users/semoac/following', 'https://api.github.com/users/semoac/gists', 'https://api.github.com/users/semoac/starred', 'https://api.github.com/users/semoac/repos', 'https://api.github.com/users/semoac/events', 'https://api.github.com/users/semoac/received_events', 0); +INSERT INTO `developer` VALUES (20766601, 'haquezameer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zameer Haque', '@Multiplier-Core', 'https://haquezameer.github.io/blog/', '未知', NULL, 'true', 'Figuring out', NULL, 0, 0, 40, 20, 0, 0, 0, '2016-08-01T06:50:18Z', '2024-09-10T11:39:29Z', 'https://avatars.githubusercontent.com/u/20766601?v=4', 'https://api.github.com/users/haquezameer', 'https://github.com/haquezameer', 'https://api.github.com/users/haquezameer/followers', 'https://api.github.com/users/haquezameer/following', 'https://api.github.com/users/haquezameer/gists', 'https://api.github.com/users/haquezameer/starred', 'https://api.github.com/users/haquezameer/repos', 'https://api.github.com/users/haquezameer/events', 'https://api.github.com/users/haquezameer/received_events', 0); +INSERT INTO `developer` VALUES (20987686, 'gyanesh-m', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gyanesh Malhotra', NULL, '', 'Bangalore', 'gyaneshmalhotra@gmail.com', NULL, NULL, NULL, 0, 0, 30, 41, 0, 0, 0, '2016-08-12T09:13:44Z', '2024-10-21T11:12:31Z', 'https://avatars.githubusercontent.com/u/20987686?v=4', 'https://api.github.com/users/gyanesh-m', 'https://github.com/gyanesh-m', 'https://api.github.com/users/gyanesh-m/followers', 'https://api.github.com/users/gyanesh-m/following', 'https://api.github.com/users/gyanesh-m/gists', 'https://api.github.com/users/gyanesh-m/starred', 'https://api.github.com/users/gyanesh-m/repos', 'https://api.github.com/users/gyanesh-m/events', 'https://api.github.com/users/gyanesh-m/received_events', 0); +INSERT INTO `developer` VALUES (21107799, 'blenderskool', 'C', 5.9022271689984525, 0, 0, 0, 0, 0, 0, 'Akash Hamirwasia', '@elevenlabs', 'akashhamirwasia.com', 'Bangalore, India, Earth', 'akash.hamirwasia@gmail.com', NULL, 'Frontend @elevenlabs.\r\nPassionate about programming and building innovative products on the web.\r\nPrev @razorpay @akamai @smallcase', 'blenderskool', 0, 0, 629, 5, 0, 0, 0, '2016-08-18T16:23:17Z', '2024-10-14T07:05:15Z', 'https://avatars.githubusercontent.com/u/21107799?v=4', 'https://api.github.com/users/blenderskool', 'https://github.com/blenderskool', 'https://api.github.com/users/blenderskool/followers', 'https://api.github.com/users/blenderskool/following', 'https://api.github.com/users/blenderskool/gists', 'https://api.github.com/users/blenderskool/starred', 'https://api.github.com/users/blenderskool/repos', 'https://api.github.com/users/blenderskool/events', 'https://api.github.com/users/blenderskool/received_events', 0); +INSERT INTO `developer` VALUES (21198777, 'SantiEich', 'C', 0, 0, 0, 0, 0, 0, 0, 'Santiago Hernandez', 'Strike Security', 'linkedin.com/in/santieich', 'Montevideo, Uruguay', 'me@santieich.com', 'true', 'Head of Cloud Infrastructure at @strikesecurity ', NULL, 0, 0, 16, 22, 0, 0, 0, '2016-08-23T13:51:49Z', '2024-10-21T19:18:11Z', 'https://avatars.githubusercontent.com/u/21198777?v=4', 'https://api.github.com/users/SantiEich', 'https://github.com/SantiEich', 'https://api.github.com/users/SantiEich/followers', 'https://api.github.com/users/SantiEich/following', 'https://api.github.com/users/SantiEich/gists', 'https://api.github.com/users/SantiEich/starred', 'https://api.github.com/users/SantiEich/repos', 'https://api.github.com/users/SantiEich/events', 'https://api.github.com/users/SantiEich/received_events', 0); +INSERT INTO `developer` VALUES (21218732, 'gupta-ji6', 'C', 0, 0, 0, 0, 0, 0, 0, 'ayush gupta', '@leapwallet', 'ayushgupta.tech', 'Remote', 'ayushgupta197@gmail.com', 'true', '🎞️ + 🛠️ == i do art & crafts.\r\n\r\ncapturing art && crafting mobile apps with frontend engineering. developer with an eye for design.', '_guptaji_', 0, 0, 172, 474, 0, 0, 0, '2016-08-24T11:24:14Z', '2024-10-28T11:41:33Z', 'https://avatars.githubusercontent.com/u/21218732?v=4', 'https://api.github.com/users/gupta-ji6', 'https://github.com/gupta-ji6', 'https://api.github.com/users/gupta-ji6/followers', 'https://api.github.com/users/gupta-ji6/following', 'https://api.github.com/users/gupta-ji6/gists', 'https://api.github.com/users/gupta-ji6/starred', 'https://api.github.com/users/gupta-ji6/repos', 'https://api.github.com/users/gupta-ji6/events', 'https://api.github.com/users/gupta-ji6/received_events', 0); +INSERT INTO `developer` VALUES (21371712, 'roconnor-blockstream', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 36, 0, 0, 0, 0, '2016-08-31T21:13:45Z', '2024-06-09T16:23:30Z', 'https://avatars.githubusercontent.com/u/21371712?v=4', 'https://api.github.com/users/roconnor-blockstream', 'https://github.com/roconnor-blockstream', 'https://api.github.com/users/roconnor-blockstream/followers', 'https://api.github.com/users/roconnor-blockstream/following', 'https://api.github.com/users/roconnor-blockstream/gists', 'https://api.github.com/users/roconnor-blockstream/starred', 'https://api.github.com/users/roconnor-blockstream/repos', 'https://api.github.com/users/roconnor-blockstream/events', 'https://api.github.com/users/roconnor-blockstream/received_events', 0); +INSERT INTO `developer` VALUES (21965506, 'tarun-khanna', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tarun Khanna', NULL, 'https://tarun-khanna.github.io/', '未知', 'tarunrajkhanna@gmail.com', NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2016-09-03T04:13:12Z', '2024-10-15T12:21:00Z', 'https://avatars.githubusercontent.com/u/21965506?v=4', 'https://api.github.com/users/tarun-khanna', 'https://github.com/tarun-khanna', 'https://api.github.com/users/tarun-khanna/followers', 'https://api.github.com/users/tarun-khanna/following', 'https://api.github.com/users/tarun-khanna/gists', 'https://api.github.com/users/tarun-khanna/starred', 'https://api.github.com/users/tarun-khanna/repos', 'https://api.github.com/users/tarun-khanna/events', 'https://api.github.com/users/tarun-khanna/received_events', 0); +INSERT INTO `developer` VALUES (22027959, 'satoshisSockpuppet', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2016-09-06T12:27:08Z', '2017-10-20T09:01:41Z', 'https://avatars.githubusercontent.com/u/22027959?v=4', 'https://api.github.com/users/satoshisSockpuppet', 'https://github.com/satoshisSockpuppet', 'https://api.github.com/users/satoshisSockpuppet/followers', 'https://api.github.com/users/satoshisSockpuppet/following', 'https://api.github.com/users/satoshisSockpuppet/gists', 'https://api.github.com/users/satoshisSockpuppet/starred', 'https://api.github.com/users/satoshisSockpuppet/repos', 'https://api.github.com/users/satoshisSockpuppet/events', 'https://api.github.com/users/satoshisSockpuppet/received_events', 0); +INSERT INTO `developer` VALUES (22029111, '1995navinkumar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Navin kumar', NULL, '', 'Chennai', '1995navinkumar@gmail.com', NULL, NULL, NULL, 0, 0, 16, 54, 0, 0, 0, '2016-09-06T13:23:47Z', '2024-11-04T04:07:42Z', 'https://avatars.githubusercontent.com/u/22029111?v=4', 'https://api.github.com/users/1995navinkumar', 'https://github.com/1995navinkumar', 'https://api.github.com/users/1995navinkumar/followers', 'https://api.github.com/users/1995navinkumar/following', 'https://api.github.com/users/1995navinkumar/gists', 'https://api.github.com/users/1995navinkumar/starred', 'https://api.github.com/users/1995navinkumar/repos', 'https://api.github.com/users/1995navinkumar/events', 'https://api.github.com/users/1995navinkumar/received_events', 0); +INSERT INTO `developer` VALUES (22098752, 'zappy-shu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Adcock', '@docker', '', 'Cambridge, UK', 'zappyshu@gmail.com', NULL, 'Software Engineer @ Docker', NULL, 0, 0, 12, 0, 0, 0, 0, '2016-09-09T12:37:54Z', '2024-08-09T12:01:03Z', 'https://avatars.githubusercontent.com/u/22098752?v=4', 'https://api.github.com/users/zappy-shu', 'https://github.com/zappy-shu', 'https://api.github.com/users/zappy-shu/followers', 'https://api.github.com/users/zappy-shu/following', 'https://api.github.com/users/zappy-shu/gists', 'https://api.github.com/users/zappy-shu/starred', 'https://api.github.com/users/zappy-shu/repos', 'https://api.github.com/users/zappy-shu/events', 'https://api.github.com/users/zappy-shu/received_events', 0); +INSERT INTO `developer` VALUES (22116082, 'kkyusufk', 'C', 0, 0, 0, 0, 0, 0, 0, 'Yusuf', '@razorpay ', '', '未知', NULL, NULL, 'I love GitHub Bots', NULL, 0, 0, 7, 7, 0, 0, 0, '2016-09-10T11:41:58Z', '2023-09-16T17:09:31Z', 'https://avatars.githubusercontent.com/u/22116082?v=4', 'https://api.github.com/users/kkyusufk', 'https://github.com/kkyusufk', 'https://api.github.com/users/kkyusufk/followers', 'https://api.github.com/users/kkyusufk/following', 'https://api.github.com/users/kkyusufk/gists', 'https://api.github.com/users/kkyusufk/starred', 'https://api.github.com/users/kkyusufk/repos', 'https://api.github.com/users/kkyusufk/events', 'https://api.github.com/users/kkyusufk/received_events', 0); +INSERT INTO `developer` VALUES (22171190, 'matthias-kloeckner', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 'http://www.kloeckner-i.com/', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 3, 0, 0, 0, '2016-09-13T11:38:00Z', '2022-08-31T07:16:12Z', 'https://avatars.githubusercontent.com/u/22171190?v=4', 'https://api.github.com/users/matthias-kloeckner', 'https://github.com/matthias-kloeckner', 'https://api.github.com/users/matthias-kloeckner/followers', 'https://api.github.com/users/matthias-kloeckner/following', 'https://api.github.com/users/matthias-kloeckner/gists', 'https://api.github.com/users/matthias-kloeckner/starred', 'https://api.github.com/users/matthias-kloeckner/repos', 'https://api.github.com/users/matthias-kloeckner/events', 'https://api.github.com/users/matthias-kloeckner/received_events', 0); +INSERT INTO `developer` VALUES (22191698, 'orbiran88', 'C', 0, 0, 0, 0, 0, 0, 0, 'Or Biran', 'TailorMed', '', 'Israel', 'orbiran@outlook.com', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2016-09-14T09:00:52Z', '2021-01-11T11:01:34Z', 'https://avatars.githubusercontent.com/u/22191698?v=4', 'https://api.github.com/users/orbiran88', 'https://github.com/orbiran88', 'https://api.github.com/users/orbiran88/followers', 'https://api.github.com/users/orbiran88/following', 'https://api.github.com/users/orbiran88/gists', 'https://api.github.com/users/orbiran88/starred', 'https://api.github.com/users/orbiran88/repos', 'https://api.github.com/users/orbiran88/events', 'https://api.github.com/users/orbiran88/received_events', 0); +INSERT INTO `developer` VALUES (22457751, 'darosior', 'C', 2.541116585387381, 0, 0, 0, 0, 0, 0, 'Antoine Poinsot', '@chaincodelabs', '', '未知', 'darosior@protonmail.com', 'true', '590B 7292 695A FFA5 B672 CBB2 E13F C145 CD3F 4304 ', 'darosior', 0, 0, 433, 107, 0, 0, 0, '2016-09-26T20:05:51Z', '2024-11-04T14:08:42Z', 'https://avatars.githubusercontent.com/u/22457751?v=4', 'https://api.github.com/users/darosior', 'https://github.com/darosior', 'https://api.github.com/users/darosior/followers', 'https://api.github.com/users/darosior/following', 'https://api.github.com/users/darosior/gists', 'https://api.github.com/users/darosior/starred', 'https://api.github.com/users/darosior/repos', 'https://api.github.com/users/darosior/events', 'https://api.github.com/users/darosior/received_events', 0); +INSERT INTO `developer` VALUES (22477579, 'allisonsuarez', 'C', 0, 0, 0, 0, 0, 0, 0, 'Allison Suarez Miranda', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 2, 0, 0, 0, '2016-09-27T15:22:29Z', '2024-10-11T16:22:16Z', 'https://avatars.githubusercontent.com/u/22477579?v=4', 'https://api.github.com/users/allisonsuarez', 'https://github.com/allisonsuarez', 'https://api.github.com/users/allisonsuarez/followers', 'https://api.github.com/users/allisonsuarez/following', 'https://api.github.com/users/allisonsuarez/gists', 'https://api.github.com/users/allisonsuarez/starred', 'https://api.github.com/users/allisonsuarez/repos', 'https://api.github.com/users/allisonsuarez/events', 'https://api.github.com/users/allisonsuarez/received_events', 0); +INSERT INTO `developer` VALUES (22477652, 'Baryczka', 'C', 0, 0, 0, 0, 0, 0, 0, 'Baryczka', NULL, '', 'Zurich', NULL, NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2016-09-27T15:25:58Z', '2024-09-23T15:09:56Z', 'https://avatars.githubusercontent.com/u/22477652?v=4', 'https://api.github.com/users/Baryczka', 'https://github.com/Baryczka', 'https://api.github.com/users/Baryczka/followers', 'https://api.github.com/users/Baryczka/following', 'https://api.github.com/users/Baryczka/gists', 'https://api.github.com/users/Baryczka/starred', 'https://api.github.com/users/Baryczka/repos', 'https://api.github.com/users/Baryczka/events', 'https://api.github.com/users/Baryczka/received_events', 0); +INSERT INTO `developer` VALUES (22611118, 'tsauvajon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Sauvajon', 'Beat', 'https://thomas.sauvajon.tech', 'Remote', 'thomas@sauvajon.tech', NULL, 'Software Engineer', NULL, 0, 0, 45, 31, 0, 0, 0, '2016-10-04T07:55:04Z', '2024-09-20T16:17:46Z', 'https://avatars.githubusercontent.com/u/22611118?v=4', 'https://api.github.com/users/tsauvajon', 'https://github.com/tsauvajon', 'https://api.github.com/users/tsauvajon/followers', 'https://api.github.com/users/tsauvajon/following', 'https://api.github.com/users/tsauvajon/gists', 'https://api.github.com/users/tsauvajon/starred', 'https://api.github.com/users/tsauvajon/repos', 'https://api.github.com/users/tsauvajon/events', 'https://api.github.com/users/tsauvajon/received_events', 0); +INSERT INTO `developer` VALUES (22716571, 'Alex-GR', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2016-10-08T19:36:01Z', '2018-04-13T20:32:20Z', 'https://avatars.githubusercontent.com/u/22716571?v=4', 'https://api.github.com/users/Alex-GR', 'https://github.com/Alex-GR', 'https://api.github.com/users/Alex-GR/followers', 'https://api.github.com/users/Alex-GR/following', 'https://api.github.com/users/Alex-GR/gists', 'https://api.github.com/users/Alex-GR/starred', 'https://api.github.com/users/Alex-GR/repos', 'https://api.github.com/users/Alex-GR/events', 'https://api.github.com/users/Alex-GR/received_events', 0); +INSERT INTO `developer` VALUES (22730787, 'Mengerian', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 4, 0, 0, 0, '2016-10-09T17:39:19Z', '2024-04-03T14:08:14Z', 'https://avatars.githubusercontent.com/u/22730787?v=4', 'https://api.github.com/users/Mengerian', 'https://github.com/Mengerian', 'https://api.github.com/users/Mengerian/followers', 'https://api.github.com/users/Mengerian/following', 'https://api.github.com/users/Mengerian/gists', 'https://api.github.com/users/Mengerian/starred', 'https://api.github.com/users/Mengerian/repos', 'https://api.github.com/users/Mengerian/events', 'https://api.github.com/users/Mengerian/received_events', 0); +INSERT INTO `developer` VALUES (22956341, 'cwen0', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cwen Yin', 'PingCAP', 'https://int64.me', 'China', 'cwenyin0@gmail.com', NULL, '\r\n Life is magic. Coding is art.\r\n', 'CWenYin', 0, 0, 168, 38, 0, 0, 0, '2016-10-20T10:03:34Z', '2024-10-16T04:03:36Z', 'https://avatars.githubusercontent.com/u/22956341?v=4', 'https://api.github.com/users/cwen0', 'https://github.com/cwen0', 'https://api.github.com/users/cwen0/followers', 'https://api.github.com/users/cwen0/following', 'https://api.github.com/users/cwen0/gists', 'https://api.github.com/users/cwen0/starred', 'https://api.github.com/users/cwen0/repos', 'https://api.github.com/users/cwen0/events', 'https://api.github.com/users/cwen0/received_events', 0); +INSERT INTO `developer` VALUES (23056537, 'KeisukeYamashita', 'C', 0, 0, 0, 0, 0, 0, 0, 'KeisukeYamashita', NULL, 'https://keisukeyamashita.com', 'Nirvana', NULL, 'true', 'Site Reliability Engineer based in Vienna, Austria', '_k_e_k_e', 0, 0, 143, 139, 0, 0, 0, '2016-10-25T14:20:57Z', '2024-11-01T12:59:16Z', 'https://avatars.githubusercontent.com/u/23056537?v=4', 'https://api.github.com/users/KeisukeYamashita', 'https://github.com/KeisukeYamashita', 'https://api.github.com/users/KeisukeYamashita/followers', 'https://api.github.com/users/KeisukeYamashita/following', 'https://api.github.com/users/KeisukeYamashita/gists', 'https://api.github.com/users/KeisukeYamashita/starred', 'https://api.github.com/users/KeisukeYamashita/repos', 'https://api.github.com/users/KeisukeYamashita/events', 'https://api.github.com/users/KeisukeYamashita/received_events', 0); +INSERT INTO `developer` VALUES (23224163, 'jpbowie', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Bowie', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2016-11-02T22:19:43Z', '2024-08-20T22:29:53Z', 'https://avatars.githubusercontent.com/u/23224163?v=4', 'https://api.github.com/users/jpbowie', 'https://github.com/jpbowie', 'https://api.github.com/users/jpbowie/followers', 'https://api.github.com/users/jpbowie/following', 'https://api.github.com/users/jpbowie/gists', 'https://api.github.com/users/jpbowie/starred', 'https://api.github.com/users/jpbowie/repos', 'https://api.github.com/users/jpbowie/events', 'https://api.github.com/users/jpbowie/received_events', 0); +INSERT INTO `developer` VALUES (23261497, 'RikiyaFujii', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rikiya Fujii', '@abema ', '', 'Tokyo', 'ridai22hanriku@gmail.com', NULL, NULL, 'rikiyafujii', 0, 0, 22, 23, 0, 0, 0, '2016-11-04T13:50:47Z', '2024-07-29T02:42:19Z', 'https://avatars.githubusercontent.com/u/23261497?v=4', 'https://api.github.com/users/RikiyaFujii', 'https://github.com/RikiyaFujii', 'https://api.github.com/users/RikiyaFujii/followers', 'https://api.github.com/users/RikiyaFujii/following', 'https://api.github.com/users/RikiyaFujii/gists', 'https://api.github.com/users/RikiyaFujii/starred', 'https://api.github.com/users/RikiyaFujii/repos', 'https://api.github.com/users/RikiyaFujii/events', 'https://api.github.com/users/RikiyaFujii/received_events', 0); +INSERT INTO `developer` VALUES (23418983, 'lengfeld', 'C', 0, 0, 0, 0, 0, 0, 0, 'Stefan Lengfeld', '@inovex', 'https://stefan.lengfeld.xyz', 'Germany', 'stefan+github@lengfeld.xyz', NULL, 'I\'m an embedded software developer in Germany.', NULL, 0, 0, 16, 23, 0, 0, 0, '2016-11-12T14:01:37Z', '2024-10-20T20:17:54Z', 'https://avatars.githubusercontent.com/u/23418983?v=4', 'https://api.github.com/users/lengfeld', 'https://github.com/lengfeld', 'https://api.github.com/users/lengfeld/followers', 'https://api.github.com/users/lengfeld/following', 'https://api.github.com/users/lengfeld/gists', 'https://api.github.com/users/lengfeld/starred', 'https://api.github.com/users/lengfeld/repos', 'https://api.github.com/users/lengfeld/events', 'https://api.github.com/users/lengfeld/received_events', 0); +INSERT INTO `developer` VALUES (23437045, 'DesWurstes', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, 'I\'m extraordinarily boring; feel free to unfollow; I promise not to take any offense.', NULL, 0, 0, 0, 0, 0, 0, 0, '2016-11-13T17:24:37Z', '2024-10-02T11:15:12Z', 'https://avatars.githubusercontent.com/u/23437045?v=4', 'https://api.github.com/users/DesWurstes', 'https://github.com/DesWurstes', 'https://api.github.com/users/DesWurstes/followers', 'https://api.github.com/users/DesWurstes/following', 'https://api.github.com/users/DesWurstes/gists', 'https://api.github.com/users/DesWurstes/starred', 'https://api.github.com/users/DesWurstes/repos', 'https://api.github.com/users/DesWurstes/events', 'https://api.github.com/users/DesWurstes/received_events', 0); +INSERT INTO `developer` VALUES (23509619, 'bfreezy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'San Francisco, CA', 'brandonfriess@me.com', NULL, NULL, NULL, 0, 0, 10, 0, 0, 0, 0, '2016-11-16T20:48:00Z', '2024-10-31T15:35:45Z', 'https://avatars.githubusercontent.com/u/23509619?v=4', 'https://api.github.com/users/bfreezy', 'https://github.com/bfreezy', 'https://api.github.com/users/bfreezy/followers', 'https://api.github.com/users/bfreezy/following', 'https://api.github.com/users/bfreezy/gists', 'https://api.github.com/users/bfreezy/starred', 'https://api.github.com/users/bfreezy/repos', 'https://api.github.com/users/bfreezy/events', 'https://api.github.com/users/bfreezy/received_events', 0); +INSERT INTO `developer` VALUES (23521459, 'zhouqiang-cl', 'C', 0, 0, 0, 0, 0, 0, 0, 'zhouqiang', 'None', '', 'air', 'zhouqiang.cl@gmail.com', NULL, 'Be happy', NULL, 0, 0, 185, 143, 0, 0, 0, '2016-11-17T10:14:50Z', '2024-10-22T11:36:52Z', 'https://avatars.githubusercontent.com/u/23521459?v=4', 'https://api.github.com/users/zhouqiang-cl', 'https://github.com/zhouqiang-cl', 'https://api.github.com/users/zhouqiang-cl/followers', 'https://api.github.com/users/zhouqiang-cl/following', 'https://api.github.com/users/zhouqiang-cl/gists', 'https://api.github.com/users/zhouqiang-cl/starred', 'https://api.github.com/users/zhouqiang-cl/repos', 'https://api.github.com/users/zhouqiang-cl/events', 'https://api.github.com/users/zhouqiang-cl/received_events', 0); +INSERT INTO `developer` VALUES (23624531, 'imohammedzen', 'C', 0, 0, 0, 0, 0, 0, 0, 'Imran Mohammed', NULL, '', '未知', NULL, NULL, 'Security Engineer at Zendesk', NULL, 0, 0, 0, 0, 0, 0, 0, '2016-11-21T04:00:08Z', '2018-09-03T06:46:26Z', 'https://avatars.githubusercontent.com/u/23624531?v=4', 'https://api.github.com/users/imohammedzen', 'https://github.com/imohammedzen', 'https://api.github.com/users/imohammedzen/followers', 'https://api.github.com/users/imohammedzen/following', 'https://api.github.com/users/imohammedzen/gists', 'https://api.github.com/users/imohammedzen/starred', 'https://api.github.com/users/imohammedzen/repos', 'https://api.github.com/users/imohammedzen/events', 'https://api.github.com/users/imohammedzen/received_events', 0); +INSERT INTO `developer` VALUES (23636016, 'william-billaud', 'C', 0, 0, 0, 0, 0, 0, 0, 'william billaud', NULL, '', 'france', NULL, 'true', NULL, NULL, 0, 0, 14, 40, 0, 0, 0, '2016-11-21T14:20:04Z', '2024-09-20T20:13:44Z', 'https://avatars.githubusercontent.com/u/23636016?v=4', 'https://api.github.com/users/william-billaud', 'https://github.com/william-billaud', 'https://api.github.com/users/william-billaud/followers', 'https://api.github.com/users/william-billaud/following', 'https://api.github.com/users/william-billaud/gists', 'https://api.github.com/users/william-billaud/starred', 'https://api.github.com/users/william-billaud/repos', 'https://api.github.com/users/william-billaud/events', 'https://api.github.com/users/william-billaud/received_events', 0); +INSERT INTO `developer` VALUES (23663000, 'machine424', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ayoub Mrini', 'Red Hat', '', '未知', 'ayoubmrini424@gmail.com', NULL, 'Working on monitoring for @openshift\r\n@prometheus maintainer', NULL, 0, 0, 11, 1, 0, 0, 0, '2016-11-22T17:42:00Z', '2024-09-18T20:56:28Z', 'https://avatars.githubusercontent.com/u/23663000?v=4', 'https://api.github.com/users/machine424', 'https://github.com/machine424', 'https://api.github.com/users/machine424/followers', 'https://api.github.com/users/machine424/following', 'https://api.github.com/users/machine424/gists', 'https://api.github.com/users/machine424/starred', 'https://api.github.com/users/machine424/repos', 'https://api.github.com/users/machine424/events', 'https://api.github.com/users/machine424/received_events', 0); +INSERT INTO `developer` VALUES (23704769, 'codacy-badger', 'C', 0, 0, 0, 0, 0, 0, 0, 'Codacy Badger', 'Codacy', 'https://www.codacy.com', 'Lisbon', NULL, NULL, 'Review less, merge faster. Check code style, security, duplication, complexity and coverage on every change while tracking code quality throughout your sprints.', NULL, 0, 0, 200, 0, 0, 0, 0, '2016-11-23T16:54:54Z', '2023-01-24T15:38:45Z', 'https://avatars.githubusercontent.com/u/23704769?v=4', 'https://api.github.com/users/codacy-badger', 'https://github.com/codacy-badger', 'https://api.github.com/users/codacy-badger/followers', 'https://api.github.com/users/codacy-badger/following', 'https://api.github.com/users/codacy-badger/gists', 'https://api.github.com/users/codacy-badger/starred', 'https://api.github.com/users/codacy-badger/repos', 'https://api.github.com/users/codacy-badger/events', 'https://api.github.com/users/codacy-badger/received_events', 0); +INSERT INTO `developer` VALUES (23718447, 'ctas582', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 0, 0, 0, 0, '2016-11-24T10:00:43Z', '2024-07-24T16:23:38Z', 'https://avatars.githubusercontent.com/u/23718447?v=4', 'https://api.github.com/users/ctas582', 'https://github.com/ctas582', 'https://api.github.com/users/ctas582/followers', 'https://api.github.com/users/ctas582/following', 'https://api.github.com/users/ctas582/gists', 'https://api.github.com/users/ctas582/starred', 'https://api.github.com/users/ctas582/repos', 'https://api.github.com/users/ctas582/events', 'https://api.github.com/users/ctas582/received_events', 0); +INSERT INTO `developer` VALUES (23721020, 'liov', 'C', 0, 0, 0, 0, 0, 0, 0, '贾一饼', NULL, 'https://blog.hoper.xyz/article', 'China', 'lby.i@qq.com', NULL, 'a gopher devotion to rust', NULL, 0, 0, 10, 26, 0, 0, 0, '2016-11-24T12:29:31Z', '2024-10-17T11:34:37Z', 'https://avatars.githubusercontent.com/u/23721020?v=4', 'https://api.github.com/users/liov', 'https://github.com/liov', 'https://api.github.com/users/liov/followers', 'https://api.github.com/users/liov/following', 'https://api.github.com/users/liov/gists', 'https://api.github.com/users/liov/starred', 'https://api.github.com/users/liov/repos', 'https://api.github.com/users/liov/events', 'https://api.github.com/users/liov/received_events', 0); +INSERT INTO `developer` VALUES (24285095, 'AkioNak', 'C', 0, 0, 0, 0, 0, 0, 0, 'Akio Nakamura', NULL, '', 'Tokyo, Japan', NULL, NULL, 'a programmer, a ultra marathon runner :runner:', 'AkioNak', 0, 0, 19, 7, 0, 0, 0, '2016-12-01T03:03:35Z', '2024-10-25T18:58:40Z', 'https://avatars.githubusercontent.com/u/24285095?v=4', 'https://api.github.com/users/AkioNak', 'https://github.com/AkioNak', 'https://api.github.com/users/AkioNak/followers', 'https://api.github.com/users/AkioNak/following', 'https://api.github.com/users/AkioNak/gists', 'https://api.github.com/users/AkioNak/starred', 'https://api.github.com/users/AkioNak/repos', 'https://api.github.com/users/AkioNak/events', 'https://api.github.com/users/AkioNak/received_events', 0); +INSERT INTO `developer` VALUES (24317933, 'benpaxton-hf', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ben Paxton', '@headforwards', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2016-12-02T14:00:31Z', '2024-04-15T18:22:25Z', 'https://avatars.githubusercontent.com/u/24317933?v=4', 'https://api.github.com/users/benpaxton-hf', 'https://github.com/benpaxton-hf', 'https://api.github.com/users/benpaxton-hf/followers', 'https://api.github.com/users/benpaxton-hf/following', 'https://api.github.com/users/benpaxton-hf/gists', 'https://api.github.com/users/benpaxton-hf/starred', 'https://api.github.com/users/benpaxton-hf/repos', 'https://api.github.com/users/benpaxton-hf/events', 'https://api.github.com/users/benpaxton-hf/received_events', 0); +INSERT INTO `developer` VALUES (24351052, 'mapleFU', 'C', 4.135929260264064, 0, 0, 0, 0, 0, 0, 'mwish', NULL, '', 'China, Jiangxi Province, Nanchang', 'maplewish117@gmail.com', NULL, 'So high, so low, so many things to know.', 'mwish32445364', 0, 0, 526, 361, 0, 0, 0, '2016-12-03T06:54:42Z', '2024-10-29T03:32:14Z', 'https://avatars.githubusercontent.com/u/24351052?v=4', 'https://api.github.com/users/mapleFU', 'https://github.com/mapleFU', 'https://api.github.com/users/mapleFU/followers', 'https://api.github.com/users/mapleFU/following', 'https://api.github.com/users/mapleFU/gists', 'https://api.github.com/users/mapleFU/starred', 'https://api.github.com/users/mapleFU/repos', 'https://api.github.com/users/mapleFU/events', 'https://api.github.com/users/mapleFU/received_events', 0); +INSERT INTO `developer` VALUES (24440859, 'neeraj719714', 'C', 0, 0, 0, 0, 0, 0, 0, 'Neeraj Kumar Singh', '@razorpay', 'https://www.linkedin.com/in/neeraj719714/', '未知', 'neerajkr.singh.eee16@itbhu.ac.in', NULL, 'Frontend @ Razorpay | IIT BHU 2020 Graduate', 'neeraj_singh__', 0, 0, 6, 7, 0, 0, 0, '2016-12-07T19:11:51Z', '2024-08-27T11:15:37Z', 'https://avatars.githubusercontent.com/u/24440859?v=4', 'https://api.github.com/users/neeraj719714', 'https://github.com/neeraj719714', 'https://api.github.com/users/neeraj719714/followers', 'https://api.github.com/users/neeraj719714/following', 'https://api.github.com/users/neeraj719714/gists', 'https://api.github.com/users/neeraj719714/starred', 'https://api.github.com/users/neeraj719714/repos', 'https://api.github.com/users/neeraj719714/events', 'https://api.github.com/users/neeraj719714/received_events', 0); +INSERT INTO `developer` VALUES (24487274, 'chaitanyadeorukhkar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chaitanya Deorukhkar', '@razorpay ', 'https://chaitanyadeorukhkar.com', 'Bangalore', 'deorukhkarchaitanya@gmail.com', NULL, 'Staff Frontend Engineer @razorpay working on Design System & Frontend Tooling | React Native | ReactJS | GraphQL', '_anothercoder', 0, 0, 113, 2, 0, 0, 0, '2016-12-10T03:27:39Z', '2024-10-09T05:50:50Z', 'https://avatars.githubusercontent.com/u/24487274?v=4', 'https://api.github.com/users/chaitanyadeorukhkar', 'https://github.com/chaitanyadeorukhkar', 'https://api.github.com/users/chaitanyadeorukhkar/followers', 'https://api.github.com/users/chaitanyadeorukhkar/following', 'https://api.github.com/users/chaitanyadeorukhkar/gists', 'https://api.github.com/users/chaitanyadeorukhkar/starred', 'https://api.github.com/users/chaitanyadeorukhkar/repos', 'https://api.github.com/users/chaitanyadeorukhkar/events', 'https://api.github.com/users/chaitanyadeorukhkar/received_events', 0); +INSERT INTO `developer` VALUES (24494390, 'abhieshekumar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Abhishek Kumar', NULL, 'https://abhieshekumar.github.io/', 'India', 'abhieshekumar@gmail.com', NULL, NULL, 'abhieshekumar', 0, 0, 10, 7, 0, 0, 0, '2016-12-10T14:48:07Z', '2024-10-04T17:02:38Z', 'https://avatars.githubusercontent.com/u/24494390?v=4', 'https://api.github.com/users/abhieshekumar', 'https://github.com/abhieshekumar', 'https://api.github.com/users/abhieshekumar/followers', 'https://api.github.com/users/abhieshekumar/following', 'https://api.github.com/users/abhieshekumar/gists', 'https://api.github.com/users/abhieshekumar/starred', 'https://api.github.com/users/abhieshekumar/repos', 'https://api.github.com/users/abhieshekumar/events', 'https://api.github.com/users/abhieshekumar/received_events', 0); +INSERT INTO `developer` VALUES (24610197, 'mish24', 'C', 0, 0, 0, 0, 0, 0, 0, 'Poonam Mishra', 'BITS Pilani', '', '未知', NULL, 'true', NULL, NULL, 0, 0, 90, 32, 0, 0, 0, '2016-12-16T16:05:54Z', '2022-12-07T21:57:45Z', 'https://avatars.githubusercontent.com/u/24610197?v=4', 'https://api.github.com/users/mish24', 'https://github.com/mish24', 'https://api.github.com/users/mish24/followers', 'https://api.github.com/users/mish24/following', 'https://api.github.com/users/mish24/gists', 'https://api.github.com/users/mish24/starred', 'https://api.github.com/users/mish24/repos', 'https://api.github.com/users/mish24/events', 'https://api.github.com/users/mish24/received_events', 0); +INSERT INTO `developer` VALUES (24660299, 'naseemkullah', 'C', 11.531314151567202, 0, 44, 86, 157, 0, 0, 'Naseem', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 32, 3, 0, 0, 0, '2016-12-19T21:28:55Z', '2024-10-05T11:32:36Z', 'https://avatars.githubusercontent.com/u/24660299?v=4', 'https://api.github.com/users/naseemkullah', 'https://github.com/naseemkullah', 'https://api.github.com/users/naseemkullah/followers', 'https://api.github.com/users/naseemkullah/following', 'https://api.github.com/users/naseemkullah/gists', 'https://api.github.com/users/naseemkullah/starred', 'https://api.github.com/users/naseemkullah/repos', 'https://api.github.com/users/naseemkullah/events', 'https://api.github.com/users/naseemkullah/received_events', 0); +INSERT INTO `developer` VALUES (24780504, 'kalioz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Clément Loiselet', NULL, '', '未知', NULL, NULL, 'Automate Everything. the build, the deployment, the programming, the automation - wait no, not that, keep that manual', NULL, 0, 0, 4, 6, 0, 0, 0, '2016-12-26T18:07:27Z', '2024-10-16T08:10:12Z', 'https://avatars.githubusercontent.com/u/24780504?v=4', 'https://api.github.com/users/kalioz', 'https://github.com/kalioz', 'https://api.github.com/users/kalioz/followers', 'https://api.github.com/users/kalioz/following', 'https://api.github.com/users/kalioz/gists', 'https://api.github.com/users/kalioz/starred', 'https://api.github.com/users/kalioz/repos', 'https://api.github.com/users/kalioz/events', 'https://api.github.com/users/kalioz/received_events', 0); +INSERT INTO `developer` VALUES (24950906, 'kr105', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 10, 3, 0, 0, 0, '2017-01-06T04:46:19Z', '2024-10-11T11:36:39Z', 'https://avatars.githubusercontent.com/u/24950906?v=4', 'https://api.github.com/users/kr105', 'https://github.com/kr105', 'https://api.github.com/users/kr105/followers', 'https://api.github.com/users/kr105/following', 'https://api.github.com/users/kr105/gists', 'https://api.github.com/users/kr105/starred', 'https://api.github.com/users/kr105/repos', 'https://api.github.com/users/kr105/events', 'https://api.github.com/users/kr105/received_events', 0); +INSERT INTO `developer` VALUES (25064349, 'SupaJuke', 'C', 0, 0, 0, 0, 0, 0, 0, 'Supanat Wangsutthitham', NULL, '', 'Toronto, Canada', NULL, NULL, 'University of Toronto CS \'23 // A natural born gamer', NULL, 0, 0, 2, 2, 0, 0, 0, '2017-01-11T19:23:46Z', '2024-10-26T10:55:13Z', 'https://avatars.githubusercontent.com/u/25064349?v=4', 'https://api.github.com/users/SupaJuke', 'https://github.com/SupaJuke', 'https://api.github.com/users/SupaJuke/followers', 'https://api.github.com/users/SupaJuke/following', 'https://api.github.com/users/SupaJuke/gists', 'https://api.github.com/users/SupaJuke/starred', 'https://api.github.com/users/SupaJuke/repos', 'https://api.github.com/users/SupaJuke/events', 'https://api.github.com/users/SupaJuke/received_events', 0); +INSERT INTO `developer` VALUES (25148195, 'EndPositive', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jop Zitman', NULL, '', '未知', 'jop-zitman@hotmail.com', 'true', 'Advanced Computing at Tsinghua University', NULL, 0, 0, 15, 7, 0, 0, 0, '2017-01-16T09:20:52Z', '2024-10-25T11:33:14Z', 'https://avatars.githubusercontent.com/u/25148195?v=4', 'https://api.github.com/users/EndPositive', 'https://github.com/EndPositive', 'https://api.github.com/users/EndPositive/followers', 'https://api.github.com/users/EndPositive/following', 'https://api.github.com/users/EndPositive/gists', 'https://api.github.com/users/EndPositive/starred', 'https://api.github.com/users/EndPositive/repos', 'https://api.github.com/users/EndPositive/events', 'https://api.github.com/users/EndPositive/received_events', 0); +INSERT INTO `developer` VALUES (25150124, 'yeya24', 'C', 0.1403233113794729, 0, 0, 0, 0, 0, 0, 'Ben Ye', 'AWS', 'https://yeya24.github.io/', '未知', 'benye@amazon.com', 'true', NULL, NULL, 0, 0, 293, 343, 0, 0, 0, '2017-01-16T11:10:02Z', '2024-10-18T11:41:15Z', 'https://avatars.githubusercontent.com/u/25150124?v=4', 'https://api.github.com/users/yeya24', 'https://github.com/yeya24', 'https://api.github.com/users/yeya24/followers', 'https://api.github.com/users/yeya24/following', 'https://api.github.com/users/yeya24/gists', 'https://api.github.com/users/yeya24/starred', 'https://api.github.com/users/yeya24/repos', 'https://api.github.com/users/yeya24/events', 'https://api.github.com/users/yeya24/received_events', 0); +INSERT INTO `developer` VALUES (25180681, 'renovate-bot', 'C+', 23.94247377082931, 0, 0, 0, 0, 0, 0, 'Mend Renovate', '@mend', 'https://mend.io/renovate/', '未知', 'renovate@whitesourcesoftware.com', NULL, 'Mend Renovate is a bot to keep dependencies up-to-date using Pull Requests. To install: https://github.com/apps/renovate', 'renovatebot', 0, 0, 1681, 0, 0, 0, 0, '2017-01-17T16:55:44Z', '2024-09-27T08:06:59Z', 'https://avatars.githubusercontent.com/u/25180681?v=4', 'https://api.github.com/users/renovate-bot', 'https://github.com/renovate-bot', 'https://api.github.com/users/renovate-bot/followers', 'https://api.github.com/users/renovate-bot/following', 'https://api.github.com/users/renovate-bot/gists', 'https://api.github.com/users/renovate-bot/starred', 'https://api.github.com/users/renovate-bot/repos', 'https://api.github.com/users/renovate-bot/events', 'https://api.github.com/users/renovate-bot/received_events', 0); +INSERT INTO `developer` VALUES (25243995, 'chubchubsancho', 'C', 0, 0, 0, 0, 0, 0, 0, 'Grégory SANCHEZ', 'Bedrockstreaming', '', '未知', 'gregory.sanchez@bedrockstreaming.com', NULL, NULL, NULL, 0, 0, 5, 5, 0, 0, 0, '2017-01-20T09:49:03Z', '2024-10-18T13:46:43Z', 'https://avatars.githubusercontent.com/u/25243995?v=4', 'https://api.github.com/users/chubchubsancho', 'https://github.com/chubchubsancho', 'https://api.github.com/users/chubchubsancho/followers', 'https://api.github.com/users/chubchubsancho/following', 'https://api.github.com/users/chubchubsancho/gists', 'https://api.github.com/users/chubchubsancho/starred', 'https://api.github.com/users/chubchubsancho/repos', 'https://api.github.com/users/chubchubsancho/events', 'https://api.github.com/users/chubchubsancho/received_events', 0); +INSERT INTO `developer` VALUES (25360476, 'verdan', 'C', 0, 0, 0, 0, 0, 0, 0, 'Verdan Mahmood', NULL, 'https://www.linkedin.com/in/verdan/', 'Amsterdam, The Netherlands', 'verdan.mahmood@gmail.com', 'true', 'Pythonista, Apache Airflow contributor, Open source advocate', NULL, 0, 0, 20, 1, 0, 0, 0, '2017-01-26T05:35:01Z', '2024-10-05T11:32:58Z', 'https://avatars.githubusercontent.com/u/25360476?v=4', 'https://api.github.com/users/verdan', 'https://github.com/verdan', 'https://api.github.com/users/verdan/followers', 'https://api.github.com/users/verdan/following', 'https://api.github.com/users/verdan/gists', 'https://api.github.com/users/verdan/starred', 'https://api.github.com/users/verdan/repos', 'https://api.github.com/users/verdan/events', 'https://api.github.com/users/verdan/received_events', 0); +INSERT INTO `developer` VALUES (25447002, 'wi1dcard', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@subscan-explorer ', 'https://wi1dcard.dev/', 'Ningbo, China', 'wi1dcard.cn@gmail.com', 'true', 'trying to get over bipolar and BPD', NULL, 0, 0, 252, 49, 0, 0, 0, '2017-01-31T02:32:20Z', '2024-11-01T07:10:52Z', 'https://avatars.githubusercontent.com/u/25447002?v=4', 'https://api.github.com/users/wi1dcard', 'https://github.com/wi1dcard', 'https://api.github.com/users/wi1dcard/followers', 'https://api.github.com/users/wi1dcard/following', 'https://api.github.com/users/wi1dcard/gists', 'https://api.github.com/users/wi1dcard/starred', 'https://api.github.com/users/wi1dcard/repos', 'https://api.github.com/users/wi1dcard/events', 'https://api.github.com/users/wi1dcard/received_events', 0); +INSERT INTO `developer` VALUES (25586785, 'mrrobot47', 'C', 0, 0, 0, 0, 0, 0, 0, 'Riddhesh Sanghvi', '@easyengine @rtcamp', '', '未知', 'riddhesh.sanghvi@rtcamp.com', NULL, NULL, NULL, 0, 0, 42, 3, 0, 0, 0, '2017-02-06T13:54:53Z', '2024-10-25T04:39:20Z', 'https://avatars.githubusercontent.com/u/25586785?v=4', 'https://api.github.com/users/mrrobot47', 'https://github.com/mrrobot47', 'https://api.github.com/users/mrrobot47/followers', 'https://api.github.com/users/mrrobot47/following', 'https://api.github.com/users/mrrobot47/gists', 'https://api.github.com/users/mrrobot47/starred', 'https://api.github.com/users/mrrobot47/repos', 'https://api.github.com/users/mrrobot47/events', 'https://api.github.com/users/mrrobot47/received_events', 0); +INSERT INTO `developer` VALUES (25603368, 'gromit1811', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Buck', 'RUAG (Schweiz) AG', '', 'Hitzkirch, Switzerland', 'mb-tmp-tvguho.pbz@gromit.dyndns.org', NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2017-02-07T05:59:12Z', '2024-09-19T09:22:04Z', 'https://avatars.githubusercontent.com/u/25603368?v=4', 'https://api.github.com/users/gromit1811', 'https://github.com/gromit1811', 'https://api.github.com/users/gromit1811/followers', 'https://api.github.com/users/gromit1811/following', 'https://api.github.com/users/gromit1811/gists', 'https://api.github.com/users/gromit1811/starred', 'https://api.github.com/users/gromit1811/repos', 'https://api.github.com/users/gromit1811/events', 'https://api.github.com/users/gromit1811/received_events', 0); +INSERT INTO `developer` VALUES (25776920, 'Helvetian616', 'C', 0, 0, 0, 0, 0, 0, 0, 'Helvetian616', NULL, 'https://www.bitfire.io', '未知', NULL, 'true', NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2017-02-14T18:33:55Z', '2018-05-22T16:32:10Z', 'https://avatars.githubusercontent.com/u/25776920?v=4', 'https://api.github.com/users/Helvetian616', 'https://github.com/Helvetian616', 'https://api.github.com/users/Helvetian616/followers', 'https://api.github.com/users/Helvetian616/following', 'https://api.github.com/users/Helvetian616/gists', 'https://api.github.com/users/Helvetian616/starred', 'https://api.github.com/users/Helvetian616/repos', 'https://api.github.com/users/Helvetian616/events', 'https://api.github.com/users/Helvetian616/received_events', 0); +INSERT INTO `developer` VALUES (25833688, 'nicleary', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nick Cleary', 'Sherwin Williams', '', 'Cleveland', NULL, 'true', '99 Bugs in the code. \r\n99 Bugs in the code. \r\nTake one down, patch it around. \r\n127 Bugs in the code. ', NULL, 0, 0, 6, 7, 0, 0, 0, '2017-02-17T01:19:15Z', '2024-08-31T03:25:54Z', 'https://avatars.githubusercontent.com/u/25833688?v=4', 'https://api.github.com/users/nicleary', 'https://github.com/nicleary', 'https://api.github.com/users/nicleary/followers', 'https://api.github.com/users/nicleary/following', 'https://api.github.com/users/nicleary/gists', 'https://api.github.com/users/nicleary/starred', 'https://api.github.com/users/nicleary/repos', 'https://api.github.com/users/nicleary/events', 'https://api.github.com/users/nicleary/received_events', 0); +INSERT INTO `developer` VALUES (25858316, 'Momo733', 'C', 0, 0, 0, 0, 153, 0, 0, 'Hit', NULL, '', '未知', 'chengmomo733@gmail.com', NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2017-02-18T04:40:46Z', '2024-10-22T06:31:36Z', 'https://avatars.githubusercontent.com/u/25858316?v=4', 'https://api.github.com/users/Momo733', 'https://github.com/Momo733', 'https://api.github.com/users/Momo733/followers', 'https://api.github.com/users/Momo733/following', 'https://api.github.com/users/Momo733/gists', 'https://api.github.com/users/Momo733/starred', 'https://api.github.com/users/Momo733/repos', 'https://api.github.com/users/Momo733/events', 'https://api.github.com/users/Momo733/received_events', 0); +INSERT INTO `developer` VALUES (26171442, 'susheelachoudry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Susheela Choudry', 'SDE II @Razorpay | Ex BookMyShow', '', 'Bengaluru', 'susheelachoudry@gmail.com', NULL, NULL, NULL, 0, 0, 3, 2, 0, 0, 0, '2017-03-03T18:13:07Z', '2024-04-30T05:09:38Z', 'https://avatars.githubusercontent.com/u/26171442?v=4', 'https://api.github.com/users/susheelachoudry', 'https://github.com/susheelachoudry', 'https://api.github.com/users/susheelachoudry/followers', 'https://api.github.com/users/susheelachoudry/following', 'https://api.github.com/users/susheelachoudry/gists', 'https://api.github.com/users/susheelachoudry/starred', 'https://api.github.com/users/susheelachoudry/repos', 'https://api.github.com/users/susheelachoudry/events', 'https://api.github.com/users/susheelachoudry/received_events', 0); +INSERT INTO `developer` VALUES (26262074, 'cj4567', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-03-07T22:23:51Z', '2017-03-08T21:38:20Z', 'https://avatars.githubusercontent.com/u/26262074?v=4', 'https://api.github.com/users/cj4567', 'https://github.com/cj4567', 'https://api.github.com/users/cj4567/followers', 'https://api.github.com/users/cj4567/following', 'https://api.github.com/users/cj4567/gists', 'https://api.github.com/users/cj4567/starred', 'https://api.github.com/users/cj4567/repos', 'https://api.github.com/users/cj4567/events', 'https://api.github.com/users/cj4567/received_events', 0); +INSERT INTO `developer` VALUES (26278865, 'KunNw0n', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2017-03-08T14:16:12Z', '2024-10-10T10:26:30Z', 'https://avatars.githubusercontent.com/u/26278865?v=4', 'https://api.github.com/users/KunNw0n', 'https://github.com/KunNw0n', 'https://api.github.com/users/KunNw0n/followers', 'https://api.github.com/users/KunNw0n/following', 'https://api.github.com/users/KunNw0n/gists', 'https://api.github.com/users/KunNw0n/starred', 'https://api.github.com/users/KunNw0n/repos', 'https://api.github.com/users/KunNw0n/events', 'https://api.github.com/users/KunNw0n/received_events', 0); +INSERT INTO `developer` VALUES (26420009, 'jonasrutishauser', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonas Rutishauser', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 0, 0, 0, 0, '2017-03-14T21:36:27Z', '2023-10-08T15:32:50Z', 'https://avatars.githubusercontent.com/u/26420009?v=4', 'https://api.github.com/users/jonasrutishauser', 'https://github.com/jonasrutishauser', 'https://api.github.com/users/jonasrutishauser/followers', 'https://api.github.com/users/jonasrutishauser/following', 'https://api.github.com/users/jonasrutishauser/gists', 'https://api.github.com/users/jonasrutishauser/starred', 'https://api.github.com/users/jonasrutishauser/repos', 'https://api.github.com/users/jonasrutishauser/events', 'https://api.github.com/users/jonasrutishauser/received_events', 0); +INSERT INTO `developer` VALUES (26766668, 'sanch0panza', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2017-03-29T11:50:53Z', '2018-10-14T19:09:20Z', 'https://avatars.githubusercontent.com/u/26766668?v=4', 'https://api.github.com/users/sanch0panza', 'https://github.com/sanch0panza', 'https://api.github.com/users/sanch0panza/followers', 'https://api.github.com/users/sanch0panza/following', 'https://api.github.com/users/sanch0panza/gists', 'https://api.github.com/users/sanch0panza/starred', 'https://api.github.com/users/sanch0panza/repos', 'https://api.github.com/users/sanch0panza/events', 'https://api.github.com/users/sanch0panza/received_events', 0); +INSERT INTO `developer` VALUES (26802527, 'felipemgurian', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 8, 13, 0, 0, 0, '2017-03-30T20:34:50Z', '2024-04-19T14:41:01Z', 'https://avatars.githubusercontent.com/u/26802527?v=4', 'https://api.github.com/users/felipemgurian', 'https://github.com/felipemgurian', 'https://api.github.com/users/felipemgurian/followers', 'https://api.github.com/users/felipemgurian/following', 'https://api.github.com/users/felipemgurian/gists', 'https://api.github.com/users/felipemgurian/starred', 'https://api.github.com/users/felipemgurian/repos', 'https://api.github.com/users/felipemgurian/events', 'https://api.github.com/users/felipemgurian/received_events', 0); +INSERT INTO `developer` VALUES (26859746, 'non-github-bitcoin', 'C', 0.1403233113794729, 0, 0, 0, 0, 0, 0, 'Non-Github User Bitcoin Commits', NULL, '', '未知', NULL, NULL, 'This is a dummy account for those who have committed to bitcoin/bitcoin but do not have a github account. People included here: s_nakamoto, sirius-m, laszloh', NULL, 0, 0, 293, 0, 0, 0, 0, '2017-04-02T22:22:03Z', '2023-02-27T16:45:51Z', 'https://avatars.githubusercontent.com/u/26859746?v=4', 'https://api.github.com/users/non-github-bitcoin', 'https://github.com/non-github-bitcoin', 'https://api.github.com/users/non-github-bitcoin/followers', 'https://api.github.com/users/non-github-bitcoin/following', 'https://api.github.com/users/non-github-bitcoin/gists', 'https://api.github.com/users/non-github-bitcoin/starred', 'https://api.github.com/users/non-github-bitcoin/repos', 'https://api.github.com/users/non-github-bitcoin/events', 'https://api.github.com/users/non-github-bitcoin/received_events', 0); +INSERT INTO `developer` VALUES (26911387, 'sambonfire', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sam Christiansen', 'Bonfire Studios', 'https://bonfirestudios.com', 'California', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2017-04-04T22:22:12Z', '2024-07-22T16:34:00Z', 'https://avatars.githubusercontent.com/u/26911387?v=4', 'https://api.github.com/users/sambonfire', 'https://github.com/sambonfire', 'https://api.github.com/users/sambonfire/followers', 'https://api.github.com/users/sambonfire/following', 'https://api.github.com/users/sambonfire/gists', 'https://api.github.com/users/sambonfire/starred', 'https://api.github.com/users/sambonfire/repos', 'https://api.github.com/users/sambonfire/events', 'https://api.github.com/users/sambonfire/received_events', 0); +INSERT INTO `developer` VALUES (26996495, 'ac-mercury', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2017-04-07T06:00:35Z', '2019-08-21T13:05:31Z', 'https://avatars.githubusercontent.com/u/26996495?v=4', 'https://api.github.com/users/ac-mercury', 'https://github.com/ac-mercury', 'https://api.github.com/users/ac-mercury/followers', 'https://api.github.com/users/ac-mercury/following', 'https://api.github.com/users/ac-mercury/gists', 'https://api.github.com/users/ac-mercury/starred', 'https://api.github.com/users/ac-mercury/repos', 'https://api.github.com/users/ac-mercury/events', 'https://api.github.com/users/ac-mercury/received_events', 0); +INSERT INTO `developer` VALUES (27483702, 'RexSkz', 'C', 0.3975511621660344, 0, 0, 0, 0, 0, 0, 'Rex Zeng', '@MoeGolibrary ', 'https://forkmeongithub.com/', 'Shenzhen', 'rex@rexskz.info', NULL, 'MUGer, hacker, developer, amateur UI designer, punster, Japanese learner.', 'rexskz', 0, 0, 308, 106, 0, 0, 0, '2017-04-14T08:18:41Z', '2024-11-05T02:34:18Z', 'https://avatars.githubusercontent.com/u/27483702?v=4', 'https://api.github.com/users/RexSkz', 'https://github.com/RexSkz', 'https://api.github.com/users/RexSkz/followers', 'https://api.github.com/users/RexSkz/following', 'https://api.github.com/users/RexSkz/gists', 'https://api.github.com/users/RexSkz/starred', 'https://api.github.com/users/RexSkz/repos', 'https://api.github.com/users/RexSkz/events', 'https://api.github.com/users/RexSkz/received_events', 0); +INSERT INTO `developer` VALUES (27921616, 'javeeth', 'C', 0, 0, 0, 0, 0, 0, 0, 'javeeth', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2017-04-23T15:07:09Z', '2023-08-07T18:06:10Z', 'https://avatars.githubusercontent.com/u/27921616?v=4', 'https://api.github.com/users/javeeth', 'https://github.com/javeeth', 'https://api.github.com/users/javeeth/followers', 'https://api.github.com/users/javeeth/following', 'https://api.github.com/users/javeeth/gists', 'https://api.github.com/users/javeeth/starred', 'https://api.github.com/users/javeeth/repos', 'https://api.github.com/users/javeeth/events', 'https://api.github.com/users/javeeth/received_events', 0); +INSERT INTO `developer` VALUES (28055224, 'Paniker123', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paniker123', NULL, '', '未知', 'shakrek@gmail.com', NULL, NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2017-04-26T14:01:01Z', '2022-04-05T13:52:53Z', 'https://avatars.githubusercontent.com/u/28055224?v=4', 'https://api.github.com/users/Paniker123', 'https://github.com/Paniker123', 'https://api.github.com/users/Paniker123/followers', 'https://api.github.com/users/Paniker123/following', 'https://api.github.com/users/Paniker123/gists', 'https://api.github.com/users/Paniker123/starred', 'https://api.github.com/users/Paniker123/repos', 'https://api.github.com/users/Paniker123/events', 'https://api.github.com/users/Paniker123/received_events', 0); +INSERT INTO `developer` VALUES (28100191, 'xsseng', 'C', 0, 0, 0, 0, 0, 0, 0, 'Enoch', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 13, 17, 0, 0, 0, '2017-04-27T12:24:12Z', '2024-03-13T14:55:08Z', 'https://avatars.githubusercontent.com/u/28100191?v=4', 'https://api.github.com/users/xsseng', 'https://github.com/xsseng', 'https://api.github.com/users/xsseng/followers', 'https://api.github.com/users/xsseng/following', 'https://api.github.com/users/xsseng/gists', 'https://api.github.com/users/xsseng/starred', 'https://api.github.com/users/xsseng/repos', 'https://api.github.com/users/xsseng/events', 'https://api.github.com/users/xsseng/received_events', 0); +INSERT INTO `developer` VALUES (28260709, 'toVersus', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tsubasa Nagasawa', NULL, '', 'Tokyo', NULL, NULL, 'Unskilled but lazy programmer in Japan. Gopher/Rustacean/Kubernetes\r\n', 'toversus26', 0, 0, 23, 6, 0, 0, 0, '2017-05-01T13:13:34Z', '2024-10-03T11:39:47Z', 'https://avatars.githubusercontent.com/u/28260709?v=4', 'https://api.github.com/users/toVersus', 'https://github.com/toVersus', 'https://api.github.com/users/toVersus/followers', 'https://api.github.com/users/toVersus/following', 'https://api.github.com/users/toVersus/gists', 'https://api.github.com/users/toVersus/starred', 'https://api.github.com/users/toVersus/repos', 'https://api.github.com/users/toVersus/events', 'https://api.github.com/users/toVersus/received_events', 0); +INSERT INTO `developer` VALUES (28264901, 'mauryaak15', 'C', 0, 0, 0, 0, 0, 0, 0, 'Abhishek Maurya', NULL, '', 'New Delhi', 'abhishekmaurya.kps@gmail.com', 'true', 'I am a web developer, interested in learning new web technologies currently focusing on MEAN stack development.', NULL, 0, 0, 6, 5, 0, 0, 0, '2017-05-01T15:56:20Z', '2024-10-30T11:40:16Z', 'https://avatars.githubusercontent.com/u/28264901?v=4', 'https://api.github.com/users/mauryaak15', 'https://github.com/mauryaak15', 'https://api.github.com/users/mauryaak15/followers', 'https://api.github.com/users/mauryaak15/following', 'https://api.github.com/users/mauryaak15/gists', 'https://api.github.com/users/mauryaak15/starred', 'https://api.github.com/users/mauryaak15/repos', 'https://api.github.com/users/mauryaak15/events', 'https://api.github.com/users/mauryaak15/received_events', 0); +INSERT INTO `developer` VALUES (28584151, 'jjangga0214', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 69, 33, 0, 0, 0, '2017-05-10T02:44:00Z', '2024-10-10T03:20:53Z', 'https://avatars.githubusercontent.com/u/28584151?v=4', 'https://api.github.com/users/jjangga0214', 'https://github.com/jjangga0214', 'https://api.github.com/users/jjangga0214/followers', 'https://api.github.com/users/jjangga0214/following', 'https://api.github.com/users/jjangga0214/gists', 'https://api.github.com/users/jjangga0214/starred', 'https://api.github.com/users/jjangga0214/repos', 'https://api.github.com/users/jjangga0214/events', 'https://api.github.com/users/jjangga0214/received_events', 0); +INSERT INTO `developer` VALUES (28626499, 'Akshay090', 'C', 0, 0, 0, 0, 0, 0, 0, 'Akshay Ashok', NULL, 'https://akshayashok.dev', '未知', NULL, 'true', 'Señor Frontend Engineer at @razorpay', '10xAkshay', 0, 0, 73, 184, 0, 0, 0, '2017-05-11T13:02:33Z', '2024-10-19T13:19:06Z', 'https://avatars.githubusercontent.com/u/28626499?v=4', 'https://api.github.com/users/Akshay090', 'https://github.com/Akshay090', 'https://api.github.com/users/Akshay090/followers', 'https://api.github.com/users/Akshay090/following', 'https://api.github.com/users/Akshay090/gists', 'https://api.github.com/users/Akshay090/starred', 'https://api.github.com/users/Akshay090/repos', 'https://api.github.com/users/Akshay090/events', 'https://api.github.com/users/Akshay090/received_events', 0); +INSERT INTO `developer` VALUES (28734962, 'bogo96', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', 'bogo96@kaist.ac.kr', NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2017-05-16T15:26:03Z', '2024-06-02T12:33:32Z', 'https://avatars.githubusercontent.com/u/28734962?v=4', 'https://api.github.com/users/bogo96', 'https://github.com/bogo96', 'https://api.github.com/users/bogo96/followers', 'https://api.github.com/users/bogo96/following', 'https://api.github.com/users/bogo96/gists', 'https://api.github.com/users/bogo96/starred', 'https://api.github.com/users/bogo96/repos', 'https://api.github.com/users/bogo96/events', 'https://api.github.com/users/bogo96/received_events', 0); +INSERT INTO `developer` VALUES (28798827, 'gstvg', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', 'Brazil', NULL, 'true', NULL, NULL, 0, 0, 8, 10, 0, 0, 0, '2017-05-19T04:29:31Z', '2024-10-21T11:34:20Z', 'https://avatars.githubusercontent.com/u/28798827?v=4', 'https://api.github.com/users/gstvg', 'https://github.com/gstvg', 'https://api.github.com/users/gstvg/followers', 'https://api.github.com/users/gstvg/following', 'https://api.github.com/users/gstvg/gists', 'https://api.github.com/users/gstvg/starred', 'https://api.github.com/users/gstvg/repos', 'https://api.github.com/users/gstvg/events', 'https://api.github.com/users/gstvg/received_events', 0); +INSERT INTO `developer` VALUES (29060284, 'dechoma', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-05-30T10:10:11Z', '2024-09-03T09:43:52Z', 'https://avatars.githubusercontent.com/u/29060284?v=4', 'https://api.github.com/users/dechoma', 'https://github.com/dechoma', 'https://api.github.com/users/dechoma/followers', 'https://api.github.com/users/dechoma/following', 'https://api.github.com/users/dechoma/gists', 'https://api.github.com/users/dechoma/starred', 'https://api.github.com/users/dechoma/repos', 'https://api.github.com/users/dechoma/events', 'https://api.github.com/users/dechoma/received_events', 0); +INSERT INTO `developer` VALUES (29266387, 'LithiumBloom', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'thomas.newbown', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-06-08T01:02:22Z', '2024-10-09T05:22:43Z', 'https://avatars.githubusercontent.com/u/29266387?v=4', 'https://api.github.com/users/LithiumBloom', 'https://github.com/LithiumBloom', 'https://api.github.com/users/LithiumBloom/followers', 'https://api.github.com/users/LithiumBloom/following', 'https://api.github.com/users/LithiumBloom/gists', 'https://api.github.com/users/LithiumBloom/starred', 'https://api.github.com/users/LithiumBloom/repos', 'https://api.github.com/users/LithiumBloom/events', 'https://api.github.com/users/LithiumBloom/received_events', 0); +INSERT INTO `developer` VALUES (29268173, 'sre-bot', 'C', 0, 0, 0, 0, 0, 0, 0, 'SRE bot', 'PingCAP', '', '未知', 'sre-bot@pingcap.com', NULL, NULL, NULL, 0, 0, 14, 0, 0, 0, 0, '2017-06-08T03:08:03Z', '2023-08-08T08:45:14Z', 'https://avatars.githubusercontent.com/u/29268173?v=4', 'https://api.github.com/users/sre-bot', 'https://github.com/sre-bot', 'https://api.github.com/users/sre-bot/followers', 'https://api.github.com/users/sre-bot/following', 'https://api.github.com/users/sre-bot/gists', 'https://api.github.com/users/sre-bot/starred', 'https://api.github.com/users/sre-bot/repos', 'https://api.github.com/users/sre-bot/events', 'https://api.github.com/users/sre-bot/received_events', 0); +INSERT INTO `developer` VALUES (29303618, 'sumitd94', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sumit Dhanania', NULL, '', 'Delhi, India', NULL, NULL, 'Founding Engineer @Multiwoven ', 'DhananiaSumit', 0, 0, 29, 1, 0, 0, 0, '2017-06-09T10:15:50Z', '2024-10-17T15:28:59Z', 'https://avatars.githubusercontent.com/u/29303618?v=4', 'https://api.github.com/users/sumitd94', 'https://github.com/sumitd94', 'https://api.github.com/users/sumitd94/followers', 'https://api.github.com/users/sumitd94/following', 'https://api.github.com/users/sumitd94/gists', 'https://api.github.com/users/sumitd94/starred', 'https://api.github.com/users/sumitd94/repos', 'https://api.github.com/users/sumitd94/events', 'https://api.github.com/users/sumitd94/received_events', 0); +INSERT INTO `developer` VALUES (29385253, 'lugaxker', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ludovic Lars', NULL, 'https://viresinnumeris.fr', 'Brittany', NULL, NULL, NULL, NULL, 0, 0, 9, 2, 0, 0, 0, '2017-06-12T19:52:54Z', '2024-09-04T13:14:36Z', 'https://avatars.githubusercontent.com/u/29385253?v=4', 'https://api.github.com/users/lugaxker', 'https://github.com/lugaxker', 'https://api.github.com/users/lugaxker/followers', 'https://api.github.com/users/lugaxker/following', 'https://api.github.com/users/lugaxker/gists', 'https://api.github.com/users/lugaxker/starred', 'https://api.github.com/users/lugaxker/repos', 'https://api.github.com/users/lugaxker/events', 'https://api.github.com/users/lugaxker/received_events', 0); +INSERT INTO `developer` VALUES (29445066, 'liu-xuewen', 'C', 0, 0, 0, 0, 0, 0, 0, 'liuxuewen', 'tencent', '', '深圳', 'liiuxuewen@gmail.com', NULL, 'Go ', NULL, 0, 0, 21, 26, 0, 0, 0, '2017-06-15T02:05:35Z', '2024-09-16T10:40:46Z', 'https://avatars.githubusercontent.com/u/29445066?v=4', 'https://api.github.com/users/liu-xuewen', 'https://github.com/liu-xuewen', 'https://api.github.com/users/liu-xuewen/followers', 'https://api.github.com/users/liu-xuewen/following', 'https://api.github.com/users/liu-xuewen/gists', 'https://api.github.com/users/liu-xuewen/starred', 'https://api.github.com/users/liu-xuewen/repos', 'https://api.github.com/users/liu-xuewen/events', 'https://api.github.com/users/liu-xuewen/received_events', 0); +INSERT INTO `developer` VALUES (29480593, 'mfr-itr', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-06-16T10:13:20Z', '2019-07-23T09:15:00Z', 'https://avatars.githubusercontent.com/u/29480593?v=4', 'https://api.github.com/users/mfr-itr', 'https://github.com/mfr-itr', 'https://api.github.com/users/mfr-itr/followers', 'https://api.github.com/users/mfr-itr/following', 'https://api.github.com/users/mfr-itr/gists', 'https://api.github.com/users/mfr-itr/starred', 'https://api.github.com/users/mfr-itr/repos', 'https://api.github.com/users/mfr-itr/events', 'https://api.github.com/users/mfr-itr/received_events', 0); +INSERT INTO `developer` VALUES (29582865, 'felipecrs', 'C', 0, 0, 0, 0, 0, 0, 0, 'Felipe Santos', '@inatel @ericsson', '', 'Brazil', 'felipecassiors@gmail.com', 'true', 'A Computer Engineer, passionate for open source.', NULL, 0, 0, 123, 41, 0, 0, 0, '2017-06-20T20:07:31Z', '2024-10-27T14:21:02Z', 'https://avatars.githubusercontent.com/u/29582865?v=4', 'https://api.github.com/users/felipecrs', 'https://github.com/felipecrs', 'https://api.github.com/users/felipecrs/followers', 'https://api.github.com/users/felipecrs/following', 'https://api.github.com/users/felipecrs/gists', 'https://api.github.com/users/felipecrs/starred', 'https://api.github.com/users/felipecrs/repos', 'https://api.github.com/users/felipecrs/events', 'https://api.github.com/users/felipecrs/received_events', 0); +INSERT INTO `developer` VALUES (29686866, 'cseas', 'C', 0, 0, 0, 0, 0, 0, 0, 'Abhijeet Singh', '@razorpay @mozilla @hazel-ui ', 'https://blog.absingh.com/', 'Bangalore, India', 'contact.abhijeetsingh@gmail.com', 'true', 'Mozilla Rep | Software Engineer', 'cse_as', 0, 0, 173, 35, 0, 0, 0, '2017-06-25T08:36:36Z', '2024-08-06T13:42:50Z', 'https://avatars.githubusercontent.com/u/29686866?v=4', 'https://api.github.com/users/cseas', 'https://github.com/cseas', 'https://api.github.com/users/cseas/followers', 'https://api.github.com/users/cseas/following', 'https://api.github.com/users/cseas/gists', 'https://api.github.com/users/cseas/starred', 'https://api.github.com/users/cseas/repos', 'https://api.github.com/users/cseas/events', 'https://api.github.com/users/cseas/received_events', 0); +INSERT INTO `developer` VALUES (30250994, 'rasinfosec', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, 'Roy Shoemake', NULL, 0, 0, 6, 0, 0, 0, 0, '2017-07-18T03:18:11Z', '2024-09-26T15:48:57Z', 'https://avatars.githubusercontent.com/u/30250994?v=4', 'https://api.github.com/users/rasinfosec', 'https://github.com/rasinfosec', 'https://api.github.com/users/rasinfosec/followers', 'https://api.github.com/users/rasinfosec/following', 'https://api.github.com/users/rasinfosec/gists', 'https://api.github.com/users/rasinfosec/starred', 'https://api.github.com/users/rasinfosec/repos', 'https://api.github.com/users/rasinfosec/events', 'https://api.github.com/users/rasinfosec/received_events', 0); +INSERT INTO `developer` VALUES (30441101, 'sethp-nr', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 0, 0, 0, 0, '2017-07-25T15:38:12Z', '2020-06-29T18:57:26Z', 'https://avatars.githubusercontent.com/u/30441101?v=4', 'https://api.github.com/users/sethp-nr', 'https://github.com/sethp-nr', 'https://api.github.com/users/sethp-nr/followers', 'https://api.github.com/users/sethp-nr/following', 'https://api.github.com/users/sethp-nr/gists', 'https://api.github.com/users/sethp-nr/starred', 'https://api.github.com/users/sethp-nr/repos', 'https://api.github.com/users/sethp-nr/events', 'https://api.github.com/users/sethp-nr/received_events', 0); +INSERT INTO `developer` VALUES (30473564, 'MariePMcGarry', 'C', 0, 0, 0, 0, 0, 0, 0, 'Marie McGarry', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2017-07-26T15:46:13Z', '2022-11-28T16:57:18Z', 'https://avatars.githubusercontent.com/u/30473564?v=4', 'https://api.github.com/users/MariePMcGarry', 'https://github.com/MariePMcGarry', 'https://api.github.com/users/MariePMcGarry/followers', 'https://api.github.com/users/MariePMcGarry/following', 'https://api.github.com/users/MariePMcGarry/gists', 'https://api.github.com/users/MariePMcGarry/starred', 'https://api.github.com/users/MariePMcGarry/repos', 'https://api.github.com/users/MariePMcGarry/events', 'https://api.github.com/users/MariePMcGarry/received_events', 0); +INSERT INTO `developer` VALUES (30618122, 'rzpamidi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Prashanth Pamidi', '@razorpay ', '', 'Bengaluru', NULL, NULL, 'life.bind(happiness);', NULL, 0, 0, 2, 0, 0, 0, 0, '2017-08-01T07:23:31Z', '2018-11-08T11:38:45Z', 'https://avatars.githubusercontent.com/u/30618122?v=4', 'https://api.github.com/users/rzpamidi', 'https://github.com/rzpamidi', 'https://api.github.com/users/rzpamidi/followers', 'https://api.github.com/users/rzpamidi/following', 'https://api.github.com/users/rzpamidi/gists', 'https://api.github.com/users/rzpamidi/starred', 'https://api.github.com/users/rzpamidi/repos', 'https://api.github.com/users/rzpamidi/events', 'https://api.github.com/users/rzpamidi/received_events', 0); +INSERT INTO `developer` VALUES (30642540, 'hotpheex', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 2, 0, 0, 0, '2017-08-02T01:57:21Z', '2024-10-26T00:27:25Z', 'https://avatars.githubusercontent.com/u/30642540?v=4', 'https://api.github.com/users/hotpheex', 'https://github.com/hotpheex', 'https://api.github.com/users/hotpheex/followers', 'https://api.github.com/users/hotpheex/following', 'https://api.github.com/users/hotpheex/gists', 'https://api.github.com/users/hotpheex/starred', 'https://api.github.com/users/hotpheex/repos', 'https://api.github.com/users/hotpheex/events', 'https://api.github.com/users/hotpheex/received_events', 0); +INSERT INTO `developer` VALUES (30696104, 'PujanShah22', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pujan Shah', NULL, 'https://pujanshah22.github.io/site/', 'Bangalore, India', 'pujanshah22@gmail.com', 'true', 'React-Native & MERN Stack Developer', 'Pujan_07', 0, 0, 2, 0, 0, 0, 0, '2017-08-03T14:08:11Z', '2024-10-05T16:47:06Z', 'https://avatars.githubusercontent.com/u/30696104?v=4', 'https://api.github.com/users/PujanShah22', 'https://github.com/PujanShah22', 'https://api.github.com/users/PujanShah22/followers', 'https://api.github.com/users/PujanShah22/following', 'https://api.github.com/users/PujanShah22/gists', 'https://api.github.com/users/PujanShah22/starred', 'https://api.github.com/users/PujanShah22/repos', 'https://api.github.com/users/PujanShah22/events', 'https://api.github.com/users/PujanShah22/received_events', 0); +INSERT INTO `developer` VALUES (30868661, 'namloc2001', 'C', 0, 0, 0, 0, 0, 0, 0, 'Matt', NULL, '', '未知', NULL, NULL, 'Interested in DevSecOps, containers, Kubernetes, OpenShift and security', 'mattcolman', 0, 0, 5, 0, 0, 0, 0, '2017-08-09T13:51:02Z', '2022-02-18T15:45:39Z', 'https://avatars.githubusercontent.com/u/30868661?v=4', 'https://api.github.com/users/namloc2001', 'https://github.com/namloc2001', 'https://api.github.com/users/namloc2001/followers', 'https://api.github.com/users/namloc2001/following', 'https://api.github.com/users/namloc2001/gists', 'https://api.github.com/users/namloc2001/starred', 'https://api.github.com/users/namloc2001/repos', 'https://api.github.com/users/namloc2001/events', 'https://api.github.com/users/namloc2001/received_events', 0); +INSERT INTO `developer` VALUES (30922556, 'lilin90', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lilian Lee', '@PingCAP', 'https://lilianlee.me', 'Beijing, China', 'lilinup90@gmail.com', NULL, 'Senior Technical Writer | Content Strategist 微信公众号:技术传播那些事儿', 'lilianlee90', 0, 0, 148, 12, 0, 0, 0, '2017-08-11T07:25:55Z', '2024-11-01T11:45:48Z', 'https://avatars.githubusercontent.com/u/30922556?v=4', 'https://api.github.com/users/lilin90', 'https://github.com/lilin90', 'https://api.github.com/users/lilin90/followers', 'https://api.github.com/users/lilin90/following', 'https://api.github.com/users/lilin90/gists', 'https://api.github.com/users/lilin90/starred', 'https://api.github.com/users/lilin90/repos', 'https://api.github.com/users/lilin90/events', 'https://api.github.com/users/lilin90/received_events', 0); +INSERT INTO `developer` VALUES (30925288, 'iainrawson', 'C', 0, 0, 0, 0, 0, 0, 0, 'Iain Rawson', '@ovotech ', '', 'Grundisburgh, Suffolk', NULL, NULL, NULL, NULL, 0, 0, 0, 2, 0, 0, 0, '2017-08-11T09:23:11Z', '2024-10-29T09:58:26Z', 'https://avatars.githubusercontent.com/u/30925288?v=4', 'https://api.github.com/users/iainrawson', 'https://github.com/iainrawson', 'https://api.github.com/users/iainrawson/followers', 'https://api.github.com/users/iainrawson/following', 'https://api.github.com/users/iainrawson/gists', 'https://api.github.com/users/iainrawson/starred', 'https://api.github.com/users/iainrawson/repos', 'https://api.github.com/users/iainrawson/events', 'https://api.github.com/users/iainrawson/received_events', 0); +INSERT INTO `developer` VALUES (30938344, 'jfreeland', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joey Freeland', NULL, '', 'Miami, FL', NULL, NULL, NULL, NULL, 0, 0, 36, 17, 0, 0, 0, '2017-08-11T20:14:34Z', '2024-10-14T18:26:05Z', 'https://avatars.githubusercontent.com/u/30938344?v=4', 'https://api.github.com/users/jfreeland', 'https://github.com/jfreeland', 'https://api.github.com/users/jfreeland/followers', 'https://api.github.com/users/jfreeland/following', 'https://api.github.com/users/jfreeland/gists', 'https://api.github.com/users/jfreeland/starred', 'https://api.github.com/users/jfreeland/repos', 'https://api.github.com/users/jfreeland/events', 'https://api.github.com/users/jfreeland/received_events', 0); +INSERT INTO `developer` VALUES (30949385, 'saurabhdaware', 'B-', 27.903782672942356, 0, 0, 0, 0, 0, 0, 'Saurabh Daware', 'Frontend @razorpay | Building @abelljs', 'https://saurabhdaware.in/', 'India', 'saurabhdaware99@gmail.com', 'true', 'Frontend @razorpay || Building @abelljs, a static site generator\r\n', 'saurabhdawaree', 0, 0, 1912, 204, 0, 0, 0, '2017-08-12T07:58:05Z', '2024-11-01T06:18:44Z', 'https://avatars.githubusercontent.com/u/30949385?v=4', 'https://api.github.com/users/saurabhdaware', 'https://github.com/saurabhdaware', 'https://api.github.com/users/saurabhdaware/followers', 'https://api.github.com/users/saurabhdaware/following', 'https://api.github.com/users/saurabhdaware/gists', 'https://api.github.com/users/saurabhdaware/starred', 'https://api.github.com/users/saurabhdaware/repos', 'https://api.github.com/users/saurabhdaware/events', 'https://api.github.com/users/saurabhdaware/received_events', 0); +INSERT INTO `developer` VALUES (30949703, 'swati31196', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 0, 0, 0, 0, '2017-08-12T08:16:41Z', '2024-10-22T11:45:44Z', 'https://avatars.githubusercontent.com/u/30949703?v=4', 'https://api.github.com/users/swati31196', 'https://github.com/swati31196', 'https://api.github.com/users/swati31196/followers', 'https://api.github.com/users/swati31196/following', 'https://api.github.com/users/swati31196/gists', 'https://api.github.com/users/swati31196/starred', 'https://api.github.com/users/swati31196/repos', 'https://api.github.com/users/swati31196/events', 'https://api.github.com/users/swati31196/received_events', 0); +INSERT INTO `developer` VALUES (31490398, 'qb-abdul', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 26, 0, 0, 0, '2017-08-30T20:58:24Z', '2023-07-18T08:34:16Z', 'https://avatars.githubusercontent.com/u/31490398?v=4', 'https://api.github.com/users/qb-abdul', 'https://github.com/qb-abdul', 'https://api.github.com/users/qb-abdul/followers', 'https://api.github.com/users/qb-abdul/following', 'https://api.github.com/users/qb-abdul/gists', 'https://api.github.com/users/qb-abdul/starred', 'https://api.github.com/users/qb-abdul/repos', 'https://api.github.com/users/qb-abdul/events', 'https://api.github.com/users/qb-abdul/received_events', 0); +INSERT INTO `developer` VALUES (31586309, 'kadarsh11', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adarsh Kumar', 'razorpay.com', '', 'Delhi', NULL, NULL, NULL, NULL, 0, 0, 5, 2, 0, 0, 0, '2017-09-03T09:09:42Z', '2024-10-17T18:54:38Z', 'https://avatars.githubusercontent.com/u/31586309?v=4', 'https://api.github.com/users/kadarsh11', 'https://github.com/kadarsh11', 'https://api.github.com/users/kadarsh11/followers', 'https://api.github.com/users/kadarsh11/following', 'https://api.github.com/users/kadarsh11/gists', 'https://api.github.com/users/kadarsh11/starred', 'https://api.github.com/users/kadarsh11/repos', 'https://api.github.com/users/kadarsh11/events', 'https://api.github.com/users/kadarsh11/received_events', 0); +INSERT INTO `developer` VALUES (31592221, 'rodrigodc07', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 1, 0, 0, 0, '2017-09-03T14:37:10Z', '2024-01-09T14:57:45Z', 'https://avatars.githubusercontent.com/u/31592221?v=4', 'https://api.github.com/users/rodrigodc07', 'https://github.com/rodrigodc07', 'https://api.github.com/users/rodrigodc07/followers', 'https://api.github.com/users/rodrigodc07/following', 'https://api.github.com/users/rodrigodc07/gists', 'https://api.github.com/users/rodrigodc07/starred', 'https://api.github.com/users/rodrigodc07/repos', 'https://api.github.com/users/rodrigodc07/events', 'https://api.github.com/users/rodrigodc07/received_events', 0); +INSERT INTO `developer` VALUES (31597172, 'dr3dd589', 'C', 0, 0, 0, 0, 0, 0, 0, 'Saurabh', 'Nutanix', 'dr3dd.gitlab.io', 'IIT Roorkee', 'skumar1@mt.iitr.ac.in', NULL, 'Application Security Engineer | GSoC\'19 @OWASP\r\n', '_dr3dd_', 0, 0, 25, 37, 0, 0, 0, '2017-09-03T19:02:49Z', '2024-10-08T16:23:08Z', 'https://avatars.githubusercontent.com/u/31597172?v=4', 'https://api.github.com/users/dr3dd589', 'https://github.com/dr3dd589', 'https://api.github.com/users/dr3dd589/followers', 'https://api.github.com/users/dr3dd589/following', 'https://api.github.com/users/dr3dd589/gists', 'https://api.github.com/users/dr3dd589/starred', 'https://api.github.com/users/dr3dd589/repos', 'https://api.github.com/users/dr3dd589/events', 'https://api.github.com/users/dr3dd589/received_events', 0); +INSERT INTO `developer` VALUES (31785518, 'luizparente', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luiz Parente', NULL, 'luizparente.com', 'Canada', NULL, NULL, 'Software Engineer', NULL, 0, 0, 33, 1, 0, 0, 0, '2017-09-09T02:11:11Z', '2024-11-04T20:18:53Z', 'https://avatars.githubusercontent.com/u/31785518?v=4', 'https://api.github.com/users/luizparente', 'https://github.com/luizparente', 'https://api.github.com/users/luizparente/followers', 'https://api.github.com/users/luizparente/following', 'https://api.github.com/users/luizparente/gists', 'https://api.github.com/users/luizparente/starred', 'https://api.github.com/users/luizparente/repos', 'https://api.github.com/users/luizparente/events', 'https://api.github.com/users/luizparente/received_events', 0); +INSERT INTO `developer` VALUES (31818562, 'SunatP', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sunat Praphanwong', 'MFEC Public Company Limited', '', 'Thailand, Bangkok', NULL, NULL, 'Hi, I Am Sunat. I code and obfuscate.', 'Sunat_P', 0, 0, 35, 69, 0, 0, 0, '2017-09-10T10:04:02Z', '2024-08-14T09:57:53Z', 'https://avatars.githubusercontent.com/u/31818562?v=4', 'https://api.github.com/users/SunatP', 'https://github.com/SunatP', 'https://api.github.com/users/SunatP/followers', 'https://api.github.com/users/SunatP/following', 'https://api.github.com/users/SunatP/gists', 'https://api.github.com/users/SunatP/starred', 'https://api.github.com/users/SunatP/repos', 'https://api.github.com/users/SunatP/events', 'https://api.github.com/users/SunatP/received_events', 0); +INSERT INTO `developer` VALUES (31823611, 'tarungupta9', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tarun Gupta', NULL, 'https://www.linkedin.com/in/tarungupta2811/', '未知', NULL, NULL, 'software engineer', 'tarun_gupta7', 0, 0, 0, 0, 0, 0, 0, '2017-09-10T14:35:06Z', '2024-10-17T07:15:07Z', 'https://avatars.githubusercontent.com/u/31823611?v=4', 'https://api.github.com/users/tarungupta9', 'https://github.com/tarungupta9', 'https://api.github.com/users/tarungupta9/followers', 'https://api.github.com/users/tarungupta9/following', 'https://api.github.com/users/tarungupta9/gists', 'https://api.github.com/users/tarungupta9/starred', 'https://api.github.com/users/tarungupta9/repos', 'https://api.github.com/users/tarungupta9/events', 'https://api.github.com/users/tarungupta9/received_events', 0); +INSERT INTO `developer` VALUES (31936063, 'Galuf1', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, 'El pato para volar, las alas las encartucha...', NULL, 0, 0, 5, 16, 0, 0, 0, '2017-09-13T19:10:50Z', '2024-07-12T13:12:11Z', 'https://avatars.githubusercontent.com/u/31936063?v=4', 'https://api.github.com/users/Galuf1', 'https://github.com/Galuf1', 'https://api.github.com/users/Galuf1/followers', 'https://api.github.com/users/Galuf1/following', 'https://api.github.com/users/Galuf1/gists', 'https://api.github.com/users/Galuf1/starred', 'https://api.github.com/users/Galuf1/repos', 'https://api.github.com/users/Galuf1/events', 'https://api.github.com/users/Galuf1/received_events', 0); +INSERT INTO `developer` VALUES (32021987, 'iamakshatjain', 'C', 0, 0, 0, 0, 0, 0, 0, 'Akshat Jain', 'Razorpay', 'iamakshatjain.github.io', '未知', NULL, NULL, 'Engineering @razorpay ', 'iamakshtjain', 0, 0, 12, 55, 0, 0, 0, '2017-09-16T19:04:37Z', '2024-08-07T03:27:25Z', 'https://avatars.githubusercontent.com/u/32021987?v=4', 'https://api.github.com/users/iamakshatjain', 'https://github.com/iamakshatjain', 'https://api.github.com/users/iamakshatjain/followers', 'https://api.github.com/users/iamakshatjain/following', 'https://api.github.com/users/iamakshatjain/gists', 'https://api.github.com/users/iamakshatjain/starred', 'https://api.github.com/users/iamakshatjain/repos', 'https://api.github.com/users/iamakshatjain/events', 'https://api.github.com/users/iamakshatjain/received_events', 0); +INSERT INTO `developer` VALUES (32022231, 'Christopher-Zeng', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-09-16T19:23:20Z', '2024-06-16T03:16:39Z', 'https://avatars.githubusercontent.com/u/32022231?v=4', 'https://api.github.com/users/Christopher-Zeng', 'https://github.com/Christopher-Zeng', 'https://api.github.com/users/Christopher-Zeng/followers', 'https://api.github.com/users/Christopher-Zeng/following', 'https://api.github.com/users/Christopher-Zeng/gists', 'https://api.github.com/users/Christopher-Zeng/starred', 'https://api.github.com/users/Christopher-Zeng/repos', 'https://api.github.com/users/Christopher-Zeng/events', 'https://api.github.com/users/Christopher-Zeng/received_events', 0); +INSERT INTO `developer` VALUES (32174276, 'semantic-release-bot', 'C', 5.799336028683828, 0, 0, 0, 0, 0, 0, 'Semantic Release Bot', '@semantic-release', 'http://semantic-release.org/', 'CI', NULL, NULL, 'helping out my @semantic-release bots', NULL, 0, 0, 623, 0, 0, 0, 0, '2017-09-21T17:06:24Z', '2021-11-05T19:19:52Z', 'https://avatars.githubusercontent.com/u/32174276?v=4', 'https://api.github.com/users/semantic-release-bot', 'https://github.com/semantic-release-bot', 'https://api.github.com/users/semantic-release-bot/followers', 'https://api.github.com/users/semantic-release-bot/following', 'https://api.github.com/users/semantic-release-bot/gists', 'https://api.github.com/users/semantic-release-bot/starred', 'https://api.github.com/users/semantic-release-bot/repos', 'https://api.github.com/users/semantic-release-bot/events', 'https://api.github.com/users/semantic-release-bot/received_events', 0); +INSERT INTO `developer` VALUES (32314686, 'BigBlockIfTrue', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2017-09-26T23:30:00Z', '2021-04-06T10:00:28Z', 'https://avatars.githubusercontent.com/u/32314686?v=4', 'https://api.github.com/users/BigBlockIfTrue', 'https://github.com/BigBlockIfTrue', 'https://api.github.com/users/BigBlockIfTrue/followers', 'https://api.github.com/users/BigBlockIfTrue/following', 'https://api.github.com/users/BigBlockIfTrue/gists', 'https://api.github.com/users/BigBlockIfTrue/starred', 'https://api.github.com/users/BigBlockIfTrue/repos', 'https://api.github.com/users/BigBlockIfTrue/events', 'https://api.github.com/users/BigBlockIfTrue/received_events', 0); +INSERT INTO `developer` VALUES (32591853, '8BitJonny', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timon Christiansen', '@Hyrule-Technologies @codeuniversity', 'timon.codes', 'Berlin', 'christiansen.timon@gmail.com', NULL, 'Lover of things like Regex, Convey\'s Game of Life and Musicals.\r\nCurrently mostly a Go Backend Dev', NULL, 0, 0, 65, 16, 0, 0, 0, '2017-10-07T09:52:39Z', '2024-10-14T08:37:15Z', 'https://avatars.githubusercontent.com/u/32591853?v=4', 'https://api.github.com/users/8BitJonny', 'https://github.com/8BitJonny', 'https://api.github.com/users/8BitJonny/followers', 'https://api.github.com/users/8BitJonny/following', 'https://api.github.com/users/8BitJonny/gists', 'https://api.github.com/users/8BitJonny/starred', 'https://api.github.com/users/8BitJonny/repos', 'https://api.github.com/users/8BitJonny/events', 'https://api.github.com/users/8BitJonny/received_events', 0); +INSERT INTO `developer` VALUES (32609064, 'eamesyi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@tokenized ', 'http://tokenized.com', 'Gold Coast, Australia', NULL, NULL, NULL, NULL, 0, 0, 9, 3, 0, 0, 0, '2017-10-08T07:16:53Z', '2024-04-09T23:34:18Z', 'https://avatars.githubusercontent.com/u/32609064?v=4', 'https://api.github.com/users/eamesyi', 'https://github.com/eamesyi', 'https://api.github.com/users/eamesyi/followers', 'https://api.github.com/users/eamesyi/following', 'https://api.github.com/users/eamesyi/gists', 'https://api.github.com/users/eamesyi/starred', 'https://api.github.com/users/eamesyi/repos', 'https://api.github.com/users/eamesyi/events', 'https://api.github.com/users/eamesyi/received_events', 0); +INSERT INTO `developer` VALUES (32963518, 'hebasto', 'C', 11.78417069031783, 0, 0, 0, 0, 0, 0, 'Hennadii Stepanov', 'Bitcoin Core', 'https://bitcoincore.org/', 'Ukraine', NULL, 'true', 'gpg:D1DBF2C4B96F2DEBF4C16654410108112E7EA81F\r\ndonate:bc1qfa666hqkujah9jd09gp7esghdqn6jssrrjyc44', 'hhebasto', 0, 0, 972, 5, 0, 0, 0, '2017-10-20T16:07:57Z', '2024-11-01T22:19:40Z', 'https://avatars.githubusercontent.com/u/32963518?v=4', 'https://api.github.com/users/hebasto', 'https://github.com/hebasto', 'https://api.github.com/users/hebasto/followers', 'https://api.github.com/users/hebasto/following', 'https://api.github.com/users/hebasto/gists', 'https://api.github.com/users/hebasto/starred', 'https://api.github.com/users/hebasto/repos', 'https://api.github.com/users/hebasto/events', 'https://api.github.com/users/hebasto/received_events', 0); +INSERT INTO `developer` VALUES (33012425, 'michizhou', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'Cruise LLC', '', 'Mountain View, CA', 'mizho@alumni.upenn.edu', 'true', NULL, NULL, 0, 0, 8, 0, 0, 0, 0, '2017-10-23T01:33:24Z', '2024-08-08T15:27:38Z', 'https://avatars.githubusercontent.com/u/33012425?v=4', 'https://api.github.com/users/michizhou', 'https://github.com/michizhou', 'https://api.github.com/users/michizhou/followers', 'https://api.github.com/users/michizhou/following', 'https://api.github.com/users/michizhou/gists', 'https://api.github.com/users/michizhou/starred', 'https://api.github.com/users/michizhou/repos', 'https://api.github.com/users/michizhou/events', 'https://api.github.com/users/michizhou/received_events', 0); +INSERT INTO `developer` VALUES (33063673, 'michael-rodriguez-ttd', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2017-10-24T14:40:27Z', '2024-03-07T20:11:06Z', 'https://avatars.githubusercontent.com/u/33063673?v=4', 'https://api.github.com/users/michael-rodriguez-ttd', 'https://github.com/michael-rodriguez-ttd', 'https://api.github.com/users/michael-rodriguez-ttd/followers', 'https://api.github.com/users/michael-rodriguez-ttd/following', 'https://api.github.com/users/michael-rodriguez-ttd/gists', 'https://api.github.com/users/michael-rodriguez-ttd/starred', 'https://api.github.com/users/michael-rodriguez-ttd/repos', 'https://api.github.com/users/michael-rodriguez-ttd/events', 'https://api.github.com/users/michael-rodriguez-ttd/received_events', 0); +INSERT INTO `developer` VALUES (33349461, 'harsh9975', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harish Gautam', 'Intellemo', '', 'Panjim, Goa', NULL, 'true', NULL, NULL, 0, 0, 8, 4, 0, 0, 0, '2017-11-03T12:40:00Z', '2024-10-10T17:32:04Z', 'https://avatars.githubusercontent.com/u/33349461?v=4', 'https://api.github.com/users/harsh9975', 'https://github.com/harsh9975', 'https://api.github.com/users/harsh9975/followers', 'https://api.github.com/users/harsh9975/following', 'https://api.github.com/users/harsh9975/gists', 'https://api.github.com/users/harsh9975/starred', 'https://api.github.com/users/harsh9975/repos', 'https://api.github.com/users/harsh9975/events', 'https://api.github.com/users/harsh9975/received_events', 0); +INSERT INTO `developer` VALUES (33390074, 'Zilborg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nikita', NULL, '', 'Moscow', NULL, NULL, '🐼', NULL, 0, 0, 4, 2, 0, 0, 0, '2017-11-05T09:19:16Z', '2024-08-13T13:54:48Z', 'https://avatars.githubusercontent.com/u/33390074?v=4', 'https://api.github.com/users/Zilborg', 'https://github.com/Zilborg', 'https://api.github.com/users/Zilborg/followers', 'https://api.github.com/users/Zilborg/following', 'https://api.github.com/users/Zilborg/gists', 'https://api.github.com/users/Zilborg/starred', 'https://api.github.com/users/Zilborg/repos', 'https://api.github.com/users/Zilborg/events', 'https://api.github.com/users/Zilborg/received_events', 0); +INSERT INTO `developer` VALUES (33671308, 'martinmarsicano', 'C', 0, 0, 0, 0, 0, 0, 0, 'Martin Marsicano', 'Nexa, OWASP', '', 'Montevideo, Uruguay', 'martin.marsicano@owasp.org', NULL, 'Nexa S-SDLC Specialist.\r\nOWASP Lifetime Member, former OWASP Uruguay Chapter Leader and several projects contributor.', 'MarsicanoMartin', 0, 0, 9, 29, 0, 0, 0, '2017-11-14T21:09:33Z', '2024-10-28T03:14:27Z', 'https://avatars.githubusercontent.com/u/33671308?v=4', 'https://api.github.com/users/martinmarsicano', 'https://github.com/martinmarsicano', 'https://api.github.com/users/martinmarsicano/followers', 'https://api.github.com/users/martinmarsicano/following', 'https://api.github.com/users/martinmarsicano/gists', 'https://api.github.com/users/martinmarsicano/starred', 'https://api.github.com/users/martinmarsicano/repos', 'https://api.github.com/users/martinmarsicano/events', 'https://api.github.com/users/martinmarsicano/received_events', 0); +INSERT INTO `developer` VALUES (33704459, 'awpcrypto', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-11-15T22:41:28Z', '2018-03-04T01:42:55Z', 'https://avatars.githubusercontent.com/u/33704459?v=4', 'https://api.github.com/users/awpcrypto', 'https://github.com/awpcrypto', 'https://api.github.com/users/awpcrypto/followers', 'https://api.github.com/users/awpcrypto/following', 'https://api.github.com/users/awpcrypto/gists', 'https://api.github.com/users/awpcrypto/starred', 'https://api.github.com/users/awpcrypto/repos', 'https://api.github.com/users/awpcrypto/events', 'https://api.github.com/users/awpcrypto/received_events', 0); +INSERT INTO `developer` VALUES (33823221, 'iahmedov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ikhtiyor', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 3, 0, 0, 0, '2017-11-20T06:26:56Z', '2024-02-04T19:55:50Z', 'https://avatars.githubusercontent.com/u/33823221?v=4', 'https://api.github.com/users/iahmedov', 'https://github.com/iahmedov', 'https://api.github.com/users/iahmedov/followers', 'https://api.github.com/users/iahmedov/following', 'https://api.github.com/users/iahmedov/gists', 'https://api.github.com/users/iahmedov/starred', 'https://api.github.com/users/iahmedov/repos', 'https://api.github.com/users/iahmedov/events', 'https://api.github.com/users/iahmedov/received_events', 0); +INSERT INTO `developer` VALUES (33844164, 'zakrush', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-11-20T19:24:14Z', '2023-11-16T06:45:31Z', 'https://avatars.githubusercontent.com/u/33844164?v=4', 'https://api.github.com/users/zakrush', 'https://github.com/zakrush', 'https://api.github.com/users/zakrush/followers', 'https://api.github.com/users/zakrush/following', 'https://api.github.com/users/zakrush/gists', 'https://api.github.com/users/zakrush/starred', 'https://api.github.com/users/zakrush/repos', 'https://api.github.com/users/zakrush/events', 'https://api.github.com/users/zakrush/received_events', 0); +INSERT INTO `developer` VALUES (33974086, 'akitibala', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2017-11-25T05:02:22Z', '2024-04-20T05:49:27Z', 'https://avatars.githubusercontent.com/u/33974086?v=4', 'https://api.github.com/users/akitibala', 'https://github.com/akitibala', 'https://api.github.com/users/akitibala/followers', 'https://api.github.com/users/akitibala/following', 'https://api.github.com/users/akitibala/gists', 'https://api.github.com/users/akitibala/starred', 'https://api.github.com/users/akitibala/repos', 'https://api.github.com/users/akitibala/events', 'https://api.github.com/users/akitibala/received_events', 0); +INSERT INTO `developer` VALUES (34025062, 'emergent-reasons', 'C', 0, 0, 0, 0, 0, 0, 0, 'emergent_reasons', NULL, 'https://memo.cash/profile/1Ab9jdpVyr5kC5WALH3p8vbSYSP8NGVNbX', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 3, 0, 0, 0, '2017-11-27T09:30:54Z', '2024-08-21T04:46:10Z', 'https://avatars.githubusercontent.com/u/34025062?v=4', 'https://api.github.com/users/emergent-reasons', 'https://github.com/emergent-reasons', 'https://api.github.com/users/emergent-reasons/followers', 'https://api.github.com/users/emergent-reasons/following', 'https://api.github.com/users/emergent-reasons/gists', 'https://api.github.com/users/emergent-reasons/starred', 'https://api.github.com/users/emergent-reasons/repos', 'https://api.github.com/users/emergent-reasons/events', 'https://api.github.com/users/emergent-reasons/received_events', 0); +INSERT INTO `developer` VALUES (34240191, 'mattjquinn', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 0, 0, 0, 0, '2017-12-04T13:20:53Z', '2024-06-23T19:21:11Z', 'https://avatars.githubusercontent.com/u/34240191?v=4', 'https://api.github.com/users/mattjquinn', 'https://github.com/mattjquinn', 'https://api.github.com/users/mattjquinn/followers', 'https://api.github.com/users/mattjquinn/following', 'https://api.github.com/users/mattjquinn/gists', 'https://api.github.com/users/mattjquinn/starred', 'https://api.github.com/users/mattjquinn/repos', 'https://api.github.com/users/mattjquinn/events', 'https://api.github.com/users/mattjquinn/received_events', 0); +INSERT INTO `developer` VALUES (34321259, 'jalseth', 'C', 0, 0, 0, 0, 0, 0, 0, 'James Alseth', '@Google', 'https://jalseth.me', 'Seattle', 'james@jalseth.me', 'true', NULL, NULL, 0, 0, 12, 6, 0, 0, 0, '2017-12-06T21:52:18Z', '2024-10-18T20:13:38Z', 'https://avatars.githubusercontent.com/u/34321259?v=4', 'https://api.github.com/users/jalseth', 'https://github.com/jalseth', 'https://api.github.com/users/jalseth/followers', 'https://api.github.com/users/jalseth/following', 'https://api.github.com/users/jalseth/gists', 'https://api.github.com/users/jalseth/starred', 'https://api.github.com/users/jalseth/repos', 'https://api.github.com/users/jalseth/events', 'https://api.github.com/users/jalseth/received_events', 0); +INSERT INTO `developer` VALUES (34422744, 'przeszlo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pawel Przeszlo', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-12-10T18:10:46Z', '2024-05-28T18:53:43Z', 'https://avatars.githubusercontent.com/u/34422744?v=4', 'https://api.github.com/users/przeszlo', 'https://github.com/przeszlo', 'https://api.github.com/users/przeszlo/followers', 'https://api.github.com/users/przeszlo/following', 'https://api.github.com/users/przeszlo/gists', 'https://api.github.com/users/przeszlo/starred', 'https://api.github.com/users/przeszlo/repos', 'https://api.github.com/users/przeszlo/events', 'https://api.github.com/users/przeszlo/received_events', 0); +INSERT INTO `developer` VALUES (34648262, 'bugavant', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alejandro', NULL, '', 'Ireland', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2017-12-18T10:58:07Z', '2020-11-16T12:11:11Z', 'https://avatars.githubusercontent.com/u/34648262?v=4', 'https://api.github.com/users/bugavant', 'https://github.com/bugavant', 'https://api.github.com/users/bugavant/followers', 'https://api.github.com/users/bugavant/following', 'https://api.github.com/users/bugavant/gists', 'https://api.github.com/users/bugavant/starred', 'https://api.github.com/users/bugavant/repos', 'https://api.github.com/users/bugavant/events', 'https://api.github.com/users/bugavant/received_events', 0); +INSERT INTO `developer` VALUES (34663482, 'ptrovatelli', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 1, 0, 0, 0, '2017-12-18T21:48:50Z', '2024-10-24T07:57:13Z', 'https://avatars.githubusercontent.com/u/34663482?v=4', 'https://api.github.com/users/ptrovatelli', 'https://github.com/ptrovatelli', 'https://api.github.com/users/ptrovatelli/followers', 'https://api.github.com/users/ptrovatelli/following', 'https://api.github.com/users/ptrovatelli/gists', 'https://api.github.com/users/ptrovatelli/starred', 'https://api.github.com/users/ptrovatelli/repos', 'https://api.github.com/users/ptrovatelli/events', 'https://api.github.com/users/ptrovatelli/received_events', 0); +INSERT INTO `developer` VALUES (35055032, 'swaggycorgi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cao Wei', NULL, '', '未知', NULL, NULL, 'Application Security Intern', NULL, 0, 0, 0, 0, 0, 0, 0, '2018-01-03T04:53:21Z', '2018-05-25T07:38:52Z', 'https://avatars.githubusercontent.com/u/35055032?v=4', 'https://api.github.com/users/swaggycorgi', 'https://github.com/swaggycorgi', 'https://api.github.com/users/swaggycorgi/followers', 'https://api.github.com/users/swaggycorgi/following', 'https://api.github.com/users/swaggycorgi/gists', 'https://api.github.com/users/swaggycorgi/starred', 'https://api.github.com/users/swaggycorgi/repos', 'https://api.github.com/users/swaggycorgi/events', 'https://api.github.com/users/swaggycorgi/received_events', 0); +INSERT INTO `developer` VALUES (35092582, 'Aniket21mathur', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aniket Mathur', ' @chapel-lang', '', 'IIT Roorkee', 'aniket.m@rigi.club', NULL, 'GSOC\'21 Mentor @chapel-lang | GSOC\'20 @chapel-lang | GSOC\'19 @sugarlabs | GCI\'19 Mentor @sugarlabs', 'aniketmathur320', 0, 0, 135, 119, 0, 0, 0, '2018-01-04T06:23:57Z', '2024-11-02T05:09:11Z', 'https://avatars.githubusercontent.com/u/35092582?v=4', 'https://api.github.com/users/Aniket21mathur', 'https://github.com/Aniket21mathur', 'https://api.github.com/users/Aniket21mathur/followers', 'https://api.github.com/users/Aniket21mathur/following', 'https://api.github.com/users/Aniket21mathur/gists', 'https://api.github.com/users/Aniket21mathur/starred', 'https://api.github.com/users/Aniket21mathur/repos', 'https://api.github.com/users/Aniket21mathur/events', 'https://api.github.com/users/Aniket21mathur/received_events', 0); +INSERT INTO `developer` VALUES (35374649, 'anuraghazra', 'S', 100, 0, 0, 0, 0, 0, 0, 'Anurag Hazra', '@razorpay', 'https://anuraghazra.dev', 'India, West Bengal', 'hazru.anurag@gmail.com', NULL, '❤️ TypeScript Wizard\r\n❄ Reactjs Magician\r\n🎨 Design Systems', 'anuraghazru', 0, 0, 13138, 124, 0, 0, 0, '2018-01-12T14:48:56Z', '2024-10-08T19:27:14Z', 'https://avatars.githubusercontent.com/u/35374649?v=4', 'https://api.github.com/users/anuraghazra', 'https://github.com/anuraghazra', 'https://api.github.com/users/anuraghazra/followers', 'https://api.github.com/users/anuraghazra/following', 'https://api.github.com/users/anuraghazra/gists', 'https://api.github.com/users/anuraghazra/starred', 'https://api.github.com/users/anuraghazra/repos', 'https://api.github.com/users/anuraghazra/events', 'https://api.github.com/users/anuraghazra/received_events', 0); +INSERT INTO `developer` VALUES (35786917, 'adiffpirate', 'C', 0, 0, 0, 0, 0, 0, 0, 'Luiz Paulo S. Monteiro', 'Opus Software', '', 'São José dos Campos/SP - Brazil', NULL, NULL, 'I love to automate stuff <3', NULL, 0, 0, 5, 1, 0, 0, 0, '2018-01-25T01:02:37Z', '2024-02-16T15:20:28Z', 'https://avatars.githubusercontent.com/u/35786917?v=4', 'https://api.github.com/users/adiffpirate', 'https://github.com/adiffpirate', 'https://api.github.com/users/adiffpirate/followers', 'https://api.github.com/users/adiffpirate/following', 'https://api.github.com/users/adiffpirate/gists', 'https://api.github.com/users/adiffpirate/starred', 'https://api.github.com/users/adiffpirate/repos', 'https://api.github.com/users/adiffpirate/events', 'https://api.github.com/users/adiffpirate/received_events', 0); +INSERT INTO `developer` VALUES (35994013, 'thezillia', 'C', 0, 0, 0, 0, 0, 0, 0, 'W', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 15, 63, 0, 0, 0, '2018-01-31T09:44:27Z', '2020-11-25T02:12:14Z', 'https://avatars.githubusercontent.com/u/35994013?v=4', 'https://api.github.com/users/thezillia', 'https://github.com/thezillia', 'https://api.github.com/users/thezillia/followers', 'https://api.github.com/users/thezillia/following', 'https://api.github.com/users/thezillia/gists', 'https://api.github.com/users/thezillia/starred', 'https://api.github.com/users/thezillia/repos', 'https://api.github.com/users/thezillia/events', 'https://api.github.com/users/thezillia/received_events', 0); +INSERT INTO `developer` VALUES (36252628, 'piyarathnalakmali', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lakmali Piyarathna', 'WSO2', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2018-02-08T03:17:30Z', '2024-07-31T08:30:24Z', 'https://avatars.githubusercontent.com/u/36252628?v=4', 'https://api.github.com/users/piyarathnalakmali', 'https://github.com/piyarathnalakmali', 'https://api.github.com/users/piyarathnalakmali/followers', 'https://api.github.com/users/piyarathnalakmali/following', 'https://api.github.com/users/piyarathnalakmali/gists', 'https://api.github.com/users/piyarathnalakmali/starred', 'https://api.github.com/users/piyarathnalakmali/repos', 'https://api.github.com/users/piyarathnalakmali/events', 'https://api.github.com/users/piyarathnalakmali/received_events', 0); +INSERT INTO `developer` VALUES (36528214, 'markblundeberg', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mark B Lundeberg', NULL, '', 'Wet coast, Canada', NULL, NULL, 'physicist / nerd', NULL, 0, 0, 62, 2, 0, 0, 0, '2018-02-16T05:12:57Z', '2023-10-19T18:53:46Z', 'https://avatars.githubusercontent.com/u/36528214?v=4', 'https://api.github.com/users/markblundeberg', 'https://github.com/markblundeberg', 'https://api.github.com/users/markblundeberg/followers', 'https://api.github.com/users/markblundeberg/following', 'https://api.github.com/users/markblundeberg/gists', 'https://api.github.com/users/markblundeberg/starred', 'https://api.github.com/users/markblundeberg/repos', 'https://api.github.com/users/markblundeberg/events', 'https://api.github.com/users/markblundeberg/received_events', 0); +INSERT INTO `developer` VALUES (36567063, 'mohit23x', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mohit', '@razorpay ', 'linkedin.com/in/mohit23x', 'India', NULL, 'true', NULL, 'mohit23x', 0, 0, 29, 43, 0, 0, 0, '2018-02-17T14:05:51Z', '2024-10-01T03:37:24Z', 'https://avatars.githubusercontent.com/u/36567063?v=4', 'https://api.github.com/users/mohit23x', 'https://github.com/mohit23x', 'https://api.github.com/users/mohit23x/followers', 'https://api.github.com/users/mohit23x/following', 'https://api.github.com/users/mohit23x/gists', 'https://api.github.com/users/mohit23x/starred', 'https://api.github.com/users/mohit23x/repos', 'https://api.github.com/users/mohit23x/events', 'https://api.github.com/users/mohit23x/received_events', 0); +INSERT INTO `developer` VALUES (36595353, 'n-insaidoo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nana Insaidoo', NULL, '', '未知', NULL, NULL, 'Software Developer @ Meterian', NULL, 0, 0, 3, 4, 0, 0, 0, '2018-02-18T11:31:57Z', '2024-10-18T11:48:38Z', 'https://avatars.githubusercontent.com/u/36595353?v=4', 'https://api.github.com/users/n-insaidoo', 'https://github.com/n-insaidoo', 'https://api.github.com/users/n-insaidoo/followers', 'https://api.github.com/users/n-insaidoo/following', 'https://api.github.com/users/n-insaidoo/gists', 'https://api.github.com/users/n-insaidoo/starred', 'https://api.github.com/users/n-insaidoo/repos', 'https://api.github.com/users/n-insaidoo/events', 'https://api.github.com/users/n-insaidoo/received_events', 0); +INSERT INTO `developer` VALUES (37446681, 'iansyahr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Muhamad Apriansyah Ramadhan', NULL, 'iansyahr.github.io', 'Bogor, West Java, Indonesia', NULL, NULL, 'Just little man who love information gathering \r\n\r\n| \"You\'ll never be ready for what you have to do. You just do it and that makes you ready.\"', 'ian_syahr', 0, 0, 3, 7, 0, 0, 0, '2018-03-16T13:59:02Z', '2024-09-26T14:50:08Z', 'https://avatars.githubusercontent.com/u/37446681?v=4', 'https://api.github.com/users/iansyahr', 'https://github.com/iansyahr', 'https://api.github.com/users/iansyahr/followers', 'https://api.github.com/users/iansyahr/following', 'https://api.github.com/users/iansyahr/gists', 'https://api.github.com/users/iansyahr/starred', 'https://api.github.com/users/iansyahr/repos', 'https://api.github.com/users/iansyahr/events', 'https://api.github.com/users/iansyahr/received_events', 0); +INSERT INTO `developer` VALUES (37472890, 'LaumiH', 'C', 0, 0, 0, 0, 0, 0, 0, 'Laura Spang', NULL, '', 'Darmstadt', NULL, NULL, 'Master degree in Computer Science at TU Darmstadt. Working as a research assistant.', NULL, 0, 0, 15, 2, 0, 0, 0, '2018-03-17T10:42:40Z', '2024-08-14T07:16:41Z', 'https://avatars.githubusercontent.com/u/37472890?v=4', 'https://api.github.com/users/LaumiH', 'https://github.com/LaumiH', 'https://api.github.com/users/LaumiH/followers', 'https://api.github.com/users/LaumiH/following', 'https://api.github.com/users/LaumiH/gists', 'https://api.github.com/users/LaumiH/starred', 'https://api.github.com/users/LaumiH/repos', 'https://api.github.com/users/LaumiH/events', 'https://api.github.com/users/LaumiH/received_events', 0); +INSERT INTO `developer` VALUES (37560190, 'tormet', 'C', 0, 0, 0, 0, 0, 0, 0, 'Torsten Metzner', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-03-19T23:01:49Z', '2023-05-26T23:25:39Z', 'https://avatars.githubusercontent.com/u/37560190?v=4', 'https://api.github.com/users/tormet', 'https://github.com/tormet', 'https://api.github.com/users/tormet/followers', 'https://api.github.com/users/tormet/following', 'https://api.github.com/users/tormet/gists', 'https://api.github.com/users/tormet/starred', 'https://api.github.com/users/tormet/repos', 'https://api.github.com/users/tormet/events', 'https://api.github.com/users/tormet/received_events', 0); +INSERT INTO `developer` VALUES (37773232, 'danielwitz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Daniel Witz', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2018-03-25T12:41:57Z', '2024-06-28T16:22:18Z', 'https://avatars.githubusercontent.com/u/37773232?v=4', 'https://api.github.com/users/danielwitz', 'https://github.com/danielwitz', 'https://api.github.com/users/danielwitz/followers', 'https://api.github.com/users/danielwitz/following', 'https://api.github.com/users/danielwitz/gists', 'https://api.github.com/users/danielwitz/starred', 'https://api.github.com/users/danielwitz/repos', 'https://api.github.com/users/danielwitz/events', 'https://api.github.com/users/danielwitz/received_events', 0); +INSERT INTO `developer` VALUES (37879445, 'joesteffee', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-03-28T17:37:42Z', '2024-11-01T16:06:32Z', 'https://avatars.githubusercontent.com/u/37879445?v=4', 'https://api.github.com/users/joesteffee', 'https://github.com/joesteffee', 'https://api.github.com/users/joesteffee/followers', 'https://api.github.com/users/joesteffee/following', 'https://api.github.com/users/joesteffee/gists', 'https://api.github.com/users/joesteffee/starred', 'https://api.github.com/users/joesteffee/repos', 'https://api.github.com/users/joesteffee/events', 'https://api.github.com/users/joesteffee/received_events', 0); +INSERT INTO `developer` VALUES (38007400, 'pdmayoSFI', 'C', 0, 0, 0, 0, 0, 0, 0, 'Patrick Mayo', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2018-04-02T13:45:00Z', '2020-11-30T21:56:17Z', 'https://avatars.githubusercontent.com/u/38007400?v=4', 'https://api.github.com/users/pdmayoSFI', 'https://github.com/pdmayoSFI', 'https://api.github.com/users/pdmayoSFI/followers', 'https://api.github.com/users/pdmayoSFI/following', 'https://api.github.com/users/pdmayoSFI/gists', 'https://api.github.com/users/pdmayoSFI/starred', 'https://api.github.com/users/pdmayoSFI/repos', 'https://api.github.com/users/pdmayoSFI/events', 'https://api.github.com/users/pdmayoSFI/received_events', 0); +INSERT INTO `developer` VALUES (38067786, 'ethercflow', 'C', 0, 0, 0, 0, 0, 0, 0, 'Wenbo Zhang', 'SmartX', '', 'China', 'wenbo.zhang@iomesh.com', NULL, 'Nothing is true. Everything is possible.', NULL, 0, 0, 120, 271, 0, 0, 0, '2018-04-04T08:44:50Z', '2024-10-21T03:29:25Z', 'https://avatars.githubusercontent.com/u/38067786?v=4', 'https://api.github.com/users/ethercflow', 'https://github.com/ethercflow', 'https://api.github.com/users/ethercflow/followers', 'https://api.github.com/users/ethercflow/following', 'https://api.github.com/users/ethercflow/gists', 'https://api.github.com/users/ethercflow/starred', 'https://api.github.com/users/ethercflow/repos', 'https://api.github.com/users/ethercflow/events', 'https://api.github.com/users/ethercflow/received_events', 0); +INSERT INTO `developer` VALUES (38182176, 'fabelx', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vladyslav Novotnyi', NULL, '', 'Canada', NULL, NULL, '💙💛', NULL, 0, 0, 2, 6, 0, 0, 0, '2018-04-08T12:04:23Z', '2024-04-02T17:45:34Z', 'https://avatars.githubusercontent.com/u/38182176?v=4', 'https://api.github.com/users/fabelx', 'https://github.com/fabelx', 'https://api.github.com/users/fabelx/followers', 'https://api.github.com/users/fabelx/following', 'https://api.github.com/users/fabelx/gists', 'https://api.github.com/users/fabelx/starred', 'https://api.github.com/users/fabelx/repos', 'https://api.github.com/users/fabelx/events', 'https://api.github.com/users/fabelx/received_events', 0); +INSERT INTO `developer` VALUES (38254755, 'rinrailin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anton Trifonov', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2018-04-10T14:45:50Z', '2024-10-06T11:41:42Z', 'https://avatars.githubusercontent.com/u/38254755?v=4', 'https://api.github.com/users/rinrailin', 'https://github.com/rinrailin', 'https://api.github.com/users/rinrailin/followers', 'https://api.github.com/users/rinrailin/following', 'https://api.github.com/users/rinrailin/gists', 'https://api.github.com/users/rinrailin/starred', 'https://api.github.com/users/rinrailin/repos', 'https://api.github.com/users/rinrailin/events', 'https://api.github.com/users/rinrailin/received_events', 0); +INSERT INTO `developer` VALUES (38279953, 'antonia-sl', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-04-11T08:59:12Z', '2018-04-11T08:59:12Z', 'https://avatars.githubusercontent.com/u/38279953?v=4', 'https://api.github.com/users/antonia-sl', 'https://github.com/antonia-sl', 'https://api.github.com/users/antonia-sl/followers', 'https://api.github.com/users/antonia-sl/following', 'https://api.github.com/users/antonia-sl/gists', 'https://api.github.com/users/antonia-sl/starred', 'https://api.github.com/users/antonia-sl/repos', 'https://api.github.com/users/antonia-sl/events', 'https://api.github.com/users/antonia-sl/received_events', 0); +INSERT INTO `developer` VALUES (38285208, 'Seppl2202', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-04-11T12:03:01Z', '2024-09-27T13:54:03Z', 'https://avatars.githubusercontent.com/u/38285208?v=4', 'https://api.github.com/users/Seppl2202', 'https://github.com/Seppl2202', 'https://api.github.com/users/Seppl2202/followers', 'https://api.github.com/users/Seppl2202/following', 'https://api.github.com/users/Seppl2202/gists', 'https://api.github.com/users/Seppl2202/starred', 'https://api.github.com/users/Seppl2202/repos', 'https://api.github.com/users/Seppl2202/events', 'https://api.github.com/users/Seppl2202/received_events', 0); +INSERT INTO `developer` VALUES (38399884, 'raghunath24', 'C', 0, 0, 0, 0, 0, 0, 0, 'Raghu', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 0, 0, 0, 0, '2018-04-15T12:57:20Z', '2019-09-23T06:25:15Z', 'https://avatars.githubusercontent.com/u/38399884?v=4', 'https://api.github.com/users/raghunath24', 'https://github.com/raghunath24', 'https://api.github.com/users/raghunath24/followers', 'https://api.github.com/users/raghunath24/following', 'https://api.github.com/users/raghunath24/gists', 'https://api.github.com/users/raghunath24/starred', 'https://api.github.com/users/raghunath24/repos', 'https://api.github.com/users/raghunath24/events', 'https://api.github.com/users/raghunath24/received_events', 0); +INSERT INTO `developer` VALUES (39210290, 'mszuyev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mike Zuev', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2018-05-12T06:10:33Z', '2023-12-01T06:19:08Z', 'https://avatars.githubusercontent.com/u/39210290?v=4', 'https://api.github.com/users/mszuyev', 'https://github.com/mszuyev', 'https://api.github.com/users/mszuyev/followers', 'https://api.github.com/users/mszuyev/following', 'https://api.github.com/users/mszuyev/gists', 'https://api.github.com/users/mszuyev/starred', 'https://api.github.com/users/mszuyev/repos', 'https://api.github.com/users/mszuyev/events', 'https://api.github.com/users/mszuyev/received_events', 0); +INSERT INTO `developer` VALUES (39501569, 'philippemizrahi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philippe Mizrahi', 'Lyft', 'www.linkedin.com/in/philippe-mizrahi/', 'SF', NULL, NULL, 'CEO @Linkup', NULL, 0, 0, 2, 4, 0, 0, 0, '2018-05-21T20:32:19Z', '2024-10-16T19:19:04Z', 'https://avatars.githubusercontent.com/u/39501569?v=4', 'https://api.github.com/users/philippemizrahi', 'https://github.com/philippemizrahi', 'https://api.github.com/users/philippemizrahi/followers', 'https://api.github.com/users/philippemizrahi/following', 'https://api.github.com/users/philippemizrahi/gists', 'https://api.github.com/users/philippemizrahi/starred', 'https://api.github.com/users/philippemizrahi/repos', 'https://api.github.com/users/philippemizrahi/events', 'https://api.github.com/users/philippemizrahi/received_events', 0); +INSERT INTO `developer` VALUES (39554336, 'adrienbien154', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2018-05-23T10:05:59Z', '2019-05-23T22:57:11Z', 'https://avatars.githubusercontent.com/u/39554336?v=4', 'https://api.github.com/users/adrienbien154', 'https://github.com/adrienbien154', 'https://api.github.com/users/adrienbien154/followers', 'https://api.github.com/users/adrienbien154/following', 'https://api.github.com/users/adrienbien154/gists', 'https://api.github.com/users/adrienbien154/starred', 'https://api.github.com/users/adrienbien154/repos', 'https://api.github.com/users/adrienbien154/events', 'https://api.github.com/users/adrienbien154/received_events', 0); +INSERT INTO `developer` VALUES (39591490, 'slengfeld', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@inovex', '', 'Germany', NULL, NULL, NULL, NULL, 0, 0, 4, 0, 0, 0, 0, '2018-05-24T12:58:12Z', '2024-03-12T13:59:15Z', 'https://avatars.githubusercontent.com/u/39591490?v=4', 'https://api.github.com/users/slengfeld', 'https://github.com/slengfeld', 'https://api.github.com/users/slengfeld/followers', 'https://api.github.com/users/slengfeld/following', 'https://api.github.com/users/slengfeld/gists', 'https://api.github.com/users/slengfeld/starred', 'https://api.github.com/users/slengfeld/repos', 'https://api.github.com/users/slengfeld/events', 'https://api.github.com/users/slengfeld/received_events', 0); +INSERT INTO `developer` VALUES (39844334, 'tohch4', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander Stein (Inactive)', NULL, '', '未知', NULL, NULL, 'I am a former employee of Flexion. This account is no longer active as of 5 November 2021.', NULL, 0, 0, 7, 6, 0, 0, 0, '2018-06-01T23:42:56Z', '2024-08-22T21:53:44Z', 'https://avatars.githubusercontent.com/u/39844334?v=4', 'https://api.github.com/users/tohch4', 'https://github.com/tohch4', 'https://api.github.com/users/tohch4/followers', 'https://api.github.com/users/tohch4/following', 'https://api.github.com/users/tohch4/gists', 'https://api.github.com/users/tohch4/starred', 'https://api.github.com/users/tohch4/repos', 'https://api.github.com/users/tohch4/events', 'https://api.github.com/users/tohch4/received_events', 0); +INSERT INTO `developer` VALUES (39928225, 'chadasapp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chad Horohoe', '@asappinc', '', 'San Francisco, California', NULL, NULL, 'Software Engineer working on DevOps things at @ASAPPinc ', NULL, 0, 0, 0, 4, 0, 0, 0, '2018-06-04T21:12:45Z', '2024-11-04T12:40:45Z', 'https://avatars.githubusercontent.com/u/39928225?v=4', 'https://api.github.com/users/chadasapp', 'https://github.com/chadasapp', 'https://api.github.com/users/chadasapp/followers', 'https://api.github.com/users/chadasapp/following', 'https://api.github.com/users/chadasapp/gists', 'https://api.github.com/users/chadasapp/starred', 'https://api.github.com/users/chadasapp/repos', 'https://api.github.com/users/chadasapp/events', 'https://api.github.com/users/chadasapp/received_events', 0); +INSERT INTO `developer` VALUES (39970089, 'instazackwu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Zack Wu', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-06-05T21:09:10Z', '2023-03-14T00:33:02Z', 'https://avatars.githubusercontent.com/u/39970089?v=4', 'https://api.github.com/users/instazackwu', 'https://github.com/instazackwu', 'https://api.github.com/users/instazackwu/followers', 'https://api.github.com/users/instazackwu/following', 'https://api.github.com/users/instazackwu/gists', 'https://api.github.com/users/instazackwu/starred', 'https://api.github.com/users/instazackwu/repos', 'https://api.github.com/users/instazackwu/events', 'https://api.github.com/users/instazackwu/received_events', 0); +INSERT INTO `developer` VALUES (40307978, 'KarstenSiemer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Karsten Siemer', 'Aetherize', '', 'Hamburg', 'karsten.siemer@aetherize.com', NULL, 'Freelance DevOps Engineer', NULL, 0, 0, 11, 5, 0, 0, 0, '2018-06-15T23:35:10Z', '2024-10-16T19:21:16Z', 'https://avatars.githubusercontent.com/u/40307978?v=4', 'https://api.github.com/users/KarstenSiemer', 'https://github.com/KarstenSiemer', 'https://api.github.com/users/KarstenSiemer/followers', 'https://api.github.com/users/KarstenSiemer/following', 'https://api.github.com/users/KarstenSiemer/gists', 'https://api.github.com/users/KarstenSiemer/starred', 'https://api.github.com/users/KarstenSiemer/repos', 'https://api.github.com/users/KarstenSiemer/events', 'https://api.github.com/users/KarstenSiemer/received_events', 0); +INSERT INTO `developer` VALUES (40688281, 'AClarkie', 'C', 0, 0, 0, 0, 0, 0, 0, 'Adam Clark', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-06-29T08:40:53Z', '2024-07-19T14:16:11Z', 'https://avatars.githubusercontent.com/u/40688281?v=4', 'https://api.github.com/users/AClarkie', 'https://github.com/AClarkie', 'https://api.github.com/users/AClarkie/followers', 'https://api.github.com/users/AClarkie/following', 'https://api.github.com/users/AClarkie/gists', 'https://api.github.com/users/AClarkie/starred', 'https://api.github.com/users/AClarkie/repos', 'https://api.github.com/users/AClarkie/events', 'https://api.github.com/users/AClarkie/received_events', 0); +INSERT INTO `developer` VALUES (40765872, 'ivan-valkov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ivan Valkov', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 16, 37, 0, 0, 0, '2018-07-02T13:49:23Z', '2024-08-12T08:59:27Z', 'https://avatars.githubusercontent.com/u/40765872?v=4', 'https://api.github.com/users/ivan-valkov', 'https://github.com/ivan-valkov', 'https://api.github.com/users/ivan-valkov/followers', 'https://api.github.com/users/ivan-valkov/following', 'https://api.github.com/users/ivan-valkov/gists', 'https://api.github.com/users/ivan-valkov/starred', 'https://api.github.com/users/ivan-valkov/repos', 'https://api.github.com/users/ivan-valkov/events', 'https://api.github.com/users/ivan-valkov/received_events', 0); +INSERT INTO `developer` VALUES (41267675, 'wkrp', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 67, 0, 0, 0, 0, '2018-07-15T15:55:06Z', '2024-11-04T18:56:08Z', 'https://avatars.githubusercontent.com/u/41267675?v=4', 'https://api.github.com/users/wkrp', 'https://github.com/wkrp', 'https://api.github.com/users/wkrp/followers', 'https://api.github.com/users/wkrp/following', 'https://api.github.com/users/wkrp/gists', 'https://api.github.com/users/wkrp/starred', 'https://api.github.com/users/wkrp/repos', 'https://api.github.com/users/wkrp/events', 'https://api.github.com/users/wkrp/received_events', 0); +INSERT INTO `developer` VALUES (41534398, 'TomShawn', 'C', 0, 0, 0, 0, 0, 0, 0, 'TomShawn', NULL, '', '未知', NULL, NULL, 'Technical Writer', NULL, 0, 0, 0, 0, 0, 0, 0, '2018-07-22T07:27:25Z', '2024-09-10T07:02:22Z', 'https://avatars.githubusercontent.com/u/41534398?v=4', 'https://api.github.com/users/TomShawn', 'https://github.com/TomShawn', 'https://api.github.com/users/TomShawn/followers', 'https://api.github.com/users/TomShawn/following', 'https://api.github.com/users/TomShawn/gists', 'https://api.github.com/users/TomShawn/starred', 'https://api.github.com/users/TomShawn/repos', 'https://api.github.com/users/TomShawn/events', 'https://api.github.com/users/TomShawn/received_events', 0); +INSERT INTO `developer` VALUES (41620285, 'MrBakalo', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-07-24T09:19:18Z', '2019-09-02T10:54:14Z', 'https://avatars.githubusercontent.com/u/41620285?v=4', 'https://api.github.com/users/MrBakalo', 'https://github.com/MrBakalo', 'https://api.github.com/users/MrBakalo/followers', 'https://api.github.com/users/MrBakalo/following', 'https://api.github.com/users/MrBakalo/gists', 'https://api.github.com/users/MrBakalo/starred', 'https://api.github.com/users/MrBakalo/repos', 'https://api.github.com/users/MrBakalo/events', 'https://api.github.com/users/MrBakalo/received_events', 0); +INSERT INTO `developer` VALUES (41990220, 'krzysztof-pawlik-gat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Krzysztof Pawlik', NULL, '', 'Poland, Kraków', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-08-01T08:55:11Z', '2024-10-26T11:47:20Z', 'https://avatars.githubusercontent.com/u/41990220?v=4', 'https://api.github.com/users/krzysztof-pawlik-gat', 'https://github.com/krzysztof-pawlik-gat', 'https://api.github.com/users/krzysztof-pawlik-gat/followers', 'https://api.github.com/users/krzysztof-pawlik-gat/following', 'https://api.github.com/users/krzysztof-pawlik-gat/gists', 'https://api.github.com/users/krzysztof-pawlik-gat/starred', 'https://api.github.com/users/krzysztof-pawlik-gat/repos', 'https://api.github.com/users/krzysztof-pawlik-gat/events', 'https://api.github.com/users/krzysztof-pawlik-gat/received_events', 0); +INSERT INTO `developer` VALUES (42152126, 'grvsharma1810', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gaurav Kumar Sharma', NULL, 'https://gaurav-sharma.netlify.app/', 'Singrauli', 'gs8280601@gmail.com', NULL, 'On the way', 'sharma_codes', 0, 0, 6, 12, 0, 0, 0, '2018-08-06T17:54:58Z', '2024-10-05T08:51:42Z', 'https://avatars.githubusercontent.com/u/42152126?v=4', 'https://api.github.com/users/grvsharma1810', 'https://github.com/grvsharma1810', 'https://api.github.com/users/grvsharma1810/followers', 'https://api.github.com/users/grvsharma1810/following', 'https://api.github.com/users/grvsharma1810/gists', 'https://api.github.com/users/grvsharma1810/starred', 'https://api.github.com/users/grvsharma1810/repos', 'https://api.github.com/users/grvsharma1810/events', 'https://api.github.com/users/grvsharma1810/received_events', 0); +INSERT INTO `developer` VALUES (42418735, 'prakharrr-sl', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 4, 19, 0, 0, 0, '2018-08-15T18:37:09Z', '2021-03-10T18:21:03Z', 'https://avatars.githubusercontent.com/u/42418735?v=4', 'https://api.github.com/users/prakharrr-sl', 'https://github.com/prakharrr-sl', 'https://api.github.com/users/prakharrr-sl/followers', 'https://api.github.com/users/prakharrr-sl/following', 'https://api.github.com/users/prakharrr-sl/gists', 'https://api.github.com/users/prakharrr-sl/starred', 'https://api.github.com/users/prakharrr-sl/repos', 'https://api.github.com/users/prakharrr-sl/events', 'https://api.github.com/users/prakharrr-sl/received_events', 0); +INSERT INTO `developer` VALUES (42647415, 'bjkowalski', 'C', 0, 0, 0, 0, 0, 0, 0, 'BJ Kowalski', 'First Light Observatory Systems, LLC', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2018-08-23T14:40:59Z', '2024-03-05T13:54:00Z', 'https://avatars.githubusercontent.com/u/42647415?v=4', 'https://api.github.com/users/bjkowalski', 'https://github.com/bjkowalski', 'https://api.github.com/users/bjkowalski/followers', 'https://api.github.com/users/bjkowalski/following', 'https://api.github.com/users/bjkowalski/gists', 'https://api.github.com/users/bjkowalski/starred', 'https://api.github.com/users/bjkowalski/repos', 'https://api.github.com/users/bjkowalski/events', 'https://api.github.com/users/bjkowalski/received_events', 0); +INSERT INTO `developer` VALUES (42688627, 'kj2101', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kamal Jain', NULL, '', 'India', NULL, NULL, 'I am a Front end developer.', NULL, 0, 0, 0, 1, 0, 0, 0, '2018-08-25T03:45:34Z', '2024-01-15T10:12:34Z', 'https://avatars.githubusercontent.com/u/42688627?v=4', 'https://api.github.com/users/kj2101', 'https://github.com/kj2101', 'https://api.github.com/users/kj2101/followers', 'https://api.github.com/users/kj2101/following', 'https://api.github.com/users/kj2101/gists', 'https://api.github.com/users/kj2101/starred', 'https://api.github.com/users/kj2101/repos', 'https://api.github.com/users/kj2101/events', 'https://api.github.com/users/kj2101/received_events', 0); +INSERT INTO `developer` VALUES (42797797, 'BellaXiang', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nan Xiang', 'Moqi', '', 'Beijing', 'nanx@myscale.com', NULL, NULL, 'Bella07316236', 0, 0, 5, 0, 0, 0, 0, '2018-08-29T06:55:49Z', '2024-10-24T08:46:23Z', 'https://avatars.githubusercontent.com/u/42797797?v=4', 'https://api.github.com/users/BellaXiang', 'https://github.com/BellaXiang', 'https://api.github.com/users/BellaXiang/followers', 'https://api.github.com/users/BellaXiang/following', 'https://api.github.com/users/BellaXiang/gists', 'https://api.github.com/users/BellaXiang/starred', 'https://api.github.com/users/BellaXiang/repos', 'https://api.github.com/users/BellaXiang/events', 'https://api.github.com/users/BellaXiang/received_events', 0); +INSERT INTO `developer` VALUES (42899277, 'carnei-ro', 'C', 0, 0, 0, 0, 0, 0, 0, 'Leandro Carneiro', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 22, 2, 0, 0, 0, '2018-09-01T21:01:08Z', '2024-10-30T01:46:59Z', 'https://avatars.githubusercontent.com/u/42899277?v=4', 'https://api.github.com/users/carnei-ro', 'https://github.com/carnei-ro', 'https://api.github.com/users/carnei-ro/followers', 'https://api.github.com/users/carnei-ro/following', 'https://api.github.com/users/carnei-ro/gists', 'https://api.github.com/users/carnei-ro/starred', 'https://api.github.com/users/carnei-ro/repos', 'https://api.github.com/users/carnei-ro/events', 'https://api.github.com/users/carnei-ro/received_events', 0); +INSERT INTO `developer` VALUES (42941224, 'ricardomeulendijks', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ricardo Meulendijks', NULL, 'ricardomeulendijks.nl', 'Eindhoven', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-09-03T15:02:57Z', '2024-08-10T13:31:42Z', 'https://avatars.githubusercontent.com/u/42941224?v=4', 'https://api.github.com/users/ricardomeulendijks', 'https://github.com/ricardomeulendijks', 'https://api.github.com/users/ricardomeulendijks/followers', 'https://api.github.com/users/ricardomeulendijks/following', 'https://api.github.com/users/ricardomeulendijks/gists', 'https://api.github.com/users/ricardomeulendijks/starred', 'https://api.github.com/users/ricardomeulendijks/repos', 'https://api.github.com/users/ricardomeulendijks/events', 'https://api.github.com/users/ricardomeulendijks/received_events', 0); +INSERT INTO `developer` VALUES (43136153, 'jonathan-cowling', 'C', 0, 0, 0, 0, 0, 0, 0, 'jonathan cowling msm', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2018-09-10T10:30:56Z', '2019-07-25T23:33:36Z', 'https://avatars.githubusercontent.com/u/43136153?v=4', 'https://api.github.com/users/jonathan-cowling', 'https://github.com/jonathan-cowling', 'https://api.github.com/users/jonathan-cowling/followers', 'https://api.github.com/users/jonathan-cowling/following', 'https://api.github.com/users/jonathan-cowling/gists', 'https://api.github.com/users/jonathan-cowling/starred', 'https://api.github.com/users/jonathan-cowling/repos', 'https://api.github.com/users/jonathan-cowling/events', 'https://api.github.com/users/jonathan-cowling/received_events', 0); +INSERT INTO `developer` VALUES (43420401, 'teresy', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2018-09-19T18:38:14Z', '2024-10-20T12:01:48Z', 'https://avatars.githubusercontent.com/u/43420401?v=4', 'https://api.github.com/users/teresy', 'https://github.com/teresy', 'https://api.github.com/users/teresy/followers', 'https://api.github.com/users/teresy/following', 'https://api.github.com/users/teresy/gists', 'https://api.github.com/users/teresy/starred', 'https://api.github.com/users/teresy/repos', 'https://api.github.com/users/teresy/events', 'https://api.github.com/users/teresy/received_events', 0); +INSERT INTO `developer` VALUES (43565572, 'parichay28', 'C', 0, 0, 0, 0, 0, 0, 0, 'Parichay Agrawal', '@razorpay ', 'parichay.hashnode.dev', 'Bengaluru', NULL, NULL, 'Frontend @razorpay JS | React {Native} | NodeJS\r\n', 'Parichay101', 0, 0, 21, 125, 0, 0, 0, '2018-09-25T06:58:19Z', '2024-08-29T19:13:49Z', 'https://avatars.githubusercontent.com/u/43565572?v=4', 'https://api.github.com/users/parichay28', 'https://github.com/parichay28', 'https://api.github.com/users/parichay28/followers', 'https://api.github.com/users/parichay28/following', 'https://api.github.com/users/parichay28/gists', 'https://api.github.com/users/parichay28/starred', 'https://api.github.com/users/parichay28/repos', 'https://api.github.com/users/parichay28/events', 'https://api.github.com/users/parichay28/received_events', 0); +INSERT INTO `developer` VALUES (43735306, 'philband', 'C', 0, 0, 0, 0, 0, 0, 0, 'Philipp Bandow', 'glueckkanja AG', '', 'Hamburg, DE', NULL, NULL, NULL, NULL, 0, 0, 6, 18, 0, 0, 0, '2018-10-01T02:04:26Z', '2024-10-21T10:13:08Z', 'https://avatars.githubusercontent.com/u/43735306?v=4', 'https://api.github.com/users/philband', 'https://github.com/philband', 'https://api.github.com/users/philband/followers', 'https://api.github.com/users/philband/following', 'https://api.github.com/users/philband/gists', 'https://api.github.com/users/philband/starred', 'https://api.github.com/users/philband/repos', 'https://api.github.com/users/philband/events', 'https://api.github.com/users/philband/received_events', 0); +INSERT INTO `developer` VALUES (43861226, 'JeffVandrewJr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jeff Vandroux Jr', 'Vandrew LLC', 'keykeeperira.com/bitcoin', 'twitter.com/vandrewattycpa', NULL, NULL, 'I maintain the Python Client Library for BTCPayServer, as well as the BTCPay Quickbooks integration and LibrePatron.', NULL, 0, 0, 43, 1, 0, 0, 0, '2018-10-04T18:38:16Z', '2024-01-22T18:09:30Z', 'https://avatars.githubusercontent.com/u/43861226?v=4', 'https://api.github.com/users/JeffVandrewJr', 'https://github.com/JeffVandrewJr', 'https://api.github.com/users/JeffVandrewJr/followers', 'https://api.github.com/users/JeffVandrewJr/following', 'https://api.github.com/users/JeffVandrewJr/gists', 'https://api.github.com/users/JeffVandrewJr/starred', 'https://api.github.com/users/JeffVandrewJr/repos', 'https://api.github.com/users/JeffVandrewJr/events', 'https://api.github.com/users/JeffVandrewJr/received_events', 0); +INSERT INTO `developer` VALUES (43874676, 'bgoareguer', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2018-10-05T07:30:46Z', '2024-10-25T08:40:29Z', 'https://avatars.githubusercontent.com/u/43874676?v=4', 'https://api.github.com/users/bgoareguer', 'https://github.com/bgoareguer', 'https://api.github.com/users/bgoareguer/followers', 'https://api.github.com/users/bgoareguer/following', 'https://api.github.com/users/bgoareguer/gists', 'https://api.github.com/users/bgoareguer/starred', 'https://api.github.com/users/bgoareguer/repos', 'https://api.github.com/users/bgoareguer/events', 'https://api.github.com/users/bgoareguer/received_events', 0); +INSERT INTO `developer` VALUES (44141322, 'bend18', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-10-14T16:21:18Z', '2019-01-09T01:43:25Z', 'https://avatars.githubusercontent.com/u/44141322?v=4', 'https://api.github.com/users/bend18', 'https://github.com/bend18', 'https://api.github.com/users/bend18/followers', 'https://api.github.com/users/bend18/following', 'https://api.github.com/users/bend18/gists', 'https://api.github.com/users/bend18/starred', 'https://api.github.com/users/bend18/repos', 'https://api.github.com/users/bend18/events', 'https://api.github.com/users/bend18/received_events', 0); +INSERT INTO `developer` VALUES (44533924, 'Fabcien', 'C', 0, 0, 2, 4, 2, 0, 0, 'Fabien', NULL, '', '未知', 'fabcien@gmail.com', NULL, 'Bitcoin ABC contributor', NULL, 0, 0, 36, 0, 0, 0, 0, '2018-10-27T20:21:36Z', '2024-10-09T11:47:54Z', 'https://avatars.githubusercontent.com/u/44533924?v=4', 'https://api.github.com/users/Fabcien', 'https://github.com/Fabcien', 'https://api.github.com/users/Fabcien/followers', 'https://api.github.com/users/Fabcien/following', 'https://api.github.com/users/Fabcien/gists', 'https://api.github.com/users/Fabcien/starred', 'https://api.github.com/users/Fabcien/repos', 'https://api.github.com/users/Fabcien/events', 'https://api.github.com/users/Fabcien/received_events', 0); +INSERT INTO `developer` VALUES (44541855, 'ankit2001', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ankit Choudhary', 'Amazon', '', 'Kurukshetra,Haryana', 'ankitchoudhary202.ac@gmail.com', 'true', 'Software Development Engineer @AWS', NULL, 0, 0, 88, 38, 0, 0, 0, '2018-10-28T07:43:26Z', '2024-10-15T14:15:50Z', 'https://avatars.githubusercontent.com/u/44541855?v=4', 'https://api.github.com/users/ankit2001', 'https://github.com/ankit2001', 'https://api.github.com/users/ankit2001/followers', 'https://api.github.com/users/ankit2001/following', 'https://api.github.com/users/ankit2001/gists', 'https://api.github.com/users/ankit2001/starred', 'https://api.github.com/users/ankit2001/repos', 'https://api.github.com/users/ankit2001/events', 'https://api.github.com/users/ankit2001/received_events', 0); +INSERT INTO `developer` VALUES (44571635, 'dikshathakur3119', 'C', 0, 0, 0, 0, 0, 0, 0, 'Diksha Thakur', NULL, '', 'United States', NULL, NULL, 'An enthusiastic Software Developer who keeps on exploring new technologies. Areas of interest: Machine Learning, Data Visualization, NLP.', NULL, 0, 0, 1, 0, 0, 0, 0, '2018-10-29T10:51:00Z', '2021-07-24T04:35:10Z', 'https://avatars.githubusercontent.com/u/44571635?v=4', 'https://api.github.com/users/dikshathakur3119', 'https://github.com/dikshathakur3119', 'https://api.github.com/users/dikshathakur3119/followers', 'https://api.github.com/users/dikshathakur3119/following', 'https://api.github.com/users/dikshathakur3119/gists', 'https://api.github.com/users/dikshathakur3119/starred', 'https://api.github.com/users/dikshathakur3119/repos', 'https://api.github.com/users/dikshathakur3119/events', 'https://api.github.com/users/dikshathakur3119/received_events', 0); +INSERT INTO `developer` VALUES (45755515, 'vishalashank', 'C', 0, 0, 0, 0, 0, 0, 0, 'Vishal Ashank', '@razorpay ', 'https://github.com/saavan251', 'Bengaluru', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2018-12-10T09:36:34Z', '2020-09-17T15:55:07Z', 'https://avatars.githubusercontent.com/u/45755515?v=4', 'https://api.github.com/users/vishalashank', 'https://github.com/vishalashank', 'https://api.github.com/users/vishalashank/followers', 'https://api.github.com/users/vishalashank/following', 'https://api.github.com/users/vishalashank/gists', 'https://api.github.com/users/vishalashank/starred', 'https://api.github.com/users/vishalashank/repos', 'https://api.github.com/users/vishalashank/events', 'https://api.github.com/users/vishalashank/received_events', 0); +INSERT INTO `developer` VALUES (45780866, 'amandal97', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anirban Mandal', 'Razorpay', 'https://www.linkedin.com/in/anirban-mandal-a6a397197/', 'Bengaluru', 'mandaline97@gmail.com', NULL, 'Hello, my name is Anirban.\r\nI am a full stack developer specializing on React and Java. Also, I am a NextJS enthusiast!', NULL, 0, 0, 0, 0, 0, 0, 0, '2018-12-11T05:37:03Z', '2024-05-07T10:29:11Z', 'https://avatars.githubusercontent.com/u/45780866?v=4', 'https://api.github.com/users/amandal97', 'https://github.com/amandal97', 'https://api.github.com/users/amandal97/followers', 'https://api.github.com/users/amandal97/following', 'https://api.github.com/users/amandal97/gists', 'https://api.github.com/users/amandal97/starred', 'https://api.github.com/users/amandal97/repos', 'https://api.github.com/users/amandal97/events', 'https://api.github.com/users/amandal97/received_events', 0); +INSERT INTO `developer` VALUES (46241067, 'aslak47', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aslak Vaa', NULL, '', 'Oslo, Norway', NULL, NULL, 'Retired systems developer.\r\nDatabases (Oracle, MySQL, PostgreSQL, SQLite), GUI, Web.\r\nC/C++, Java, Fortran, VB.Net, Unix scripting.\r\nUnix, Linux, MS Windows.', NULL, 0, 0, 0, 0, 0, 0, 0, '2018-12-29T09:41:54Z', '2024-08-03T16:07:46Z', 'https://avatars.githubusercontent.com/u/46241067?v=4', 'https://api.github.com/users/aslak47', 'https://github.com/aslak47', 'https://api.github.com/users/aslak47/followers', 'https://api.github.com/users/aslak47/following', 'https://api.github.com/users/aslak47/gists', 'https://api.github.com/users/aslak47/starred', 'https://api.github.com/users/aslak47/repos', 'https://api.github.com/users/aslak47/events', 'https://api.github.com/users/aslak47/received_events', 0); +INSERT INTO `developer` VALUES (46459665, 'Maffooch', 'C', 0, 0, 0, 0, 0, 0, 0, 'Cody Maffucci', '@DefectDojo-Inc ', 'https://www.linkedin.com/in/cody-maffucci/', 'Cypress, TX', NULL, NULL, NULL, NULL, 0, 0, 20, 3, 0, 0, 0, '2019-01-07T20:07:01Z', '2024-11-01T18:38:58Z', 'https://avatars.githubusercontent.com/u/46459665?v=4', 'https://api.github.com/users/Maffooch', 'https://github.com/Maffooch', 'https://api.github.com/users/Maffooch/followers', 'https://api.github.com/users/Maffooch/following', 'https://api.github.com/users/Maffooch/gists', 'https://api.github.com/users/Maffooch/starred', 'https://api.github.com/users/Maffooch/repos', 'https://api.github.com/users/Maffooch/events', 'https://api.github.com/users/Maffooch/received_events', 0); +INSERT INTO `developer` VALUES (46505081, 'caleb15', 'C', 0, 0, 0, 0, 0, 0, 0, 'Caleb Collins-Parks', '@15Five', 'dev.to/almenon', 'Washington', NULL, NULL, 'Loves: Typescript, cookies.', NULL, 0, 0, 2, 1, 0, 0, 0, '2019-01-08T22:29:45Z', '2023-02-04T20:30:36Z', 'https://avatars.githubusercontent.com/u/46505081?v=4', 'https://api.github.com/users/caleb15', 'https://github.com/caleb15', 'https://api.github.com/users/caleb15/followers', 'https://api.github.com/users/caleb15/following', 'https://api.github.com/users/caleb15/gists', 'https://api.github.com/users/caleb15/starred', 'https://api.github.com/users/caleb15/repos', 'https://api.github.com/users/caleb15/events', 'https://api.github.com/users/caleb15/received_events', 0); +INSERT INTO `developer` VALUES (46647141, 'snitin315', 'C+', 14.45934033849807, 0, 0, 0, 0, 0, 0, 'Nitin Kumar', ' @webpack @eslint @razorpay', 'https://snitin315.dev/', 'INDIA', 'snitin315@gmail.com', 'true', 'Helping maintain @webpack and @eslint', 'snitin315', 0, 0, 1128, 4, 0, 0, 0, '2019-01-13T12:01:22Z', '2024-10-22T07:03:09Z', 'https://avatars.githubusercontent.com/u/46647141?v=4', 'https://api.github.com/users/snitin315', 'https://github.com/snitin315', 'https://api.github.com/users/snitin315/followers', 'https://api.github.com/users/snitin315/following', 'https://api.github.com/users/snitin315/gists', 'https://api.github.com/users/snitin315/starred', 'https://api.github.com/users/snitin315/repos', 'https://api.github.com/users/snitin315/events', 'https://api.github.com/users/snitin315/received_events', 0); +INSERT INTO `developer` VALUES (46822413, 'madam7', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-01-18T16:42:38Z', '2019-03-06T19:10:13Z', 'https://avatars.githubusercontent.com/u/46822413?v=4', 'https://api.github.com/users/madam7', 'https://github.com/madam7', 'https://api.github.com/users/madam7/followers', 'https://api.github.com/users/madam7/following', 'https://api.github.com/users/madam7/gists', 'https://api.github.com/users/madam7/starred', 'https://api.github.com/users/madam7/repos', 'https://api.github.com/users/madam7/events', 'https://api.github.com/users/madam7/received_events', 0); +INSERT INTO `developer` VALUES (47112778, 'dev-cj', 'C', 0, 0, 0, 0, 0, 0, 0, 'CJ', NULL, 'https://devcj.in', 'India', NULL, 'true', NULL, NULL, 0, 0, 8, 28, 0, 0, 0, '2019-01-28T14:51:20Z', '2024-09-27T21:33:39Z', 'https://avatars.githubusercontent.com/u/47112778?v=4', 'https://api.github.com/users/dev-cj', 'https://github.com/dev-cj', 'https://api.github.com/users/dev-cj/followers', 'https://api.github.com/users/dev-cj/following', 'https://api.github.com/users/dev-cj/gists', 'https://api.github.com/users/dev-cj/starred', 'https://api.github.com/users/dev-cj/repos', 'https://api.github.com/users/dev-cj/events', 'https://api.github.com/users/dev-cj/received_events', 0); +INSERT INTO `developer` VALUES (47212746, 'floriansengel', 'C', 0, 0, 0, 0, 0, 0, 0, 'Florian Engel', NULL, '', 'København', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-01-31T11:26:29Z', '2019-04-10T07:20:46Z', 'https://avatars.githubusercontent.com/u/47212746?v=4', 'https://api.github.com/users/floriansengel', 'https://github.com/floriansengel', 'https://api.github.com/users/floriansengel/followers', 'https://api.github.com/users/floriansengel/following', 'https://api.github.com/users/floriansengel/gists', 'https://api.github.com/users/floriansengel/starred', 'https://api.github.com/users/floriansengel/repos', 'https://api.github.com/users/floriansengel/events', 'https://api.github.com/users/floriansengel/received_events', 0); +INSERT INTO `developer` VALUES (47532693, 'tomac4t', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-02-11T15:56:22Z', '2024-05-31T14:07:32Z', 'https://avatars.githubusercontent.com/u/47532693?v=4', 'https://api.github.com/users/tomac4t', 'https://github.com/tomac4t', 'https://api.github.com/users/tomac4t/followers', 'https://api.github.com/users/tomac4t/following', 'https://api.github.com/users/tomac4t/gists', 'https://api.github.com/users/tomac4t/starred', 'https://api.github.com/users/tomac4t/repos', 'https://api.github.com/users/tomac4t/events', 'https://api.github.com/users/tomac4t/received_events', 0); +INSERT INTO `developer` VALUES (47610842, 'SoaAlex', 'C', 0, 0, 0, 0, 0, 0, 0, 'SoaAlex', '@adeo ', '', 'Lille', NULL, NULL, 'Freelance - DevOps Engineer at Adeo - Graduated from CentraleSupelec & ECE Paris -🎂 25', NULL, 0, 0, 1, 0, 0, 0, 0, '2019-02-13T19:45:59Z', '2024-09-27T13:25:02Z', 'https://avatars.githubusercontent.com/u/47610842?v=4', 'https://api.github.com/users/SoaAlex', 'https://github.com/SoaAlex', 'https://api.github.com/users/SoaAlex/followers', 'https://api.github.com/users/SoaAlex/following', 'https://api.github.com/users/SoaAlex/gists', 'https://api.github.com/users/SoaAlex/starred', 'https://api.github.com/users/SoaAlex/repos', 'https://api.github.com/users/SoaAlex/events', 'https://api.github.com/users/SoaAlex/received_events', 0); +INSERT INTO `developer` VALUES (47991713, 'manuel-sommer', 'C', 0, 0, 0, 0, 0, 0, 0, 'manuelsommer', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 12, 10, 0, 0, 0, '2019-02-25T20:12:52Z', '2024-05-21T06:56:36Z', 'https://avatars.githubusercontent.com/u/47991713?v=4', 'https://api.github.com/users/manuel-sommer', 'https://github.com/manuel-sommer', 'https://api.github.com/users/manuel-sommer/followers', 'https://api.github.com/users/manuel-sommer/following', 'https://api.github.com/users/manuel-sommer/gists', 'https://api.github.com/users/manuel-sommer/starred', 'https://api.github.com/users/manuel-sommer/repos', 'https://api.github.com/users/manuel-sommer/events', 'https://api.github.com/users/manuel-sommer/received_events', 0); +INSERT INTO `developer` VALUES (48127293, 'klebediev', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kyrylo Lebediev', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 2, 0, 0, 0, '2019-03-01T13:26:18Z', '2024-09-12T10:55:19Z', 'https://avatars.githubusercontent.com/u/48127293?v=4', 'https://api.github.com/users/klebediev', 'https://github.com/klebediev', 'https://api.github.com/users/klebediev/followers', 'https://api.github.com/users/klebediev/following', 'https://api.github.com/users/klebediev/gists', 'https://api.github.com/users/klebediev/starred', 'https://api.github.com/users/klebediev/repos', 'https://api.github.com/users/klebediev/events', 'https://api.github.com/users/klebediev/received_events', 0); +INSERT INTO `developer` VALUES (48719704, 'sdkfjlsfjlskdfjlsdjflsjf', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2019-03-19T12:23:44Z', '2019-06-23T08:28:01Z', 'https://avatars.githubusercontent.com/u/48719704?v=4', 'https://api.github.com/users/sdkfjlsfjlskdfjlsdjflsjf', 'https://github.com/sdkfjlsfjlskdfjlsdjflsjf', 'https://api.github.com/users/sdkfjlsfjlskdfjlsdjflsjf/followers', 'https://api.github.com/users/sdkfjlsfjlskdfjlsdjflsjf/following', 'https://api.github.com/users/sdkfjlsfjlskdfjlsdjflsjf/gists', 'https://api.github.com/users/sdkfjlsfjlskdfjlsdjflsjf/starred', 'https://api.github.com/users/sdkfjlsfjlskdfjlsdjflsjf/repos', 'https://api.github.com/users/sdkfjlsfjlskdfjlsdjflsjf/events', 'https://api.github.com/users/sdkfjlsfjlskdfjlsdjflsjf/received_events', 0); +INSERT INTO `developer` VALUES (48921037, 'Jaynil1611', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jaynil Gaglani', 'Frontend @Salesforce', 'https://bit.ly/jaynil-profile', 'Mumbai, India', 'g.jaynil2401@gmail.com', 'true', 'Software Engineer @salesforce | Ex -@razorpay |\r\n\r\n \r\nJavaScript | TypeScript | React | Next JS', 'Jaynil_Gaglani', 0, 0, 175, 32, 0, 0, 0, '2019-03-25T15:43:43Z', '2024-10-26T04:14:37Z', 'https://avatars.githubusercontent.com/u/48921037?v=4', 'https://api.github.com/users/Jaynil1611', 'https://github.com/Jaynil1611', 'https://api.github.com/users/Jaynil1611/followers', 'https://api.github.com/users/Jaynil1611/following', 'https://api.github.com/users/Jaynil1611/gists', 'https://api.github.com/users/Jaynil1611/starred', 'https://api.github.com/users/Jaynil1611/repos', 'https://api.github.com/users/Jaynil1611/events', 'https://api.github.com/users/Jaynil1611/received_events', 0); +INSERT INTO `developer` VALUES (48948013, 'lakshay-dutt', 'C', 0, 0, 0, 0, 0, 0, 0, 'Lakshay Dutt', NULL, '', 'Delhi, IN', NULL, 'true', NULL, NULL, 0, 0, 2, 2, 0, 0, 0, '2019-03-26T10:20:03Z', '2024-10-03T10:00:23Z', 'https://avatars.githubusercontent.com/u/48948013?v=4', 'https://api.github.com/users/lakshay-dutt', 'https://github.com/lakshay-dutt', 'https://api.github.com/users/lakshay-dutt/followers', 'https://api.github.com/users/lakshay-dutt/following', 'https://api.github.com/users/lakshay-dutt/gists', 'https://api.github.com/users/lakshay-dutt/starred', 'https://api.github.com/users/lakshay-dutt/repos', 'https://api.github.com/users/lakshay-dutt/events', 'https://api.github.com/users/lakshay-dutt/received_events', 0); +INSERT INTO `developer` VALUES (49230384, 'Amishakumari544', 'C', 0, 0, 0, 0, 0, 0, 0, 'Amisha Kumari', NULL, 'https://amishatech.vercel.app/', 'india', 'amishakumari544@gmail.com', 'true', 'Curious geek.Technical writer at @scaleracademy ✍️\r\nContributor @cncf multiple projects', NULL, 0, 0, 58, 21, 0, 0, 0, '2019-04-03T08:42:43Z', '2024-10-05T11:46:32Z', 'https://avatars.githubusercontent.com/u/49230384?v=4', 'https://api.github.com/users/Amishakumari544', 'https://github.com/Amishakumari544', 'https://api.github.com/users/Amishakumari544/followers', 'https://api.github.com/users/Amishakumari544/following', 'https://api.github.com/users/Amishakumari544/gists', 'https://api.github.com/users/Amishakumari544/starred', 'https://api.github.com/users/Amishakumari544/repos', 'https://api.github.com/users/Amishakumari544/events', 'https://api.github.com/users/Amishakumari544/received_events', 0); +INSERT INTO `developer` VALUES (49285004, 'AlexanderTyutin', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alexander', 'TYUTIN.NET', '', '未知', NULL, 'true', 'Cybersecurity enthusiast', NULL, 0, 0, 7, 6, 0, 0, 0, '2019-04-04T16:30:35Z', '2024-01-31T11:26:59Z', 'https://avatars.githubusercontent.com/u/49285004?v=4', 'https://api.github.com/users/AlexanderTyutin', 'https://github.com/AlexanderTyutin', 'https://api.github.com/users/AlexanderTyutin/followers', 'https://api.github.com/users/AlexanderTyutin/following', 'https://api.github.com/users/AlexanderTyutin/gists', 'https://api.github.com/users/AlexanderTyutin/starred', 'https://api.github.com/users/AlexanderTyutin/repos', 'https://api.github.com/users/AlexanderTyutin/events', 'https://api.github.com/users/AlexanderTyutin/received_events', 0); +INSERT INTO `developer` VALUES (49308957, 'twsagarcia', 'C', 0, 0, 0, 0, 0, 0, 0, 'agarcia@theworkshop.com', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 1, 0, 0, 0, '2019-04-05T11:17:51Z', '2024-03-18T09:26:44Z', 'https://avatars.githubusercontent.com/u/49308957?v=4', 'https://api.github.com/users/twsagarcia', 'https://github.com/twsagarcia', 'https://api.github.com/users/twsagarcia/followers', 'https://api.github.com/users/twsagarcia/following', 'https://api.github.com/users/twsagarcia/gists', 'https://api.github.com/users/twsagarcia/starred', 'https://api.github.com/users/twsagarcia/repos', 'https://api.github.com/users/twsagarcia/events', 'https://api.github.com/users/twsagarcia/received_events', 0); +INSERT INTO `developer` VALUES (49511527, 'tuxmithun12', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mithun Nair', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-04-11T06:51:07Z', '2022-05-13T04:22:06Z', 'https://avatars.githubusercontent.com/u/49511527?v=4', 'https://api.github.com/users/tuxmithun12', 'https://github.com/tuxmithun12', 'https://api.github.com/users/tuxmithun12/followers', 'https://api.github.com/users/tuxmithun12/following', 'https://api.github.com/users/tuxmithun12/gists', 'https://api.github.com/users/tuxmithun12/starred', 'https://api.github.com/users/tuxmithun12/repos', 'https://api.github.com/users/tuxmithun12/events', 'https://api.github.com/users/tuxmithun12/received_events', 0); +INSERT INTO `developer` VALUES (50197097, 'flkhndlr', 'C', 0, 0, 0, 0, 0, 0, 0, 'Falk', '@telekom-mms', '', 'Dresden', NULL, NULL, NULL, NULL, 0, 0, 8, 14, 0, 0, 0, '2019-05-02T08:29:48Z', '2024-10-25T08:54:27Z', 'https://avatars.githubusercontent.com/u/50197097?v=4', 'https://api.github.com/users/flkhndlr', 'https://github.com/flkhndlr', 'https://api.github.com/users/flkhndlr/followers', 'https://api.github.com/users/flkhndlr/following', 'https://api.github.com/users/flkhndlr/gists', 'https://api.github.com/users/flkhndlr/starred', 'https://api.github.com/users/flkhndlr/repos', 'https://api.github.com/users/flkhndlr/events', 'https://api.github.com/users/flkhndlr/received_events', 0); +INSERT INTO `developer` VALUES (50290814, 'shivam1646', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shivam Kotak', 'CleverTap', '', 'Mumbai', 'shivamkotak16.sk@gmail.com', 'true', NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2019-05-05T09:51:38Z', '2024-04-12T06:22:14Z', 'https://avatars.githubusercontent.com/u/50290814?v=4', 'https://api.github.com/users/shivam1646', 'https://github.com/shivam1646', 'https://api.github.com/users/shivam1646/followers', 'https://api.github.com/users/shivam1646/following', 'https://api.github.com/users/shivam1646/gists', 'https://api.github.com/users/shivam1646/starred', 'https://api.github.com/users/shivam1646/repos', 'https://api.github.com/users/shivam1646/events', 'https://api.github.com/users/shivam1646/received_events', 0); +INSERT INTO `developer` VALUES (51051860, 'dudicoco', 'C', 3.231531405314941, 0, 29, 12, 101, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, '2019-05-26T13:26:07Z', '2024-10-20T07:30:46Z', 'https://avatars.githubusercontent.com/u/51051860?v=4', 'https://api.github.com/users/dudicoco', 'https://github.com/dudicoco', 'https://api.github.com/users/dudicoco/followers', 'https://api.github.com/users/dudicoco/following', 'https://api.github.com/users/dudicoco/gists', 'https://api.github.com/users/dudicoco/starred', 'https://api.github.com/users/dudicoco/repos', 'https://api.github.com/users/dudicoco/events', 'https://api.github.com/users/dudicoco/received_events', 0); +INSERT INTO `developer` VALUES (51085015, 'harshsinghatz', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harsh Singh', NULL, '', 'India', NULL, NULL, '- Software Developer', 'HarshSinghAtZ', 0, 0, 25, 178, 0, 0, 0, '2019-05-27T12:53:24Z', '2024-10-29T12:11:19Z', 'https://avatars.githubusercontent.com/u/51085015?v=4', 'https://api.github.com/users/harshsinghatz', 'https://github.com/harshsinghatz', 'https://api.github.com/users/harshsinghatz/followers', 'https://api.github.com/users/harshsinghatz/following', 'https://api.github.com/users/harshsinghatz/gists', 'https://api.github.com/users/harshsinghatz/starred', 'https://api.github.com/users/harshsinghatz/repos', 'https://api.github.com/users/harshsinghatz/events', 'https://api.github.com/users/harshsinghatz/received_events', 0); +INSERT INTO `developer` VALUES (51089488, 'vseryozhenko', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-05-27T15:04:39Z', '2024-07-16T12:38:59Z', 'https://avatars.githubusercontent.com/u/51089488?v=4', 'https://api.github.com/users/vseryozhenko', 'https://github.com/vseryozhenko', 'https://api.github.com/users/vseryozhenko/followers', 'https://api.github.com/users/vseryozhenko/following', 'https://api.github.com/users/vseryozhenko/gists', 'https://api.github.com/users/vseryozhenko/starred', 'https://api.github.com/users/vseryozhenko/repos', 'https://api.github.com/users/vseryozhenko/events', 'https://api.github.com/users/vseryozhenko/received_events', 0); +INSERT INTO `developer` VALUES (51127567, 'chris-sansone-angi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Sansone', 'Angi', 'https://angi.com', 'New York', NULL, NULL, 'Director of Security at Angi | Personal GitHub Account: @chrissansone', NULL, 0, 0, 4, 2, 0, 0, 0, '2019-05-28T15:09:43Z', '2024-10-01T20:39:15Z', 'https://avatars.githubusercontent.com/u/51127567?v=4', 'https://api.github.com/users/chris-sansone-angi', 'https://github.com/chris-sansone-angi', 'https://api.github.com/users/chris-sansone-angi/followers', 'https://api.github.com/users/chris-sansone-angi/following', 'https://api.github.com/users/chris-sansone-angi/gists', 'https://api.github.com/users/chris-sansone-angi/starred', 'https://api.github.com/users/chris-sansone-angi/repos', 'https://api.github.com/users/chris-sansone-angi/events', 'https://api.github.com/users/chris-sansone-angi/received_events', 0); +INSERT INTO `developer` VALUES (51356096, 'adewaskar', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2019-06-04T06:22:32Z', '2024-10-25T07:00:16Z', 'https://avatars.githubusercontent.com/u/51356096?v=4', 'https://api.github.com/users/adewaskar', 'https://github.com/adewaskar', 'https://api.github.com/users/adewaskar/followers', 'https://api.github.com/users/adewaskar/following', 'https://api.github.com/users/adewaskar/gists', 'https://api.github.com/users/adewaskar/starred', 'https://api.github.com/users/adewaskar/repos', 'https://api.github.com/users/adewaskar/events', 'https://api.github.com/users/adewaskar/received_events', 0); +INSERT INTO `developer` VALUES (51818964, 'a-hat', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andreas Kappler', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2019-06-14T09:10:31Z', '2024-10-04T06:19:22Z', 'https://avatars.githubusercontent.com/u/51818964?v=4', 'https://api.github.com/users/a-hat', 'https://github.com/a-hat', 'https://api.github.com/users/a-hat/followers', 'https://api.github.com/users/a-hat/following', 'https://api.github.com/users/a-hat/gists', 'https://api.github.com/users/a-hat/starred', 'https://api.github.com/users/a-hat/repos', 'https://api.github.com/users/a-hat/events', 'https://api.github.com/users/a-hat/received_events', 0); +INSERT INTO `developer` VALUES (51921550, 'archie252000', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aaryavrat Arora', NULL, '', '未知', NULL, NULL, 'A passionate and curious individual, focusing on contributing to and exploring the field of software, design, and engineering.', 'archie252000', 0, 0, 4, 12, 0, 0, 0, '2019-06-17T15:26:44Z', '2024-08-04T18:30:19Z', 'https://avatars.githubusercontent.com/u/51921550?v=4', 'https://api.github.com/users/archie252000', 'https://github.com/archie252000', 'https://api.github.com/users/archie252000/followers', 'https://api.github.com/users/archie252000/following', 'https://api.github.com/users/archie252000/gists', 'https://api.github.com/users/archie252000/starred', 'https://api.github.com/users/archie252000/repos', 'https://api.github.com/users/archie252000/events', 'https://api.github.com/users/archie252000/received_events', 0); +INSERT INTO `developer` VALUES (51924754, 'parryd', 'C', 0, 0, 0, 0, 0, 0, 0, 'Paridhi', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 8, 0, 0, 0, '2019-06-17T17:05:10Z', '2024-08-28T06:30:17Z', 'https://avatars.githubusercontent.com/u/51924754?v=4', 'https://api.github.com/users/parryd', 'https://github.com/parryd', 'https://api.github.com/users/parryd/followers', 'https://api.github.com/users/parryd/following', 'https://api.github.com/users/parryd/gists', 'https://api.github.com/users/parryd/starred', 'https://api.github.com/users/parryd/repos', 'https://api.github.com/users/parryd/events', 'https://api.github.com/users/parryd/received_events', 0); +INSERT INTO `developer` VALUES (51951473, 'gaurav1308', 'C', 0, 0, 0, 0, 0, 0, 0, 'Gaurav singh', 'Razorpay', '', 'Bangalore', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2019-06-18T09:37:09Z', '2023-09-25T07:13:25Z', 'https://avatars.githubusercontent.com/u/51951473?v=4', 'https://api.github.com/users/gaurav1308', 'https://github.com/gaurav1308', 'https://api.github.com/users/gaurav1308/followers', 'https://api.github.com/users/gaurav1308/following', 'https://api.github.com/users/gaurav1308/gists', 'https://api.github.com/users/gaurav1308/starred', 'https://api.github.com/users/gaurav1308/repos', 'https://api.github.com/users/gaurav1308/events', 'https://api.github.com/users/gaurav1308/received_events', 0); +INSERT INTO `developer` VALUES (52004626, 'Aka-shi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tanmay Krishna', '@razorpay ', 'https://www.linkedin.com/in/tanmay-krishna-57894216b/', 'Bangalore, India', 'tanmaykrishna266@gmail.com', NULL, 'Software Engineer', NULL, 0, 0, 4, 1, 0, 0, 0, '2019-06-19T15:05:36Z', '2024-10-28T07:21:04Z', 'https://avatars.githubusercontent.com/u/52004626?v=4', 'https://api.github.com/users/Aka-shi', 'https://github.com/Aka-shi', 'https://api.github.com/users/Aka-shi/followers', 'https://api.github.com/users/Aka-shi/following', 'https://api.github.com/users/Aka-shi/gists', 'https://api.github.com/users/Aka-shi/starred', 'https://api.github.com/users/Aka-shi/repos', 'https://api.github.com/users/Aka-shi/events', 'https://api.github.com/users/Aka-shi/received_events', 0); +INSERT INTO `developer` VALUES (52169987, 'tahir59', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2019-06-24T15:28:55Z', '2022-10-31T06:15:38Z', 'https://avatars.githubusercontent.com/u/52169987?v=4', 'https://api.github.com/users/tahir59', 'https://github.com/tahir59', 'https://api.github.com/users/tahir59/followers', 'https://api.github.com/users/tahir59/following', 'https://api.github.com/users/tahir59/gists', 'https://api.github.com/users/tahir59/starred', 'https://api.github.com/users/tahir59/repos', 'https://api.github.com/users/tahir59/events', 'https://api.github.com/users/tahir59/received_events', 0); +INSERT INTO `developer` VALUES (52323235, 'thboop', 'C', 0, 0, 0, 0, 0, 0, 0, 'Thomas Boop', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 101, 0, 0, 0, 0, '2019-06-28T13:36:43Z', '2024-06-12T14:29:55Z', 'https://avatars.githubusercontent.com/u/52323235?v=4', 'https://api.github.com/users/thboop', 'https://github.com/thboop', 'https://api.github.com/users/thboop/followers', 'https://api.github.com/users/thboop/following', 'https://api.github.com/users/thboop/gists', 'https://api.github.com/users/thboop/starred', 'https://api.github.com/users/thboop/repos', 'https://api.github.com/users/thboop/events', 'https://api.github.com/users/thboop/received_events', 0); +INSERT INTO `developer` VALUES (52580251, 'friendtocephalopods', 'C', 0, 0, 0, 0, 0, 0, 0, 'hoskins', 'Square', '', '未知', NULL, NULL, 'A friend to cephalopods and other lifeforms', NULL, 0, 0, 9, 5, 0, 0, 0, '2019-07-05T17:49:13Z', '2024-07-18T17:34:26Z', 'https://avatars.githubusercontent.com/u/52580251?v=4', 'https://api.github.com/users/friendtocephalopods', 'https://github.com/friendtocephalopods', 'https://api.github.com/users/friendtocephalopods/followers', 'https://api.github.com/users/friendtocephalopods/following', 'https://api.github.com/users/friendtocephalopods/gists', 'https://api.github.com/users/friendtocephalopods/starred', 'https://api.github.com/users/friendtocephalopods/repos', 'https://api.github.com/users/friendtocephalopods/events', 'https://api.github.com/users/friendtocephalopods/received_events', 0); +INSERT INTO `developer` VALUES (52677120, 'justin-chizer', 'C', 0, 0, 0, 0, 0, 0, 0, 'Justin Chizer', 'NationsBenefits', '', 'San Francisco, CA', NULL, NULL, 'Lead Site Reliability Engineer', NULL, 0, 0, 1, 1, 0, 0, 0, '2019-07-08T19:35:13Z', '2024-10-29T18:03:40Z', 'https://avatars.githubusercontent.com/u/52677120?v=4', 'https://api.github.com/users/justin-chizer', 'https://github.com/justin-chizer', 'https://api.github.com/users/justin-chizer/followers', 'https://api.github.com/users/justin-chizer/following', 'https://api.github.com/users/justin-chizer/gists', 'https://api.github.com/users/justin-chizer/starred', 'https://api.github.com/users/justin-chizer/repos', 'https://api.github.com/users/justin-chizer/events', 'https://api.github.com/users/justin-chizer/received_events', 0); +INSERT INTO `developer` VALUES (53296253, 'OlesyaGerasimenko', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-07-25T09:03:45Z', '2024-01-19T11:42:08Z', 'https://avatars.githubusercontent.com/u/53296253?v=4', 'https://api.github.com/users/OlesyaGerasimenko', 'https://github.com/OlesyaGerasimenko', 'https://api.github.com/users/OlesyaGerasimenko/followers', 'https://api.github.com/users/OlesyaGerasimenko/following', 'https://api.github.com/users/OlesyaGerasimenko/gists', 'https://api.github.com/users/OlesyaGerasimenko/starred', 'https://api.github.com/users/OlesyaGerasimenko/repos', 'https://api.github.com/users/OlesyaGerasimenko/events', 'https://api.github.com/users/OlesyaGerasimenko/received_events', 0); +INSERT INTO `developer` VALUES (53298451, 'keyvaann', 'C', 0, 0, 0, 0, 0, 0, 0, 'Keyvan', NULL, '', 'Netherlands', NULL, NULL, NULL, NULL, 0, 0, 5, 0, 0, 0, 0, '2019-07-25T10:00:09Z', '2024-10-04T23:15:48Z', 'https://avatars.githubusercontent.com/u/53298451?v=4', 'https://api.github.com/users/keyvaann', 'https://github.com/keyvaann', 'https://api.github.com/users/keyvaann/followers', 'https://api.github.com/users/keyvaann/following', 'https://api.github.com/users/keyvaann/gists', 'https://api.github.com/users/keyvaann/starred', 'https://api.github.com/users/keyvaann/repos', 'https://api.github.com/users/keyvaann/events', 'https://api.github.com/users/keyvaann/received_events', 0); +INSERT INTO `developer` VALUES (53452532, 'macklin-10x', 'C', 0, 0, 0, 0, 0, 0, 0, 'Chris Macklin', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2019-07-29T22:22:04Z', '2024-04-17T05:08:04Z', 'https://avatars.githubusercontent.com/u/53452532?v=4', 'https://api.github.com/users/macklin-10x', 'https://github.com/macklin-10x', 'https://api.github.com/users/macklin-10x/followers', 'https://api.github.com/users/macklin-10x/following', 'https://api.github.com/users/macklin-10x/gists', 'https://api.github.com/users/macklin-10x/starred', 'https://api.github.com/users/macklin-10x/repos', 'https://api.github.com/users/macklin-10x/events', 'https://api.github.com/users/macklin-10x/received_events', 0); +INSERT INTO `developer` VALUES (53913163, 'import-yuv', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rakesh Sinha', '@razorpay ', '', 'India', NULL, NULL, '👨🏻‍💻', NULL, 0, 0, 4, 3, 0, 0, 0, '2019-08-08T17:05:05Z', '2024-07-22T08:33:12Z', 'https://avatars.githubusercontent.com/u/53913163?v=4', 'https://api.github.com/users/import-yuv', 'https://github.com/import-yuv', 'https://api.github.com/users/import-yuv/followers', 'https://api.github.com/users/import-yuv/following', 'https://api.github.com/users/import-yuv/gists', 'https://api.github.com/users/import-yuv/starred', 'https://api.github.com/users/import-yuv/repos', 'https://api.github.com/users/import-yuv/events', 'https://api.github.com/users/import-yuv/received_events', 0); +INSERT INTO `developer` VALUES (54294432, 'nathanlawrence-asana', 'C', 0, 0, 0, 0, 0, 0, 0, 'Nathan Lawrence', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2019-08-19T23:28:35Z', '2024-10-23T16:51:15Z', 'https://avatars.githubusercontent.com/u/54294432?v=4', 'https://api.github.com/users/nathanlawrence-asana', 'https://github.com/nathanlawrence-asana', 'https://api.github.com/users/nathanlawrence-asana/followers', 'https://api.github.com/users/nathanlawrence-asana/following', 'https://api.github.com/users/nathanlawrence-asana/gists', 'https://api.github.com/users/nathanlawrence-asana/starred', 'https://api.github.com/users/nathanlawrence-asana/repos', 'https://api.github.com/users/nathanlawrence-asana/events', 'https://api.github.com/users/nathanlawrence-asana/received_events', 0); +INSERT INTO `developer` VALUES (54985099, 'naveen8801', 'C', 0, 0, 0, 0, 0, 0, 0, 'Naveen ', '@StackGuardian ', '', 'Haryana , India', NULL, NULL, 'Founding Software Engineer @StackGuardian ', 'naveen__8801', 0, 0, 16, 13, 0, 0, 0, '2019-09-06T11:32:43Z', '2024-10-31T14:49:41Z', 'https://avatars.githubusercontent.com/u/54985099?v=4', 'https://api.github.com/users/naveen8801', 'https://github.com/naveen8801', 'https://api.github.com/users/naveen8801/followers', 'https://api.github.com/users/naveen8801/following', 'https://api.github.com/users/naveen8801/gists', 'https://api.github.com/users/naveen8801/starred', 'https://api.github.com/users/naveen8801/repos', 'https://api.github.com/users/naveen8801/events', 'https://api.github.com/users/naveen8801/received_events', 0); +INSERT INTO `developer` VALUES (55234737, 'tfulcrand', 'C', 0, 0, 0, 0, 0, 0, 0, 'Timothé Fulcrand', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2019-09-12T09:28:13Z', '2022-06-02T14:44:06Z', 'https://avatars.githubusercontent.com/u/55234737?v=4', 'https://api.github.com/users/tfulcrand', 'https://github.com/tfulcrand', 'https://api.github.com/users/tfulcrand/followers', 'https://api.github.com/users/tfulcrand/following', 'https://api.github.com/users/tfulcrand/gists', 'https://api.github.com/users/tfulcrand/starred', 'https://api.github.com/users/tfulcrand/repos', 'https://api.github.com/users/tfulcrand/events', 'https://api.github.com/users/tfulcrand/received_events', 0); +INSERT INTO `developer` VALUES (55280762, 'abhishek-jaiswal', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-09-13T11:28:21Z', '2019-09-13T11:28:22Z', 'https://avatars.githubusercontent.com/u/55280762?v=4', 'https://api.github.com/users/abhishek-jaiswal', 'https://github.com/abhishek-jaiswal', 'https://api.github.com/users/abhishek-jaiswal/followers', 'https://api.github.com/users/abhishek-jaiswal/following', 'https://api.github.com/users/abhishek-jaiswal/gists', 'https://api.github.com/users/abhishek-jaiswal/starred', 'https://api.github.com/users/abhishek-jaiswal/repos', 'https://api.github.com/users/abhishek-jaiswal/events', 'https://api.github.com/users/abhishek-jaiswal/received_events', 0); +INSERT INTO `developer` VALUES (55456592, 'TanguyChiffoleau', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tanguy Chiffoleau', NULL, '', 'France', NULL, NULL, NULL, NULL, 0, 0, 2, 1, 0, 0, 0, '2019-09-17T17:06:12Z', '2024-10-05T11:50:20Z', 'https://avatars.githubusercontent.com/u/55456592?v=4', 'https://api.github.com/users/TanguyChiffoleau', 'https://github.com/TanguyChiffoleau', 'https://api.github.com/users/TanguyChiffoleau/followers', 'https://api.github.com/users/TanguyChiffoleau/following', 'https://api.github.com/users/TanguyChiffoleau/gists', 'https://api.github.com/users/TanguyChiffoleau/starred', 'https://api.github.com/users/TanguyChiffoleau/repos', 'https://api.github.com/users/TanguyChiffoleau/events', 'https://api.github.com/users/TanguyChiffoleau/received_events', 0); +INSERT INTO `developer` VALUES (55986325, 'Sanketmundada', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sanket Mundada', NULL, '', '未知', NULL, NULL, 'I\'m a Computer student who loves Web Development and Competitive Coding.', NULL, 0, 0, 32, 61, 0, 0, 0, '2019-09-30T13:05:30Z', '2024-10-02T06:57:28Z', 'https://avatars.githubusercontent.com/u/55986325?v=4', 'https://api.github.com/users/Sanketmundada', 'https://github.com/Sanketmundada', 'https://api.github.com/users/Sanketmundada/followers', 'https://api.github.com/users/Sanketmundada/following', 'https://api.github.com/users/Sanketmundada/gists', 'https://api.github.com/users/Sanketmundada/starred', 'https://api.github.com/users/Sanketmundada/repos', 'https://api.github.com/users/Sanketmundada/events', 'https://api.github.com/users/Sanketmundada/received_events', 0); +INSERT INTO `developer` VALUES (56015232, 'eric-therond-sonarsource', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2019-10-01T05:49:19Z', '2022-01-31T10:00:07Z', 'https://avatars.githubusercontent.com/u/56015232?v=4', 'https://api.github.com/users/eric-therond-sonarsource', 'https://github.com/eric-therond-sonarsource', 'https://api.github.com/users/eric-therond-sonarsource/followers', 'https://api.github.com/users/eric-therond-sonarsource/following', 'https://api.github.com/users/eric-therond-sonarsource/gists', 'https://api.github.com/users/eric-therond-sonarsource/starred', 'https://api.github.com/users/eric-therond-sonarsource/repos', 'https://api.github.com/users/eric-therond-sonarsource/events', 'https://api.github.com/users/eric-therond-sonarsource/received_events', 0); +INSERT INTO `developer` VALUES (56016210, 'shridhar52war', 'C', 0, 0, 0, 0, 0, 0, 0, 'shridharbavannawar', NULL, '', '未知', 'shridhar.bavannawar@gmail.com', NULL, NULL, NULL, 0, 0, 4, 1, 0, 0, 0, '2019-10-01T06:23:15Z', '2024-09-03T07:23:26Z', 'https://avatars.githubusercontent.com/u/56016210?v=4', 'https://api.github.com/users/shridhar52war', 'https://github.com/shridhar52war', 'https://api.github.com/users/shridhar52war/followers', 'https://api.github.com/users/shridhar52war/following', 'https://api.github.com/users/shridhar52war/gists', 'https://api.github.com/users/shridhar52war/starred', 'https://api.github.com/users/shridhar52war/repos', 'https://api.github.com/users/shridhar52war/events', 'https://api.github.com/users/shridhar52war/received_events', 0); +INSERT INTO `developer` VALUES (56016386, 'ShankarParimi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shankar Parimi', '@razorpay ', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 2, 0, 0, 0, '2019-10-01T06:29:17Z', '2024-09-04T06:27:50Z', 'https://avatars.githubusercontent.com/u/56016386?v=4', 'https://api.github.com/users/ShankarParimi', 'https://github.com/ShankarParimi', 'https://api.github.com/users/ShankarParimi/followers', 'https://api.github.com/users/ShankarParimi/following', 'https://api.github.com/users/ShankarParimi/gists', 'https://api.github.com/users/ShankarParimi/starred', 'https://api.github.com/users/ShankarParimi/repos', 'https://api.github.com/users/ShankarParimi/events', 'https://api.github.com/users/ShankarParimi/received_events', 0); +INSERT INTO `developer` VALUES (56041085, 'gogo02', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-10-01T16:38:26Z', '2019-10-01T16:38:28Z', 'https://avatars.githubusercontent.com/u/56041085?v=4', 'https://api.github.com/users/gogo02', 'https://github.com/gogo02', 'https://api.github.com/users/gogo02/followers', 'https://api.github.com/users/gogo02/following', 'https://api.github.com/users/gogo02/gists', 'https://api.github.com/users/gogo02/starred', 'https://api.github.com/users/gogo02/repos', 'https://api.github.com/users/gogo02/events', 'https://api.github.com/users/gogo02/received_events', 0); +INSERT INTO `developer` VALUES (57997077, '2qx', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-11-20T14:23:08Z', '2024-11-01T00:17:49Z', 'https://avatars.githubusercontent.com/u/57997077?v=4', 'https://api.github.com/users/2qx', 'https://github.com/2qx', 'https://api.github.com/users/2qx/followers', 'https://api.github.com/users/2qx/following', 'https://api.github.com/users/2qx/gists', 'https://api.github.com/users/2qx/starred', 'https://api.github.com/users/2qx/repos', 'https://api.github.com/users/2qx/events', 'https://api.github.com/users/2qx/received_events', 0); +INSERT INTO `developer` VALUES (58219367, 'Homopatrol', 'C', 0, 0, 0, 0, 0, 0, 0, 'Panda', NULL, '', 'UK', NULL, 'true', '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. <----', NULL, 0, 0, 0, 9, 0, 0, 0, '2019-11-26T13:06:09Z', '2024-09-07T20:02:18Z', 'https://avatars.githubusercontent.com/u/58219367?v=4', 'https://api.github.com/users/Homopatrol', 'https://github.com/Homopatrol', 'https://api.github.com/users/Homopatrol/followers', 'https://api.github.com/users/Homopatrol/following', 'https://api.github.com/users/Homopatrol/gists', 'https://api.github.com/users/Homopatrol/starred', 'https://api.github.com/users/Homopatrol/repos', 'https://api.github.com/users/Homopatrol/events', 'https://api.github.com/users/Homopatrol/received_events', 0); +INSERT INTO `developer` VALUES (58301902, 'jankuehl', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, 'RIGS IT GmbH', 'www.rigs-it.com', 'Potsdam, Germany', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2019-11-28T14:45:37Z', '2022-05-05T13:08:29Z', 'https://avatars.githubusercontent.com/u/58301902?v=4', 'https://api.github.com/users/jankuehl', 'https://github.com/jankuehl', 'https://api.github.com/users/jankuehl/followers', 'https://api.github.com/users/jankuehl/following', 'https://api.github.com/users/jankuehl/gists', 'https://api.github.com/users/jankuehl/starred', 'https://api.github.com/users/jankuehl/repos', 'https://api.github.com/users/jankuehl/events', 'https://api.github.com/users/jankuehl/received_events', 0); +INSERT INTO `developer` VALUES (58720047, 'PriyaJ28', 'C', 0, 0, 0, 0, 0, 0, 0, 'Priyanshi Jaiswal', 'Indian Institute of Technology, Roorkee', 'https://www.linkedin.com/in/priyanshi-jaiswal-8043541a1/', 'Roorkee, Uttarakhand-247667', 'pjaiswal1@ma.iitr.ac.in', NULL, 'Data Science Enthusiast, exploring the intricacy of the programming paradigms aka ML/DL.', NULL, 0, 0, 3, 0, 0, 0, 0, '2019-12-10T05:38:21Z', '2022-07-17T15:06:37Z', 'https://avatars.githubusercontent.com/u/58720047?v=4', 'https://api.github.com/users/PriyaJ28', 'https://github.com/PriyaJ28', 'https://api.github.com/users/PriyaJ28/followers', 'https://api.github.com/users/PriyaJ28/following', 'https://api.github.com/users/PriyaJ28/gists', 'https://api.github.com/users/PriyaJ28/starred', 'https://api.github.com/users/PriyaJ28/repos', 'https://api.github.com/users/PriyaJ28/events', 'https://api.github.com/users/PriyaJ28/received_events', 0); +INSERT INTO `developer` VALUES (58831149, 'gfw-report', 'C', 7.188366422931261, 0, 0, 0, 0, 0, 0, NULL, 'GFW Report', 'https://gfw.report', '未知', 'gfw.report@protonmail.com', NULL, NULL, 'gfw_report', 0, 0, 704, 0, 0, 0, 0, '2019-12-12T22:41:59Z', '2024-10-04T04:54:51Z', 'https://avatars.githubusercontent.com/u/58831149?v=4', 'https://api.github.com/users/gfw-report', 'https://github.com/gfw-report', 'https://api.github.com/users/gfw-report/followers', 'https://api.github.com/users/gfw-report/following', 'https://api.github.com/users/gfw-report/gists', 'https://api.github.com/users/gfw-report/starred', 'https://api.github.com/users/gfw-report/repos', 'https://api.github.com/users/gfw-report/events', 'https://api.github.com/users/gfw-report/received_events', 0); +INSERT INTO `developer` VALUES (59192045, 'jis0324', 'C', 0, 0, 0, 0, 0, 0, 0, 'jis0324', NULL, '', '未知', NULL, NULL, 'TRY EVERYTHING!', NULL, 0, 0, 14, 50, 0, 0, 0, '2019-12-24T06:23:11Z', '2024-07-15T17:02:40Z', 'https://avatars.githubusercontent.com/u/59192045?v=4', 'https://api.github.com/users/jis0324', 'https://github.com/jis0324', 'https://api.github.com/users/jis0324/followers', 'https://api.github.com/users/jis0324/following', 'https://api.github.com/users/jis0324/gists', 'https://api.github.com/users/jis0324/starred', 'https://api.github.com/users/jis0324/repos', 'https://api.github.com/users/jis0324/events', 'https://api.github.com/users/jis0324/received_events', 0); +INSERT INTO `developer` VALUES (59445682, 'kareem-DA', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kareem Khan', 'Digital Asset', 'www.daml.com', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-01-02T14:59:04Z', '2024-07-11T14:37:12Z', 'https://avatars.githubusercontent.com/u/59445682?v=4', 'https://api.github.com/users/kareem-DA', 'https://github.com/kareem-DA', 'https://api.github.com/users/kareem-DA/followers', 'https://api.github.com/users/kareem-DA/following', 'https://api.github.com/users/kareem-DA/gists', 'https://api.github.com/users/kareem-DA/starred', 'https://api.github.com/users/kareem-DA/repos', 'https://api.github.com/users/kareem-DA/events', 'https://api.github.com/users/kareem-DA/received_events', 0); +INSERT INTO `developer` VALUES (60056554, 'Chaitanya-019', 'C', 0, 0, 0, 0, 0, 0, 0, 'chaitanya', 'Razorpay', '', 'Vizag', NULL, 'true', 'Presently a B.tech student in MME from IIT Madras and highly dedicated to coding and have coding experience in python, c,c++, Machine learning, Deep learning.', NULL, 0, 0, 0, 0, 0, 0, 0, '2020-01-19T05:56:11Z', '2024-10-14T16:16:14Z', 'https://avatars.githubusercontent.com/u/60056554?v=4', 'https://api.github.com/users/Chaitanya-019', 'https://github.com/Chaitanya-019', 'https://api.github.com/users/Chaitanya-019/followers', 'https://api.github.com/users/Chaitanya-019/following', 'https://api.github.com/users/Chaitanya-019/gists', 'https://api.github.com/users/Chaitanya-019/starred', 'https://api.github.com/users/Chaitanya-019/repos', 'https://api.github.com/users/Chaitanya-019/events', 'https://api.github.com/users/Chaitanya-019/received_events', 0); +INSERT INTO `developer` VALUES (60645015, 'jtg-dbs', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-02-04T08:26:23Z', '2023-11-13T13:55:03Z', 'https://avatars.githubusercontent.com/u/60645015?v=4', 'https://api.github.com/users/jtg-dbs', 'https://github.com/jtg-dbs', 'https://api.github.com/users/jtg-dbs/followers', 'https://api.github.com/users/jtg-dbs/following', 'https://api.github.com/users/jtg-dbs/gists', 'https://api.github.com/users/jtg-dbs/starred', 'https://api.github.com/users/jtg-dbs/repos', 'https://api.github.com/users/jtg-dbs/events', 'https://api.github.com/users/jtg-dbs/received_events', 0); +INSERT INTO `developer` VALUES (61734671, 'christophe226', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2020-03-03T09:55:24Z', '2021-09-07T14:27:46Z', 'https://avatars.githubusercontent.com/u/61734671?v=4', 'https://api.github.com/users/christophe226', 'https://github.com/christophe226', 'https://api.github.com/users/christophe226/followers', 'https://api.github.com/users/christophe226/following', 'https://api.github.com/users/christophe226/gists', 'https://api.github.com/users/christophe226/starred', 'https://api.github.com/users/christophe226/repos', 'https://api.github.com/users/christophe226/events', 'https://api.github.com/users/christophe226/received_events', 0); +INSERT INTO `developer` VALUES (62732810, 'jhamba', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-03-27T02:39:08Z', '2021-03-22T17:31:18Z', 'https://avatars.githubusercontent.com/u/62732810?v=4', 'https://api.github.com/users/jhamba', 'https://github.com/jhamba', 'https://api.github.com/users/jhamba/followers', 'https://api.github.com/users/jhamba/following', 'https://api.github.com/users/jhamba/gists', 'https://api.github.com/users/jhamba/starred', 'https://api.github.com/users/jhamba/repos', 'https://api.github.com/users/jhamba/events', 'https://api.github.com/users/jhamba/received_events', 0); +INSERT INTO `developer` VALUES (63398163, 'Priyanshu-C', 'C', 0, 0, 0, 0, 0, 0, 0, 'Priyanshu Chauhan', '@razorpay ', 'iamstacklesss.com', 'Bangalore', NULL, NULL, NULL, 'iamstackless', 0, 0, 5, 14, 0, 0, 0, '2020-04-09T09:39:31Z', '2024-09-04T11:54:44Z', 'https://avatars.githubusercontent.com/u/63398163?v=4', 'https://api.github.com/users/Priyanshu-C', 'https://github.com/Priyanshu-C', 'https://api.github.com/users/Priyanshu-C/followers', 'https://api.github.com/users/Priyanshu-C/following', 'https://api.github.com/users/Priyanshu-C/gists', 'https://api.github.com/users/Priyanshu-C/starred', 'https://api.github.com/users/Priyanshu-C/repos', 'https://api.github.com/users/Priyanshu-C/events', 'https://api.github.com/users/Priyanshu-C/received_events', 0); +INSERT INTO `developer` VALUES (63637087, 'udaysharma-dev', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2020-04-14T08:05:17Z', '2022-11-02T05:40:10Z', 'https://avatars.githubusercontent.com/u/63637087?v=4', 'https://api.github.com/users/udaysharma-dev', 'https://github.com/udaysharma-dev', 'https://api.github.com/users/udaysharma-dev/followers', 'https://api.github.com/users/udaysharma-dev/following', 'https://api.github.com/users/udaysharma-dev/gists', 'https://api.github.com/users/udaysharma-dev/starred', 'https://api.github.com/users/udaysharma-dev/repos', 'https://api.github.com/users/udaysharma-dev/events', 'https://api.github.com/users/udaysharma-dev/received_events', 0); +INSERT INTO `developer` VALUES (64553331, 'rzpcibot', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2020-04-29T18:34:49Z', '2024-08-16T05:25:12Z', 'https://avatars.githubusercontent.com/u/64553331?v=4', 'https://api.github.com/users/rzpcibot', 'https://github.com/rzpcibot', 'https://api.github.com/users/rzpcibot/followers', 'https://api.github.com/users/rzpcibot/following', 'https://api.github.com/users/rzpcibot/gists', 'https://api.github.com/users/rzpcibot/starred', 'https://api.github.com/users/rzpcibot/repos', 'https://api.github.com/users/rzpcibot/events', 'https://api.github.com/users/rzpcibot/received_events', 0); +INSERT INTO `developer` VALUES (64752455, 'joel-jaimon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Joel Jaimon', 'Razorpay', 'joeljaimon.com', 'Bangalore', 'joel.jaimon99@gmail.com', 'true', 'Frontend Engineer', NULL, 0, 0, 47, 28, 0, 0, 0, '2020-05-03T20:28:55Z', '2024-08-23T09:29:24Z', 'https://avatars.githubusercontent.com/u/64752455?v=4', 'https://api.github.com/users/joel-jaimon', 'https://github.com/joel-jaimon', 'https://api.github.com/users/joel-jaimon/followers', 'https://api.github.com/users/joel-jaimon/following', 'https://api.github.com/users/joel-jaimon/gists', 'https://api.github.com/users/joel-jaimon/starred', 'https://api.github.com/users/joel-jaimon/repos', 'https://api.github.com/users/joel-jaimon/events', 'https://api.github.com/users/joel-jaimon/received_events', 0); +INSERT INTO `developer` VALUES (65395607, 'harshalkaigaonkar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harshal Kaigaonkar', '@zuddl', 'harshal.wtf', 'IDR', NULL, 'true', 'Krte kuch 🤔\r\n', 'Hkking31', 0, 0, 29, 87, 0, 0, 0, '2020-05-15T09:31:01Z', '2024-09-28T08:29:34Z', 'https://avatars.githubusercontent.com/u/65395607?v=4', 'https://api.github.com/users/harshalkaigaonkar', 'https://github.com/harshalkaigaonkar', 'https://api.github.com/users/harshalkaigaonkar/followers', 'https://api.github.com/users/harshalkaigaonkar/following', 'https://api.github.com/users/harshalkaigaonkar/gists', 'https://api.github.com/users/harshalkaigaonkar/starred', 'https://api.github.com/users/harshalkaigaonkar/repos', 'https://api.github.com/users/harshalkaigaonkar/events', 'https://api.github.com/users/harshalkaigaonkar/received_events', 0); +INSERT INTO `developer` VALUES (65696990, 'jonathanyang-grabtaxi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Jonathan Yang', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-05-21T03:38:21Z', '2020-05-21T03:44:55Z', 'https://avatars.githubusercontent.com/u/65696990?v=4', 'https://api.github.com/users/jonathanyang-grabtaxi', 'https://github.com/jonathanyang-grabtaxi', 'https://api.github.com/users/jonathanyang-grabtaxi/followers', 'https://api.github.com/users/jonathanyang-grabtaxi/following', 'https://api.github.com/users/jonathanyang-grabtaxi/gists', 'https://api.github.com/users/jonathanyang-grabtaxi/starred', 'https://api.github.com/users/jonathanyang-grabtaxi/repos', 'https://api.github.com/users/jonathanyang-grabtaxi/events', 'https://api.github.com/users/jonathanyang-grabtaxi/received_events', 0); +INSERT INTO `developer` VALUES (66332693, 'ssridhartibco', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-06-02T19:49:44Z', '2020-08-07T18:51:56Z', 'https://avatars.githubusercontent.com/u/66332693?v=4', 'https://api.github.com/users/ssridhartibco', 'https://github.com/ssridhartibco', 'https://api.github.com/users/ssridhartibco/followers', 'https://api.github.com/users/ssridhartibco/following', 'https://api.github.com/users/ssridhartibco/gists', 'https://api.github.com/users/ssridhartibco/starred', 'https://api.github.com/users/ssridhartibco/repos', 'https://api.github.com/users/ssridhartibco/events', 'https://api.github.com/users/ssridhartibco/received_events', 0); +INSERT INTO `developer` VALUES (67396122, 'sc-tibco', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-06-24T22:33:37Z', '2020-09-02T20:55:02Z', 'https://avatars.githubusercontent.com/u/67396122?v=4', 'https://api.github.com/users/sc-tibco', 'https://github.com/sc-tibco', 'https://api.github.com/users/sc-tibco/followers', 'https://api.github.com/users/sc-tibco/following', 'https://api.github.com/users/sc-tibco/gists', 'https://api.github.com/users/sc-tibco/starred', 'https://api.github.com/users/sc-tibco/repos', 'https://api.github.com/users/sc-tibco/events', 'https://api.github.com/users/sc-tibco/received_events', 0); +INSERT INTO `developer` VALUES (67764432, 'ruslandoga', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 17, 0, 0, 0, 0, '2020-07-02T22:20:43Z', '2024-10-30T04:50:17Z', 'https://avatars.githubusercontent.com/u/67764432?v=4', 'https://api.github.com/users/ruslandoga', 'https://github.com/ruslandoga', 'https://api.github.com/users/ruslandoga/followers', 'https://api.github.com/users/ruslandoga/following', 'https://api.github.com/users/ruslandoga/gists', 'https://api.github.com/users/ruslandoga/starred', 'https://api.github.com/users/ruslandoga/repos', 'https://api.github.com/users/ruslandoga/events', 'https://api.github.com/users/ruslandoga/received_events', 0); +INSERT INTO `developer` VALUES (68545229, 'TejasShekar', 'C', 0, 0, 0, 0, 0, 0, 0, 'Tejas Shekar', NULL, 'https://tejasshekar.netlify.app/', 'India', NULL, 'true', 'Frontend Web Dev exploring the multiverse of JavaScript 🚀', NULL, 0, 0, 17, 16, 0, 0, 0, '2020-07-20T11:44:33Z', '2024-05-22T11:38:02Z', 'https://avatars.githubusercontent.com/u/68545229?v=4', 'https://api.github.com/users/TejasShekar', 'https://github.com/TejasShekar', 'https://api.github.com/users/TejasShekar/followers', 'https://api.github.com/users/TejasShekar/following', 'https://api.github.com/users/TejasShekar/gists', 'https://api.github.com/users/TejasShekar/starred', 'https://api.github.com/users/TejasShekar/repos', 'https://api.github.com/users/TejasShekar/events', 'https://api.github.com/users/TejasShekar/received_events', 0); +INSERT INTO `developer` VALUES (68654745, 'ansidorov', 'C', 0, 0, 0, 0, 0, 0, 0, 'Andrey Sidorov', NULL, '', '未知', NULL, NULL, 'DevOps', NULL, 0, 0, 5, 1, 0, 0, 0, '2020-07-22T15:30:14Z', '2023-06-30T08:28:07Z', 'https://avatars.githubusercontent.com/u/68654745?v=4', 'https://api.github.com/users/ansidorov', 'https://github.com/ansidorov', 'https://api.github.com/users/ansidorov/followers', 'https://api.github.com/users/ansidorov/following', 'https://api.github.com/users/ansidorov/gists', 'https://api.github.com/users/ansidorov/starred', 'https://api.github.com/users/ansidorov/repos', 'https://api.github.com/users/ansidorov/events', 'https://api.github.com/users/ansidorov/received_events', 0); +INSERT INTO `developer` VALUES (69191344, 'sarthak-kumar-shailendra', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sarthak Kumar Shailendra', NULL, 'https://sarthak-kumar-shailendra.github.io/portfolio', 'India', NULL, NULL, 'Senior Software Engineer - 2 and\r\nOpen source Contributor\r\n', NULL, 0, 0, 1, 0, 0, 0, 0, '2020-08-04T08:20:34Z', '2024-10-13T17:20:32Z', 'https://avatars.githubusercontent.com/u/69191344?v=4', 'https://api.github.com/users/sarthak-kumar-shailendra', 'https://github.com/sarthak-kumar-shailendra', 'https://api.github.com/users/sarthak-kumar-shailendra/followers', 'https://api.github.com/users/sarthak-kumar-shailendra/following', 'https://api.github.com/users/sarthak-kumar-shailendra/gists', 'https://api.github.com/users/sarthak-kumar-shailendra/starred', 'https://api.github.com/users/sarthak-kumar-shailendra/repos', 'https://api.github.com/users/sarthak-kumar-shailendra/events', 'https://api.github.com/users/sarthak-kumar-shailendra/received_events', 0); +INSERT INTO `developer` VALUES (69264599, 'raxod502-plaid', 'C', 0, 0, 0, 0, 0, 0, 0, 'Radon Rosborough', '@plaid', 'https://github.com/raxod502', 'San Francisco, CA', NULL, NULL, 'This GitHub account is for my work at Plaid. Please see below link to the account I use for open-source work.', NULL, 0, 0, 0, 0, 0, 0, 0, '2020-08-05T18:50:52Z', '2024-09-04T22:29:05Z', 'https://avatars.githubusercontent.com/u/69264599?v=4', 'https://api.github.com/users/raxod502-plaid', 'https://github.com/raxod502-plaid', 'https://api.github.com/users/raxod502-plaid/followers', 'https://api.github.com/users/raxod502-plaid/following', 'https://api.github.com/users/raxod502-plaid/gists', 'https://api.github.com/users/raxod502-plaid/starred', 'https://api.github.com/users/raxod502-plaid/repos', 'https://api.github.com/users/raxod502-plaid/events', 'https://api.github.com/users/raxod502-plaid/received_events', 0); +INSERT INTO `developer` VALUES (69266720, 'almed4', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alex Meddin', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2020-08-05T19:14:46Z', '2021-12-16T20:24:08Z', 'https://avatars.githubusercontent.com/u/69266720?v=4', 'https://api.github.com/users/almed4', 'https://github.com/almed4', 'https://api.github.com/users/almed4/followers', 'https://api.github.com/users/almed4/following', 'https://api.github.com/users/almed4/gists', 'https://api.github.com/users/almed4/starred', 'https://api.github.com/users/almed4/repos', 'https://api.github.com/users/almed4/events', 'https://api.github.com/users/almed4/received_events', 0); +INSERT INTO `developer` VALUES (69401277, 'telnet-harsha', 'C', 0, 0, 0, 0, 0, 0, 0, 'SRIHARSHA ROUTHU', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-08-08T19:29:55Z', '2024-10-27T11:06:30Z', 'https://avatars.githubusercontent.com/u/69401277?v=4', 'https://api.github.com/users/telnet-harsha', 'https://github.com/telnet-harsha', 'https://api.github.com/users/telnet-harsha/followers', 'https://api.github.com/users/telnet-harsha/following', 'https://api.github.com/users/telnet-harsha/gists', 'https://api.github.com/users/telnet-harsha/starred', 'https://api.github.com/users/telnet-harsha/repos', 'https://api.github.com/users/telnet-harsha/events', 'https://api.github.com/users/telnet-harsha/received_events', 0); +INSERT INTO `developer` VALUES (69458381, 'pablosnt', 'C', 0, 0, 0, 8, 16, 3, 0, 'Pablo Santiago', NULL, '', '未知', NULL, NULL, 'Application Security Engineer', 'rekonosec', 0, 0, 47, 3, 0, 0, 0, '2020-08-10T09:40:34Z', '2024-10-04T18:14:33Z', 'https://avatars.githubusercontent.com/u/69458381?v=4', 'https://api.github.com/users/pablosnt', 'https://github.com/pablosnt', 'https://api.github.com/users/pablosnt/followers', 'https://api.github.com/users/pablosnt/following', 'https://api.github.com/users/pablosnt/gists', 'https://api.github.com/users/pablosnt/starred', 'https://api.github.com/users/pablosnt/repos', 'https://api.github.com/users/pablosnt/events', 'https://api.github.com/users/pablosnt/received_events', 0); +INSERT INTO `developer` VALUES (69820442, 'manav-nagla', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-08-17T20:20:28Z', '2020-09-23T01:36:07Z', 'https://avatars.githubusercontent.com/u/69820442?v=4', 'https://api.github.com/users/manav-nagla', 'https://github.com/manav-nagla', 'https://api.github.com/users/manav-nagla/followers', 'https://api.github.com/users/manav-nagla/following', 'https://api.github.com/users/manav-nagla/gists', 'https://api.github.com/users/manav-nagla/starred', 'https://api.github.com/users/manav-nagla/repos', 'https://api.github.com/users/manav-nagla/events', 'https://api.github.com/users/manav-nagla/received_events', 0); +INSERT INTO `developer` VALUES (70825624, 'lholh', 'C', 0, 0, 0, 0, 0, 0, 0, '- - // - -', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 11, 33, 0, 0, 0, '2020-09-06T00:28:39Z', '2024-10-25T03:23:52Z', 'https://avatars.githubusercontent.com/u/70825624?v=4', 'https://api.github.com/users/lholh', 'https://github.com/lholh', 'https://api.github.com/users/lholh/followers', 'https://api.github.com/users/lholh/following', 'https://api.github.com/users/lholh/gists', 'https://api.github.com/users/lholh/starred', 'https://api.github.com/users/lholh/repos', 'https://api.github.com/users/lholh/events', 'https://api.github.com/users/lholh/received_events', 0); +INSERT INTO `developer` VALUES (71154466, 'SRE-babel', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-09-11T21:05:59Z', '2020-09-11T21:54:13Z', 'https://avatars.githubusercontent.com/u/71154466?v=4', 'https://api.github.com/users/SRE-babel', 'https://github.com/SRE-babel', 'https://api.github.com/users/SRE-babel/followers', 'https://api.github.com/users/SRE-babel/following', 'https://api.github.com/users/SRE-babel/gists', 'https://api.github.com/users/SRE-babel/starred', 'https://api.github.com/users/SRE-babel/repos', 'https://api.github.com/users/SRE-babel/events', 'https://api.github.com/users/SRE-babel/received_events', 0); +INSERT INTO `developer` VALUES (71253024, 'n0t4u', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 7, 8, 0, 0, 0, '2020-09-14T07:30:22Z', '2024-10-23T07:53:08Z', 'https://avatars.githubusercontent.com/u/71253024?v=4', 'https://api.github.com/users/n0t4u', 'https://github.com/n0t4u', 'https://api.github.com/users/n0t4u/followers', 'https://api.github.com/users/n0t4u/following', 'https://api.github.com/users/n0t4u/gists', 'https://api.github.com/users/n0t4u/starred', 'https://api.github.com/users/n0t4u/repos', 'https://api.github.com/users/n0t4u/events', 'https://api.github.com/users/n0t4u/received_events', 0); +INSERT INTO `developer` VALUES (72085396, 'razor-shiva', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shivaram Krishna', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-09-29T13:34:33Z', '2023-12-05T07:28:53Z', 'https://avatars.githubusercontent.com/u/72085396?v=4', 'https://api.github.com/users/razor-shiva', 'https://github.com/razor-shiva', 'https://api.github.com/users/razor-shiva/followers', 'https://api.github.com/users/razor-shiva/following', 'https://api.github.com/users/razor-shiva/gists', 'https://api.github.com/users/razor-shiva/starred', 'https://api.github.com/users/razor-shiva/repos', 'https://api.github.com/users/razor-shiva/events', 'https://api.github.com/users/razor-shiva/received_events', 0); +INSERT INTO `developer` VALUES (73423761, 'recursive-rat4', 'C', 0, 0, 0, 0, 0, 0, 0, 'Pavel Vasin', NULL, 'https://blacknet.ninja/team/rat4.html', '未知', NULL, NULL, NULL, NULL, 0, 0, 5, 2, 0, 0, 0, '2020-10-25T09:58:03Z', '2024-07-06T11:37:42Z', 'https://avatars.githubusercontent.com/u/73423761?v=4', 'https://api.github.com/users/recursive-rat4', 'https://github.com/recursive-rat4', 'https://api.github.com/users/recursive-rat4/followers', 'https://api.github.com/users/recursive-rat4/following', 'https://api.github.com/users/recursive-rat4/gists', 'https://api.github.com/users/recursive-rat4/starred', 'https://api.github.com/users/recursive-rat4/repos', 'https://api.github.com/users/recursive-rat4/events', 'https://api.github.com/users/recursive-rat4/received_events', 0); +INSERT INTO `developer` VALUES (75153839, 'PranjalMaithani', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, '@getBild', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 6, 34, 0, 0, 0, '2020-11-28T04:45:22Z', '2024-10-15T07:56:20Z', 'https://avatars.githubusercontent.com/u/75153839?v=4', 'https://api.github.com/users/PranjalMaithani', 'https://github.com/PranjalMaithani', 'https://api.github.com/users/PranjalMaithani/followers', 'https://api.github.com/users/PranjalMaithani/following', 'https://api.github.com/users/PranjalMaithani/gists', 'https://api.github.com/users/PranjalMaithani/starred', 'https://api.github.com/users/PranjalMaithani/repos', 'https://api.github.com/users/PranjalMaithani/events', 'https://api.github.com/users/PranjalMaithani/received_events', 0); +INSERT INTO `developer` VALUES (76145248, 'suchith-r', 'C', 0, 0, 0, 0, 0, 0, 0, 'Suchith', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2020-12-17T05:11:11Z', '2024-03-19T09:14:57Z', 'https://avatars.githubusercontent.com/u/76145248?v=4', 'https://api.github.com/users/suchith-r', 'https://github.com/suchith-r', 'https://api.github.com/users/suchith-r/followers', 'https://api.github.com/users/suchith-r/following', 'https://api.github.com/users/suchith-r/gists', 'https://api.github.com/users/suchith-r/starred', 'https://api.github.com/users/suchith-r/repos', 'https://api.github.com/users/suchith-r/events', 'https://api.github.com/users/suchith-r/received_events', 0); +INSERT INTO `developer` VALUES (76979297, 'blakeaowens', 'C', 0, 0, 0, 0, 0, 0, 0, 'Blake Owens', 'DefectDojo', 'https://www.linkedin.com/in/blakeaowens/', 'Denton, Texas', NULL, NULL, NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2021-01-05T00:52:16Z', '2024-08-22T02:21:14Z', 'https://avatars.githubusercontent.com/u/76979297?v=4', 'https://api.github.com/users/blakeaowens', 'https://github.com/blakeaowens', 'https://api.github.com/users/blakeaowens/followers', 'https://api.github.com/users/blakeaowens/following', 'https://api.github.com/users/blakeaowens/gists', 'https://api.github.com/users/blakeaowens/starred', 'https://api.github.com/users/blakeaowens/repos', 'https://api.github.com/users/blakeaowens/events', 'https://api.github.com/users/blakeaowens/received_events', 0); +INSERT INTO `developer` VALUES (77723562, 'benhc123', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 2, 0, 0, 0, 0, '2021-01-20T09:15:14Z', '2021-01-20T09:15:14Z', 'https://avatars.githubusercontent.com/u/77723562?v=4', 'https://api.github.com/users/benhc123', 'https://github.com/benhc123', 'https://api.github.com/users/benhc123/followers', 'https://api.github.com/users/benhc123/following', 'https://api.github.com/users/benhc123/gists', 'https://api.github.com/users/benhc123/starred', 'https://api.github.com/users/benhc123/repos', 'https://api.github.com/users/benhc123/events', 'https://api.github.com/users/benhc123/received_events', 0); +INSERT INTO `developer` VALUES (78787105, 'sujoys12', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sujoy Saha', 'Razorpay', '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2021-02-09T07:44:43Z', '2024-09-17T06:49:18Z', 'https://avatars.githubusercontent.com/u/78787105?v=4', 'https://api.github.com/users/sujoys12', 'https://github.com/sujoys12', 'https://api.github.com/users/sujoys12/followers', 'https://api.github.com/users/sujoys12/following', 'https://api.github.com/users/sujoys12/gists', 'https://api.github.com/users/sujoys12/starred', 'https://api.github.com/users/sujoys12/repos', 'https://api.github.com/users/sujoys12/events', 'https://api.github.com/users/sujoys12/received_events', 0); +INSERT INTO `developer` VALUES (80100588, 'A60AB5450353F40E', 'C', 0, 0, 0, 0, 0, 0, 0, 'bitcoincashautist', NULL, 'https://read.cash/@bitcoincashautist', '未知', NULL, NULL, 'I like cash, and when I say cash I mean Bitcoin Cash!\r\n\r\nhttps://reddit.com/u/bitcoincashautist\r\nhttps://read.cash/@bitcoincashautist', NULL, 0, 0, 12, 2, 0, 0, 0, '2021-03-05T10:29:04Z', '2024-10-03T08:05:38Z', 'https://avatars.githubusercontent.com/u/80100588?v=4', 'https://api.github.com/users/A60AB5450353F40E', 'https://github.com/A60AB5450353F40E', 'https://api.github.com/users/A60AB5450353F40E/followers', 'https://api.github.com/users/A60AB5450353F40E/following', 'https://api.github.com/users/A60AB5450353F40E/gists', 'https://api.github.com/users/A60AB5450353F40E/starred', 'https://api.github.com/users/A60AB5450353F40E/repos', 'https://api.github.com/users/A60AB5450353F40E/events', 'https://api.github.com/users/A60AB5450353F40E/received_events', 0); +INSERT INTO `developer` VALUES (80741657, 'AditiTiwariRazorpay', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aditi Tiwari', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2021-03-16T06:25:35Z', '2022-06-29T09:45:11Z', 'https://avatars.githubusercontent.com/u/80741657?v=4', 'https://api.github.com/users/AditiTiwariRazorpay', 'https://github.com/AditiTiwariRazorpay', 'https://api.github.com/users/AditiTiwariRazorpay/followers', 'https://api.github.com/users/AditiTiwariRazorpay/following', 'https://api.github.com/users/AditiTiwariRazorpay/gists', 'https://api.github.com/users/AditiTiwariRazorpay/starred', 'https://api.github.com/users/AditiTiwariRazorpay/repos', 'https://api.github.com/users/AditiTiwariRazorpay/events', 'https://api.github.com/users/AditiTiwariRazorpay/received_events', 0); +INSERT INTO `developer` VALUES (80888956, 'devsecopsale', 'C', 0, 0, 0, 0, 0, 0, 0, 'Alejandro Mendiondo', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2021-03-18T09:54:42Z', '2024-08-08T12:47:20Z', 'https://avatars.githubusercontent.com/u/80888956?v=4', 'https://api.github.com/users/devsecopsale', 'https://github.com/devsecopsale', 'https://api.github.com/users/devsecopsale/followers', 'https://api.github.com/users/devsecopsale/following', 'https://api.github.com/users/devsecopsale/gists', 'https://api.github.com/users/devsecopsale/starred', 'https://api.github.com/users/devsecopsale/repos', 'https://api.github.com/users/devsecopsale/events', 'https://api.github.com/users/devsecopsale/received_events', 0); +INSERT INTO `developer` VALUES (81617047, 'kokhanevych-macpaw', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2021-03-30T08:33:46Z', '2024-05-10T09:47:46Z', 'https://avatars.githubusercontent.com/u/81617047?v=4', 'https://api.github.com/users/kokhanevych-macpaw', 'https://github.com/kokhanevych-macpaw', 'https://api.github.com/users/kokhanevych-macpaw/followers', 'https://api.github.com/users/kokhanevych-macpaw/following', 'https://api.github.com/users/kokhanevych-macpaw/gists', 'https://api.github.com/users/kokhanevych-macpaw/starred', 'https://api.github.com/users/kokhanevych-macpaw/repos', 'https://api.github.com/users/kokhanevych-macpaw/events', 'https://api.github.com/users/kokhanevych-macpaw/received_events', 0); +INSERT INTO `developer` VALUES (81867225, 'k-rajat19', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rajat ', NULL, '', '未知', 'rd.rajat23@gmail.com', NULL, NULL, 'rd_rajatv', 0, 0, 13, 21, 0, 0, 0, '2021-04-03T14:44:26Z', '2024-10-18T08:58:14Z', 'https://avatars.githubusercontent.com/u/81867225?v=4', 'https://api.github.com/users/k-rajat19', 'https://github.com/k-rajat19', 'https://api.github.com/users/k-rajat19/followers', 'https://api.github.com/users/k-rajat19/following', 'https://api.github.com/users/k-rajat19/gists', 'https://api.github.com/users/k-rajat19/starred', 'https://api.github.com/users/k-rajat19/repos', 'https://api.github.com/users/k-rajat19/events', 'https://api.github.com/users/k-rajat19/received_events', 0); +INSERT INTO `developer` VALUES (83012558, 'Mayank-CES', 'C', 0, 0, 0, 0, 0, 0, 0, 'Mayank', 'IIT Delhi', '', 'Delhi', NULL, NULL, NULL, NULL, 0, 0, 4, 2, 0, 0, 0, '2021-04-22T11:33:53Z', '2024-10-27T20:51:24Z', 'https://avatars.githubusercontent.com/u/83012558?v=4', 'https://api.github.com/users/Mayank-CES', 'https://github.com/Mayank-CES', 'https://api.github.com/users/Mayank-CES/followers', 'https://api.github.com/users/Mayank-CES/following', 'https://api.github.com/users/Mayank-CES/gists', 'https://api.github.com/users/Mayank-CES/starred', 'https://api.github.com/users/Mayank-CES/repos', 'https://api.github.com/users/Mayank-CES/events', 'https://api.github.com/users/Mayank-CES/received_events', 0); +INSERT INTO `developer` VALUES (83279947, 'rk9595', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rakesh Kariya', NULL, 'https://rakeshkariya.vercel.app/', 'India', NULL, NULL, 'Software Developer, ex. Product Manager.\r\n\r\n\r\n \r\n', NULL, 0, 0, 5, 21, 0, 0, 0, '2021-04-27T10:03:46Z', '2024-11-02T05:40:00Z', 'https://avatars.githubusercontent.com/u/83279947?v=4', 'https://api.github.com/users/rk9595', 'https://github.com/rk9595', 'https://api.github.com/users/rk9595/followers', 'https://api.github.com/users/rk9595/following', 'https://api.github.com/users/rk9595/gists', 'https://api.github.com/users/rk9595/starred', 'https://api.github.com/users/rk9595/repos', 'https://api.github.com/users/rk9595/events', 'https://api.github.com/users/rk9595/received_events', 0); +INSERT INTO `developer` VALUES (84492897, 'root-lib', 'C', 0, 0, 0, 0, 0, 0, 0, 'Libin Babu', 'RazorPay', '', 'Bangalore', NULL, NULL, '\r\nSenior Security Engineer\r\n', NULL, 0, 0, 0, 0, 0, 0, 0, '2021-05-20T05:36:56Z', '2022-02-16T04:35:45Z', 'https://avatars.githubusercontent.com/u/84492897?v=4', 'https://api.github.com/users/root-lib', 'https://github.com/root-lib', 'https://api.github.com/users/root-lib/followers', 'https://api.github.com/users/root-lib/following', 'https://api.github.com/users/root-lib/gists', 'https://api.github.com/users/root-lib/starred', 'https://api.github.com/users/root-lib/repos', 'https://api.github.com/users/root-lib/events', 'https://api.github.com/users/root-lib/received_events', 0); +INSERT INTO `developer` VALUES (84763889, 'sofiya02', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sofiya', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2021-05-25T06:02:52Z', '2023-10-09T11:33:15Z', 'https://avatars.githubusercontent.com/u/84763889?v=4', 'https://api.github.com/users/sofiya02', 'https://github.com/sofiya02', 'https://api.github.com/users/sofiya02/followers', 'https://api.github.com/users/sofiya02/following', 'https://api.github.com/users/sofiya02/gists', 'https://api.github.com/users/sofiya02/starred', 'https://api.github.com/users/sofiya02/repos', 'https://api.github.com/users/sofiya02/events', 'https://api.github.com/users/sofiya02/received_events', 0); +INSERT INTO `developer` VALUES (85965351, 'pritipsingh', 'C', 0, 0, 0, 0, 0, 0, 0, 'Priti', NULL, 'https://linktr.ee/pritisinghhhh', 'India', 'mail2pritipriya@gmail.com', NULL, 'Software Engineer', 'pritisinghhhh', 0, 0, 221, 19, 0, 0, 0, '2021-06-15T20:13:05Z', '2024-10-22T11:19:12Z', 'https://avatars.githubusercontent.com/u/85965351?v=4', 'https://api.github.com/users/pritipsingh', 'https://github.com/pritipsingh', 'https://api.github.com/users/pritipsingh/followers', 'https://api.github.com/users/pritipsingh/following', 'https://api.github.com/users/pritipsingh/gists', 'https://api.github.com/users/pritipsingh/starred', 'https://api.github.com/users/pritipsingh/repos', 'https://api.github.com/users/pritipsingh/events', 'https://api.github.com/users/pritipsingh/received_events', 0); +INSERT INTO `developer` VALUES (86047367, 'Sumitmaithani', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sumit Maithani', 'Hemvati Nandan Bahuguna Garhwal University', 'https://sumitmaithani.onrender.com/', 'India', NULL, NULL, 'prev Software Engineer Intern @interviewstreet | @Daffodil-Health | C4GT\'23 @KarmayogiBharat ', 'shakesofpeer', 0, 0, 5, 7, 0, 0, 0, '2021-06-17T08:33:23Z', '2024-10-29T07:01:59Z', 'https://avatars.githubusercontent.com/u/86047367?v=4', 'https://api.github.com/users/Sumitmaithani', 'https://github.com/Sumitmaithani', 'https://api.github.com/users/Sumitmaithani/followers', 'https://api.github.com/users/Sumitmaithani/following', 'https://api.github.com/users/Sumitmaithani/gists', 'https://api.github.com/users/Sumitmaithani/starred', 'https://api.github.com/users/Sumitmaithani/repos', 'https://api.github.com/users/Sumitmaithani/events', 'https://api.github.com/users/Sumitmaithani/received_events', 0); +INSERT INTO `developer` VALUES (86551248, 'harshcut', 'C', 0, 0, 0, 0, 0, 0, 0, 'Harsh Karande', NULL, 'harshcut.vercel.app', '未知', NULL, NULL, NULL, NULL, 0, 0, 28, 3, 0, 0, 0, '2021-06-27T08:48:53Z', '2024-10-27T12:11:52Z', 'https://avatars.githubusercontent.com/u/86551248?v=4', 'https://api.github.com/users/harshcut', 'https://github.com/harshcut', 'https://api.github.com/users/harshcut/followers', 'https://api.github.com/users/harshcut/following', 'https://api.github.com/users/harshcut/gists', 'https://api.github.com/users/harshcut/starred', 'https://api.github.com/users/harshcut/repos', 'https://api.github.com/users/harshcut/events', 'https://api.github.com/users/harshcut/received_events', 0); +INSERT INTO `developer` VALUES (86592481, 'rahul-rzp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rahul Makhija', NULL, '', '未知', NULL, NULL, 'Lead Frontend @ Razorpay\r\nPersonal Github: rahuls360', 'rahuls360', 0, 0, 0, 0, 0, 0, 0, '2021-06-28T07:23:18Z', '2024-10-04T05:09:46Z', 'https://avatars.githubusercontent.com/u/86592481?v=4', 'https://api.github.com/users/rahul-rzp', 'https://github.com/rahul-rzp', 'https://api.github.com/users/rahul-rzp/followers', 'https://api.github.com/users/rahul-rzp/following', 'https://api.github.com/users/rahul-rzp/gists', 'https://api.github.com/users/rahul-rzp/starred', 'https://api.github.com/users/rahul-rzp/repos', 'https://api.github.com/users/rahul-rzp/events', 'https://api.github.com/users/rahul-rzp/received_events', 0); +INSERT INTO `developer` VALUES (87026264, 'XiChen-Tibco', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2021-07-06T14:38:52Z', '2021-08-11T21:58:08Z', 'https://avatars.githubusercontent.com/u/87026264?v=4', 'https://api.github.com/users/XiChen-Tibco', 'https://github.com/XiChen-Tibco', 'https://api.github.com/users/XiChen-Tibco/followers', 'https://api.github.com/users/XiChen-Tibco/following', 'https://api.github.com/users/XiChen-Tibco/gists', 'https://api.github.com/users/XiChen-Tibco/starred', 'https://api.github.com/users/XiChen-Tibco/repos', 'https://api.github.com/users/XiChen-Tibco/events', 'https://api.github.com/users/XiChen-Tibco/received_events', 0); +INSERT INTO `developer` VALUES (88023922, 'kabilansakthivelu', 'C', 0, 0, 0, 0, 0, 0, 0, 'Kabilan Sakthivelu', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 3, 3, 0, 0, 0, '2021-07-27T07:03:42Z', '2024-10-18T16:55:19Z', 'https://avatars.githubusercontent.com/u/88023922?v=4', 'https://api.github.com/users/kabilansakthivelu', 'https://github.com/kabilansakthivelu', 'https://api.github.com/users/kabilansakthivelu/followers', 'https://api.github.com/users/kabilansakthivelu/following', 'https://api.github.com/users/kabilansakthivelu/gists', 'https://api.github.com/users/kabilansakthivelu/starred', 'https://api.github.com/users/kabilansakthivelu/repos', 'https://api.github.com/users/kabilansakthivelu/events', 'https://api.github.com/users/kabilansakthivelu/received_events', 0); +INSERT INTO `developer` VALUES (88091269, 'santoshrohannarava', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2021-07-28T12:00:56Z', '2024-09-23T12:33:10Z', 'https://avatars.githubusercontent.com/u/88091269?v=4', 'https://api.github.com/users/santoshrohannarava', 'https://github.com/santoshrohannarava', 'https://api.github.com/users/santoshrohannarava/followers', 'https://api.github.com/users/santoshrohannarava/following', 'https://api.github.com/users/santoshrohannarava/gists', 'https://api.github.com/users/santoshrohannarava/starred', 'https://api.github.com/users/santoshrohannarava/repos', 'https://api.github.com/users/santoshrohannarava/events', 'https://api.github.com/users/santoshrohannarava/received_events', 0); +INSERT INTO `developer` VALUES (88297302, 'ed-wp', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2021-08-02T01:28:13Z', '2023-08-07T04:24:27Z', 'https://avatars.githubusercontent.com/u/88297302?v=4', 'https://api.github.com/users/ed-wp', 'https://github.com/ed-wp', 'https://api.github.com/users/ed-wp/followers', 'https://api.github.com/users/ed-wp/following', 'https://api.github.com/users/ed-wp/gists', 'https://api.github.com/users/ed-wp/starred', 'https://api.github.com/users/ed-wp/repos', 'https://api.github.com/users/ed-wp/events', 'https://api.github.com/users/ed-wp/received_events', 0); +INSERT INTO `developer` VALUES (88472926, 'shamshad17', 'C', 0, 0, 0, 0, 0, 0, 0, 'Shamshad Khan', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2021-08-05T04:18:32Z', '2022-01-03T11:30:28Z', 'https://avatars.githubusercontent.com/u/88472926?v=4', 'https://api.github.com/users/shamshad17', 'https://github.com/shamshad17', 'https://api.github.com/users/shamshad17/followers', 'https://api.github.com/users/shamshad17/following', 'https://api.github.com/users/shamshad17/gists', 'https://api.github.com/users/shamshad17/starred', 'https://api.github.com/users/shamshad17/repos', 'https://api.github.com/users/shamshad17/events', 'https://api.github.com/users/shamshad17/received_events', 0); +INSERT INTO `developer` VALUES (89454448, 'ankitdas13', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ankit Das', 'Razorpay', '', 'Bhopal', NULL, NULL, NULL, NULL, 0, 0, 14, 1, 0, 0, 0, '2021-08-24T10:06:16Z', '2024-07-01T13:55:47Z', 'https://avatars.githubusercontent.com/u/89454448?v=4', 'https://api.github.com/users/ankitdas13', 'https://github.com/ankitdas13', 'https://api.github.com/users/ankitdas13/followers', 'https://api.github.com/users/ankitdas13/following', 'https://api.github.com/users/ankitdas13/gists', 'https://api.github.com/users/ankitdas13/starred', 'https://api.github.com/users/ankitdas13/repos', 'https://api.github.com/users/ankitdas13/events', 'https://api.github.com/users/ankitdas13/received_events', 0); +INSERT INTO `developer` VALUES (89563374, 'krzysztofwos', 'C', 0, 0, 0, 0, 0, 0, 0, 'Krzysztof Woś', NULL, '', '未知', NULL, NULL, NULL, 'krzysztofwos', 0, 0, 0, 0, 0, 0, 0, '2021-08-26T03:27:41Z', '2024-10-05T05:38:10Z', 'https://avatars.githubusercontent.com/u/89563374?v=4', 'https://api.github.com/users/krzysztofwos', 'https://github.com/krzysztofwos', 'https://api.github.com/users/krzysztofwos/followers', 'https://api.github.com/users/krzysztofwos/following', 'https://api.github.com/users/krzysztofwos/gists', 'https://api.github.com/users/krzysztofwos/starred', 'https://api.github.com/users/krzysztofwos/repos', 'https://api.github.com/users/krzysztofwos/events', 'https://api.github.com/users/krzysztofwos/received_events', 0); +INSERT INTO `developer` VALUES (90435670, 'devEricA', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Anderson', NULL, '', '未知', NULL, NULL, 'New account after making a critical mistake with my 2FA. Old account can be viewed at https://github.com/devEricA-zz', NULL, 0, 0, 0, 0, 0, 0, 0, '2021-09-10T03:32:35Z', '2024-09-28T00:29:11Z', 'https://avatars.githubusercontent.com/u/90435670?v=4', 'https://api.github.com/users/devEricA', 'https://github.com/devEricA', 'https://api.github.com/users/devEricA/followers', 'https://api.github.com/users/devEricA/following', 'https://api.github.com/users/devEricA/gists', 'https://api.github.com/users/devEricA/starred', 'https://api.github.com/users/devEricA/repos', 'https://api.github.com/users/devEricA/events', 'https://api.github.com/users/devEricA/received_events', 0); +INSERT INTO `developer` VALUES (90812171, 'manikandanbaskara', 'C', 0, 0, 0, 0, 0, 0, 0, 'Manikandan Baskaran', '@razorpay ', '', 'Bengaluru', NULL, NULL, 'Frontend @razorpay | React Native | React JS | GraphQL | Android | IOS', NULL, 0, 0, 1, 1, 0, 0, 0, '2021-09-16T02:15:09Z', '2023-03-30T07:25:56Z', 'https://avatars.githubusercontent.com/u/90812171?v=4', 'https://api.github.com/users/manikandanbaskara', 'https://github.com/manikandanbaskara', 'https://api.github.com/users/manikandanbaskara/followers', 'https://api.github.com/users/manikandanbaskara/following', 'https://api.github.com/users/manikandanbaskara/gists', 'https://api.github.com/users/manikandanbaskara/starred', 'https://api.github.com/users/manikandanbaskara/repos', 'https://api.github.com/users/manikandanbaskara/events', 'https://api.github.com/users/manikandanbaskara/received_events', 0); +INSERT INTO `developer` VALUES (91274634, 'The00Dustin', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2021-09-23T15:15:33Z', '2022-07-04T12:20:43Z', 'https://avatars.githubusercontent.com/u/91274634?v=4', 'https://api.github.com/users/The00Dustin', 'https://github.com/The00Dustin', 'https://api.github.com/users/The00Dustin/followers', 'https://api.github.com/users/The00Dustin/following', 'https://api.github.com/users/The00Dustin/gists', 'https://api.github.com/users/The00Dustin/starred', 'https://api.github.com/users/The00Dustin/repos', 'https://api.github.com/users/The00Dustin/events', 'https://api.github.com/users/The00Dustin/received_events', 0); +INSERT INTO `developer` VALUES (91587447, 'abdulwahidsharief', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2021-09-29T05:36:18Z', '2024-05-29T08:37:50Z', 'https://avatars.githubusercontent.com/u/91587447?v=4', 'https://api.github.com/users/abdulwahidsharief', 'https://github.com/abdulwahidsharief', 'https://api.github.com/users/abdulwahidsharief/followers', 'https://api.github.com/users/abdulwahidsharief/following', 'https://api.github.com/users/abdulwahidsharief/gists', 'https://api.github.com/users/abdulwahidsharief/starred', 'https://api.github.com/users/abdulwahidsharief/repos', 'https://api.github.com/users/abdulwahidsharief/events', 'https://api.github.com/users/abdulwahidsharief/received_events', 0); +INSERT INTO `developer` VALUES (96642468, 'eric-likes-cake', 'C', 0, 0, 0, 0, 0, 0, 0, 'Eric Shaw', NULL, '', '未知', NULL, 'true', NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2021-12-25T04:35:40Z', '2023-12-26T20:51:05Z', 'https://avatars.githubusercontent.com/u/96642468?v=4', 'https://api.github.com/users/eric-likes-cake', 'https://github.com/eric-likes-cake', 'https://api.github.com/users/eric-likes-cake/followers', 'https://api.github.com/users/eric-likes-cake/following', 'https://api.github.com/users/eric-likes-cake/gists', 'https://api.github.com/users/eric-likes-cake/starred', 'https://api.github.com/users/eric-likes-cake/repos', 'https://api.github.com/users/eric-likes-cake/events', 'https://api.github.com/users/eric-likes-cake/received_events', 0); +INSERT INTO `developer` VALUES (96723258, 'technopahadi', 'C', 0, 0, 0, 0, 0, 0, 0, 'Rishabh', NULL, '', 'India', NULL, NULL, 'I write softwares', NULL, 0, 0, 0, 1, 0, 0, 0, '2021-12-27T09:59:46Z', '2024-10-16T04:10:06Z', 'https://avatars.githubusercontent.com/u/96723258?v=4', 'https://api.github.com/users/technopahadi', 'https://github.com/technopahadi', 'https://api.github.com/users/technopahadi/followers', 'https://api.github.com/users/technopahadi/following', 'https://api.github.com/users/technopahadi/gists', 'https://api.github.com/users/technopahadi/starred', 'https://api.github.com/users/technopahadi/repos', 'https://api.github.com/users/technopahadi/events', 'https://api.github.com/users/technopahadi/received_events', 0); +INSERT INTO `developer` VALUES (97019020, 'vimalkumar0233', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-01-03T08:11:50Z', '2024-01-23T11:15:35Z', 'https://avatars.githubusercontent.com/u/97019020?v=4', 'https://api.github.com/users/vimalkumar0233', 'https://github.com/vimalkumar0233', 'https://api.github.com/users/vimalkumar0233/followers', 'https://api.github.com/users/vimalkumar0233/following', 'https://api.github.com/users/vimalkumar0233/gists', 'https://api.github.com/users/vimalkumar0233/starred', 'https://api.github.com/users/vimalkumar0233/repos', 'https://api.github.com/users/vimalkumar0233/events', 'https://api.github.com/users/vimalkumar0233/received_events', 0); +INSERT INTO `developer` VALUES (97032701, 'khush-saini', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-01-03T12:48:37Z', '2022-06-28T15:31:44Z', 'https://avatars.githubusercontent.com/u/97032701?v=4', 'https://api.github.com/users/khush-saini', 'https://github.com/khush-saini', 'https://api.github.com/users/khush-saini/followers', 'https://api.github.com/users/khush-saini/following', 'https://api.github.com/users/khush-saini/gists', 'https://api.github.com/users/khush-saini/starred', 'https://api.github.com/users/khush-saini/repos', 'https://api.github.com/users/khush-saini/events', 'https://api.github.com/users/khush-saini/received_events', 0); +INSERT INTO `developer` VALUES (97478599, 'sandeep-haemoon', 'C', 0, 0, 0, 0, 0, 0, 0, 'Sandeep Haemoon', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 4, 0, 0, 0, '2022-01-10T20:48:02Z', '2022-01-10T20:50:34Z', 'https://avatars.githubusercontent.com/u/97478599?v=4', 'https://api.github.com/users/sandeep-haemoon', 'https://github.com/sandeep-haemoon', 'https://api.github.com/users/sandeep-haemoon/followers', 'https://api.github.com/users/sandeep-haemoon/following', 'https://api.github.com/users/sandeep-haemoon/gists', 'https://api.github.com/users/sandeep-haemoon/starred', 'https://api.github.com/users/sandeep-haemoon/repos', 'https://api.github.com/users/sandeep-haemoon/events', 'https://api.github.com/users/sandeep-haemoon/received_events', 0); +INSERT INTO `developer` VALUES (98045500, 'manikandan-rajappan', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-01-19T16:57:53Z', '2023-09-15T07:19:55Z', 'https://avatars.githubusercontent.com/u/98045500?v=4', 'https://api.github.com/users/manikandan-rajappan', 'https://github.com/manikandan-rajappan', 'https://api.github.com/users/manikandan-rajappan/followers', 'https://api.github.com/users/manikandan-rajappan/following', 'https://api.github.com/users/manikandan-rajappan/gists', 'https://api.github.com/users/manikandan-rajappan/starred', 'https://api.github.com/users/manikandan-rajappan/repos', 'https://api.github.com/users/manikandan-rajappan/events', 'https://api.github.com/users/manikandan-rajappan/received_events', 0); +INSERT INTO `developer` VALUES (98820380, 'fhoeborn', 'C', 0, 0, 0, 0, 0, 0, 0, 'Felix Hoeborn', 'BioNTech SE', '', 'Germany', NULL, NULL, NULL, 'FHoeborn', 0, 0, 1, 0, 0, 0, 0, '2022-02-01T12:50:27Z', '2024-08-14T20:57:01Z', 'https://avatars.githubusercontent.com/u/98820380?v=4', 'https://api.github.com/users/fhoeborn', 'https://github.com/fhoeborn', 'https://api.github.com/users/fhoeborn/followers', 'https://api.github.com/users/fhoeborn/following', 'https://api.github.com/users/fhoeborn/gists', 'https://api.github.com/users/fhoeborn/starred', 'https://api.github.com/users/fhoeborn/repos', 'https://api.github.com/users/fhoeborn/events', 'https://api.github.com/users/fhoeborn/received_events', 0); +INSERT INTO `developer` VALUES (100116271, 'moveecar', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-02-21T06:51:23Z', '2024-03-19T13:27:51Z', 'https://avatars.githubusercontent.com/u/100116271?v=4', 'https://api.github.com/users/moveecar', 'https://github.com/moveecar', 'https://api.github.com/users/moveecar/followers', 'https://api.github.com/users/moveecar/following', 'https://api.github.com/users/moveecar/gists', 'https://api.github.com/users/moveecar/starred', 'https://api.github.com/users/moveecar/repos', 'https://api.github.com/users/moveecar/events', 'https://api.github.com/users/moveecar/received_events', 0); +INSERT INTO `developer` VALUES (100941492, 'Harnoor-se7en', 'C', 0, 0, 0, 0, 0, 0, 0, 'Noob', NULL, 'https://github.com/Harnoor7', '未知', NULL, NULL, 'Moved to: https://github.com/Harnoor7', NULL, 0, 0, 0, 1, 0, 0, 0, '2022-03-04T12:23:02Z', '2024-10-29T12:10:16Z', 'https://avatars.githubusercontent.com/u/100941492?v=4', 'https://api.github.com/users/Harnoor-se7en', 'https://github.com/Harnoor-se7en', 'https://api.github.com/users/Harnoor-se7en/followers', 'https://api.github.com/users/Harnoor-se7en/following', 'https://api.github.com/users/Harnoor-se7en/gists', 'https://api.github.com/users/Harnoor-se7en/starred', 'https://api.github.com/users/Harnoor-se7en/repos', 'https://api.github.com/users/Harnoor-se7en/events', 'https://api.github.com/users/Harnoor-se7en/received_events', 0); +INSERT INTO `developer` VALUES (102998915, 'c3-andrewkim', 'C', 0, 0, 0, 0, 0, 0, 0, 'andrewkim', '@c3-e @c3-design @design-tokens-committee', '', 'Redwood City', NULL, NULL, 'Sr. Front End Engineer, Design Systems\r\nDesign Ops team\r\n', NULL, 0, 0, 0, 16, 0, 0, 0, '2022-04-04T20:51:14Z', '2024-10-20T02:30:11Z', 'https://avatars.githubusercontent.com/u/102998915?v=4', 'https://api.github.com/users/c3-andrewkim', 'https://github.com/c3-andrewkim', 'https://api.github.com/users/c3-andrewkim/followers', 'https://api.github.com/users/c3-andrewkim/following', 'https://api.github.com/users/c3-andrewkim/gists', 'https://api.github.com/users/c3-andrewkim/starred', 'https://api.github.com/users/c3-andrewkim/repos', 'https://api.github.com/users/c3-andrewkim/events', 'https://api.github.com/users/c3-andrewkim/received_events', 0); +INSERT INTO `developer` VALUES (103491935, 'AritraLeo', 'C', 0, 0, 0, 0, 0, 0, 0, 'Aritra Banerjee', 'aritra056@gmail.com', '', 'Metaverse', NULL, NULL, 'Full-stack developer skilled in TS, and PHP, mastering Java (Spring),exploring DevOps, and blockchain. Founder @Hand2MartIndia,Ex-Backend @Necleo-hub.', NULL, 0, 0, 12, 21, 0, 0, 0, '2022-04-12T08:20:13Z', '2024-10-30T16:40:37Z', 'https://avatars.githubusercontent.com/u/103491935?v=4', 'https://api.github.com/users/AritraLeo', 'https://github.com/AritraLeo', 'https://api.github.com/users/AritraLeo/followers', 'https://api.github.com/users/AritraLeo/following', 'https://api.github.com/users/AritraLeo/gists', 'https://api.github.com/users/AritraLeo/starred', 'https://api.github.com/users/AritraLeo/repos', 'https://api.github.com/users/AritraLeo/events', 'https://api.github.com/users/AritraLeo/received_events', 0); +INSERT INTO `developer` VALUES (103994803, 'himanshu-garg-razorpay', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-04-19T08:55:40Z', '2023-05-05T14:16:25Z', 'https://avatars.githubusercontent.com/u/103994803?v=4', 'https://api.github.com/users/himanshu-garg-razorpay', 'https://github.com/himanshu-garg-razorpay', 'https://api.github.com/users/himanshu-garg-razorpay/followers', 'https://api.github.com/users/himanshu-garg-razorpay/following', 'https://api.github.com/users/himanshu-garg-razorpay/gists', 'https://api.github.com/users/himanshu-garg-razorpay/starred', 'https://api.github.com/users/himanshu-garg-razorpay/repos', 'https://api.github.com/users/himanshu-garg-razorpay/events', 'https://api.github.com/users/himanshu-garg-razorpay/received_events', 0); +INSERT INTO `developer` VALUES (105697320, 'garimaprachi', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 3, 0, 0, 0, '2022-05-17T05:20:07Z', '2023-05-14T08:45:42Z', 'https://avatars.githubusercontent.com/u/105697320?v=4', 'https://api.github.com/users/garimaprachi', 'https://github.com/garimaprachi', 'https://api.github.com/users/garimaprachi/followers', 'https://api.github.com/users/garimaprachi/following', 'https://api.github.com/users/garimaprachi/gists', 'https://api.github.com/users/garimaprachi/starred', 'https://api.github.com/users/garimaprachi/repos', 'https://api.github.com/users/garimaprachi/events', 'https://api.github.com/users/garimaprachi/received_events', 0); +INSERT INTO `developer` VALUES (105702910, 'AnmolSidhu16', 'C', 0, 0, 0, 0, 0, 0, 0, 'Anmol', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 0, '2022-05-17T07:00:30Z', '2024-08-02T09:41:49Z', 'https://avatars.githubusercontent.com/u/105702910?v=4', 'https://api.github.com/users/AnmolSidhu16', 'https://github.com/AnmolSidhu16', 'https://api.github.com/users/AnmolSidhu16/followers', 'https://api.github.com/users/AnmolSidhu16/following', 'https://api.github.com/users/AnmolSidhu16/gists', 'https://api.github.com/users/AnmolSidhu16/starred', 'https://api.github.com/users/AnmolSidhu16/repos', 'https://api.github.com/users/AnmolSidhu16/events', 'https://api.github.com/users/AnmolSidhu16/received_events', 0); +INSERT INTO `developer` VALUES (106141896, 'sraghu1c', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 2, 0, 0, 0, '2022-05-24T07:12:31Z', '2024-10-03T07:46:51Z', 'https://avatars.githubusercontent.com/u/106141896?v=4', 'https://api.github.com/users/sraghu1c', 'https://github.com/sraghu1c', 'https://api.github.com/users/sraghu1c/followers', 'https://api.github.com/users/sraghu1c/following', 'https://api.github.com/users/sraghu1c/gists', 'https://api.github.com/users/sraghu1c/starred', 'https://api.github.com/users/sraghu1c/repos', 'https://api.github.com/users/sraghu1c/events', 'https://api.github.com/users/sraghu1c/received_events', 0); +INSERT INTO `developer` VALUES (107583107, 'joguas-MSFT', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-06-15T19:55:21Z', '2024-04-05T14:43:17Z', 'https://avatars.githubusercontent.com/u/107583107?v=4', 'https://api.github.com/users/joguas-MSFT', 'https://github.com/joguas-MSFT', 'https://api.github.com/users/joguas-MSFT/followers', 'https://api.github.com/users/joguas-MSFT/following', 'https://api.github.com/users/joguas-MSFT/gists', 'https://api.github.com/users/joguas-MSFT/starred', 'https://api.github.com/users/joguas-MSFT/repos', 'https://api.github.com/users/joguas-MSFT/events', 'https://api.github.com/users/joguas-MSFT/received_events', 0); +INSERT INTO `developer` VALUES (110292895, 'nomop', 'C', 0, 0, 0, 0, 80, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 1, 4, 0, 0, 0, '2022-07-30T13:11:21Z', '2024-10-24T07:17:11Z', 'https://avatars.githubusercontent.com/u/110292895?v=4', 'https://api.github.com/users/Nomop', 'https://github.com/Nomop', 'https://api.github.com/users/Nomop/followers', 'https://api.github.com/users/Nomop/following', 'https://api.github.com/users/Nomop/gists', 'https://api.github.com/users/Nomop/starred', 'https://api.github.com/users/Nomop/repos', 'https://api.github.com/users/Nomop/events', 'https://api.github.com/users/Nomop/received_events', 0); +INSERT INTO `developer` VALUES (115489013, 'ChandanSunag', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-10-10T16:04:30Z', '2024-06-28T11:28:57Z', 'https://avatars.githubusercontent.com/u/115489013?v=4', 'https://api.github.com/users/ChandanSunag', 'https://github.com/ChandanSunag', 'https://api.github.com/users/ChandanSunag/followers', 'https://api.github.com/users/ChandanSunag/following', 'https://api.github.com/users/ChandanSunag/gists', 'https://api.github.com/users/ChandanSunag/starred', 'https://api.github.com/users/ChandanSunag/repos', 'https://api.github.com/users/ChandanSunag/events', 'https://api.github.com/users/ChandanSunag/received_events', 0); +INSERT INTO `developer` VALUES (116806144, 'prem-razorpay', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2022-10-27T10:52:13Z', '2024-10-24T04:29:07Z', 'https://avatars.githubusercontent.com/u/116806144?v=4', 'https://api.github.com/users/prem-razorpay', 'https://github.com/prem-razorpay', 'https://api.github.com/users/prem-razorpay/followers', 'https://api.github.com/users/prem-razorpay/following', 'https://api.github.com/users/prem-razorpay/gists', 'https://api.github.com/users/prem-razorpay/starred', 'https://api.github.com/users/prem-razorpay/repos', 'https://api.github.com/users/prem-razorpay/events', 'https://api.github.com/users/prem-razorpay/received_events', 0); +INSERT INTO `developer` VALUES (123555116, 'dakshinamurthyp', 'C', 0, 0, 0, 0, 0, 0, 0, 'DM', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2023-01-25T11:39:42Z', '2024-06-13T10:27:09Z', 'https://avatars.githubusercontent.com/u/123555116?v=4', 'https://api.github.com/users/dakshinamurthyp', 'https://github.com/dakshinamurthyp', 'https://api.github.com/users/dakshinamurthyp/followers', 'https://api.github.com/users/dakshinamurthyp/following', 'https://api.github.com/users/dakshinamurthyp/gists', 'https://api.github.com/users/dakshinamurthyp/starred', 'https://api.github.com/users/dakshinamurthyp/repos', 'https://api.github.com/users/dakshinamurthyp/events', 'https://api.github.com/users/dakshinamurthyp/received_events', 0); +INSERT INTO `developer` VALUES (133931559, 'CharithaCS', 'C', 0, 0, 0, 0, 0, 0, 0, 'Charitha C S', NULL, '', 'Bengaluru', NULL, NULL, 'Sophomore', NULL, 0, 0, 1, 10, 0, 0, 0, '2023-05-18T01:27:29Z', '2024-10-18T13:11:32Z', 'https://avatars.githubusercontent.com/u/133931559?v=4', 'https://api.github.com/users/CharithaCS', 'https://github.com/CharithaCS', 'https://api.github.com/users/CharithaCS/followers', 'https://api.github.com/users/CharithaCS/following', 'https://api.github.com/users/CharithaCS/gists', 'https://api.github.com/users/CharithaCS/starred', 'https://api.github.com/users/CharithaCS/repos', 'https://api.github.com/users/CharithaCS/events', 'https://api.github.com/users/CharithaCS/received_events', 0); +INSERT INTO `developer` VALUES (153058734, 'naveen-s-rzp', 'C', 0, 0, 0, 0, 0, 0, 0, 'Naveen S', 'Razorpay', '', 'Bangalore', NULL, NULL, NULL, NULL, 0, 0, 1, 0, 0, 0, 0, '2023-12-06T06:05:24Z', '2024-08-20T17:45:51Z', 'https://avatars.githubusercontent.com/u/153058734?v=4', 'https://api.github.com/users/naveen-s-rzp', 'https://github.com/naveen-s-rzp', 'https://api.github.com/users/naveen-s-rzp/followers', 'https://api.github.com/users/naveen-s-rzp/following', 'https://api.github.com/users/naveen-s-rzp/gists', 'https://api.github.com/users/naveen-s-rzp/starred', 'https://api.github.com/users/naveen-s-rzp/repos', 'https://api.github.com/users/naveen-s-rzp/events', 'https://api.github.com/users/naveen-s-rzp/received_events', 0); +INSERT INTO `developer` VALUES (168731971, 'Anshgrover23', 'C', 0, 0, 0, 0, 0, 0, 0, 'Ansh Grover', NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2024-05-02T10:50:02Z', '2024-11-04T11:56:57Z', 'https://avatars.githubusercontent.com/u/168731971?v=4', 'https://api.github.com/users/Anshgrover23', 'https://github.com/Anshgrover23', 'https://api.github.com/users/Anshgrover23/followers', 'https://api.github.com/users/Anshgrover23/following', 'https://api.github.com/users/Anshgrover23/gists', 'https://api.github.com/users/Anshgrover23/starred', 'https://api.github.com/users/Anshgrover23/repos', 'https://api.github.com/users/Anshgrover23/events', 'https://api.github.com/users/Anshgrover23/received_events', 0); +INSERT INTO `developer` VALUES (187274877, 'bigbrother', 'C', 0, 0, 0, 0, 0, 0, 0, NULL, NULL, '', '未知', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, '2024-11-04T11:13:17Z', '2024-11-04T11:13:43Z', 'https://avatars.githubusercontent.com/u/187274877?v=4', 'https://api.github.com/users/BigBrother', 'https://github.com/BigBrother', 'https://api.github.com/users/BigBrother/followers', 'https://api.github.com/users/BigBrother/following', 'https://api.github.com/users/BigBrother/gists', 'https://api.github.com/users/BigBrother/starred', 'https://api.github.com/users/BigBrother/repos', 'https://api.github.com/users/BigBrother/events', 'https://api.github.com/users/BigBrother/received_events', 0); -- ---------------------------- -- Table structure for user diff --git a/pom.xml b/pom.xml index 96b5dafe663de5cd50c0bf4ee7b9b1916e6a9362..5fb3720790b440225aae2f9cb42dd0047302f9f8 100644 --- a/pom.xml +++ b/pom.xml @@ -31,6 +31,18 @@ + + + io.springfox + springfox-swagger2 + 2.9.2 + + + + io.springfox + springfox-swagger-ui + 2.9.2 + diff --git a/script/caculateConstant.py b/script/caculateConstant.py new file mode 100644 index 0000000000000000000000000000000000000000..af7fcc7e0d22eb3de0b47a710f926626d7719116 --- /dev/null +++ b/script/caculateConstant.py @@ -0,0 +1,56 @@ +import mysql.connector +import pandas as pd + +def get_column_stats(column_name, table_name, host="localhost", user="root", password="password", database="test_db"): + # 连接到 MySQL 数据库 + db = mysql.connector.connect( + host=host, + user=user, + password=password, + database=database + ) + + # 创建游标对象 + cursor = db.cursor() + + # 从数据库中查询指定列的数据 + query = f"SELECT {column_name} FROM {table_name}" + cursor.execute(query) + + # 将查询结果转换为 pandas DataFrame + data = cursor.fetchall() + df = pd.DataFrame(data, columns=[column_name]) + + # 计算统计信息 + mean = df[column_name].mean() + std_dev = df[column_name].std() + max_value = df[column_name].max() + min_value = df[column_name].min() + + # 关闭游标和数据库连接 + cursor.close() + db.close() + + + # 返回统计结果 + return { + "mean": mean, + "std_dev": std_dev, + "max_value": max_value, + "min_value": min_value + } + +# 示例调用 +columns = {"commits","prs","issues","total_start","forks","start","public_repos","followers"} +for column in columns: + column_stats = get_column_stats(column, "developer", host="localhost", user="root", password="123456", database="assess") + print(column) + print("均值:", column_stats["mean"]) + print("标准差:", column_stats["std_dev"]) + print("最大值:", column_stats["max_value"]) + print("最小值:", column_stats["min_value"]) + + + + + diff --git a/script/cleanLocation.py b/script/cleanLocation.py new file mode 100644 index 0000000000000000000000000000000000000000..0b1536befae1f9924c1dad8c4dd453bf57bb10b4 --- /dev/null +++ b/script/cleanLocation.py @@ -0,0 +1,36 @@ +import mysql.connector + +# 数据库连接配置 +db = mysql.connector.connect( + host='localhost', + user='root', + password='123456', + database='assess' +) +cursor = db.cursor() + +# 读取数据库中location列的所有内容 +cursor.execute("SELECT id, location FROM developer") +locations = cursor.fetchall() + +for row in locations: + + location_id = row[0] + location_text = row[1] + + # 如果location为空,则设置为“未知” + if location_text is None or location_text.strip() == "": + translated_text = "未知" + print(f"{location_id} 的位置为空,更新为:{translated_text}") + + # 更新数据库中的位置为“未知” + update_query = "UPDATE developer SET location = %s WHERE id = %s" + cursor.execute(update_query, (translated_text, location_id)) + db.commit() + else: + print(f"{location_id} 的位置不为空,无需更新") + + +# 关闭数据库连接 +cursor.close() +db.close()