Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/21/18 in all areas

  1. Cred ca cineva mi-a otravit cafeaua. Tocmai am citit de overclock la mouse.
    2 points
  2. Pentru producatori de muzica:: Content: 01. Vengeance Dance Explotion Vol.102. Vengeance Dirty Electro Vol.103. Vengeance Dirty Electro Vol.204. Vengeance Effects Vol.105. Vengeance Effects Vol.206. Vengeance Effects Vol.307. Vengeance Electro Essentials Vol.108. Vengeance Electro Essentials Vol.209. Vengeance Electroshock Vol.110. Vengeance Electroshock Vol.211. Vengeance Essential Clubsounds Vol.112. Vengeance Essential Clubsounds Vol.213. Vengeance Essential Clubsounds Vol.314. Vengeance Essential Clubsounds Vol.415. Vengeance Essential Dubstep Vol.116. Vengeance Essential House Vol.117. Vengeance Essential House Vol.218. Vengeance Essential House Vol.319. Vengeance Freakz On Beatz Vol.120. Vengeance Future House Vol.121. Vengeance Future House Vol.222. Vengeance Future House Vol.323. Vengeance Future House Vol.424. Vengeance Minimal House Vol.125. Vengeance Minimal House Vol.226. Vengeance Rhythm Guitars Vol.127. Vengeance Studio Vocals Vol.128. Vengeance Total Dance Sounds Vol.129. Vengeance Total Dance Sounds Vol.230. Vengeance Total Dance Sounds Vol.331. Vengeance Trance Sensation Vol.132. Vengeance Trance Sensation Vol.233. Vengeance Trance Sensation Vol.334. Vengeance Ultimate Bass EXS Halion.iso35. Vengeance Ultimate Fills Vol.136. Vengeance Ultimate Fills Vol.237. Vengeance Vocal Essentials Vol.138. Vengeance Vocal Essentials Vol.2
    1 point
  3. Putin whistle-blowing...share, comment & distribute Vad ca inaptii tac ca "porcul in papusoi" despre treaba asta asa ca postez aici: se pare ca au fost hackuiti si tac in privinta asta. Am aplicatia eBay pe telefon si Sambata dimineata (aproximativ ora 8.30) primesc o notificare de la app ca produsul meu s-a vandut. Nu aveam nimic postat de vanzare si nu folosisem pana atunci eBay-ul de vreo 1-2 luni. A trebuit sa astept pana la 9am sa vorbesc cu cineva de la support si tipa cica "da, stim ca sunt ceva hackeri care fac chestia asta insa se pare a fi automata". A verificat adresa de IP de unde s-a postat produsul si era de Hong Kong. Ce-i mai nasol e ca sunt foarte discreti in treburile astea - nu am primit nici o notificare referitor la schimbarea parolei, ca a fost postat un item nou, ca am vandut ceva nimic - de obicei primesc toate astea prin mail. Daca nu aveam aplicatia pe telefon nu aflam poate nimic, poate doar cand era prea tarziu. Si tipa de la eBay support cica "da, stim ca fac chestia asta, dar nu stim inca cum o fac, se pare a fi un bot care face tranzactii multe si marunte", etc. And the English version - eBay have been hacked and they seem to be keeping quiet about it. I have the eBay app on my phone and on Saturday morning (approx 8.30am) I get a notification from the app that my item has been sold. I did not have any item on sale and have not been using eBay for the past 1-2 months. I had to wait until 9am to ring their support and they were like "yeah, we know there's some hackers who are doing this, seems to be automated". And they checked the IP address from where the listing was made and it was from Hong Kong. But what's more worrying is the stealth with which they've done this - I had no notification of my account changing password, had no notification that an item has been posted for sale, etc. If I wouldn't have had the app on my phone, I would have probably not found about it until too late. And the lady on eBay support on the phone was like "yeah, we know about this, but we don't know how they're doing it, seems to be some bot as they're doing loads of small value transactions", etc.
    1 point
  4. Curand o sa apara frigidere cu licenta. Mananci numai pe baza de serial number. Doamne-fereste sa iei un keygen virusat de pe net, ca ti se strica mancarea. Mare grija! Mai ales acum ca sunt sarbatori, frigiderele sunt pline.
    1 point
  5. Doar eu astept sa intru pe forum si sa vad mesajul cu "du-te-n pula mea si distreaza-te ca-s sarbatorile, de ce cacat vrei sa intri pe forum" sau cum era?
    1 point
  6. Testat, este in regula, a trecut toate testcase-urile, kudos! Testat, este in regula, a trecut toate testcase-urile, kudos! Solutia mea (Golang) este urmatoarea: var hes = map[int32]string{1: "one", 2: "two", 3: "three", 4: "four", 5: "five", 6: "six", 7: "seven", 8: "eight", 9: "nine", 10: "ten", 11: "eleven", 12: "twelve", 13: "thirteen", 14: "fourteen", 15: "quarter", 16: "sixteen", 17: "seventeen", 18: "eighteen", 19: "nineteen", 20: "twenty", 21: "twenty one", 22: "twenty two", 23: "twenty three", 24: "twenty four", 25: "twenty five", 26: "twenty six", 27: "twenty seven", 28: "twenty eight", 29: "twenty nine", 30: "half"} func theClock(h int32, m int32) string { var out string if m == 0 { out = hes[h] + " o' clock" } else if m == 1 { out = hes[m] + " minute past " + hes[h] } else if m == 15 || m == 30 { out = hes[m] + " past " + hes[h] } else if m < 30 { out = hes[m] + " minutes past " + hes[h] } else if m == 45 { out = hes[60-m] + " to " + hes[h+1] } else { out = hes[60-m] + " minutes to " + hes[h+1] } return out } * Problema este adaptata de la ceva asemanator gasit pe HackerRank
    1 point
  7. Screenshot la convorbire telefonica? Daca vrei iti vand mai bine o sabie cu luneta sau un derulator de cd-uri?
    1 point
  8. public class MuieGO3 { private static final String[] oreJmekere = { "", " ten", " twenty", " thirty", " forty", " fifty", " sixty", " seventy", " eighty", " ninety" }; static final String[] minuteJmekere = { "", " one", " two", " three", " four", " five", " six", " seven", " eight", " nine", " ten", " eleven", " twelve", " thirteen", " fourteen", " fifteen", " sixteen", " seventeen", " eighteen", " nineteen" }; public static void main(String[] args) { System.out.println(ceasCuCuc(2,01)); System.out.println(ceasCuCuc(2,10)); System.out.println(ceasCuCuc(2,15)); System.out.println(ceasCuCuc(2,28)); System.out.println(ceasCuCuc(2,30)); System.out.println(ceasCuCuc(2,40)); System.out.println(ceasCuCuc(2,45)); System.out.println(ceasCuCuc(2,47)); } static String ceasCuCuc(int ora, int minute) { String oraText = ""; if (minute == 0) { oraText = minuteJmekere[ora] + " o' clock"; } else if (minute == 15) { oraText = " quarter past" + minuteJmekere[ora]; } else if (minute < 30) { if (minute < 20) { oraText += minuteJmekere[minute]; } else { oraText += oreJmekere[minute / 10]; oraText += minuteJmekere[minute % 10]; } oraText += " minutes past" + minuteJmekere[ora]; } else if (minute == 30) { oraText += " half past" + minuteJmekere[ora]; } else if (minute == 45) { oraText += " quarter to" + minuteJmekere[ora + 1]; } else if (minute > 30) { if ((60 - minute) < 20) { oraText += minuteJmekere[60 - minute]; } else { oraText += oreJmekere[(60 - minute) / 10]; oraText += minuteJmekere[(60 - minute) % 10]; } oraText += " minutes to " + minuteJmekere[ora + 1]; } if(minute==1 || minute == 59){ oraText=oraText.replace("minutes", "minute"); } return oraText.trim(); } }
    1 point
  9. Intr-adevar, o intrebare extrem de dificila, care necesita extrem de multa gandire si precizie.
    1 point
  10. TROCUL este pagubos din mai multe puncte de vedere. Intr-un final, daca el pierde pentru prostul management, pierzi si tu. Munca de pomana. E simplu, ai nevoie de munca si banul jos, sa vada ochii, sa simta mana :)))
    1 point
  11. Yeah, but even the fact that whoever pwned eBay, couldn't be bothered yet to do any serious damage and just set up a bot to do lots of small transactions. Maybe one strategy is that they were hoping to go undetected by not being greedy or perhaps testing the capabilities of the vulnerabiliti/es or building up for something larger. What annoyed me more though is that the lady on the phone was like "yeah, we know they're doing this but we don't know how or why". I was like.. well when the fuck are you going to warn people that their financial and personal data are at risk? Why the fuck are you keeping this quiet? I am actually going to raise a complaint with the ICO in here to fine them mofos...
    1 point
  12. -1 points
×
×
  • Create New...