The shorten tag has no wiki summary.
0
votes
1answer
60 views
How do I make my string 12 Characters long? [closed]
I am making a plugin for bukkit but now I have a problem.
The plugin saves a username on a sign the maximum characters on the sign is 12.
But the maximum characters in a username is longer I think 16 ...
1
vote
4answers
84 views
How do I shorten this fragment of regex code?
I have the following function in Java, which takes in a String comment and returns comment but with all trailing # characters and any # characters that have a space after them remove, and any sequence ...
0
votes
2answers
50 views
Delete part of UILabel Programmatically - Xcode
I have a UILabel which displays a bit of data downloaded from a JSON feed which displays the day of the week (Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday).
I was wandering if there ...
0
votes
4answers
59 views
Shorten code in vb.net [closed]
Is there any way to shorten the below code?
Private Sub btnCreate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCreate.Click, btnCreateImage.Click
For Each btn ...
0
votes
9answers
116 views
Is there a way to make this shorter?
So I'm quite new to programming in general. I'm currently working on a terrain generation program, everything is going great except for this:
public static class Desert
{
public const ...
-1
votes
1answer
40 views
Shorten Long URL using htaccess file
I would like to shorten my url using htaccess
http://mydomain.com/filename/categoryname/catid/subcategoryname/subid/productname/productid/
to
http://mydomain.com/productname/
been searching for ...
3
votes
3answers
115 views
A good way to make long strings wrap to newline in Python? (3.x)
In my project, I have a bunch of strings that are read in from a file. Most of them, when printed in the command console, exceed 80 characters in length and wrap around, looking ugly.
I want to be ...
1
vote
2answers
63 views
Java: How can I shorten codes which are usen often?
I am working on a Android App. Everything is okay and everything does work but I want to short some commands which are usen very often. Here is a part of my code:
public void ButtonKlick (View view) ...
2
votes
1answer
51 views
Shortening HTML content python / django
I have a system that pulls HTML content from a database which could look like this:
<p>This is some text</p>
<p>More text</p>
<p>Third Paragraph</p>
and when ...
0
votes
1answer
23 views
If 2 of 3 conditions are met (w/o || “OR”)
Q&A
How can I check if two of three conditions are met without doing a TON of OR-statements in my conditional-statement.
i.e.
if ...
1
vote
2answers
66 views
How to shorten nested if statement
How can I shorten this nested if statement?
if(x > 0){
if(grid[x-pixelOffset,y] == true){
middleLeft = 1;
}
}
Thanks!
-5
votes
1answer
62 views
Simplifying Code in Java [closed]
I have to shorten the main of this code for my programming class into 1 line and I am having one hard time figuring it out. Any help would be nice.
public class ShortestCode
{
public static void ...
0
votes
1answer
40 views
Anyway to shorten URL via PHP FORM?
I currently have people filling out a form with the following information:
Your Name
Recipient Name
Message
Amount
I'm wondering how I can get when they fill out this information, it inputs it ...
0
votes
3answers
77 views
C# Shorten Button Assigned to Reset Values
I've just started programming meaning I'm new... I've made a tic tac toe game using else if statements.
The code below is code that will reset certain values within my game, I'm sure there's but I ...
0
votes
1answer
79 views
How to convert an integer to the shortest valid C99 function name string?
I am implementing a code generator that generates specific code for each
linear algebra expression of the type x = y + w + z or A = B*C + D or whatever.
Each expression is assigned with a unique ...
2
votes
3answers
87 views
Any ideas how I can shorten this code?
string menuRecipe = "SELECT * FROM recipelist WHERE menu_ID = '" + menuID + "'";
MySqlCommand recipeCmd = new MySqlCommand(menuRecipe, db.mycon);
MySqlDataReader recipeDr = recipeCmd.ExecuteReader();
...
0
votes
1answer
44 views
importing dialogue from a text file and displaying it on a drawpanel - Java
i have a bit of problem which i have run into, im trying to shorten my code for a game and i got the idea to import all the dialogue from a text file instead of hardcoding it into the code itself. ...
2
votes
1answer
51 views
Need help/advice on shortening/looping a piece of code i wrote in java
Im trying to shorten code on a program I'm coding and the code i need advice on shortening is this part:
imgRunM[0] = toolkit.createImage(imageURL11);
imgRunM[1] = toolkit.createImage(imageURL12);
...
-1
votes
2answers
99 views
Python: how to shorten this statement? [closed]
Oftentimes I have to write the following:
entity = Players.get(some_key)
if entity:
# do stuff
entity.property = some_value
else:
logging.error('No player entity found')
It seems to be ...
1
vote
1answer
92 views
how to add +1 after two var is true
Just wondering is there anyway to add +1 to var store with two var is true?
using switch or if/else which is better way
Var store = 0
Var store1 = 0
Var store2 = 0
var buyer = "";
var seller = "";
...
0
votes
1answer
52 views
redirect some urls with out shorten link
I've written a program to auto shorten the link and it use api of my website
but i have to when i click on an shortened link ( like : goo.gle/~~~ ) this program dont use my service and redirect to ...
0
votes
1answer
89 views
Is it possible to shorten my main function in this code? [closed]
Is it possible for me to shorten my main() by creating a class? If so, what part of my code would most likely be inside the class? Thanks again to those who'll answer. :)
#include ...
2
votes
6answers
508 views
Delete everything after part of a string
I have a string that is built out of three parts. The word I want the string to be (changes), a seperating part (doesn't change) and the last part which changes. I want to delete the seperating part ...
2
votes
1answer
389 views
Shortening GoToSlide Command in VBA?
I'm making a PowerPoint where I'm constantly using this command to jump around slides:
With SlideShowWindows(1)
.View.GoToSlide (.Presentation.Slides(x).SlideIndex)
End With
I wanted to shorten ...
1
vote
1answer
152 views
Shorten a URL with HREF link
ok i'm trying to shorten a url but keep the actual link intact.
I'm using this code at the moment, can't find a simple working solution...
$description = preg_replace('/https?:\/\/[^\s<]+/i', ...
0
votes
3answers
96 views
ruby on rails shorten if in 1 line
The code that i am trying to shorten in one line:
if !request.xhr?
render_404
return
end
from this function
def request_invite
...
0
votes
1answer
389 views
Shorten URL for display with beginning and end preserved (Firebug 'Net' panel style)
I would like to display a URL in a table while restricting it to a specific length. Being a URL, it would be nice to preserve the most meaningful parts which tend to be the beginning and end. This ...
3
votes
1answer
155 views
How would I shorten this jQuery?
I'm very new to jQuery, so please be gentle.
I found two articles online:
Adding a fade-in/fade-out to a rollover sprite with jQuery:
http://css-tricks.com/fade-image-within-sprite/
(Way The Third: ...
0
votes
5answers
98 views
Simplifying javascript with variables
if (this.firstChild.style.display == 'none')
{this.firstChild.style.display = 'block'}
else
{this.firstChild.style.display = 'none'};
Is it possible to shorten this code using variables?
5
votes
3answers
943 views
Encoding a numeric string into a shortened alphanumeric string, and back again
Quick question. I'm trying to find or write an encoder in Python to shorten a string of numbers by using upper and lower case letters. The numeric strings look something like this:
...
8
votes
9answers
346 views
mysql - if value = 0 shorten where statement
I wonder if it's possible to shorten query depending on some variable value in elegant way.
For example: I have value named $var = 0 and I would like to send a query that looks like this:
$query = ...
0
votes
1answer
99 views
efficicent way to write multiple jquery functions
I have multiple divs, and I have to write a code like this out for each div, and have php change the id by cycling through $NBR++; at the end. Is there a quicker way to write this once rather than to ...
0
votes
1answer
108 views
C++ Shorten wchar_t array
I need to shorten wchar_t array. Example:
wchar_t* email = L"name@domain.com";
/ * Somehow leave in email just "name" * /
My idea to do that
wchar_t Domain = L"@domain.com";
if(!(pos = ...
1
vote
7answers
89 views
Simplify this jQuery Code?
I'm pretty sure there is a way to shorten this, but I don't know how.
img[1] = $('#img1').attr('src');
img[2] = $('#img2').attr('src');
img[3] = $('#img3').attr('src');
img[4] = ...
0
votes
2answers
371 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 ...
4
votes
4answers
372 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 ...
0
votes
1answer
98 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
68 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 ...
1
vote
6answers
262 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 ...
2
votes
3answers
93 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 ...
1
vote
5answers
185 views
Shorten jquery script
Sorry for asking, but i am really newbie in jquery.
$(".productTopMenu").click(function() {
$("#breadcrumbs").html("Home / <strong>Product</strong>");
});
...
3
votes
8answers
285 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 ...
0
votes
1answer
73 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 ...
3
votes
2answers
472 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 - ...
-1
votes
6answers
182 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 ...
0
votes
1answer
573 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, ...
2
votes
5answers
941 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 ...
0
votes
2answers
62 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) {
...
4
votes
4answers
442 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 ...
1
vote
4answers
171 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 ...









