A logical fallacy in which the developer begins with what he is trying to end up with, like class A extends B, class B extends A.

learn more… | top users | synonyms

0
votes
0answers
10 views

jQuery Circular Content Carousel - previous bug on Firefox

I try to use tympanus jQuery Circular Content Carousel sample on my project. However when I click previous button twice, it empties .ca-item box on Firefox and it duplicates the item to the right. It ...
1
vote
0answers
32 views

How to make a Radial/Circular ProgressBar Not Spin

I have a horizontal ProgressBar that works great. <ProgressBar android:id="@+id/progressBar1" style="?android:attr/progressBarStyle" ...
-1
votes
0answers
48 views

Power crisis using linked lists

Anyone knows a solution for this using circular linked list. int main() { int N, M; struct node { int player_id; struct node *next; } struct node *p, *q; int i, count; ...
0
votes
2answers
26 views

C++ Forward declaration & circular dependency

I've got two classes, Entity and Level. Both need to access methods of one another. Therefore, using #include, the issue of circular dependencies arises. Therefore to avoid this, I attempted to ...
0
votes
1answer
38 views

Adding controls in a circular way at runtime [closed]

I am trying to add controls dynamically at runtime in a circular way. Adding controls is very simple but how can i do this like circle? User selects number of controls and program should add this ...
0
votes
3answers
41 views

how to change progress of the circular seekbar

How to change progress in the circular seek bar when I enter number in edittext and click on button? Please reply asap....Thanx in advance Below is the snapshot of what I am trying to do
0
votes
2answers
46 views

How to get top left coordinate when the coordinate on circumference of circle is known?

I have two concentric circles, the distance between is certain constant. I obtain the coordinate on the circumference of the outer most circle based on the angle obtained when i touch in the circular ...
-2
votes
1answer
55 views

Circular doubly linkedlist revision exercise [closed]

Using the circular doubly linked list below, give the expression corresponding to each of the following decsriptions. For example, expression for the info value of Node 1, referenced from reference ...
4
votes
4answers
428 views

Circular ListView (Items on Half Circle)

I'm Trying to make a Circular ListView with List Items arranged on Half Circle. it should look something like this: There was a related post but it was closed . I made my own Circular Custom ...
0
votes
1answer
75 views

WPF Circular Animation that Mimics current Canvas

I'm implementing a graphical animation in wpf with a circular animation in reference to the attached picture (Obviously I'm no artist...). The square represents the visible form while the entire ...
0
votes
1answer
197 views

Circular Content Carousel remove loop

Question regarding CIRCULAR CONTENT CAROUSEL WITH JQUERY by tympanus I'm implementing this to a web project, so far it works perfectly but need it to stop looping / clone left right and stops scroll ...
0
votes
0answers
168 views

wetransfer like circular progress bar with jquery

I want to create a progress bar like wetransfer i tried and achieved something like this http://www.gbtransfer.com but its not exactly like wetransfer. as on there website progress-bar is inside the ...
0
votes
0answers
22 views

Does this code have a name?

Does this code pattern/structure have a name? Assign every element an n-bit code-word such that every code word is not a circular shift of any other.
0
votes
0answers
71 views

jQuery Isotope; integrating a loop/circular function on horizontal layout?

I am building a website for a client who'd like their content displayed in a horizontal grid layout. I will be using Isotope to do this since I am most familiar with the script. I've used it many ...
1
vote
0answers
96 views

jquery scrollable cloned divs

I just want to make a simple scrollable gallery on my front page. I followed instruction on http://jquerytools.org/demos/scrollable/index.html. I am calling ...
0
votes
2answers
64 views

Cakephp circular association doesn't show

I have the following models and associations. Question (model) Has Many AnswerChoices (classname = AnswerChoice) AnswerChoice (model) Has One FollowUpQuestion (where class = 'Question') Therefore, ...
3
votes
4answers
153 views

jQuery how to load part of image

I have a little problem. I need to create circular slider, I didn't find any library which could help me, so seems like I need to write it on my own. Here is my problem: I want to create something ...
-2
votes
1answer
202 views

Circular Array Issue [closed]

I'm stuck on a method right now. I need to write a method, "public boolean equals(CircularArray m)" which test whether two FIFO queues implemented as circular arrays have the same elements in the ...
1
vote
1answer
278 views

CSS3 circular animation

I did a CSS3 circular animated menu with the menu items starting from the left end and rotates to the right to their corresponding locations. I have put each of the menu items inside a container and ...
3
votes
2answers
95 views

circular jar reference - can it compile?

I saw some questions about "circular jar references" in Java, and I'm not seeing something. My question is: how is it possible to build two jars where each jar has method calls to classes in the ...
4
votes
1answer
446 views

Disadvantage of circular queue?

Recently , in an interview I was asked the disadvantage of using circular queue . I couldn't think of any. Searching the internet the only answer I found is that it's difficult to implement than ...
0
votes
0answers
63 views

Circular relationships in database model

Hi I have a question about some circular relationships that I am facing with my database design and from what I read circular relationships are not desired. I read a few more similar questions but ...
0
votes
0answers
182 views

jQuery Circular how does it work?

I'm trying to create a Circular price range but want to know the basic of working with Circular (rotate) effects. Once I get the basics down pack I can expand my knowledge. Questions and example I ...
0
votes
1answer
318 views

Android circular seekbar

I'm trying to implement a custom seekbar for android like one in the application : Circle Alarm : HERE Can you please help me if someone has already made it ?? Best Regards
0
votes
1answer
102 views

JPA2 structuring OneToOne and OneToMany in the same class

Could you please tell me how you I might structure the following table/classes to avoid circular references? I have the following defined in a "Bachelor" degree class: @Entity public class Bachelor { ...
0
votes
1answer
75 views

arrange 3d objects in a circle shape

I am using c++ and g3d to draw a simple sphere, but dont know how to arrange multiple objects/spheres in a circular shape. for(i = 0.0f;i<1.4f;i+=0.2f){ sphere->position = ...
0
votes
0answers
126 views

Circular Text jQuery SVG

I'm building a wheel of circles, one inside of the other, in jQuerySVG. I'm basically trying to attach text to each circle, that goes around the circumference of each circle, so it will be arched. A ...
4
votes
2answers
268 views

How to shift bins in a rose diagram using package 'circular' in R

I created a rose diagram of aspects in degrees for location data using the 'circular' package in R and the rose.diag function, with basic aspects of N, NE, E, etc., for a total of 8 bins. However, the ...
2
votes
1answer
158 views

Is it possible to have a circular activity?

We know that default shape of Activities is rectangular in Android. I have made a modal activity using the following style: <style name="Theme.TransparentD0" parent="android:Theme"> ...
10
votes
4answers
396 views

circular plot with vectors in R

I'm trying to create a circular plot with vectors of various magnitudes coming from the origin at various angles: something like the image below, although it doesn't have to be identical. I've pored ...
-1
votes
2answers
153 views

How to get the rotations count of a circular image

I am new to iPhone development. I want to get the rotations count of a circular image at red as starting point with respect to time interval. It can rotate at any speed either fast or slow(any ...
16
votes
1answer
577 views

ggplot2 Circular Heatmap that looks like a donut

I'm trying to create circular heatmap with ggplot2 so I can use a larger number of labels around the circumference of a circle. I'd like to have it look more like a donut with an empty hole in the ...
1
vote
1answer
343 views

How to customise Android SeekBar to be circular?

I'm fairly new to the Android platform. I'm trying to create a circular kind of a UI component, which will have a button to track the circular motion around the circumference. The nearest Android ...
-1
votes
4answers
90 views

c++ breaking circular dependencie for sort algorithm object

i have two classes A and B A.hpp #include <vector> #include <algorithm> #include "B.hpp" class A { public: void sortTrans() { std::sort(trans_.begin(), trans_.end(), sortStruct); } ...
0
votes
1answer
49 views

Bezier Handles Keep Radius and Symmetry but not length

I'm Having a Bezier Curve in Javascript built with a few bezier Curves. I can move handles and they keep the symmetry. I'm doing that by first calculating the distance between Handle and Point on ...
0
votes
0answers
91 views

Maven: Dealing with a truly circular dependency

I have a somewhat complex situation and I'm not sure what the best way to set up my Maven environment is. I'm writing a framework to allow the creation of tests for a particular system. The system ...
0
votes
1answer
86 views

Show users location on Globe instead of map in iOS 5 +

I want to show users location with his profile image on Globe (Circular earth) instead of 2D map. As per my knowledge , latitude & longitude which we get from CLLocationManager are converted from ...
0
votes
1answer
190 views

moving object around a point in a circular motion

I have some objects in a view that I want to move around their own points on a screen. I want them to appear almost stationary, but with a slight circular motion (not rotation, the items will remain ...
0
votes
1answer
89 views

Data structure and algorithm to digitize a circular slide rule?

Here is an example of a circular slide rule, but in my example the arms don't move, but the individual rings spin freely of one another. Let's say I had a circular slide rule of 3 rings. Each ring ...
1
vote
1answer
542 views

Rose diagram in R

I want to draw a rose diagram of some circular data. I have been using the "circular" package and within this package it allows you to draw a simple rose diagram using the function: rose.diag. While ...
0
votes
2answers
157 views

Clean math solution to iterate circular carousel

I am struggling to come up with a clean solution for this: The carousel has 7 items, so 0 - 6. Index 3 is the middle one If for example the 2nd item (index 1) is clicked each item needs to move 2 ...
0
votes
2answers
469 views

How to create a circular seekbar in android

Can anybody please tell me how to create a circular seekbar. Thanks in advance.
1
vote
1answer
56 views

Circular DB relationship in Django

I have following model (campaigns/models.py) from django.db import models from django.contrib.auth.models import User class Module(models.Model): name = models.CharField(max_length=20) def ...
1
vote
1answer
592 views

Insertion Sort Doubly Circular Linked List

So I'm trying to get my Doubly Linked List to do an insertionSort I'm having issues right now with just moving the nodes to their proper spot. I have gotten comparisons working but none of my nodes ...
2
votes
0answers
647 views

Circular Content Carousel Table

I found a GREAT carousel script named Circular Content Carousel. It's almost exactly what I need. When clicking on the "more" link, the respective item moves to the left and a content area will slide ...
0
votes
1answer
1k views

Circular Array Queue

Im trying to implement a circular array queue without a count variable. Im looking for a way to determine if the array is full, for it to call the expand method but it doesn't seem to be working any ...
0
votes
1answer
2k views

Reverse Singly Linked List Java, check whether circular

I implemented a singly linked list in Java. I can reverse a singly linked list and check whether a given list is circular. The interesting thing is I can reverse a circular list, too which is strange ...
1
vote
1answer
329 views

need help Implementing circular vertical scroller in jquery

I have a list of items grouped in a table, let's say 30 and what i want to do is the following: scrolling automatically and vertically from bottom to top ,without buttons clicks or mouse events ...
0
votes
2answers
145 views

NullPointerException being thrown and program doesn't terminate as expected

I am creating a stock exchange type program and so far I've got the input working so that it takes the command from the user properly. However what it does to the input isn't working as expected. The ...
2
votes
1answer
2k views

JavaScript carousel

Extremely need some advice in JS carousels (based on any library, but JQuery would be preferable). My needs: circular carousel movement starts with mouse hover on prev/next buttons availability of ...

1 2 3 4