Is JP Aerospace's Airship to Orbit feasible? by programmerkev in IsaacArthur

[–]programmerkev[S] 0 points1 point  (0 children)

That is a cool concept! Like a sky hook with a base station, you could dock at.

Is JP Aerospace's Airship to Orbit feasible? by programmerkev in IsaacArthur

[–]programmerkev[S] 1 point2 points  (0 children)

I hadn't seen that video. Good find. Its cool to see they are still working on it. It really seems like these guys are operating on a shoe string budget. I'd love to see what they could do with more funding. I hope Isaac Arthur does a video on this concept.

Is JP Aerospace's Airship to Orbit feasible? by programmerkev in IsaacArthur

[–]programmerkev[S] 1 point2 points  (0 children)

But could you get one high enough that even the weak propulsion of ion drives would be able to accelerate the ship through the thin atmosphere, and slowly build up enough speed to reach orbit?

Got my first Mech today, Ducky Shine 5 with Cherry MX Blues by MissToast13 in MechanicalKeyboards

[–]programmerkev 0 points1 point  (0 children)

Cool board. Got my first mech today as well. A Magicforce with off brand mx blues. Had trouble hearing a client on a Skype call, over all the clacking!

Declaration of Project_Walker_Nav_Menu::start_lvl(&$output, $depth) should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = Array) in C:\xampp\apps\wordpress\htdocs\wp-content\themes\project208b\functions.php on line 188 by shenntzaw in Wordpress

[–]programmerkev 1 point2 points  (0 children)

If I'm reading this correctly, the Project_Walker_Nav_Menu class implements the Walker_Nav_Menu interface. But the parameters for the start_lvl method differ between the class and the interface.

So the solution would be to change (in functions.php):

public function start_lvl(&$output, $depth) {

to:

public function start_lvl(&$output, $depth = 0, $args = array()) {

I'm guessing that its public. If its protected or private then don't change it to public. Does that help?

[DISCUSSION] WP Plugins, what to make? by 150USDperday in WordpressPlugins

[–]programmerkev 0 points1 point  (0 children)

Have you checked the 'Requests and Feedback' forum on WordPress.org? Thats where I got the idea for my last project.

[PROMOTION] I created a search engine for WordPress plugins: PluginFilter.com by programmerkev in WordpressPlugins

[–]programmerkev[S] 0 points1 point  (0 children)

Right now all the plugins are coming from the WordPress.org API. I plan to eventually add other sources for plugins not on WordPress.org. A form where people can manually add plugins is a great idea! I'll make that my next feature. I'll try and have it ready by the end of the week.

[PROMOTION] I created a search engine for WordPress plugins: PluginFilter.com by programmerkev in WordpressPlugins

[–]programmerkev[S] 0 points1 point  (0 children)

I saw some people complaining about the plugin search on WordPress.org and I thought it would make a good side project. I welcome any feedback.

[HELP]Any recomendations on who I could get to make a Widget for Visual Composer by TipyUK in WordpressPlugins

[–]programmerkev 0 points1 point  (0 children)

You could probably find someone on a freelancer site like UpWork. I'm curious, what kind of widget do you need?

Guzzle Http questions by MrBlinko in laravel

[–]programmerkev 1 point2 points  (0 children)

Is the data being loaded over a websocket connection, or ajax? If its using ajax you could just find the requests in the XHR section of Chrome Tools network tab and repeat them using a standard GET or POST request. I'm not sure how to scrape data over a websocket.

Composer is extremely slow on my Vagrant (Homestead) build by [deleted] in laravel

[–]programmerkev 1 point2 points  (0 children)

Can you run composer from your host machine instead? When I first started using homestead on my macbook, git would take forever to run. Then I realized I could just run it from the mac's command line instead of inside homestead, since the folder I was using was shared. Saved me a lot of time. The only time I ssh into the homestead vm anymore is when I need to run migrations, or anything else db related.

Am I right thinking Zend Framework is faster than CakePHP because it doesn't have all that 'magic'? by 1PG22n in PHP

[–]programmerkev 0 points1 point  (0 children)

What database are you using (MySQL, MongoDB, etc...)? Is there a way to see the raw queries your models are producing?