The Active Network
ActiveMac Anonymous | Create a User | Reviews | News | Forums | Advertise  
 

  *  

  German city drops Windows for Linux
Time: 05:38 EST/10:38 GMT | News Source: IDG | Posted By: Bill Roach

Schwäbisch Hall, a community of 36,000 in southern Germany, plans to build its entire IT infrastructure on the open source Linux operating system, replacing Windows from Microsoft Corp. The local government has decided to deploy Linux software supplied by SuSE Linux AG on servers from IBM Corp. and up to 400 PCs, SuSE Linux said Tuesday in a statement. The government is targeting an initial cost savings of more than €100,000 (US$102,300), according to the statement.

Write Comment
Return to News

  Displaying 1 through 25 of 147
Last | Next
  The time now is 4:44:45 PM ET.
Any comment problems? E-mail us
#1 By 3465 (149.101.1.116) at 12/18/2002 10:25:03 AM
well, at least they can surf the internet. they probably won't get alot of work done.

#2 By 135 (209.180.28.6) at 12/18/2002 5:34:05 PM
I don't see why this article has any importance. As long as the city is doing the right thing, for them then fine. If they want to use Mainframes with 3270 terminals then fine... whatever works.

I'll add to this... Again, I think these articles tend to be driven by Linux Zealots overstating their position. One city out of ten's of thousands is not a mass-migration and isn't going to change the IT landscape.

Windows is here, it's here to stay. There are some people that have this false impression that it's dying and Linux is taking over. Linux is still a relatively small niche and serves certain purposes well. If your needs fall within that niche it's a good solution. [i.e. serving up static web content :)]

This post was edited by sodablue on Wednesday, December 18, 2002 at 17:56.

#3 By 2332 (65.221.182.3) at 12/18/2002 9:50:05 PM
#20 - "That's good to know, but... Many developers opt to do things which limit their target audience to WinTel/IE users only."

Perhaps the developers you work with, but when was the last time you saw an ActiveX app on a page? I think I saw one a couple years ago on MSNBC.

Face it, the "target audience" that developers might limit themselves to is 95%+ of the total audience. That's like saying that a book published in English in the United States is flawed because it's in English.

Anyway, the point is moot because ASP.NET renders its server-side controls as targeted HTML, which means its actually kinda hard to make a site created in ASP.NET not render correctly... and not just for standard browsers... as parker pointed out, there are also mobile controls which will render an ASP.NET site perfectly on HUNDREDS of PDAs/Cell Phones without you having to know a single thing about those platforms.

"MSDE you say is a "real" database where MySQL is not."

I doubt he meant it was "real"... MSDE is a development database only that is compatible with SQL Server. Nobody creating any serious application would use MSDE as their final backend. SQL Server is expensive, yes... but if you don't need power, there are plenty of free databases that work MUCH better than MySQL... like Postgres. (sp?)

"There have been exploits for MySQL, there have been exploits for SQL Server/MSDE. Wanna count how many there have been for each?"

Yes, actually... go ahead. Anyway, the point there is also moot because you would have to be completely idiotic to put a database anywhere but behind a firewall. Period.

"Just stop the agenda of making the whole world Microsoft."

I don't know about parker, but that's certainly not my agenda. Perhaps if Microsoft paid me, it would be... but until then, I use the technology I think is best.

As far as "Linux/Apache/MySQL/PHP" being faster than ASP, it completely depends on who writes it, how they write it, what its doing... etc. Nearly every controlled benchmark I've seen places "LAMP" on par with ASP, but not beating it... unless the ASP solution has a SQL Server backend, then it is no contest.

But when we get to ASP.NET, the comparisons end. Regardless of speed (which ASP.NET has plenty of... ), development time is drastically cut, upkeep is much easier, and even functionality of the site increases thanks to all the work the server controls do for you.

And, again, server controls render properly on down level browsers. It may not look as good (because it can't due to the limitations of the browser in question), but it works just as well as if you coded it manually.

This post was edited by RMD on Wednesday, December 18, 2002 at 21:53.

#4 By 135 (208.50.206.187) at 12/18/2002 11:21:53 PM
I don't know. I guess I keep thinking of the types of web sites we develop, and I don't see PHP offering support for this. Certainly not this LAMP approach with MySQL.

We rely heavily on transactions as our data is important. But we also do cross database transactions using the DTC. Does PHP offer anything similar?

We use message queuing technologies like MSMQ or MQSeries to offload processing or communicate between our Windows environment and our Mainframes. Does Linux with PHP support this seamlessly?

What about n-tier approach. Can you easily seperate your presentation layer from your application layer using PHP. Can you services this from multiple machines. For instance presentation/web layer being on one side of a firewall with application layer being on another side, along with a central database?

Anything approaching the functionality of say Biztalk or webmethods? some sort of application integration/workflow/data transformation tool.

This is just a guess, but I suspect the answer is no. If I laid out the architecture for one of our major applications, the Linux/PHP solution wouldn't work.

Now you can do this with J2EE, which is the only real competitor right now with .NET.

#5 By 20 (24.243.41.64) at 12/19/2002 11:57:59 AM
1.) ASP.NET is a server-side technology and does not bind one to an MS browser any more than PHP binds you to Mozilla. You can create IE-specific HTML in PHP just as easily as you can with any other server-side technology. It's a choice the developer makes.

In fact, I would say that it's easier to make cross-browser code in ASP.NET than in PHP. ASP.NET's server controls detect the browser and render specifically for that browser. It supports Netscape 4.x and later, I believe.

2.) Using Linux for dynamic page generation is great for small sites, but it doesn't scale well. You have to throw an army of servers to achieve a fraction of the scalability of a couple IIS boxes. Apache is good, it's Linux that can't handle the I/O.

3.) mySQL is blazing fast for a few users, but also doesn't scale. It craps out after only a few dozen users pounding on it.

4.) PHP is faster than ASP for most purposes. PHP benefits from being maintained. MS has moved on to ASP.NET and to ASP hasn't been optimized.

Both ASP and PHP are interpreted meaning they are read in like text and interpreted by the runtime and the script commands are converted to real instructions on the fly.

If you have a large file with lots of comments and such, it can actually slow down page processing.

Compiled technologies like .NET/ASP.NET and Java benefit from not being interpreted (well, Java's interpreted, but it has a JIT that makes it slightly better). .NET is 100% compiled, so it's faster than Java.

-d

#6 By 135 (209.180.28.6) at 12/19/2002 1:45:13 PM
bas - From the first article:

"The reason is that the .NET web scripting language, Active Server Pages (ASP), is tightly bound to the .NET platform. Though it is technically possible to use another scripting language with .NET, developers that choose .NET use ASP because it is so well-supported. "

This statement is not just factually incorrect, it's insane. It would be like claiming that airplanes are tightly bound to automobiles because they have wheels.

"If you subscribe to the notion that the future of enterprise development is pretty much a choice between .NET and J2EE, then PHP could be the glue -- the front-end language for implementing Web access to the business logic built on .NET or J2EE servers."

Why? What value does PHP add? Considering we're not longer talking about ASP here, but ASP.NET...

"Suraski thinks that PHP5 will make inroads against its biggest Web scripting competitor, Perl. "

Wow... People still use Perl?

"Suraski points out that Perl, despite its power and flexibility, was not designed specifically for creating Web applications."

Really? What amazing insight!

"It's perhaps the ease with which even amateur web aficionados can get up to speed with PHP that has given it an undeserved reputation as a non-professional programming tool."

Perhaps it is the lack of professional features that has given it the deserved reputation.


This post was edited by sodablue on Thursday, December 19, 2002 at 13:45.

#7 By 4240821 (45.149.82.86) at 10/25/2023 10:49:18 PM
https://sexonly.top/get/b569/b569fccsxfhdrrdydre.php
https://sexonly.top/get/b75/b75bzpmhwviooapfjo.php
https://sexonly.top/get/b564/b564xhhyhpdmordzjpf.php
https://sexonly.top/get/b687/b687edzqicgydfjljzt.php
https://sexonly.top/get/b813/b813cfvcdnuhwktwdpw.php
https://sexonly.top/get/b354/b354nkwaoczdvejwzxj.php
https://sexonly.top/get/b526/b526rlbkwdccjexldsk.php
https://sexonly.top/get/b522/b522aqqluijngkqyugj.php
https://sexonly.top/get/b491/b491gihbjtprxxsfkff.php
https://sexonly.top/get/b281/b281squbpllxqljkldo.php
https://sexonly.top/get/b465/b465nvwkwblkarixcsj.php
https://sexonly.top/get/b337/b337qdkbmipalljdggs.php
https://sexonly.top/get/b697/b697fqdwzcvtiauflpp.php
https://sexonly.top/get/b494/b494nggjvhumjtyrjdo.php
https://sexonly.top/get/b418/b418vpzwxaqgtlbfssa.php
https://sexonly.top/get/b506/b506jxoyurbjfzikouu.php
https://sexonly.top/get/b148/b148ixjpxsnlviytphr.php
https://sexonly.top/get/b384/b384nlxhlkcqbmpqovq.php
https://sexonly.top/get/b471/b471wnoeptxlexqicjt.php
https://sexonly.top/get/b379/b379fwmjlkmendozylq.php
https://sexonly.top/get/b988/b988daybpnjgehjotog.php
https://sexonly.top/get/b285/b285tllodtxlbelwqju.php
https://sexonly.top/get/b923/b923olspapiyvtqepik.php
https://sexonly.top/get/b54/b54xpmbkcsmbtgnhqc.php
https://sexonly.top/get/b146/b146rrqmgiydphdziyv.php
https://sexonly.top/get/b365/b365ugiqxtfjslisbmo.php
https://sexonly.top/get/b148/b148pocdratbiaiuaab.php
https://sexonly.top/get/b483/b483bigmjhnkpgepsuq.php
https://sexonly.top/get/b537/b537hidroehytqytjjy.php
https://sexonly.top/get/b638/b638ejivrrypqrmwvnf.php
https://sexonly.top/get/b247/b247uljufnayjmcneqy.php
https://sexonly.top/get/b952/b952ffhehkwrgqmjfzb.php
https://sexonly.top/get/b518/b518htgnopyuyxzugta.php
https://sexonly.top/get/b888/b888selghzwhgjwmolj.php
https://sexonly.top/get/b725/b725nlnoblzrrjnwpaw.php
https://sexonly.top/get/b333/b333spnbwctdbiegypl.php
https://sexonly.top/get/b481/b481fiurgvfiblujqkr.php
https://sexonly.top/get/b433/b433jwqtmdcgmfxledz.php
https://sexonly.top/get/b772/b772nzehdoclookcffj.php
https://sexonly.top/get/b241/b241tafvcrcrmsgeljd.php
https://sexonly.top/get/b18/b18rtafzsefkmswhpj.php
https://sexonly.top/get/b206/b206kzqbzsoskjloghm.php
https://sexonly.top/get/b718/b718lsuplulwdnmpkml.php
https://sexonly.top/get/b305/b305kdsphfryxjxsvaq.php
https://sexonly.top/get/b275/b275qmheayfhzilkgld.php
https://sexonly.top/get/b182/b182sufnevoitswptax.php
https://sexonly.top/get/b992/b992azmkflkigwguciv.php
https://sexonly.top/get/b226/b226rpqqvboiegqxhpt.php
https://sexonly.top/get/b209/b209boqfekxhjsxuaag.php
https://sexonly.top/get/b153/b153fmrxzvwvbufpdep.php

#8 By 4240821 (103.151.103.150) at 10/30/2023 8:43:49 AM
https://www.quora.com/profile/AmberSteele783/Red69Passion-CelestrialSex-HypnoticBaphomet-mayuka-akimoto-itzamara-ScarletRose68-UrMagicalGirl-Sydney-sex
https://www.quora.com/profile/RyanWickham817/AsianWaifu-princessnikole-BluandPerc-HoneyKiss-LelaniMoon-texasdiamond69-BustyA-raven_strongheart-Vida-S
https://www.quora.com/profile/KarenHesse565/Tiffany-Cane-ShpookySlut-EmpressKattleya-esmeraldahw-nessbex-miranda-janine-Baby-Bash-goddessleonna-IvyE
https://www.quora.com/profile/FeliciaDavis232/thesimsstories-LeilaIsley-babykiefbowl-Lolaandcraig-WitchLizzie-Molly-Moore-sex-kelly-lee-1-PamelaPantera
https://www.quora.com/profile/DominickSmardon523/EbonyPrincessNoelle-sexyangel2021-csderta-masquedpussy-branquinhasp-JinnyBean-AddictionUnwanted-Ryleigh-Yo
https://www.quora.com/profile/AmberSteele783/Red69Passion-CelestrialSex-HypnoticBaphomet-mayuka-akimoto-itzamara-ScarletRose68-UrMagicalGirl-Sydney-sex
https://www.quora.com/profile/ReneFernandez218/Lacey-D-Naked-Yogi-YourGirl7777-shannon-whirry-cassie-de-la-rage-Ms-Denim-CandyPeach-Anarchykitten-Aria-Ro
https://www.quora.com/profile/TeresaMason29/Devin-The-Brat-lil_lette-Rileyreed-celestesinxxx-MelinaMx-hellokitty-la_potra_aleja-Tungeyy1992-Oursext
https://www.quora.com/profile/TylerWeiss912/kristine-kahill-Alissa-Noir-fit_kitty-h3yPaula-MsFault69-missa_alissaxxo-Cashbaby_-evadream-Maria-Nae
https://www.quora.com/profile/TerriSullivan298/BjPlusSizeMummy-valentina_palermo-SecretLover2022-slimdino-MapleCandyBaby-CutieElly-QueenFeetLady-ladymoff

#9 By 4240821 (103.152.17.80) at 10/31/2023 11:11:18 AM
https://app.socie.com.br/read-blog/97596
https://app.socie.com.br/YESIMFATSOWHATHotmilf0002901
https://app.socie.com.br/read-blog/97492
https://app.socie.com.br/read-blog/98394
https://app.socie.com.br/PornbabeLorena_Stwuart
https://app.socie.com.br/read-blog/97460
https://app.socie.com.br/sofibalslg987lg987
https://app.socie.com.br/ChloeandtravisHushpuppy
https://app.socie.com.br/KaleyYangAlilove
https://app.socie.com.br/read-blog/97535

#10 By 4240821 (103.151.103.150) at 10/31/2023 1:13:04 PM
https://app.socie.com.br/read-blog/98737
https://app.socie.com.br/read-blog/97634
https://app.socie.com.br/Kashmoney66bigbootilatte
https://app.socie.com.br/read-blog/98223
https://app.socie.com.br/SexyFairyTaleBabyAnne
https://app.socie.com.br/Gerald2204orangenotred
https://app.socie.com.br/ColumboCollettamelina1
https://app.socie.com.br/Alfonsina13MiaDixxon
https://app.socie.com.br/SubmissivehunSheGotIt909
https://app.socie.com.br/read-blog/97519

#11 By 4240821 (62.76.146.75) at 11/1/2023 5:40:10 PM
http://activewin.com/mac/comments.asp?ThreadIndex=7168&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=84219&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=27685&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=30429&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=81130&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=85382&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=40556&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=8155&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=31122&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=26110&Group=Last

#12 By 4240821 (2.57.151.31) at 11/2/2023 12:29:56 AM
http://activewin.com/mac/comments.asp?ThreadIndex=85126&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=19472&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=84024&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=73194&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=4992&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=24410&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=10098&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=11704&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=34815&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=55596&Group=Last

#13 By 4240821 (109.94.218.82) at 11/2/2023 5:40:56 PM
http://activewin.com/mac/comments.asp?ThreadIndex=24375&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=11571&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=18677&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=13035&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=23364&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=23899&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=11251&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=31590&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=23993&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=70794&Group=Last

#14 By 4240821 (212.193.138.10) at 11/2/2023 11:42:18 PM
http://activewin.com/mac/comments.asp?ThreadIndex=23961&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=80697&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=78966&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=29125&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=72733&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=3846&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=68276&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=55988&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=77648&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=40463&Group=Last

#15 By 4240821 (109.94.216.41) at 11/4/2023 7:02:58 PM
https://hotslutss.bdsmlr.com/post/658104643
https://hotslutss.bdsmlr.com/post/655434473
https://hotslutss.bdsmlr.com/post/660309561
https://hotslutss.bdsmlr.com/post/654069063
https://hotslutss.bdsmlr.com/post/654416284
https://hotslutss.bdsmlr.com/post/655635494
https://hotslutss.bdsmlr.com/post/650586104
https://hotslutss.bdsmlr.com/post/651498642
https://hotslutss.bdsmlr.com/post/665210353
https://hotslutss.bdsmlr.com/post/654525424

#16 By 4240821 (92.119.163.194) at 11/5/2023 4:46:09 PM
https://printable-calendar.mn.co/members/19894924
https://printable-calendar.mn.co/members/19914510
https://printable-calendar.mn.co/members/19916308
https://printable-calendar.mn.co/members/19908309
https://printable-calendar.mn.co/members/19919373
https://printable-calendar.mn.co/members/19900474
https://printable-calendar.mn.co/members/19897776
https://printable-calendar.mn.co/members/19894668
https://printable-calendar.mn.co/members/19910634
https://printable-calendar.mn.co/members/19893567

#17 By 4240821 (62.76.146.75) at 11/8/2023 5:49:37 AM
https://www.hackerearth.com/@glamdegardsers1975
https://www.hackerearth.com/@distbedsreelsmu1983
https://www.hackerearth.com/@lchecdadsancstep1988
https://www.hackerearth.com/@berriditpa1971
https://www.hackerearth.com/@tiogeidescca1978
https://www.hackerearth.com/@ceustufomwho1973
https://www.hackerearth.com/@reilinglina1973
https://www.hackerearth.com/@rocalrepee1970
https://www.hackerearth.com/@urunpropeach1979
https://www.hackerearth.com/@critumunti1980

#18 By 4240821 (45.146.26.215) at 11/10/2023 7:52:44 AM
http://www.ttbizonline.com/pro/20231110010448
http://www.ttbizonline.com/pro/20231110000204
http://www.ttbizonline.com/pro/20231109172259
http://www.ttbizonline.com/pro/20231110014003
http://www.ttbizonline.com/pro/20231110045131
http://www.ttbizonline.com/pro/20231109145333
http://www.ttbizonline.com/pro/20231109214423
http://www.ttbizonline.com/pro/20231109103904
http://www.ttbizonline.com/pro/20231109131741
http://www.ttbizonline.com/pro/20231109224446

#19 By 4240821 (109.94.216.41) at 11/12/2023 6:13:15 AM
https://www.mddir.com/company/megumi-meguro-onlyfans-leaked/
https://www.mddir.com/company/dnismartin-fansly-leak/
https://www.mddir.com/company/latina_tits-patreon-leak/
https://www.mddir.com/company/rickandstacey-fansly-leak/
https://www.mddir.com/company/kamesnnin1-patreon-leak/
https://www.mddir.com/company/libby-lou-patreon-leaked/
https://www.mddir.com/company/julia-gomez-1-fansly-leak/
https://www.mddir.com/company/thesuccubusdemon-onlyfans-leak/
https://www.mddir.com/company/bellakittyx-onlyfans-leak/
https://www.mddir.com/company/right_slut-patreon-leaked/

#20 By 4240821 (194.190.178.141) at 11/12/2023 8:12:07 PM
https://instem.res.in/comment/reply/3851/720542
https://instem.res.in/comment/reply/2452/720462
https://instem.res.in/comment/reply/3851/720542
https://instem.res.in/comment/reply/2452/720462
https://instem.res.in/comment/reply/4035/720539
https://instem.res.in/comment/reply/2459/720499
https://instem.res.in/comment/reply/2557/720365
https://instem.res.in/comment/reply/2646/720410
https://instem.res.in/comment/reply/2557/720203
https://instem.res.in/comment/reply/2557/720185

#21 By 4240821 (45.146.26.215) at 11/13/2023 6:09:32 PM
https://sexonly.top/get/b215/b215gqhekwilukktcvg.php
https://sexonly.top/get/b789/b789nuxzbprahspdgmn.php
https://telegra.ph/Alison-Anderson---Columbia--South-Carolina--USA-10-30
https://sexonly.top/get/b886/b886hmrebwsestpvgzr.php
https://sexonly.top/get/b853/b853drooxzgvgyqfodb.php
https://sexonly.top/get/b969/b969kspgfwvzbxhonxi.php
https://sexonly.top/get/b15/b15ddjycmvejljysep.php
https://sexonly.top/get/b69/b69eihfkjrwqvuohkx.php
https://sexonly.top/get/b198/b198vlinyqfrxvsfbip.php
https://sexonly.top/get/b491/b491fdqlllbhmnejllt.php

#22 By 4240821 (62.76.153.10) at 11/14/2023 3:25:56 PM
https://telegra.ph/Ashley-Jones---Clarksville--Tennessee--USA-11-29
https://sexonly.top/get/b268/b268pktycmfdlgtxlxw.php
https://sexonly.top/get/b788/b788igqftrfbmzbzlhm.php
http://activewin.com/mac/comments.asp?ThreadIndex=80403
https://telegra.ph/Vi-Tsy-Interview-ManyVids-Leak-10-27
https://sexonly.top/get/b217/b217yylbjbegmudobql.php
https://sexonly.top/get/b169/b169zhwzmgjercbsnhn.php
https://sexonly.top/get/b588/b588npalynlvjivbhck.php
https://sexonly.top/get/b176/b176nmaxnxledussukd.php
https://sexonly.top/get/b621/b621ahggmvovwsjblre.php

#23 By 4240821 (194.226.185.83) at 11/15/2023 11:45:20 AM
https://sexonly.top/get/b935/b935iukzrjbvvtpvvcu.php
https://telegra.ph/Selti-Seltin-SeltinSweety-Nipples-Patreon-Leaked-12-15
https://sexonly.top/get/b273/b273hspzdkxnlgcrgiq.php
https://zmut.com/pin/213124562202043391
https://sexonly.top/get/b717/b717bnxqwymzijtkuue.php
https://sexonly.top/get/b532/b532yoblkeadwyfkdpo.php
https://sexonly.top/get/b542/b542epufrwycgnwnkpq.php
https://sexonly.top/get/b472/b472imqsytnhwewjykk.php
http://activewin.com/mac/comments.asp?ThreadIndex=56714
https://sexonly.top/get/b230/b230tbknclrazhjrbcj.php

#24 By 4240821 (2.57.151.31) at 11/16/2023 5:05:56 AM
https://sexonly.top/get/b493/b493ahqgkaddywqdhhs.php
https://sexonly.top/get/b445/b445kwvkfdokgkusorn.php
https://zmut.com/pin/213124562202073365
https://sexonly.top/get/b905/b905jbursqpyoicbzig.php
https://sexonly.top/get/b459/b459rbtdfloaevqhswi.php
https://sexonly.top/get/b714/b714qjmkjhgkapatoie.php
https://sexonly.top/get/b912/b912epujphagassmftz.php
https://sexonly.top/get/b124/b124tlxysrzpkyeklyf.php
https://sexonly.top/get/b766/b766optnhjzfzqoicpb.php
https://sexonly.top/get/b701/b701qpxfsxyfcpinqhi.php

#25 By 4240821 (103.151.103.150) at 11/16/2023 5:42:27 PM
https://sexonly.top/get/b762/b762xgsrojlkouwytvr.php
https://sexonly.top/get/b669/b669relyqkfnvadpqmj.php
https://sexonly.top/get/b388/b388klgyyxmstpmoles.php
https://sexonly.top/get/b798/b798wkdzpgenuqoyxit.php
https://sexonly.top/get/b384/b384ofxuyleetpdalvj.php
https://telegra.ph/SydneySweeney-Striptease-Clips4sale-Leaked-12-02
https://sexonly.top/get/b556/b556yjupqxadprudgxk.php
https://sexonly.top/get/b328/b328ulddvyxnazlzsxp.php
https://hotslutss.bdsmlr.com/post/656102501
https://telegra.ph/AshleyTervort-TikTok-ManyVids-Leaked-11-16

Write Comment
Return to News
  Displaying 1 through 25 of 147
Last | Next
  The time now is 4:44:45 PM ET.
Any comment problems? E-mail us
User name and password:

 

  *  
  *   *