Programming :: Wordlist/hex Generator Without Repeating Letters.

May 18, 2011

i could find is crunch2.9 password generator but at the moment it does not suport the function that i am looking for. My aim is to generate : 10-character combinations of the following characters (lowercase) 23456789abcdef with no more then 3 same letters repeates no metter side by side or within one line (sequence) so lets say

abcdef1234 accept
fabcde1234 accept
ffabcd1234 accept
which is probably permutation with repetable string ( where abc is not equeal to cba etc .so ti speak position does metter)
fffabc1234 not acceptable -----(3 same characters)
ffabcf1234 not acceptable -----( 3 same characters event thought not side by side)

so generally we dont want 3 same characters apper in same line.

View 3 Replies


ADVERTISEMENT

Programming :: Generate Alphanumeric Characterlist - No Repeating More Then 3 Times?

Apr 5, 2011

i have spotted that script (something similar that i am looking for)

[URL]

and i just dont know how to use it.I am not a programmer myself and probably no need for learning that just to create one script! modify "wje_lq" script and run it. thing like : "Just redirect standard output to a file in the normal manner" ? and all this

I.Comment out the first definition of *character-set*, by adding a semicon at the beginning of the line.

II.Uncomment the second definition, which just uses "ABC", by removing the semicolon from the beginning of the line.

III.Comment out the first definition of *word-length*.

IV.Uncomment the second definition, which uses a word length of four.

i would like to generate :

10-character combinations of the following characters (lowercase) 23456789abcdef with no more then 3 same letters repeates no metter side by side or within one line (sequence) so lets say

abcdef1234 accept
fabcde1234 accept
ffabcd1234 accept

which is probably permutation with repetable string ( where abc is not equeal to cba etc .so ti speak position does metter)

fffabc1234 not acceptable -----(3 same characters)
ffabcf1234 not acceptable -----( 3 same characters event thought not side by side)

we dont want 3 same characters apper in same line.

View 2 Replies View Related

Programming :: Java Applets - Timed - Repeating Activities

Jan 14, 2010

So, when I program my Java applet I am expected to use an event based model, where I run functions in response to mouse clicks and so forth, and I am supposed to return quickly so that the applet can continue looping. But what if I want certain functions to run by themselves on a regular schedule (like every 200 ms or so) without blocking mouse events, repaints, and so forth?

I looked at the source code of one Java applet I found, and it accomplished this by creating extra threads. I was wondering if creating extra threads was the only way to accomplish that, or if there was some more proper way to do it built into the Applet somehow.

View 1 Replies View Related

Programming :: Perl Match Character - Random Sentence Generator ?

Aug 11, 2010

I am trying to make a random sentence generator in perl. So far I can loop it x times to make a fixed quantity of words, but I don't want to do that. Or I can let it go on until I hit ctrl-C :/

I want to have it so that when it reaches a word with a sentence terminating punctuation mark it stops.

My attempt to do that was with:

This is doing the woooosh text until ctrl-C thing...

Now however I am not sure how I can cut off everything after the punctuation mark (when it exists).

View 1 Replies View Related

OpenSUSE :: Typing Greek Letters Instead Of English Letters

Dec 12, 2010

Recently I faced a problem in typing in English in OpenSuse 11.3.When I try to type in English it shows me Greek letter and worse than that I think it is really Greek (not only in font) because when I enter my passwords or try to type a command in terminal I get error,I tested with UK and USA and all other English languages and I still have this problem. I even do reset in my keyboard layout setting and in KDE setting but it didn't help.

View 3 Replies View Related

Programming :: Use A Regular Expression In Parantheses Like ([/+[]()]) To Get The Specific Letters?

May 3, 2010

I found such simple example of awk

Code:
awk '
BEGIN { a = "1abc 2def"
b = gensub(/(.+) (.+)/, "\2 \1", "g", a)
print b }'

However I don't understand why the regular expresion in parentheses doesn't work how I woud expect. If I delete the .+ so it does the same.

Code:
awk '
BEGIN { a = "1abc 2def"
b = gensub(/() ()/, "\2 \1", "g", a)
print b }'

I wanted to use a regular expression in parantheses like ([/+[]()]) to get the specific letters.

Code:
awk '
BEGIN { a = "1abc 2def"
b = gensub(/([/+[]()])/, "//\1", "g", a)
print b }'

But why the regexp in () isn't working

View 16 Replies View Related

Programming :: Bash: Generating A Random LETTERS Sequence?

May 12, 2011

I tried googling around but i cant find anything related to this: everyone seems just interested in random numbers, so when it comes to random letters there is a lack of informations. However, i am trying to figure out a wait to get a random letters string that matches a simple rule: it must be a sequence of consonant+vowel. So for example, these are some 6 letters strings i would like to obtain: wolupa, tafoke, zewevu, cupimo.

View 3 Replies View Related

Programming :: Make A Script That Checks Input Letters / Numbers?

May 19, 2010

I would like to know how to make a script that can check that i input 3 letters and 3 numbers in some field.

i am completely noob in this programming scene, but think its quite interesting.

View 13 Replies View Related

Programming :: Write A Function That Counts The Number Of Occurrences Of A Pair Of Letters In A String?

Sep 9, 2010

Some help with this problem:Code:Write a function that counts the number of occurrences of a pair of letters in a string

View 13 Replies View Related

Programming :: How To Check If All Letters Of One String Are In Another String?

Nov 11, 2010

I have the following two type of strings1: A/D2: A/C/DI am trying to write a subroutine to check whether all of the letters in string 1 appears in string 2. If yes, return true. If not, return false. In the above example, all the letters (A and D) in string 1 are also present in string 2, so I return true.

View 4 Replies View Related

Fedora :: $PATH Is Repeating Directories

May 13, 2010

I'm running Fedora Core 12 x86_64. I started out using the default bash shell (and customized the .bashrc, etc. as necessary) but had to switch to csh for this one scientific package that requires that shell.

The issue is that my $PATH has unwanted redundancy and I can't figure out how to fix it:

Code:

The csh shell was completely new to me so I'm sure I made a mistake somewhere.

Below are the files that might be relevant for diagnosing this problem. I don't think I touched /etc/csh.login or /etc/csh.cshrc but I might have accidentally done so.

Code:

Code:

View 8 Replies View Related

General :: Repeating The Command After One Execution?

Oct 13, 2010

I have seen command like $rm aa dd cc bb ee then something like $ >> zz // it removes zz also Where aa dd cc bb ee zz are the files in my directory. Do not know exactly.

View 6 Replies View Related

Debian :: Create File With Repeating Pattern?

Jul 22, 2010

I want to create some files of a specific size containing a repeating pattern. I did some research and found that I can create a file and fill it with (fairly) random data by using dd like so: dd if=/dev/urandom of=myfile.dat bs=$(( 1024 * 1024 )) count=100 (Creates a 100 MB file.) I found that here: Quickly creating large files.

Rather than fill a file with random data, I'd like to use these patterns: 0xaa, 0x55, 0xff, and 0x00 (one per file). Is there a simple way to accomplish this?

View 8 Replies View Related

Fedora :: Repeating Font Problem With Letter 'r'

Apr 30, 2010

I have a weird font problem that occur from time to time on fedora 12,I suspect gdm-user-switch-applet to be the culprit,but I can't say for sure.notice the weird 'r' letter.

View 1 Replies View Related

General :: Why MemTest Repeating Single Test

Jun 20, 2010

Bought computer 11 months ago, immediately there were problems. What would happen is, when I logged in after a long period of shut down, the system would BSOD. Then I would restart and everything would be fine, until the next time I shut down for a long time (8ish hours) and got back on. I sent the laptop in (a couple times) and they eventually replaced the RAM and the BSODs went away. This is all on Windows 7 (well started on Vista, switched to Windows 7).

I recently set up a dual boot with Windows 7 and Ubuntu 10.04. I'm experiencing crashes on Ubuntu (the whole system just freezes, can't operate mouse, keyboard, or anything) and the behavior is similar. When I log on after a long period of shut down, the system will crash, but if I restart (actually I have to wait 10 minutes before I restart, if I restart immediately it will crash again) then it is fine, until the next period of long shutdown.

So I'm thinking it's bad RAM, so I downloaded Memtest and am testing each of my sticks (they are each 2GB) individually in the same connector thing (don't know what it is called, whatever the sticks attach to). The test for the first one passed with flying colors. However, the second one is having problems. On test #2, the memtest repeats itself, continuously looping through 0-32767 errors on the right side.

My laptop is an Asus G50VT
The 2 most interesting lines...
Highest Error Address: 000fffffffc - 4095.9 MB // does this make sense? 4095.9 MB on a 2GB stick?
Test 2: 32767 // the 32767 loops back around to 0 and repeats

View 1 Replies View Related

Ubuntu :: Continually Repeating Kernel Error ?

Mar 28, 2010

I have a kernel error that repeats itself every few seconds that Ubuntu is up. After a couple of hours my /var/log file is up to 625M. It doesn't seem to hurt anything, but I would like to know what's going on.

Here it is in my kernel log:

Code:

Here is its first appearance in dmseg. It repeats mixed in with other stuff untill the end of the log.

Code:

View 3 Replies View Related

Ubuntu :: Repeating GUI Login After Latest 10.04 Updates?

Aug 24, 2010

I have an MSI U100 Winbook with Ubuntu Workstation 10.04 LTS newly installed (about 4 days ago).

The update manager displayed about 15 or so updates for my 10.04 installation which I installed. Upon reboot, I can not successfully login to the desktop. It will take my username/password, the screen will go black for a couple of seconds, then the error sound, and back to the login dialogue.

A tail on /var/log/messages displays:

atkbd.c: Unknown key released (translated set 2, code 0xf7 on isa0060/serio0)
atkbd.c: Use 'setkeycodes e077 <keycode>; to make it known.
composit sync not supported

These messages keep repeating. I am able to login at the console just fine. I have enabled root login but get the same issues logging in as root. I have googled and found several articles and postings involving these messages but they are all in reference to upgrading from 9.x to 10.04. I did not upgrade and did not experience the freezing of applications as noted in those posts.

View 1 Replies View Related

Slackware :: When Yu Played An LP With A Scratch, The Track Keeps Repeating?

May 28, 2010

I have 13.0 installed, everthing works OKI installed 13.1 on a separate partition, and dualbootWhen I use 13.1, there is a problem with sound.It's like in the old days when yu played an LP with a scratch, the track keeps repeating.When I move the mouse, sound will continue OK for a few seconds, then same problem.There is no difference, if I use KDE, XFCE, or just boot in runlevel 3 and use the command lineOnly thing I can find in the logs:Quote: May 28 06:37:10 cannabis kernel: hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.In 13.0, there is not such a line in the logs.Some info:Quote:

00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
Subsystem: Fujitsu Technology Solutions Device 1107
Flags: bus master, fast devsel, latency 0, IRQ 22

[code]....

View 14 Replies View Related

Ubuntu :: M3U Playlist Generator Using LS?

Jul 18, 2010

I am trying to emulate a .bat file I have on Windows. The script turns all the mp3 files into a m3u file.So far I have found the command "ls -1 >playlist.m3u *.mp3" this works great but what I want is to drag a file into the folder an album is in and then double click and it will run the command. I tried making a launcher and put that command on it, it seems to open up a terminal window but no playlist.m3u is generated. Could you tell me what I am doing wrong?

View 5 Replies View Related

Debian :: Wine Application Repeating Mute And Back Again And Again

May 27, 2010

Mainboard: ASUS A8N-SLI. X window manager:GNOME. When in wine application,such as starcraft or "Plants vs zombies",Sound is on for several seconds then mute several seconds then repeats......

Audio Controller info from Device Manager:
ALSA Capture
NVidia CK804 with ALC850
/dev/snd/pcmC0D0c
NVidia CK804 with ALC850
/dev/snd/pcmC0D1c
[Code].....

View 1 Replies View Related

Ubuntu :: Count The Largest Number Of Repeating Characters?

Jul 12, 2010

I'm trying to find a script that will return me the largest number of repeating characters. Say, I have the following line in a text file: 12345AAAAA6789AAA

I want it to return 5, because "A" is repeated 5 times in this line (more than 3 at the end).

View 6 Replies View Related

Ubuntu :: Start Over Cuz Used A HTML Generator?

Mar 3, 2011

I have been trying to teach myself some html. but most of the tutorials are so dry i cant concentrate long enough to read them.I normally do minor tech support for friends and fam it was suggested i make a webpage but i dont know html I think i need to start over cuz i used a HTML generator and i dont think its as organized as it could be all i really need now are some images maybe a banner ive been lookin at how to add images to my html but im having issues getting it positioned and most of my text is on the left of the page

dont laugh i like to consider my self quite computer literate but im a horrible noobin when it comes to HTML im not looking to build a site, just a simple webpage i got some help here earlier but it was mostly links to more Tuts

View 8 Replies View Related

General :: How To Run GENSEN Topology Generator In NS2

Jan 18, 2010

I downloaded GENSEN topology generator i got everything as .cc and .h files but i dnt know how to run GENSEN topology generator in NS2..?

View 1 Replies View Related

Software :: Password Generator For FTP Accounts?

Feb 9, 2010

Not sure if this goes here or under Security, however, I have hacked together some code from two different sources to make a password generator for FTP accounts.Question: How will the "strength" of an eight character password generated by the following code compare to a human generated eight character password? Will they be equally as strong?Is reading from /dev/urandom good/better/worse then just using RANDOM()? Will "salting" either result add more "strength"?Password Generator.

[Code]...

View 11 Replies View Related

Ubuntu :: Repeating - Random Total Freeze - New Install - Troubleshoot

Oct 17, 2009

Ubuntu 9.04, all updates
Latest firmware, etc
abit SG-95 motherboard
2 GB Ultra DDR2
Intel Celeron 360 cpu
PNY GeForce 9500 GT video

Started 2 weeks ago, random and total freeze of system (video, keyboard, mouse).

Nothing useful in th log, other than it occurs at the same time syslogd restart show up in the log.

I don't even know where to begin, or how to troubleshoot the issue if nothing shows up in the log... could use some help, please.

Problem occurs with or without the nvidia drivers installed. Ubuntu or windows, same thing..connected or not connected to the internet

I've ran every memory test I can find, with no issues reported. HD seems OK. No other symptom that I can find, other than it croaking, usually when I'm in the middle of a broadcast or recording.

Is the only machine I have for now, I need to figure out what's wrong and replace it as quickly as possible, so I can get back to work.

View 2 Replies View Related

OpenSUSE Wireless :: Intel 3945ABG, 11.3,11.4, Repeating DL Speed Drop-offs?

Apr 23, 2011

It's also because I've never had any big problem. The last openSUSE I used without problems was/is 11.2(I still use it as main desktop because of problems since 11.3).The problem is - the DL speed is repeatedly drops down to around 156KB/s albeit my top speed of router-NIC combination is at 21-22MB/s. When this happen and open network manager and click/reload my wifi or restart wireless or even computer, the speed is back at the top. But after few seconds, minutes it drops down again, and so on. I made some images(to see it on the network manager draphs):after that drop-off:and restart wireless:Best chance to see it is when downloading more files with FreeRapidDownloader or JDownloader. Upload speed is OK. The first time I've seen this problem in 11.3, which i've skipped in hope that 11.4 will be ok and now, as the EOL of 11.2 is coming I'd like to go on.It's also desktop and installation media independent(Gnome works similar, DVD, LiveCD).I've checked many other distributions and none of them had this problem. But openSUSE is my love, so i need and want to solve it

View 9 Replies View Related

Ubuntu Networking :: Repeating Disconnect With Edimax Ew-7318 - Every Few Minutes Or Seconds ?

Aug 6, 2010

I have a usb wireless card called "edimax ew-7318" i used it for a year and it was great- worked out of the box. recently i've been having repeating disconnect problems every few minutes or seconds it will disconnect and then reconnect again

In system log i get:

Code:

It seams like a physical hardware problem but i cant find any physical fault on the card itself.

View 4 Replies View Related

Software :: Count And Eliminate A Repeating Char (-) Leading Up To A Needed Sequence?

Apr 22, 2011

I have a file that contains a number of lines of DNA sequences like the single (yet very long) line below. There are far too many trailing and ending dashes then is needed in the file (however some are needed so I cant just delete all leading and trailing dashes).Therefore, I want to count the number of dashes leading up to the first base (either an A,C,T, or G) for every line in the file. I then want remove the smallest number of leading and trailing dashes among all the lines from each line in the file.So basically lets say the smallest number of trailing dashes between all lines in the file is 300 and the smallest number of leading dashes between all lines in the file is 500 dashes. I then want to subtract 500 dashes from the beginning of every line and 300 dashes from the end of every line. I hope this explanation is clear.

Code:
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

[code]....

View 4 Replies View Related

Ubuntu :: Set VLC As Thumbnail Generator For Videos In Nautilus?

Apr 29, 2010

Is there a way to put VLC as default thumbnail generator for Videos in Nautilus?. I removed totem from system because i never use it..

View 1 Replies View Related

Ubuntu Servers :: Any Android Or Any Other Smartphone OTP Generator?

Jan 7, 2011

I have a server Ubuntu 10.04.1 and I have a medical site in this server (openemr).Due to medical data in that site/server I want to implement a OTP (one time password) for accessing the sites folder.And if there is any Android or any other smartphone OTP generator?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved