Jonas

Results 11 issues of Jonas

the speed issue occurs after i typed normal and then the first time i hit a key combination like "capslock + j (= arrow left)" i think the delay is...

environment incompatibility

i think one of the axes is missing, when the controller is layed flat on a table and i turn it to the left and right there is no value...

bug

i use less client side, all i want is `document.querySelector("body").style.backgroundColor = less.vars["background-color"];` this is would be so easy

low priority

instead of `$query->where("post_id" , 1)->where("category_id" , 2);` i would like to ``` $query->where([ "post_id" => 1, "category_id" => 2 ]); ``` Edit: i extendet the code by myself: src/Pixie/QueryBuilder/QueryBuilderHandler.php between...

i just wanted to say thanks, this is awesome ! maybe you enjoy some fractals: ⣄ ⡿⠷⢄ ⣿⣦⣸⣷⣄ ⣷⣄⢸⣦⡀⣷⣄ ⣯⡉⢹⣍⠉⣯⡉⢱⣄ ⣟⠛⢺⡛⠓⣟⠛⢺⡛⠓⣄ ⠿⠷⠼⠿⠦⠿⠷⠼⠿⠦⠿⠷⠄ ⣖⣶⣲⣖⣶⣲⣖⣶⣲⣖⣶⣲⣖⡆ ⣯⣇⣀⣯⣿⣽⣀⣸⣽⣯⣇⣀⣯⡇ ⡷⣿⢾⡷⡟⠚⠓⠛⠚⡷⣿⢾⡷⡇ ⣟⡏⠉⣟⡇⠀⠀⠀⠀⣟⡏⠉⣟⡇ ⣯⣿⣽⣯⣇⣀⣀⣀⣀⣯⣿⣽⣯⡇ ⡷⡟⠚⡷⣿⢾⠓⢻⢾⡷⡟⠚⡷⡇ ⣟⣷⣲⣟⣿⣻⣖⣾⣻⣟⣷⣲⣟⡇ ⠀⠀⠀⠀⠀⠀⣠⡀...

```javascript var s_query_create_table1 = ` CREATE TABLE users ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(100) NOT NULL, created_at timestamp not null default current_timestamp, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT...

i have the following users setup in my mysql db ``` select * from mysql.user; ``` ``` +-----------+------------------ | Host | User +-----------+------------------ | localhost | debian-sys-maint | localhost |...

First of all, wow ! i didn't think somebody gets this to run in the browser but with the `navigator.hid.requestDevice` it is obviously possible , nice job ! so i...

does this count as injection ? ```javascript var s_value_entered_by_user = '1 OR 1=1'; var sql = builder .table("a_o_user") .where("n_id", "=", s_value_entered_by_user) // .where("name", "like", "%n%") .update({ s_name: "overwritten!" }) .build();...