A coding style is a set of conventions and practices used in software, such as naming classes, variables, and files.
3
votes
1answer
35 views
Personal Project for managing my Bookmarks - v2
I had asked earlier for review of parts of my JS file earlier and review of the complete JS file of my project. Now I have made changes as per the suggestions. Here are the files. I would like to get ...
4
votes
0answers
41 views
Pure JS Image Slider
I was just wanting a code review on this image slider I made. I don't have anyone else to give me their opinion on the code I write outside of work.
Is this sloppy? Is it wrong? Is it ineffective? ...
1
vote
0answers
27 views
A notification / interception implementation for AngularJS
I was in need of a thing that is able to inform my users about recent activities as well as intercept any action with a modal (e.g for undo purposes)
I decided that I will go for an independent ...
1
vote
0answers
15 views
How can I clean up this hack to scrape paths from a Gruntfile?
As a part of my Tabv Vim plugin (which at this stage is nothing more than a pitiful rag-tag assortment of half-baked hacks), I have a function which attempts to guess the directory paths for main ...
1
vote
0answers
44 views
Split large import task into smaller subtasks
I have a large import task that runs as a cronjob and I want
to split that task in smaller subtasks. Each subtask should be handled by
an own class.
At the cronjob entry point I prepare the ...
1
vote
0answers
68 views
Reviewing javascript and tidying up?
This is a follow up to this question my code has evolved since so I'm reposting my question, What is the best way to tidy this up? how can this be refined? I am finding it's thrasing the layout quite ...
1
vote
0answers
170 views
Plan9 rio script to tile windows. How can I improve this (rc-shell)
Here is my window tiling script for rio window manager in plan9. It fetches the current screen size, and calculates the locations based on the layout given. How can I improve this program? am I ...
0
votes
0answers
36 views
Improvements on this template container simulating SQL “select” and “where”?
I want to simulate in c++ the fact that in a form with drop down (or combo boxes) you can filter by selecting items and then projecting on a given set of properties for these item.
In a sql-like ...