Jump to content

theandruala

Active Members
  • Posts

    787
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by theandruala

  1. Programarea retelelor de calculatoare. Materie facuta in 2 ani diferiti, part1 = primul an, part2 = al doilea an. In mare parte, cam ce e in part2, e si in partea 1. https://drive.google.com/open?id=1tEbiZT6rYXgWgqFEydH3yPsEgOT-SzH9
  2. Inteleg ca esti prost si n-ai fost in stare sa-ti modifici scriptul ala...dar macar sa cauti pe gogu' "online virtual card" ar trebui sa poti.
  3. card virtual in care nu ai bani
  4. Probabil n-o sa faca mare diferenta, dar hide ssid?
  5. STAI NU STERGE POZELE CU MAMICA-TA INCA
  6. Vb cu administratorul DB-ului, si-i trimiti prin pm o rugaminte, sa-ti dea user si pass. Dar pentru asta, tre sa-i trimiti si o poza cu tine in care iti bagi un deget in c*r.De preferat sa te epilezi inainte.
  7. OFF : Eu pe tine te-as vedea cerand sfaturi despre cum sa te imbogatesti unor oameni care n-au unde sa doarma... ON : Fa un site de fap-challenge.Provocarea e ca utilizatrul sa faca laba la videoclipul pe care-l afisezi random
  8. https://thehackernews.com/2019/01/apple-facetime-privacy-hack.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+TheHackersNews+(The+Hackers+News+-+Security+Blog) Start a FaceTime Video call with any iPhone contact. While your call is dialing, swipe up from the bottom of your iPhone screen and tap 'Add Person.' You can add your own phone number in the 'Add Person' screen. This will start a group FaceTime call including yourself and the person you first called, whose audio you will able to listen in even if he/she hasn't accepted the call yet. What's more? It is also being reported that if the person you first called presses the volume down button or the power button to silence or dismiss the call (in case he/she is in a meeting or busy), his/her iPhone camera will also turn on. This will broadcast the video from their iPhone, while their iPhone screen still displays the incoming call screen.
      • 3
      • Upvote
      • Thanks
  9. https://www.vice.com/ro/article/eznd9a/am-incercat-modafinilul-drogul-care-te-face-sa-iubesti-munca-si-sa-urasti-orice-altceva-612
  10. Cont cu ajutorul caruia sa-si faca rezervare la ma-sa.
  11. Una e sa fii la inceput, alta e sa fii prost si hotarat. SQL Injection SQL injection is a code injection technique that might destroy your database. SQL injection is one of the most common web hacking techniques. SQL injection is the placement of malicious code in SQL statements, via web page input. Primul search din google. Pe alta limba, cu sql injection faci "hecarii" de genul..."ia sa-i dau eu drop table la fraer, mama ce l-am hacherit" Sau te simti baiat cand dau cu select * from paypal_accounts, si devii jmeker, un tinkode2.
  12. pff foarte simplu, mai ales daca e un site care-i scris in sql, ca pulame, faci sql injection, si te astepti sa urci schenare pe el.
  13. Daca n-ai fost in stare sa vezi "Posted June 11, 2015 (edited)" te cred in stare sa fii futut de-o shemale.
  14. Sau daca esti la digi, si ai ceva servicii de la ei, dai +5/10 lei pe luna sa-ti dea un modem cu cartela Am vazut ca in multe camine n-ai voie cu router, daca ai trebuie sa le oferi acces oricand si numai ei ti-l administreaza, daca ai mai multe device-uri (tableta, telefon mobil, etc.) trebuie sa platesti in plus. Se intampla in Regie. Ti se pare normal? Pffff HIDE SSID
  15. Poti gasi aici.La fiecare refresh, iti da alt hec. http://51.38.185.179/sh/shemale.php
  16. Cont de xbox pe usa, paypal si card pe RO.Cand intru de pe un ip de ro,nu pot cumpara nimic. Intrat cu ip de SUA, si totul a mers.
  17. Dacă tot îți faci fișierul din json sau CSV, depinde ce înseamnă la tine, vrie neapărat sqlite? Vezi CTL URILE
  18. 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(); } }
  19. public class MuieGO2 { public static void main(String[] args) { int[] arrayfrumos = { 2, 3, 4, 5, 6 }; int[] test2 = { 3, 8, 4, 6, 1, 9, 8, 8, 6, 7, 5, 2, 1, 5, 8, 6, 1, 3, 3, 9, 3, 7, 8, 5, 5, 4, 7, 2, 9, 8, 7, 7, 4, 4, 7, 1, 5, 3, 10, 7, 10, 10, 9, 1, 9, 10, 1, 10, 2, 7, 2, 10, 2, 7, 8, 10, 3, 8, 1, 3, 4, 1, 6, 1, 5, 3, 10, 7, 6, 10, 6, 6, 1, 6, 3, 9, 6, 8, 4, 9, 5, 3, 7, 7, 3, 5, 4, 2, 7, 5, 6, 4, 3, 10, 4, 5, 2, 4, 7, 5, 6, 10, 3, 4, 8, 4, 10, 7, 8, 9, 1, 10, 2, 6, 4, 10, 1, 2, 6, 3, 6, 4, 9, 6, 6, 2, 8, 8, 5, 9, 7, 4, 2, 10, 10, 6, 4, 7, 2, 8, 4, 5, 6, 1, 1, 7, 3, 5, 2, 7, 10, 1, 6, 2, 2, 9, 3, 1, 10, 1, 2, 5, 5, 5, 4, 9, 9, 7, 9, 2, 6, 4, 2, 10, 9, 2, 8, 8, 10, 9, 1, 7, 3, 3, 7, 4, 9, 3, 3, 3, 1, 6, 5, 2, 7, 9, 4, 1, 4, 1, 10, 7, 8, 6, 4, 6, 5, 6, 1, 1, 7, 6, 1, 8, 5, 3, 3, 4, 5, 7, 10, 3, 10, 9, 8, 10, 9, 2, 3, 9, 6, 3, 3, 10, 5, 3, 3, 1, 10, 8, 6, 5, 8, 5, 8, 7, 5, 5, 9, 6, 1, 9, 5, 2, 8, 8, 1, 8, 7, 1, 7, 3, 4, 3, 7, 7, 5, 4, 7, 10, 7, 3, 3, 9, 2, 4, 2, 7, 1, 6, 6, 3, 2, 1, 5, 4, 6, 7, 8, 8, 9, 10, 5, 1, 1, 10, 3, 7, 3, 5, 2, 6, 4, 7, 4, 6, 8, 10, 10, 4, 3, 10, 7, 1, 5, 1, 6, 1, 5, 8, 6, 10, 2, 4, 9, 10, 2, 1, 8, 9, 1, 6, 4, 4, 9, 5, 9, 3, 2, 3, 4, 8, 9, 5, 6, 10, 3, 1, 3, 4, 7, 4, 8, 9, 9, 8, 10, 4, 3, 6, 7, 1, 9, 6, 8, 4, 7, 6, 8, 9, 2, 4, 6, 8, 1, 8, 7, 9, 5, 7, 9, 10, 4, 2, 5, 3, 2, 2, 8, 2, 10, 10, 9, 1, 10, 10, 7, 6, 9, 2, 1, 4, 3, 4, 5, 9, 8, 6, 9, 4, 3, 10, 6, 8, 10, 2, 4, 2, 9, 5, 7, 4, 7, 6, 10, 3, 5, 8, 2, 5, 3, 8, 8, 2, 10, 4, 3, 6, 9, 3, 5, 10, 10, 8, 6, 4, 6, 1, 10, 9, 3, 4, 7, 3, 7, 10, 7, 4, 2, 5, 3, 9, 2, 6, 6, 4, 4, 2, 4, 3, 2, 10, 1, 6, 7, 5, 2, 8, 2, 9, 4, 3, 4, 9, 3, 4, 9, 6, 8, 5, 5, 8, 3, 6, 8, 7, 6, 9, 9, 3, 1, 8, 9, 5, 10, 5, 4, 9, 9, 3, 6, 8, 10, 1, 9, 6, 7, 5, 3, 10, 1, 2, 9, 4, 4, 4, 6, 3, 6, 9, 2, 5, 9, 8, 6, 8, 6, 7, 5, 6, 3, 10, 1, 2, 2, 5, 6, 9, 5, 6, 5, 10, 5, 2, 7, 1, 2, 10, 7, 7, 7, 1, 1, 7, 6, 4, 5, 7, 4, 10, 6, 4, 5, 9, 3, 5, 10, 7, 1, 10, 1, 9, 6, 3, 5, 6, 5, 5, 6, 2, 9, 4, 8, 8, 10, 1, 3, 6, 2, 2, 2, 2, 9, 3, 7, 6, 6, 1, 1, 2, 10, 5, 9, 2, 7, 4, 8, 1, 4, 9, 6, 8, 7, 6, 7, 9, 8, 4, 2, 1, 3, 10, 7, 2, 7, 8, 4, 1, 10, 6, 9, 7, 4, 7, 8, 10, 3, 4, 6, 10, 7, 10, 7, 2, 6, 1, 9, 6, 9, 4, 6, 2, 4, 9, 6, 5, 8, 4, 10, 4, 5, 5, 10, 4, 5, 8, 7, 2, 8, 2, 1, 6, 9, 3, 8, 3, 4, 5, 5, 3, 7, 10, 5, 7, 9, 2, 6, 7, 9, 3, 5, 8, 4, 4, 2, 6, 6, 1, 9, 2, 9, 5, 7, 4, 4, 7, 4, 2, 8, 1, 6, 6, 9, 2, 2, 4, 7, 5, 3, 2, 8, 5, 6, 10, 1, 1, 3, 5, 5, 1, 5, 4, 4, 3, 10, 5, 1, 10, 1, 7, 2, 8, 9, 3, 6, 6, 2, 7, 3, 6, 6, 4, 7, 9, 10, 2, 3, 3, 10, 9, 7, 5, 7, 5, 5, 10, 5, 4, 10, 2, 5, 6, 6, 7, 7, 3, 2, 9, 2, 9, 1, 1, 2, 6, 8, 1, 2, 9, 10, 8, 2, 7, 10, 9, 2, 1, 5, 4, 8, 2, 4, 9, 1, 1, 7, 4, 10, 3, 1, 9, 3, 7, 7, 8, 8, 5, 1, 4, 1, 1, 10, 1, 7, 9, 5, 1, 8, 7, 9, 10, 1, 7, 2, 10, 5, 4, 1, 7, 8, 5, 8, 9, 9, 6, 1, 8, 7, 3, 9, 10, 6, 5, 9, 2, 7, 3, 5, 1, 1, 5, 6, 10, 9, 5, 10, 4, 4, 5, 9, 6, 4, 3, 2, 2, 2, 6, 6, 5, 1, 5, 2, 1, 3, 6, 1, 5, 8, 9, 9, 5, 3, 10, 6, 8, 2, 4, 3, 8, 4, 10, 3, 10, 5, 1, 10, 1, 9, 8, 7, 1, 6, 6, 4, 2, 1, 3, 6, 8, 7, 7, 10, 5, 8, 7, 7, 4, 8, 8, 1, 4, 5, 3, 10, 1, 7, 1, 7, 6, 10, 4, 7, 8, 5, 3, 2, 3, 5, 9, 9, 9, 10, 9, 9, 9, 8, 1, 2, 6, 9, 9, 7, 8, 1, 5, 9, 8, 6, 9, 2, 6 }; int[] test3 = { 5, 6, 4, 10, 6, 2, 4, 10, 4, 2, 2, 10, 5, 10, 10, 10, 10, 6, 2, 4, 4, 2, 6, 2, 2, 10, 10, 8, 2, 2, 6, 6, 6, 10, 10, 4, 2, 2, 6, 2, 8, 10, 10, 10, 6, 10, 2, 2, 10, 2, 4, 10, 10, 2, 8, 10, 6, 2, 2, 8, 6, 2, 8, 4, 7, 6, 2, 4, 2, 8, 6, 8, 9, 6, 4, 6, 8, 10, 4, 6, 8, 10, 6, 10, 6, 10, 2, 4, 9, 4, 6, 2, 4, 2, 8, 4, 8, 6, 6, 9, 4, 7, 6, 6, 4, 5, 6, 10, 10, 5, 8, 2, 10, 2, 10, 10, 8, 10, 8, 8, 8, 10, 8, 6, 8, 6, 2, 4, 2, 6, 4, 8, 6, 10, 8, 3, 10, 4, 10, 8, 5, 5, 6, 4, 4, 10, 2, 10, 2, 8, 6, 4, 6, 8, 4, 2, 2, 4, 4, 8, 8, 1, 4, 10, 2, 10, 4, 10, 4, 10, 4, 2, 10, 8, 5, 2, 2, 2, 2, 6, 4, 10, 2, 4, 5, 2, 4, 10, 10, 6, 2, 2, 7, 8, 4, 6, 6, 6, 6, 8, 10, 6, 4, 2, 6, 10, 2, 2, 10, 2, 4, 8, 6, 4, 4, 8, 4, 4, 4, 6, 6, 8, 8, 4, 10, 4, 10, 2, 8, 8, 8, 4, 10, 4, 10, 4, 6, 8, 10, 2, 10, 8, 10, 10, 6, 6, 10, 8, 8, 8, 6, 2, 10, 8, 10, 4, 2, 10, 6, 4, 2, 4, 6, 8, 10, 8, 6, 6, 8, 10, 2, 6, 4, 10, 4, 6, 6, 2, 6, 6, 2, 4, 4, 4, 8, 6, 6, 1, 10, 10, 8, 4, 2, 6, 6, 10, 2, 2, 2, 6, 8, 2, 6, 8, 2, 8, 8, 8, 10, 4, 8, 8, 10, 6, 2, 4, 6, 6, 1, 6, 6, 2, 2, 2, 8, 2, 2, 8, 4, 8, 4, 4, 8, 10, 6, 10, 4, 4, 10, 6, 10, 10, 8, 6, 6, 4, 6, 2, 4, 10, 8, 6, 8, 10, 2, 6, 4, 2, 4, 2, 8, 5, 10, 10, 10, 6, 2, 6, 4, 6, 4, 4, 2, 6, 2, 10, 8, 8, 4, 4, 9, 4, 2, 6, 4, 10, 4, 6, 8, 4, 8, 6, 2, 6, 8, 6, 2, 10, 5, 6, 6, 2, 2, 4, 8, 4, 10, 8, 2, 4, 10, 8, 2, 8, 6, 10, 8, 8, 8, 10, 6, 8, 3, 10, 8, 8, 6, 6, 4, 8, 6, 4, 8, 6, 10, 4, 10, 6, 1, 6, 8, 10, 2, 10, 2, 10, 8, 4, 8, 6, 6, 6, 6, 2, 6, 6, 4, 2, 10, 4, 10, 6, 4, 8, 4, 4, 8, 2, 8, 8, 9, 8, 3, 2, 3, 2, 6, 6, 2, 8, 2, 2, 10, 2, 4, 2, 6, 5, 2, 6, 2, 2, 2, 2, 2, 8, 10, 2, 2, 10, 10, 6, 6, 10, 8, 4, 8, 4, 6, 8, 4, 4, 4, 6, 6, 8, 1, 6, 9, 6, 2, 6, 8, 2, 8, 8, 2, 6, 6, 8, 8, 6, 6, 10, 8, 2, 10, 10, 6, 6, 10, 4, 6, 6, 10, 6, 6, 2, 10, 4, 8, 8, 2, 2, 8, 1, 4, 6, 8, 10, 4, 2, 8, 2, 2, 10, 10, 10, 6, 10, 4, 6, 2, 4, 2, 8, 10, 8, 10, 7, 4, 2, 4, 8, 2, 10, 2, 4, 8, 10, 8, 10, 8, 2, 6, 4, 2, 8, 2, 4, 4, 8, 10, 8, 6, 8, 2, 4, 10, 4, 8, 8, 8, 6, 2, 6, 2, 2, 1, 2, 10, 2, 4, 8, 6, 10, 8, 8, 2, 6, 4, 2, 10, 4, 2, 4, 4, 2, 8, 4, 10, 8, 7, 10, 10, 8, 2, 8, 2, 6, 8, 4, 2, 4, 8, 10, 10, 2, 8, 6, 4, 8, 8, 10, 4, 8, 3, 8, 2, 6, 4, 4, 8, 8, 10, 6, 2, 10, 2, 6, 3, 10, 2, 2, 10, 8, 2, 2, 10, 4, 6, 4, 4, 6, 4, 8, 10, 2, 3, 2, 6, 6, 6, 10, 10, 8, 2, 6, 4, 6, 4, 2, 10, 3, 2, 6, 4, 7, 4, 4, 8, 2, 8, 2, 4, 4, 2, 6, 4, 6, 6, 8, 10, 10, 4, 8, 8, 6, 10, 6, 6, 8, 10, 6, 10, 4, 4, 2, 6, 4, 10, 8, 8, 8, 4, 10, 4, 2, 10, 6, 4, 10, 2, 6, 8, 10, 2, 2, 4, 4, 6, 6, 6, 6, 8, 2, 4, 8, 4, 4, 10, 4, 4, 2, 10, 8, 6, 2, 4, 2, 8, 8, 4, 6, 4, 4, 10, 2, 10, 6, 10, 4, 4, 2, 4, 10, 2, 8, 6, 8, 6, 10, 2, 8, 2, 4, 2, 10, 2, 6, 8, 6, 6, 6, 6, 2, 6, 2, 4, 10, 2, 8, 4, 4, 6, 10, 10, 2, 8, 2, 2, 6, 8, 4, 4, 2, 4, 10, 2, 4, 6, 8, 4, 10, 10, 10, 8, 3, 8, 4, 8, 10, 10, 4, 8, 3, 8, 6, 1, 6, 8, 4, 2, 10, 4, 2, 10, 6, 6, 8, 6, 8, 10, 2, 10, 8, 2, 10, 8, 10, 8, 2, 8, 8, 2, 2, 4, 10, 6, 2, 8, 10, 6, 4, 4, 8, 8, 2, 2, 6, 2, 2, 4, 4, 8, 10, 2, 2, 4, 8, 8, 4, 10, 5, 10, 6, 2, 10, 10, 8, 4, 10, 8, 10, 4, 2, 2, 7, 7, 4, 2, 10, 4, 8, 2, 8, 10, 2, 2, 4, 8, 2, 2, 10, 10, 6, 10, 8, 8, 2, 6, 4, 2, 7, 6, 2, 10, 6, 10, 8, 8, 10, 2, 10, 10, 2, 2, 4, 10, 10, 4, 6, 8, 8, 8, 6, 6, 4, 10, 4, 3, 4, 6, 6, 2, 5, 8, 8, 2, 5 }; System.out.println("Am facut " + functieFrumoasa(test3) + " incrementari."); } static int functieFrumoasa(int[] arrayfrumos) { int incrementari = 0; if (arrayfrumos.length == 2) { if (arrayfrumos[0] % 2 != arrayfrumos[1] % 2) { System.out.println("Tzeapa n-ai mai loat tzeapa?"); return -1; } else { return 1; } } for (int i = 0; i < arrayfrumos.length - 1; i++) { if (true) {//casamoaraheitarii if (arrayfrumos[i] % 2 == 1) { incrementari += 2; arrayfrumos[i] += 1; arrayfrumos[i + 1] += 1; } } } System.out.println(); for (int i = 0; i < arrayfrumos.length; i++) { if (arrayfrumos[i] % 2 == 1) { return -1; } } return incrementari; } }
  20. Acum zi-i muma-tii ca-ti pare rau c-ai facut-o proasta.
  21. Ubuntu, e, raspunsul, la, toate, intrebarile, tale,
  22. 4879 ^ = 23804641 2380 + 4641 NU DA 4879
  23. https://gramaticalimbiiromane.ro/?link=ProfitShareSaFacBani
  24. public class MuieGO { public static void main(String[] args) { int p=1; int q=10000000; long startTime = System.currentTimeMillis(); for (int i = p; i <= q; i++) { if(check(i))System.out.print(i+" "); } System.out.println(); System.out.println(System.currentTimeMillis()-startTime + " milliseconds"); } static boolean check(long nr) { long numar = nr * nr; int lungime = String.valueOf(numar).length(); long jum1 = 0, jum2 = 0; if (lungime % 2 == 0) { jum1 = (long) (numar / Math.pow(10, (lungime / 2))); jum2 = (long) (numar % Math.pow(10, (lungime / 2))); } else { jum1 = (long) (numar / Math.pow(10, (lungime / 2) + 1)); jum2 = (long) (numar % Math.pow(10, (lungime / 2) + 1)); } return (jum1 + jum2 == nr); } } 1 9 45 55 99 297 703 999 2223 2728 4950 5050 7272 7777 9999 17344 22222 77778 82656 95121 99999 142857 148149 181819 187110 208495 318682 329967 351352 356643 390313 461539 466830 499500 500500 533170 538461 609687 643357 648648 670033 681318 791505 812890 818181 851851 857143 961038 994708 999999 4444444 4927941 5072059 5555556 9372385 9999999 2319 milliseconds
×
×
  • Create New...