Recommended Posts

OK guys, fresh from format havnt even installed graphics drivers... and i still cant download above 20k ( avg of 10-14k) - this annoys me greatly cos im on 1MB Broadband.. i should be getting 120k like i used to.

Im currently doing a speed test thing atm while dealing with crappy tech support people ''have you checked to see if the modems plugged in'' HAVE YOU CHECKED TO SEE IF YOUR BRAINS PLUGGED IN *chain saw noises*

I also out why huge contacts lists arent working, and because i have enough time to explain :

MSN contacts lists are sent like this

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

However... with big contact lists this seems to be happening :

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected]

m Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20G

oes%20Here

LST [email protected] Name%20Goes%20Here

LS

T [email protected] Name%20Goes%20Here

Which is incredibly strange :s.. it wont work this way... i think its something to do with the socket im using or something like that, maybe the buffer length, like its cutting off and not putting all the info through my parser routine.

Anyway when i get my pc working again the only thing i can think of to do is create a sign in in VB6 ( using winsocks ) and see if the data still comes all jumbled up :(

If anyone knows why this is happening please lemme know...

back to the tech supports....

:(

maybe.... if i can get past this contacts list problem

585482851[/snapback]

Hey Dayle.............I hope you are able to get past this problem!

Can't wait to test out and Alpha or bneta if possible & good luck to you You will defo beat Msn Messenger with this as it looks sooooo cool :D

OK guys, fresh from format havnt even installed graphics drivers... and i still cant download above 20k ( avg of 10-14k) - this annoys me greatly cos im on 1MB Broadband.. i should be getting 120k like i used to.

Im currently doing a speed test thing atm while dealing with crappy tech support people ''have you checked to see if the modems plugged in'' HAVE YOU CHECKED TO SEE IF YOUR BRAINS PLUGGED IN *chain saw noises*

I also out why huge contacts lists arent working, and because i have enough time to explain :

MSN contacts lists are sent like this

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

However... with big contact lists this seems to be happening :

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected]

m Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20G

oes%20Here

LST [email protected] Name%20Goes%20Here

LS

T [email protected] Name%20Goes%20Here

Which is incredibly strange :s.. it wont work this way... i think its something to do with the socket im using or something like that, maybe the buffer length, like its cutting off and not putting all the info through my parser routine.

Anyway when i get my pc working again the only thing i can think of to do is create a sign in in VB6 ( using winsocks ) and see if the data still comes all jumbled up :(

If anyone knows why this is happening please lemme know...

back to the tech supports....

:(

585482597[/snapback]

i also had that problem in an irc client i made, so try this code

Private Sub sock_DataArrival(ByVal sender As Object, ByVal e As System.EventArgs) Handles Sock.DataArrival

Static bufferDat As String

Dim dat As String = Sock.GetArrivedText(True)

If Right(dat, 1) <> vbLf OrElse dat.Trim.IndexOf(" ") = -1 Then

bufferDat = bufferDat & dat

Else

Interpret(bufferDat & dat)

bufferDat = ""

End If

End Sub

it basically checks if there is a line feed at the end of the data and that it contains at least a space char, dunno if msn protocol requires the line feed char though

XML if you dont mind can I ask what kind of socket your using? Having just moved up from VB to VB.net i'm using a downloadable winsock control for .net.

IRC and MSN of course use the same protocol so this might help a little.

I'll send msn screename if youd rather talk that way.

Thank You.

OK guys, fresh from format havnt even installed graphics drivers... and i still cant download above 20k ( avg of 10-14k) - this annoys me greatly cos im on 1MB Broadband.. i should be getting 120k like i used to.

Im currently doing a speed test thing atm while dealing with crappy tech support people ''have you checked to see if the modems plugged in'' HAVE YOU CHECKED TO SEE IF YOUR BRAINS PLUGGED IN *chain saw noises*

I also out why huge contacts lists arent working, and because i have enough time to explain :

MSN contacts lists are sent like this

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

However... with big contact lists this seems to be happening :

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected]

m Name%20Goes%20Here

LST [email protected] Name%20Goes%20Here

LST [email protected] Name%20G

oes%20Here

LST [email protected] Name%20Goes%20Here

LS

T [email protected] Name%20Goes%20Here

Which is incredibly strange :s.. it wont work this way... i think its something to do with the socket im using or something like that, maybe the buffer length, like its cutting off and not putting all the info through my parser routine.

Anyway when i get my pc working again the only thing i can think of to do is create a sign in in VB6 ( using winsocks ) and see if the data still comes all jumbled up :(

If anyone knows why this is happening please lemme know...

back to the tech supports....

:(

585482597[/snapback]

Aaaaah the wonderfull world of sockets.

Just to make one thing clear. NEVER expect a socket to deliver you the data in the right order. most of the time it goes fine, but it happens you get certain messages later then you might expect.

So you have to program your logic to handle this problem. I've made some multiplayer network games with some friends and this was always a problem we encountered.

nah not unless its a direct rip.

Schmoove thanks for the info bro but order doesnt matter too much here, its just that im splitting the data by lines (vbcrlf ) and FOR every line splitting by words (" "), to catch the commands... so naturaly its a bit annoying when the line breaks in the middle... i dont think its just my ISP connection issues at the moment , as KoL was unable to load his contact list, ill think of something.

nah not unless its a direct rip.

Schmoove thanks for the info bro but order doesnt matter too much here, its just that im splitting the data by lines (vbcrlf ) and FOR every line splitting by words (" "), to catch the commands... so naturaly its a bit annoying when the line breaks in the middle... i dont think its just my ISP connection issues at the moment , as KoL was unable to load his contact list, ill think of something.

585483476[/snapback]

Ohh ok I get it. Thanks!

XML if you dont mind can I ask what kind of socket your using? Having just moved up from VB to VB.net i'm using a downloadable winsock control for .net.

IRC and MSN of course use the same protocol so this might help a little.

I'll send msn screename if youd rather talk that way.

Thank You.

585483313[/snapback]

they do?!

I was at Dayles today and to say the least this LST problem has gotta be one of the worst so far (exept for his SSL which hes kind of got a cheesy way round).

The LST comes in the same order everytime and for some reason its the same contacts which are also cut off, not all the online contacts are there either.

We had a Jab at messing with the buffer sizes etc which was interesting but no Goal. Could either be the Socket or the server :no: ( could be the server ramming too much info down the socket at one time, either way will be intersting to see how he solves that one).

I was at Dayles today

585483820[/snapback]

you were??!1 get out of my house. nah just kiddin man

yeh i hope u guys understand that i honestly cant work on it at the moment, i can only just load neowin... hell even google is a challenge... i havnt actually logged into my hotmail account yet.. it just crashes.

My isp were being *holes too because they said call back in 2 hours... and surprise surprise they were closed. me --> :trout: <-- pipex

I cant even download drivers... sometimes i get less than 1k.... this is real fun :s

and for you that know i like music.... lets just say this in a err... subtle way... an album has come out that i have wanted for ages... and i have a means of getting it... if not for my predicament :pinch: grrrrrr die pipex die.... and die shaqueel the guy on the phone who talks to himself while he works, lies to me, and acts like a *hole :crazy:

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • BleachBit 6.0.1 Beta by Razvan Serea When your computer is getting full, BleachBit quickly frees disk space. When your information is only your business, BleachBit guards your privacy. With BleachBit you can free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there. Designed for Linux and Windows systems, it wipes clean thousands of applications including Firefox, Microsoft Edge, Google Chrome, Opera, Safari, and more. Beyond simply deleting files, BleachBit includes advanced features such as shredding files to prevent recovery, wiping free disk space to hide traces of files deleted by other applications, and vacuuming Firefox to make it faster. Better than free, BleachBit is open source. BleachBit has many useful features: Delete your private files so completely that "even God can't read them" according to South Carolina Representative Trey Gowdy. Simple operation: read the descriptions, check the boxes you want, click preview, and click delete. Multi-platform: Linux and Windows Free of charge and no money trail Free to share, learn, and modify (open source) No adware, spyware, malware, browser toolbars, or "value-added software" Translated to 64 languages besides American English Shred files to hide their contents and prevent data recovery Shred any file (such as a spreadsheet on your desktop) Overwrite free disk space to hide previously deleted files Portable app for Windows: run without installation Command line interface for scripting and automation CleanerML allows anyone to write a new cleaner using XML Automatically import and update winapp2.ini cleaner files (a separate download) giving Windows users access to 2500+ additional cleaners Frequent software updates with new features Going beyond standard deletion of files, BleachBit has several advanced cleaners: Clear the memory and swap on Linux Delete broken shortcuts on Linux Delete the Firefox URL history without deleting the whole file—with optional shredding Delete Linux localizations: delete languages you don't use. More powerful than localepurge and available on more Linux distributions. Clean APT for Debian, Ubuntu, Kubuntu, Xubuntu, and Linux Mint Find widely-scattered junk such as Thumbs.db and .DS_Store files. Execute yum clean for CentOS, Fedora, and Red Hat to remove cached package data Delete Windows registry keys—often where MRU (most recently used) lists are stored Delete the OpenOffice.org recent documents list without deleting the whole Common.xcu file Overwrite free disk space to hide previously files Vacuum Firefox, Google Chrome, Liferea, Thunderbird, and Yum databases: shrink files without removing data to save space and improve speed Surgically remove private information from .ini and JSON configuration files and SQLite3 databases without deleting the whole file Overwrite data in SQLite3 before deleting it to prevent recovery (optional) BleachBit 6.0.1 Beta release notes: BleachBit 6.0.1 beta is now available for testing. This maintenance-focused release includes bug fixes, updated translations, and a range of safe enhancements. This release fixes a Windows security issue that could allow arbitrary file deletion during privileged cleaning (reported by Zeze with TeamT5). It also adds new cleaners (including a DNS cache cleaner, Claude Code, and Visual Studio Code forks), support for multiple Chrome and Edge profiles, new deep scan options for developer directories like node_modules and venv, and safer, faster file shredding. All Platforms Added cleaners for Claude Code, DNS cache, and many Visual Studio Code forks. Added support for multiple Chrome and Edge profiles. Chrome can now clean downloaded AI models. Deep Scan can optionally remove venv, __pycache__, node_modules, and .angular directories. Deep Scan is faster by skipping directories on the keep list. File shredding is safer, faster, and leaves fewer recoverable traces. Improved handling of cookies, symlinks, Unicode filenames, external processes, and configuration files. Improved Expert Mode warnings and long warning dialogs. Fixed crashes related to cleaner detection, invalid Unicode, and malformed cleaner data. Clipboard is now cleared automatically after shredding files via paste operations. Linux Added AppImage support. Added cleaners for Visual Studio Code, Codeium, Librewolf (.deb), Transmission (Flatpak), and Profanity. Improved Linux trash detection, including Snap-installed applications and mounted drives. Fixed Wayland root CLI issues and several Snap-related problems. Improved package dependencies, AppStream metadata, and desktop file handling. Fixed startup crashes when Python Requests is unavailable. Windows Fixed a security vulnerability that could allow arbitrary file deletion when cleaning with elevated privileges. Added %WindowsSystem% variable support. Improved clipboard clearing using native Windows APIs. Improved installer experience on unsupported Windows versions. Reduced installer size and improved application robustness. Fixed Unicode handling, filename anonymization, Git revision reporting, and splash screen stability. [full release notes] Download: BleachBit 6.0 | Portable | ~20.0 MB (Open Source) View: BleachBit Home page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • DriversCloud 12.1.6 by Razvan Serea With DriversCloud (formerly My-Config.com), you can explore your computer easily, safely and free. The application quickly scans your PC and identifies the hardware and software components. DriversCloud then establishes a list of the different drivers compatible with your OS and hardware. Download the drivers needed for the proper functioning of your computer. To detect your drivers, DriversCloud also displays a detailed summary of your hardware and software configuration, analyzes your BSOD, monitors in real-time your PC voltages and temperatures and lets you share your configuration online. Once the hardware components have been detected, you will be able to obtain with just a few clicks the latest drivers corresponding to the identified hardware. You can record your configuration on the site for free, and can get the corresponding URL to post the configuration to technical forums, e-mail and social networks. You can also download the detection result (the configuration) as a PDF file. To protect the user's privacy and data confidentiality, a 4-level confidentiality system was created that filters the XML marks and gives control to the user. The default level can be modified in the preferences. Using the maximum level will prevent the user from publishing his configuration and generating a corresponding PDF file. In non-connected mode, each XML configuration is stored on the server for one day (for practical reasons). However, you are given the opportunity to manually delete it. Created in 2004, and continually improved, My-Config.com has established itself on the web as a free service to PC users running Windows and Linux operating systems. The service is designed to work with the most common Internet browsers (Edge, Firefox, Chrome, Safari). Download: DriversCloud 64-bit | 20.0 MB (Freeware) Download: DriversCloud 32-bit | 18.9 MB Link: DriversCloud Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Ocenaudio 3.19.3 by Razvan Serea  Ocenaudio is a full featured, fast and easy to use audio and music editor. It is the ideal software for people who need to edit and analyze audio files without complications. Ocenaudio also has powerful features that will please more advanced users. To assist ocenaudio development, a powerful toolset of audio editing, analysis and manipulation called Ocen Framework was created. ocenaudio is also based on Qt framework, a well known library for cross-platform development. Cross-platform support ocenaudio is available for all major operating systems: Microsoft Windows, Mac OS X and Linux. Native applications are generated for each platform from a common source, in order to achieve excelent performance and seamless integration with the operating system. All versions of ocenaudio have a uniform set of features and the same graphical interface, so the skills you learn in one platform can be used in the others. VST plugins support Ocenaudio supports VST (Virtual Studio Technology) plugins, giving its users access to numerous effects. Like the native effects, VST effects can use real-time preview to aide configuration. Real-time preview of effects Applying effects such as EQ, gain and filtering is an important part of audio editing. However, it is very tricky to get the desired result by adjusting the controls configuration alone: you must listen the processed audio. To ease the configuration of audio effects, ocenaudio has a real time preview feature: you hear the processed signal while adjusting the controls. The effect configuration window also includes a miniature view of the selected audio signal. You can navigate on this miniature view in the same way as you do on the main interface, selecting parts that interest you and listening to the effect result in real time. Multiselection for delicate editions To speed up complex audio files editing, ocenaudio includes multi-selection. With this amazing tool, you can simultaneously select different portions of an audio file and listen, edit or even apply an effect to them. For example, if you want to normalize only the excerpts of an interview where the interviewee is talking, just select them and apply the effect. Eficient edition of large files With ocenaudio, there is no limit to the length or the quantity of the audio files you can edit. Using an advanced memory management system, the application keeps your files open without wasting any of your computer's memory. Even in files several hours long, common editing operations such as copy, cut or paste happen almost instantly. Fully featured spectrogram Besides offering an incredible waveform view of your audio files, ocenaudio has a powerful and complete spectrogram view. In this view, you can analyze the spectral content of your audio signal with maximum clarity. Advanced users will be surprised to find that the spectrogram settings are applied in real time. The display is updated immediately when altering features such as the number of frequency bands, window type and size and dynamic range of the display. Ocenaudio 3.19.3 changelog: Fixes issues with MP4 files with more than 8 channels Fixes incorrect VBR detection for some CBR MP3 files Other bug fixes and improvements Download: Ocenaudio 64-bit | Portable | ~40.0 MB (Freeware) Download: Ocenaudio for Linux and Mac OS View: Ocenaudio Homepage | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • Week One Done
      agatameier earned a badge
      Week One Done
    • One Month Later
      agatameier earned a badge
      One Month Later
    • Week One Done
      ssd21345 earned a badge
      Week One Done
    • Contributor
      MarkHughes4096 went up a rank
      Contributor
    • Dedicated
      jordanspringer earned a badge
      Dedicated
  • Popular Contributors

    1. 1
      +primortal
      513
    2. 2
      +Edouard
      186
    3. 3
      PsYcHoKiLLa
      144
    4. 4
      ATLien_0
      95
    5. 5
      Steven P.
      76
  • Tell a friend

    Love Neowin? Tell a friend!