Sponsored Content
Top Forums Web Development Sneak Preview: New UNIX.COM UserCP VueJS Demo Post 303031307 by Neo on Monday 25th of February 2019 09:55:21 PM
Old 02-25-2019
Update:

Version 0.30

Fixed small bugs:
  • Fixed PHP typo in cp/index.php which caused cp not to render (my bad, sorry).
  • Created workaround for Vue.js Axios not working with some dashboard charts (workaround using localStorage as an intermediate storage proxy).
  • Created some new "developer only" hooks in the Vue.js code.

My apologizes if you tried to access the prototype CP while I was asleep and you got a blank page. I had to sleep and my eyes were tired and I could not find the PHP bug, which turned out to be a single right curly brace } instead of the correct right parens ),

It's amazing in PHP how a single type can break an entire application. At least with node.js and building the app locally, it has compile first, so we can catch errors easily during the dev stage on the desktop.

But anyway, it was my fault, because normally I always cut-and-paste (from vi) into VSC to check the PHP syntax before saving or deploying, and I missed that step on a very small change and the results were I broke the new cp for a few hours. Sorry!
This User Gave Thanks to Neo For This Post:
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

License with demo???

I'm trying to setup a test environment to test upgrading to Solaris 8 or 9. Though when I go to install the demo version of Sun1 (forte/sun workshop as named before) it'll still ask for a 20 hexidecminal password for just a demo. huh? Ok so I added a 20 character thing in there it passed... (2 Replies)
Discussion started by: merlin
2 Replies

2. UNIX for Dummies Questions & Answers

Shell basic graphics demo.

I have been thinking about another shell scripting project using the Arduino Diecimila board. I was going to make a kids level slow 8 channel Logic Analyser. I thought about using the termiinal esc code graphics characters. This is the test code using said terminal escape codes. I have only... (2 Replies)
Discussion started by: wisecracker
2 Replies

3. What is on Your Mind?

Vuejs Periodic Table by Kadin Zhang

Was working on Vue.js and stumbled upon this beautiful Vue project by Kadin Zhang Periodicity is a dynamic periodic table built with Vue.js that animates and graphs data to aid the visualization of chemical concepts. The code is available on GitHub (2 Replies)
Discussion started by: Neo
2 Replies

4. What is on Your Mind?

Major Changes in New UserCP (v0.63) Prototype

Regarding the latest version of the UserCP prototype (version 0.63) I have made a lot of major changes, including Added a "Posts Timeline" table for the recent posts, complimenting the non-table version earlier, which has been moved off the main menu (link at the bottom of the table). Added a... (4 Replies)
Discussion started by: Neo
4 Replies

5. What is on Your Mind?

New UserCP Update Profile Image Page (UserCP Screeching Frog 0.7485)

Update! UserCP Screeching Frog 0.7485 Created a new page for uploaded a profile picture (profile pictures are different than avatar pictures). https://www.unix.com/usercp/#/settings/other https://www.unix.com/members/1-albums225-picture1158.png ... (0 Replies)
Discussion started by: Neo
0 Replies

6. What is on Your Mind?

Video Overview of the Vue.js UserCP @UNIX.com

Here is my second live video screencast (in my life, using Camtasia) with voice for the new usercp: Overview of the Vue.js UserCP @UNIX.com Shout outs to Don Cragun, Corona688, Rudi, Wolf, Made in Germany, stomp, Ravinder, Creative Tim, PubNub and others in the video. Thanks. If you are... (1 Reply)
Discussion started by: Neo
1 Replies
MooseX::Role::Timer(3pm)				User Contributed Perl Documentation				  MooseX::Role::Timer(3pm)

NAME
MooseX::Role::Timer - Measure times with your object. SYNOPSIS
package Demo; use Moose; # or Any::Moose with 'MooseX::Role::Timer'; sub BUILD { shift->start_timer("build"); } sub do_something { my $self = shift; $self->start_timer("something"); # do something... $self->stop_timer("something"); } package main; my $demo = Demo->new; $demo->do_something; $demo->do_something; printf "%3.6fs ", $demo->elapsed_timer("build"); # time spent since BUILD printf "%3.6fs ", $demo->elapsed_timer("something"); # time spent in sub do_something This Role provides your object with timers, making it easier to keep track of how long whatever actions take. start_timer($name) Start timer $name. stop_timer($name) Stop timer $name. Could be started again to cumulatively measure time. reset_timer($name) Stops timer $name and clears cumulated times for $name. elapsed_timer('name') Return the elapsed time in seconds (cumulated) for timer $name. timer_names Return all timer names. AUTHOR
Michael Langner, "<mila at cpan.org>" BUGS
Please report any bugs or feature requests to "bug-moosex-role-timer at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MooseX-Role-Timer <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MooseX-Role-Timer>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. COPYRIGHT &; LICENSE Copyright 2010 Michael Langner, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-05-02 MooseX::Role::Timer(3pm)
All times are GMT -4. The time now is 01:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy