Tagged Questions
The shorten tag has no wiki summary.
69
votes
14answers
14k views
How to code a URL shortener?
I want to create a URL shortener service where you can write a long URL into an input field and the service shortens the URL to "http://www.example.org/abcdef". Instead of "abcdef" there can be any ...
22
votes
11answers
6k views
How to convert an integer to the shortest url-safe string in Python?
I want the shortest possible way of representing an integer in a URL. For example, 11234 can be shortened to '2be2' using hexadecimal. Since base64 uses is a 64 character encoding, it should be ...
10
votes
3answers
6k views
Shorten Zend Framework Route Definitions
How can I shorten the definition of my custom routes in Zend Framework? I currently have this as definition:
$route = new Zend_Controller_Router_Route(
":module/:id",
array(
"controller" => ...
7
votes
5answers
6k views
smart way to shorten long strings with javascript
Does anyone have a more sophisticated solution/library for shortening strings with JavaScript, than the obvious one:
if(string.length > 25) {
string = string.substring(0,24)+"...";
}
6
votes
2answers
1k views
Shortening/Rehashing UUIDs
first of all, I want to assure that I'm aware of the fact, that rehashing is a sensible topic. However I'd like to hear some opions of you, what approach you would take here.
I'm building a ...
5
votes
3answers
61 views
How to correctly make an utf8 string shorter in PHP
I have some strings in my PHP code that need to be shortened if they are too long.
For example if a text is something like this:
Hi, I would like to tell you how wonderful this is.
It would ...
5
votes
5answers
4k views
Using wildcard for classpath?
G'day everybody,
I have been using so many 3rd party libraries(jar files) that my CLASSPATH is completely messed up as i have to include the path for every single jar file that i use.
...
4
votes
4answers
242 views
Python Code Shortening
I was trying to solve this problem here :- https://www.spoj.pl/problems/PHIVAL/
The questions asks you to output as many decimal digits of the golden ratio (1+sqrt(5))/2 as possible and also try to ...
4
votes
3answers
95 views
Ruby: Multiply many variables with the same name
I'm new to ruby. Is there any way how can I shorten this code? Thanks
plans.each do |plan|
total = plan.landline.to_f * @landline.to_f
total += plan.vpn.to_f * @vpn.to_f
total += ...
4
votes
6answers
1k views
Shorten array length once element is remove in Java
Note:
Following is my homework/assignment, feel free not to answer if you will.
I want to delete/remove an element from an String array(Set) basic, I'm not allowed to use Collections..etc.
Now I ...
4
votes
2answers
1k views
Shorten a text and only keep important sentences
The German website nandoo.net offers the possibility to shorten a news article. If you change the percentage value with a slider, the text changes and some sentences are left out.
You can see that in ...
3
votes
8answers
150 views
Shorten code for “if, else” functions
I have a slider with a maximum value of "9". Every Value shall change the text of a Label.
I can only think of this method right now:
private void Slider_Scroll(object sender, EventArgs e)
{
if ...
3
votes
2answers
148 views
Anonymize IP logging in nginx?
To respect the privacy of my users I'm trying to anonymize their ip addresses in nginx log files.
One way to do this would be defining a custom log format, like so:
log_format noip '127.0.0.1 - ...
3
votes
5answers
4k views
jQuery: shorten string length to fit a set width
I have a table, and in each cell I want to place strings, but they are much wider than the cell width. To prevent line break, I would like to shorten the strings to fit the cell, and append '...' at ...
2
votes
4answers
112 views
c# Shorten int into case sensitive code
There are 26 characters in the alphabet (abc..yz) and 10 digits (0..9). That gives us a lexicon of 62 characters to use if we go case sensitive.
At the moment we are building a part of a filename ...
2
votes
3answers
56 views
Python: how can I import the namespace of some object to current namespace?
I have a Python class, which contains several nested parameter groups:
class MyClass(object):
#some code to set parameters
def some_function(self):
print ...
2
votes
5answers
177 views
How can I remove one of these if statements and shorten the code?
I have the following code. The only problem is that we run it through a checkstyle program and it comes up with the error Cyclomatic Complexity is 11 (max allowed is 10). I would like to know how can ...
2
votes
6answers
118 views
How can I shorten this code snippet?
I'm sorry for the vague title, I think you really have to see the snippet to know what I mean:
float[] foo = new float[3];
FillFoos(foo);
return foo;
I'd like to have that in one line (I use this ...
2
votes
5answers
202 views
jQuery: shorten code
Can this code be shorten in some way? I've tried several ways to compact it, but I can't get it to work:
//Customer info
$('input#state-field-a, input#state-field-b').hide();
...
2
votes
5answers
393 views
javascript/php - shorten string to fit into a certain # of lines
I have a string that must fit into a box, and must be at most 3 lines long. To shorten it, I plan to truncate it and end it with '...'. I could shorten it to a certain # of characters but if i make it ...
2
votes
3answers
2k views
Create Tinyurl style hash
does anyone know of an algorithm that generates hashes that look like tinyurl hashes from a string (url)
I think the requirements would be
case sensitive
short
numbers and alphabets only
anything ...
1
vote
6answers
135 views
How to correctly shorten an if-statement in C++?
Okay, I have an if sentence in which I compare a specific value multiple times. I bet there is a shorter way to do this:
if(letter == "%" || letter == "+" || letter == "-" || letter == "!")
I tried ...
1
vote
5answers
125 views
Shorten jquery script
Sorry for asking, but i am really newbie in jquery.
$(".productTopMenu").click(function() {
$("#breadcrumbs").html("Home / <strong>Product</strong>");
});
...
1
vote
4answers
98 views
how to shorten code involving php and jquery
This code is very simple so I feel like it could be shortened by relating the php variable to the jquery function parameter. if you have any ideas, please help. thank you
<script ...
1
vote
3answers
162 views
Jquery optimise code
I posted the code below with a diffrent query yesterday but I would like to now know how to combine the two functions as they are bascially the same, using the DRY method.
Any help much appreciated. ...
1
vote
3answers
105 views
Is it possible to shorten text in javascript to a php get request?
I have a very specific situation where a javascript page creates a new window with a meta-refresh in it which goes to a php page which has 1 variable with everything that the javascript page has put ...
1
vote
5answers
360 views
url shortening service
I want to write a url shorten service. I trying to think of scenarios that would be dangerous.
one I thought of was if a submitted url is from my own website, it would create an inifinite redirection ...
0
votes
2answers
26 views
Shortening text tweet-like without cutting links inside
I've got a string like this:
I love @kevinrose 's new website <a href="http://kevinrose.com">Link</a>
And I have this function:
function short($string, $max = 255) {
if ...
0
votes
0answers
20 views
Shorten an url with '#' symbol via bit.ly API
So, i have an url - http://somesite.com/#sometext. I need to shorten this url with the bit.ly API. The problem is, i cant properly escape the '#' symbol. I dont get any short url's if trying to short ...
0
votes
3answers
43 views
Is it any other way to shorten this SQL function especially MOD function?
I have this query
SELECT Calendar."Production Week" FROM Opex
WHERE
(
Calendar."Production Week" BETWEEN VALUEOF("LAST_WEEK")-200
AND
VALUEOF("LAST_WEEK")
)
OR
(
(
(MOD(Calendar."Production ...
0
votes
1answer
37 views
Shorten a link?
Let's say I have a links like this:
http://mysite.com?i=343435&f=224&u=334
and this link is constant (doesn't change - let's imagine it's a posted article), I want this link to be ...
0
votes
1answer
125 views
Wordpress truncating titles
I have this working... but.
<?php
$thetitle = $post->post_title; /* or you can use get_the_title() */
$getlength = mb_strlen($thetitle);
$thelength = 25;
echo mb_substr($thetitle, 0, ...
0
votes
2answers
46 views
PHP Directory-specific Content and Redirects
I have this code
$pageEx = explode("/", $_SERVER['PHP_SELF']);
$pageLn = count($pageEx);
$currentdir = $pageEx[$pageLn - 2];
switch($currentdir) {
...
0
votes
3answers
95 views
Is there a better way to write this addition function?
Can the following method be written any shorter (without semicolons) in Python in a way I have not seen?
@staticmethod
def __add(a, b):
value = a + b
if value > 1:
integer = ...
0
votes
1answer
127 views
shorten echo in php 5.3 with Closures
I really liked PHPs <?= $out ?> to echo something.
In PHP 5.3 this is deprecated as we know.
So i thought about using something like that:
$_ = function($name) use ($tpl_vars) { echo ...
0
votes
6answers
666 views
shorten a word in a block of text
I have a block of text which occasionally has a really long word/web address which breaks out of my site's layout.
What is the best way to go through this block of text and shorten the words?
...
0
votes
4answers
258 views
Adding ArrayList elements efficiently
How would I shorten this?
int[] a1 = {2, 0, 1, 4, 3};
int[] a2 = {3, 1, 2, 0, 4};
int[] a3 = {4, 2, 3, 1, 0};
int[] a4 = {0, 3, 4, 2, 1};
int[] a5 = {1, 4, 0, 3, 2};
ArrayList<int[]> array = ...
0
votes
1answer
49 views
Shorten commands?
Is it possible to shorten commands, such as...
this.ExampleCommand1.ExampleCommand2.1;
this.ExampleCommand1.ExampleCommand2.2;
this.ExampleCommand1.ExampleCommand2.3;
to
ExampleShorten = ...
-1
votes
6answers
99 views
Shorten list of IF THEN statements from var1 to var20… PHP
I know this can be shortened and will come easy for someone. I'd like to use an expression to cut this down to a few lines. Each of these variables does hold a different value, and may or may not be ...