Beiträge von Jenso
-
-
-
-
-
-
Der große Cash?? -
Andie Graph: Texas Instruments Taschenrechner emulieren https://play.google.com/store/…ails?id=net.supware.tipro (ROM muss selbst geladen werden, Tipp: ticalc.org)
Wolfram Alpha https://play.google.com/store/apps/details?id=com.wolfram.android.alpha&hl=de
Mensa-App (gibts bestimmt auch für deine Uni^^) https://play.google.com/store/search?q=mensa
Ne App für die Öffentlichen Vehkehrsmittel der Stadt und die App der DB https://play.google.com/store/…ls?id=de.hafas.android.db
Google Kalender (vorinstalliert) -
hab das ganze jetzt so gemacht:
PHP- $mh = curl_multi_init();
- $handles = array();
- while($row = $statement->fetchArray()){
- $link = new Link($row['linkID']);
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $link->url);
- curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0');
- curl_setopt($ch, CURLOPT_TIMEOUT, 5);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch,CURLOPT_VERBOSE,false);
- curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch,CURLOPT_SSLVERSION,3);
- curl_setopt($ch,CURLOPT_SSL_VERIFYHOST, false);
- $handles[] = array('linkID' => $link->linkID, 'handle' => $ch);
- }
- foreach ($handles as $handle){
- curl_multi_add_handle($mh, $handle['handle']);
- }
- $running = null;
- do{
- curl_multi_exec($mh, $running);
- } while ($running);
- foreach($handles as $handle){
- $codes[] = array('linkID' => $handle['linkID'], 'code' => curl_getinfo($handle['handle'], CURLINFO_HTTP_CODE));
- curl_multi_remove_handle($mh, $handle['handle']);
- }
- curl_multi_close($mh);
- foreach($codes as $code){
- if($code['code'] >=200 && $code['code'] < 400){
- $editor = new LinkEditor($link);
- $editor->update(array('isOnline' => 1));
- }
- else{
- $editor = new LinkEditor($link);
- $editor->update(array('isOnline' => 0));
- }
- }
läuft seehr fix
-
mit cURL komme ich auf verbleibende 3 Falschmeldungen, darunter StageTwo:
PHP- while($row = $statement->fetchArray()){
- $link = new Link($row['linkID']);
- //ini_set('user_agent', 'Mozilla/5.0 (compatible; codeQuake Linklist V2.0 +http://codequake.de)');
- //@$headers = get_headers($link->url);
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $link->url);
- curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0');
- curl_setopt($ch, CURLOPT_TIMEOUT, 5);
- curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt ($ch,CURLOPT_VERBOSE,false);
- curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch,CURLOPT_SSLVERSION,3);
- curl_setopt($ch,CURLOPT_SSL_VERIFYHOST, false);
- $page = curl_exec($ch);
- $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
- curl_close($ch);
- if($code >=200 && $code < 400){
- $editor = new LinkEditor($link);
- $editor->update(array(
- 'isOnline' => 1
- ));
- }
- else{
- $editor = new LinkEditor($link);
- $editor->update(array(
- 'isOnline' => 0
- ));
- }
- }
//thante Edit: Ups jetzt sind sie weg, hatte nach der letzten Änderung vergessen das Skript auszuführen^^
-
Hey Leute, ich schreibe gerade an einem Script dass Links aus einer DB auf Online/Offline prüfen soll.
Dazu nehme ich get_headers();. Leider kommen mir hierbei false-positives auf und das Skript läuft recht lange (55 Links).PHP- while($row = $statement->fetchArray()){
- $link = new Link($row['linkID']);
- ini_set('user_agent', 'LinkCheck 1.0');
- @$headers = get_headers($link->url);
- if($headers != false){
- $code = substr($headers[0], 9, 3);
- if(intval($code) < 400){
- $editor = new LinkEditor($link);
- $editor->update(array(
- 'isOnline' => 1
- ));
- }
- else{
- $editor = new LinkEditor($link);
- $editor->update(array(
- 'isOnline' => 0
- ));
- }
- }
- else{
- $editor = new LinkEditor($link);
- $editor->update(array(
- 'isOnline' => 0
- ));
- }
- }
Wie krieg ich vor allem die 11 falschen Offline Meldungen weg (darunter auch stagetwo)
-
-
Styles: http://www.bennboard.de/index.php?page=Board&boardID=167
Plugins: http://www.bennboard.de/index.php?page=Board&boardID=151Hatte mal noch mehr Seiten, fallen mir aber leider nicht mehr ein^^
Naja ganz klassisch: http://www.woltlab.com/de/pluginstore/weitere Stile:
http://www.cls-design.com/
http://artistadd.com/
http://www.style-emotion.org
https://kittblog.com/weitere Plugins
http://codequake.de
http://technex.org
http://wcfsolutions.com
https://www.viecode.com/support/index.html
http://www.wbbaddons.de/
http://wbblite.com/database/
http://wbb-center.de/download/index.php?page=Indexund noch viel mehr
-
-
Emil Bulls (schon 6 mal live erlebt^^)
Killswitch Engage (neues)
Killswitch Engage (älteres)
-
-
-
-
Das System kann man hier vergessen. Auf StageTwo wird nicht der Hilfreichste sondern der witzigste Troll Post makiert. (Zumindest fast immer)
Bei mir ist das teil aber auch irgendwie verbugt.Gruß
das find ich gut, so find ich immer den amüsantesten Post -
-