a way to encode information to make the information unintelligible.
Questions tagged [scramble]
119 questions
0
votes
1 answer
How do I unscramble a scrambled word?
Supposed I have an array of char {A,B,C,D,E,F} and the order number is 3
Then, the scrambled word is as follow :
The first 3rd (order number) character, C is removed and saved.
{A,B,D,E,F} , {C}
Start from the following character which is D, and the…

ZeeJ
- 23
- 6
0
votes
2 answers
scramble function won't output
this function will not give me an output when tested in python's IDLE:
import random
def scramble(string):
rlist = []
while len(rlist) < len(string):
n = random.randint(0, len(string) - 1)
if rlist.count(string[n]) <…
0
votes
1 answer
Is there a piece of software that can scramble/blur part of an audio file automatically?
This is my second question ever posted on here, so please let me know if I have done something wrong.
I am faced with an interesting issue today. I work for a call center and one of the clients my company verifies information for wants to gather…

Justin Carroll
- 21
- 1
- 3
0
votes
1 answer
Blackberry scrambled device ID in 8 characters unique
I need to scramble Device IDs on the Blackberry for privacy matter.
When I call the function DeviceInfo.getDeviceId() I got a 9 characters number. After convert it in Hexa, I got the real PIN number for the device (or device ID depends how you call…

Dachmt
- 2,079
- 4
- 29
- 45
0
votes
1 answer
How to scramble specific elements within an image?
Although I am able to successfully scramble images (using JigSaw, or RANDBLOCK), I cannot figure out how to scramble specific matrix elements (blocks) within each image. I am unable to attach images, so precisely what I require is shown in image…

Maria Kelly
- 55
- 4
0
votes
1 answer
Better VB.NET String Scrambler?
I needed a function to take a string phrase and scramble it. So I wrote this, but I'm wondering if there is a more efficient/faster way to do it?
Public Function Scramble(phrase As String) As String
Dim rand As New Random()
Dim…

Chris G. Williams
- 232
- 1
- 16
0
votes
1 answer
Scramble a String Using C
I've just started learning C this semester after primarily learning Java and I've been asked to create a program which allows the user to enter in a string, and then scramble the letters inside their string.
#include //Alows input/output…

Ben Parry
- 133
- 1
- 4
- 19
0
votes
1 answer
KineticJs jigsaw puzzle scramble
I currently doing a jig-saw puzzle HTML5 Project, now i am stuck with that i want my puzzle pieces be all around the container when i start playing, anyone can help me with the start? thanks.
function jigsaw(){
var imageObj = new Image();
…

user3709279
- 49
- 5
0
votes
0 answers
Randomise jig-saw puzzle into different position?
I am doing a jig-saw puzzle project, trying to randomise my pieces into different position and angle. Anybody got an idea of how do i start? Currently using kineticjs v4.3.3. Any way i can do the randomising? Thanks :)
stage.add(layer);
}
P.S :…

user3709279
- 49
- 5
0
votes
2 answers
How to echo variables randomized
I'm learning php on a very basic level and need som assistance.
I want to echo variables from one file to another. I'll try to reproduce:
folder/file1.php
file1.php contains 3 different php scripts:
php $var1 = "Hello"
php $var2 = "Goodbye"
php…

doob
- 143
- 1
- 3
- 10
0
votes
3 answers
Visual Studio weirdness
I have no one else to count unless this fantastic community, I know this is a non-programmer question but I can't figure it out why this is happening.
To a client I developed, using 960.GS a layout with a simple login user page / choose product /…

balexandre
- 73,608
- 45
- 233
- 342
0
votes
3 answers
Javascript text Array Data Scrambling and Descrambling
I am looking for super fast and compact Javascript code or function to scramble and descramble text stored in Arrays.
I only want this text not readable when the user go into "View Source" mode with the browser.
There are many options like add fixed…

Kjartan Sigurdsson
- 13
- 3
- 8
0
votes
2 answers
Scrambling an array in idl
I was wondering if there is a module in idl that one can use to scramble an array of floating point numbers. I tried using scramble.pro but the problem is that it returns integers, and if I try to use float it doesn't return the exact numbers i…

user2043160
- 21
- 5
0
votes
1 answer
Scrambling lines from file in Python
I have a file containing large strings, and I need to scramble each and every one of them.
This is a portion of my code which does the scrambling.
for line in filein:
zzz = line.strip('\n').split()
yyy = list(zzz)
…

Joe
- 1,378
- 5
- 20
- 32
0
votes
2 answers
Sketchup crashes with.rbs scrambled plugin
I have a plugin for Sketchup that is used by clients, and because this I need to Scrambler it to create a .rbs file.
When the file is .rb, works perfectly, but when I scramble it to .rbs, the plugin crashes the Sketchup on Startup.
Anyone know these…

Júlio Griebeler
- 842
- 2
- 8
- 20