SunnyD commented on mIRC Snippet: Yet another Random password generator  -  5 days ago
Seems much more compact than the one I rigged up a few days ago for a snippet I used to generate MD5 Hashes from random strings, or passwords if you will.
SunnyD commented on Web Snippet: URL Shortener  -  12 days ago
Looks nice. It'd be convenient if it could automatically copy it to your clipboard. :)
SunnyD commented on mIRC Snippet: How to do /me on mIRC  -  14 days ago
Why?
SunnyD commented on mIRC Snippet: Extremely simple Blacklist  -  17 days ago
Having to navigate two or three menus just to add or remove a name isn't exactly motivating for those looking for a snippet like this. Unfortunately, feature rich is what attracts potential users, because it's fast, easy, and maintenance free.

At the very least it should have a utility to write the blacklisted names. As it is now, the bl-nicks only echoes a value; not return it. Which means you'd need to run the command, copy the result, add new nicks, and set them. Efficiency is key.
SunnyD commented on C++ Snippet: vfscanf function (glibc-2.13)  -  Apr 02, 2013
Something's up with the page. It jumps straight to a blank page with "2013" written on it. That being said, if the code is now obsolete, and I'm assuming it's taken directly from the C library, why post it?
SunnyD commented on mIRC Snippet: How can I kick someone for Repeating?  -  Mar 14, 2013
You'll probably want to make it more lenient. Repeating something twice is hardly enough to merit a ban.

That being said, this really isn't the place to post code and ask questions. It's more to demonstrate, and publicize your working code.
SunnyD commented on mIRC Snippet: Automatic Identify To Services  -  Mar 11, 2013

Code

 

Careful about using only one "=" to compare strings. More often than not that will assign a value instead of being interpreted as an operator.
SunnyD commented on Java Snippet: Student Record  -  Feb 28, 2013
What is it supposed to do? I see some GUI components, but nothing to clue me in. Also, I find it to be better to instantiate JLabels (since they provide no real functionality) within the add statement. Unless you plan on adding events to it, it's quicker this way, and saves you a bit of memory. Nice seeing some Java.
SunnyD commented on mIRC Snippet: Repeat moniter highlight  -  Feb 25, 2013
Brackets................... This would throw a "Check Engine" light before it even got into a script file.. It's imperative you have a closing bracket for every opening bracket. I've tallied up at least 6 - 7 missing. Sloppy.

I'm at a loss for words at how many times I've had to point that out this week on a number of snippets. It's just .. Wow.
SunnyD commented on mIRC Snippet: Starburst Inputs  -  Feb 16, 2013
Here's a handy little algorithm I found in my extremely dusty mIRC folders.

Code

 

It'll allow mode evaluation for valid shorthand expressions. Triggered by using "+" or "-" accompanied by a mode value and parameters.

Code

 
SunnyD commented on mIRC Snippet: light toolbar beta  -  Feb 13, 2013
It's important to include all resources required for the posted snippet to function. I see you call the use of a DLL, yet have no link to the DLL, nor is it included with the snippet. Along with multiple executables, and sound files.

Be sure to "mainstream" your code so it doesn't require an enormous amount of adaptation to operate even partially proper. Personal code make bad snippets to share for that very reason.
SunnyD commented on jQuery Snippet: Using code tags and jQuery to dynamically load CodeMirror Instances  -  Feb 12, 2013
Nice, and clean interface. I was looking into some JQuery, playing around with some web development. Still am actually, time permitting. It's a nice "short-hand" to Javascript if you will.
SunnyD commented on mIRC Snippet: Bad Words kick  -  Feb 01, 2013
I think you can set bad word kicks on the channel modes itself. That being said, most of these can be combined using regex, among other wildcard matching aliases.
SunnyD commented on .NET Snippet: Binary Conversion (C#)  -  Dec 12, 2012
The "Mono" compatibility framework applies an environment that'll allow C# source code to compile to an executable that the native OS can understand. I'm not sure if it allows other .NET languages as well, but it's a neat project for development abroad. http://www.mono-project.com/Main_Page
SunnyD commented on .NET Snippet: Binary Conversion (C#)  -  Dec 12, 2012
It's a surprisingly refreshing language given the similarities. Visual Studio is remarkably nice compared to what I had been using (TextPad, NetBeans, etc..), and is very nice in regards to creating desktop applications thus far. I'll still use Java for somethings, like Applets or others of the like, but C# is more acclimated to Windows (obviously), making many tasks easier.
SunnyD commented on .NET Snippet: Binary Conversion (C#)  -  Dec 11, 2012
When converting a character to an integer value it's already in decimal. All this does is take that decimal value and sequence it by assigning a "1" at the index(s) which add up to the decimal number numerically.
SunnyD commented on .NET Snippet: Binary Conversion (C#)  -  Dec 11, 2012
I'll give it a go.

http://msdn.microsoft.com/en-us/library/windows/apps/hh974581.aspx -- A thorough guide for making Windows Apps with what looks like any Windows based languages. VB, C#, C, C++, HTML/CSS/JS, XAML, etc..
SunnyD commented on .NET Snippet: Binary Conversion (C#)  -  Dec 11, 2012
VS Studio has some really nice tools for UI development of Windows Store apps. Templates, and grids of the like. That being said, I like how C# can work more interactively with Windows instead of being bottle-necked like Java seems to be, but that's to be expected since it IS developed by Microsoft. Lol.
SunnyD commented on Java Snippet: Java Token Package  -  Dec 07, 2012
Lol, no. It's all Open Source here. Use it however you like.
SunnyD commented on Java Snippet: String encoder/decoder  -  Dec 03, 2012
Yeah, changed it. I do that by default for most packages because I hadn't intended on using them outside the package.
SunnyD commented on Java Snippet: String encoder/decoder  -  Dec 03, 2012
Updated as per your suggestion. I may try to incorporate other encoding methods to add some functionality to it, namely binary numerical systems.
SunnyD commented on Javascript Snippet: RoCanvas  -  Nov 27, 2012
@pimteam I see what ProIcons is speaking of. Using various shape tools produces an effect quite similar to Windows 98 when your computer froze. You can drag it all over the screen and it simply burns the re-sized shape into the canvas erasing what was underneath it.
SunnyD commented on Snippet: Keylogger  -  Nov 19, 2012
I thought something was amiss when a simple keylogger was over 1300 lines in length. However, keyloggers in any language tend to be short without any extra features.
SunnyD commented on Python Snippet: Simple Python IRC bot.  -  Nov 15, 2012
So, you're gonna litter the whole snippet with personal code so the user has to spend their time cleaning it up just so they can use it? For shame..
SunnyD commented on Python Snippet: Simple Python IRC bot.  -  Nov 15, 2012
Also, if you're going to share a snippet with the public, make sure to twice over your code and make sure that it's flexible enough to work for everyone not just yourself.

Code

 
SunnyD commented on Python Snippet: Simple Python IRC bot.  -  Nov 15, 2012
Nice to see some Python, but IRC frames seem to be abundant in this section. Good work though, every time I see Python I'd like to learn it, but never get around to doing so. Lol.
SunnyD commented on Java Snippet: Windows Registry Manager  -  Nov 14, 2012
Thanks a lot. :) Started it a couple days ago, and sporadically worked on since then. I did spend a few hours this afternoon fine tuning, and debugging.
SunnyD commented on Snippet: Keylogger  -  Nov 13, 2012
Yuck.. AHK. Seems very long winded for a Keylogger that essentially captures and writes to a file. Of course that's what happens when you get a regurgitation of well established languages.
SunnyD commented on CSS Snippet: Disable text selection  -  Nov 08, 2012
Could be used as a mechanism much like what Wikipedia uses, prevents the text from being immediately ripped off into a plagiarized piece of work. However, Wikipedia, I believe, actually watermarks or modifies the copied text so unless you type it word for word, it's painfully obvious you didn't write the material.

Not that.. I would know or anything... *whistles*
SunnyD commented on Dart Snippet: Canvas Bounce in Dart  -  Oct 10, 2012
Yeah, I noticed when you click on another tab, then back to it. It seems like the balls get stuck on the edges if you reopen the page while they're touching an edge.
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. Next
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.