Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



   4194

Scam report against @thinkorsink

by Broke_Dev - 25 August, 2022 - 11:05 AM
This post is by a banned member (Broke_Dev) - Unhide
Broke_Dev  
Godlike
969
Posts
465
Threads
3 Years of service
#1
Scammers Profile Link:https://cracked.sh/thinkorsink
Sales Thread: https://cracked.sh/Thread-Dev0-Your-1-Coding-Service
Amount or Item(s) Scammed: 10-30$
Screenshots of Communication: None banned
Additional Information:
I paid for a url checker to be made within the same day
He did not make it
Then i said make it today whereas he just banned me
And now i would like a 10$ refund as partial was only made

Crypto address for a refund: bc1q5uz869nlc3pjue9jh99wa3pj36ey8qqjf5tsdh
Discord: DM


[Image: Comp-2.gif]
This post is by a banned member (Leechometer) - Unhide
0
Posts
5
Threads
6 Years of service
#2
System bot message: @thinkorsink (thinkorsink) has been notified about this dispute via private messages and has 24hours to reply in this thread
 
Taking care of cracked.sh's leechers. Every day.
If you have a question regarding your leeching level, click here.
This post is by a banned member (Broke_Dev) - Unhide
Broke_Dev  
Godlike
969
Posts
465
Threads
3 Years of service
#3
(This post was last modified: 25 August, 2022 - 11:15 AM by Broke_Dev.)
User is randomly claiming that I threatened to dox him
https://media.discordapp.net/attachments...height=434
https://media.discordapp.net/attachments...height=434
https://media.discordapp.net/attachments...height=434

https://media.discordapp.net/attachments...height=434
Discord: DM


[Image: Comp-2.gif]
This post is by a banned member (abbdsadha) - Unhide
This post is by a banned member (Broke_Dev) - Unhide
Broke_Dev  
Godlike
969
Posts
465
Threads
3 Years of service
#5
(This post was last modified: 25 August, 2022 - 12:15 PM by Broke_Dev.)
https://media.discordapp.net/attachments...nknown.png
User telling to leak the project
User also claiming to give a invalid amount for a refund of 2$ when teh required amount is 10$

@thinkorsink i paid u 10$ for that feature alone i think in ticket along with counter which is broken but i managed to fix it

@Liars ban this retarded kid till he refunds my 10 bucks
Discord: DM


[Image: Comp-2.gif]
This post is by a banned member (abbdsadha) - Unhide
This post is by a banned member (Broke_Dev) - Unhide
Broke_Dev  
Godlike
969
Posts
465
Threads
3 Years of service
#7
(This post was last modified: 25 August, 2022 - 09:53 PM by Broke_Dev.)
Solved, Closed

Scam report has een opened again

Leaking source of my project
https://media.discordapp.net/attachments...nknown.png
 
Code:
 
#[allow(dead_code)]

use std::{
    fs::OpenOptions,
    fs::File,
    io::{prelude::*, BufReader},
    path::Path,
    thread::{self},
};
use rfd::FileDialog;
use text_io::read;
use std::sync::atomic::{AtomicU32, Ordering};
use std::sync::Arc;

fn load(filename: impl AsRef<Path>) -> Vec<String> {
    let file = File::open(filename)
        .expect("error");
    let buffer = BufReader::new(file);
    buffer.lines()
        .map(|l| l.expect("error"))
        .collect()
}

fn write(filename: impl AsRef<Path>, mut t_write: String) {
    let mut file = OpenOptions::new()
        .append(true)
        .open(filename)
        .expect("error");
    t_write.push_str("\n");
    file.write_all(t_write
        .as_bytes())
        .unwrap();
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    
    let file = FileDialog::new()
        .add_filter("text", &["txt"])
        .set_directory(".")
        .pick_file();
    let url = load(file.unwrap());
    println!("{}", url.len());
    let threads: i16 = read!("{}\n");
    println!("Splitting URLs...");
    let mut values = url
        .into_iter()
        .peekable();
    let mut chunks = Vec::new();
    while values.peek().is_some() {
        let chunk: Vec<_> = values
            .by_ref()
            .take(threads as usize)
            .collect();
        chunks.push(chunk);
    }
    let mut handles = Vec::new();
    println!("Done.");
    let checked = Arc::new(AtomicU32::new(1));
    let valid = Arc::new(AtomicU32::new(1));
    let invalid = Arc::new(AtomicU32::new(1));
    // println!("{:?}", chunks);
    for chunk in chunks {
        let handle = thread::spawn({
                let c_clone = Arc::clone(&checked); 
                let v_clone = Arc::clone(&valid); 
                let i_clone = Arc::clone(&invalid);
                move || 
            for x in chunk {
                print! ("\x1B[2J\x1B[1;1H");
                let resp = reqwest
                    ::blocking
                    ::get(x.as_str());
                let _resp_r = match resp {
                    Ok(_ok) => {
                        c_clone.fetch_add(1, Ordering::SeqCst); 
                        v_clone.fetch_add(1, Ordering::SeqCst); 
                        write("valid.txt".to_string(), x); 
                        println!("{} | Valid: {} | Invalid: {}", 
                            c_clone.load(Ordering::SeqCst), 
                            v_clone.load(Ordering::SeqCst), 
                            i_clone.load(Ordering::SeqCst));}
                    Err(_error) => {
                        c_clone.fetch_add(1, Ordering::SeqCst); 
                        i_clone.fetch_add(1, Ordering::SeqCst); 
                        write("invalid.txt".to_string(), x); 
                        println!("{} | Valid: {} | Invalid: {}", 
                            c_clone.load(Ordering::SeqCst), 
                            v_clone.load(Ordering::SeqCst), 
                            i_clone.load(Ordering::SeqCst));}
                };
            }
        });

        handles.push(handle);
        
    }
    for x in handles {
        x.join().unwrap();
    }
    Ok(())
}
https://pastebin.com/Y8984acX

User leaked the source code in cracked.io shoutbox
I would like a full refund +  compensation fees (Ranging from 30$-100$) of my project being leaked
Or the user being banned

@Liars and @Darkness please deal with this asap
Discord: DM


[Image: Comp-2.gif]
This post is by a banned member (abbdsadha) - Unhide

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 1 Guest(s)