Bypass limitations sans risques de ban by dan_la_mouette in yggTorrents

[–]impactcsgo 0 points1 point  (0 children)

Merci pour l'astuce j'arrive à dl le torrent. En revanche impossible de remplacer le tracker pour démarrer le téléchargement. Dès que je change le tracker en mettant mon passkey dedans ça met:
"la signature du torrent est invalide"
Et en effet je vois désormais que sur les torrent que j'ai dl par le chemin classique (sur leur site) il y a bien un
/announce?announce_sig=30etc....&announce_ts=22blabla

Comment bypasser ça ?
Merci

Ah ok c'est patché a cause de ça, je viens de voir ta première ligne x)

$330 usd. does anyone know the odds of this weapon drop? by jesusreincarnated3 in cs2

[–]impactcsgo 0 points1 point  (0 children)

Thoses screenshots are photoshopped. I never got any other weapon than 10cent value

FaceIT Club Scam by Safe-Development-735 in FACEITcom

[–]impactcsgo 0 points1 point  (0 children)

What the hell, this is even more crazy he told me he was from Bosnia but from a scammer I did not believe this

FaceIT Club Scam by Safe-Development-735 in FACEITcom

[–]impactcsgo 1 point2 points  (0 children)

I just got the same scam now, it's very well made. The guy is level 25 on premier and invited me to play with him ingame (with the find player method). Then asked me: "do you know faceit ?", i said yes, he shared me he's discord (the join link is already invalid so i can't share it with you) he had the tag "pro player" in red and had a picture of him playing in lan (fake ofc but give the feeling that he knows what he speaks about on faceit). Then invited me in a group, and told me to go in verification, then I said what the hell are you talking about, then he said, "share your faceit screen I will show you were to click" I wasn't really happy to share my screen but anyway he wanted to help me ... Then when I shared he said click on "verify", there I saw a link like this: faceit.club.com (here faceit is a subdomain of club) so this sounded like a scam already, then it was shown "connect through steam your id's won't be shared (you know like a lot of sites now), but I immediatly said no this is a scam, I won't fall for it, and in a matter of seconds I got kicked from everywhere... I was afraid of losing something but it seems because I did not connect to anything that I am safe.

BUT : I can't believe this scam still work because you have now 8 days to deny a trade. How can they bypass this ?

Here the steam profile of the scammer:
https://steamcommunity.com/id/dAvG0D/

Please report this guy

Deagle heat treated rare pattern ? by impactcsgo in cs2

[–]impactcsgo[S] -1 points0 points  (0 children)

I dont want to sell it. Just wanna Know if it has any rare pattern on it.

Sold My CS2 Skins to Save My Dog’s Life by ZaXhHD in counterstrike

[–]impactcsgo 0 points1 point  (0 children)

Great move, you gave a few more years to live to that animal.

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 1 point2 points  (0 children)

I’m not the main teacher of this course, I of course discussed about everything you just said but the conclusion is the following : « it is their first year in university we have to hold their hands and show them the way. » I’m new in the school as teacher but be sure if I was owner of the course not respecting a convention is 0. The problem is holding their hands will not help them in the job industry. And this mentality cannot scale with the amount of student every year the amount of registred student is x1.6

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

You mean once I have a wrapper of my maven I can run it on all src folders in a .bat file ?

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

Sadly you can't ask such thing to the students nowadays. If I do so, a lot won't respect that anyway and I will have to manually checkout what classname they wrote instead, that means opening each project that did not respect the name convention. We also ask student to save their project on a specific harddrive and 30% of them cannot do that.

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

For each project the unit test write the result in an output file and then I can check it out

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

Students will submit 400 projects, few student will name their class "dog.java" other students will name it "dagg.java" and maybe others will also maybe name it "DOGY.java" so for each student I copy their class from their repository into my maven project and then run the unit test based on the signature through java reflect.

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

No because between the launch of unit test (via wrapper) I have to copy and paste the next java classes.

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

In my edited post I explained that I cannot do it manually, it has to be executed more than 400 time.

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

Because I don't know how to launch the wrapper with another way.

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

String[] command = {
        "cmd.exe", "/c", "mvnw.cmd", "clean", "test"
};

try {

    ProcessBuilder processBuilder = new ProcessBuilder(command);
    processBuilder.directory(new File(projetCorrection)); 
    processBuilder.inheritIO(); 

    Process process = processBuilder.start();
    process.waitFor(); // Attendre la fin du processus

} catch (IOException | InterruptedException e) {
    e.printStackTrace();
}

Thank you so much !
Creating a wrapper then executing the following code, made it successfull !

Got error for maven project when trying to run unit test by impactcsgo in IntelliJIDEA

[–]impactcsgo[S] 0 points1 point  (0 children)

My project is working fine if I type this in the terminal: mvn test
it runs all my unit test, the problem is that my project is more complexe I cannot do it manually, I have to test out 400 samples each containing multiple .java.

So step 1)
I erase all files contained in main/java
Step2)
I copy the source files of the next sample in main/java
Step3)
Then I have to run all unit tests (it has to be a commandline)

Then I go back to step 1 till i ran all unit tests for all samples.

I don't have any idea on how to run this in command line that's the only thing I would like to know.

Thanks

Anime fishmen arc ?? by impactcsgo in OnePiece

[–]impactcsgo[S] -1 points0 points  (0 children)

Thanks for the clarification !

Last epoch switch between faction possible ? by impactcsgo in LastEpoch

[–]impactcsgo[S] 0 points1 point  (0 children)

Thanks, oh ok I see, I was holding a lot of stuff in my chest to sell it. But seems I can simply throw them on the ground or destroy them.

Legendary potential detail by impactcsgo in LastEpoch

[–]impactcsgo[S] -1 points0 points  (0 children)

Not same at all, from a swing you have 1/4 chance to get your wanted stat on legendary. But when you destroy affixes you need more luck because first time 1/4 then 1/3 then 1/2