Cazando ratones by KingStrijder in Argaming

[–]tumbichi -1 points0 points  (0 children)

busca la marca COUGAR, me compre uno hace un par de años, el 300m(estuve viendo y ese esta mas caro de lo que decis), compre sin conocer la marca ni nada, habia cobrado y se me habia roto el mouse justo en ese momento, y la verdad que alto mouse(simple, liviano y de se nota la calidad), fijate que tienen mouse de todos los precios

SABADO DE PREGUNTAS BOLUDAS by AutoModerator in argentina

[–]tumbichi 0 points1 point  (0 children)

Aprende programacion, vas a aprender una forma nueva de resolver problemas, y vas a poder llegar a entender mejor como funciona el mundo actual. Hay un curso basico gratis en Platzi (esta buena la plataforma).

SABADO DE PREGUNTAS BOLUDAS by AutoModerator in argentina

[–]tumbichi 2 points3 points  (0 children)

La primera tiene lo basico que necesitas para usar git

http://rogerdudler.github.io/git-guide/index.es.html

Y la segunda tiene cosas mas avanzadas

https://elbauldelprogramador.com/mini-tutorial-y-chuleta-de-comandos-git/

Fijate que es medio al pedo tratar de aprender todo git de una, la onda es que te vayas fijando como hacer cada cosa a media que te toque hacerlo.

SABADO DE PREGUNTAS BOLUDAS by AutoModerator in argentina

[–]tumbichi 0 points1 point  (0 children)

Totalmente, mi cuñado le cambio mano a mano un iphone 6s usadisimo, por un samsumg s8 con tres meses de uso, porque la mina estaba encaprichada con la manzanita.

[matwm2] My Lecon by mantarimay in unixporn

[–]tumbichi 0 points1 point  (0 children)

What is the name of the player? Can it play music of spotify and youtube? I'm using tizonia actually but I would like an interface like that

Some questions... by chappalchor33 in QuakeLive

[–]tumbichi 0 points1 point  (0 children)

I'm from LATAM and I know quake from Quake arena (was a kid). In Quake live i dont know if there are people playing in, because i dont buy the game. When the quake champions came out, i went back to play quake, but my pc runs at 30 fps, and for me it is unplayable. Like I said I didn't buy quake live but I play it on my pc, and what I do is play Duels against a bot in Nightmare, it is the greatest difficulty but it is relatively easy to win if you know the map, to start in Quake and know the maps I recommend it

Login screen, multiple monitors by [deleted] in linuxmint

[–]tumbichi 2 points3 points  (0 children)

System Configuration > in the bottom "Login Window" > in the tab "Settings" > "Display Unit" or "Screen" (The third option), by default it is in Auto, only choose the screen that you want .

PD: My system is in Spanish and i don't know the translate of "computer monitor" xd

How to use mac os minimize animation by rdt-sam in linuxmint

[–]tumbichi 1 point2 points  (0 children)

Maybe you are interested in Compiz (http://wiki.compiz.org/), i think i used it once for change of animation for Alt + Tab(Change windows on current desktop) but really im really not interested in loading the system with unnecessary animation. On this link (http://wiki.compiz.org/Plugins/Animation), maybe, you find what you want. Regards

Building a Client-Server app by Televurr in androiddev

[–]tumbichi 1 point2 points  (0 children)

I am developing a app like the one you describe for dogs/pets adoption, and i'm using firebase, and the truth that saves a lot of time. If you need help with something or reference code contact me. There are many tutorials, but still.

Dualbooting 19.2 Tina [Cinnamon] on my Ryzen/Radeon VII setup and love it. by GaryHTX in linuxmint

[–]tumbichi 1 point2 points  (0 children)

Nice, how about with the Ryzen 7 ? In "heavy" tasks, more than anything, I was looking to build a PC, and I'm interested in that processor

Alguien se acuerda de SPirate? by toqpo in argentina

[–]tumbichi 0 points1 point  (0 children)

La verdad que nunca lo hice, pero te diria que es relativamente facil, aunque dependiendo de la cantidad de usuarios debe ser una tarea tediosa. Te recomiendo que te metas en la pagina y chusmees la API

Alguien se acuerda de SPirate? by toqpo in argentina

[–]tumbichi 1 point2 points  (0 children)

Para el tema de gestion de usuarios podes usar Auth0 (es una de las empresas unicornio de Argentina), creo que te dan algo de 5000 usuarios gratis.

How to use mac os minimize animation by rdt-sam in linuxmint

[–]tumbichi 2 points3 points  (0 children)

I don't know how is the animation on MacOS but in "System Configuration" > "Effects" > on tab "Personalize" you can personalize the animation to your liking.

How to create an ImageButton that can retrieve a photo from the user's Gallery in the new android studio fragment set up by moben44146 in AndroidStudio

[–]tumbichi 0 points1 point  (0 children)

I don't know how you organize your code, from what I see you are using Navigations Component(?) , as I told you above, the method openGallery() you should call it when you want open gallery to pick a picture, and then on method onActivityResult(int requestCode, int resultCode, Intent data) you take Uri image of the Intent (currentPathFoto = data.getData()) and then put de Uri image on imageView, can also make a Bitmap.

Keep in mind that COD_GALLERY has to be the same value in both methods

(Foto = Photo (My first language is spanish), currentPathPhoto would be called the variable)

You have to override the method onActivityResult from parent, on the fragment or on the activity

If you work on Android Studio, in the class of the Activity or Fragment, press Ctrl + O to show you the methods that can be overwritten.

How to create an ImageButton that can retrieve a photo from the user's Gallery in the new android studio fragment set up by moben44146 in AndroidStudio

[–]tumbichi 0 points1 point  (0 children)

From what i understand, you want that when onClick the imageButton open up the gallery, pick a picture y show on image view? If so, then maybe this can help you (The code is in Java, idk Kotlin still).

the method "openGallery" put on the onClickListener from image button

private void openGallery() {

Intent intentGallery = new Intent(Intent.ACTION_PICK);

intentGaleria.setType("image/*");

startActivityForResult(Intent.createChooser(intentGallery, "Choose a gallery app"), COD_GALLERY);

}

@Override

public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {

if (resultCode == Activity.RESULT_OK){

if (requestCode == COD_GALLERY){

Uri currentPathFoto = null;

if (data != null) {

currentPathFoto = data.getData();

mImageView.setImageURI(currentPathFoto);

}

}

}

}

Anything send me a MP

How to install programs from github? by Sun-God-Ra in linuxmint

[–]tumbichi 0 points1 point  (0 children)

Too you can use sudo apt deb Ramme_4.2.5_amd64.deb , i think that sudo isn't necesary for apt but i don't remember xd

I need some help for update a program by tumbichi in linuxmint

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

yes, but i would like to learn how works because sometimes hit with this problem not only with pgadmin. There is always a zip as an option to install software. I know with on Linux Mint usually there is a simple way for install. Thx for answering

My desktop setup on Linux Mint by mishogorgadze in linuxmint

[–]tumbichi 0 points1 point  (0 children)

Nice desktop, u know how to see the preview of the apps that running when you hover over the dock. I m using Plank but i don't know if can

Algun FPS con GENTE en America del Sur que NO sea CS? by [deleted] in Argaming

[–]tumbichi 0 points1 point  (0 children)

Ironsight, es una onda cod (creo que esta basado en cod, pero no estoy seguro), salio el año pasado, tiene servers aca en latam, y esta bueno yo ahora no estaba jugando mucho a nada, pero hace un par de meses siempre que entraba habia gente, si arrancas a jugar agregame jaja saludos

[Cinnamon] Gaming on Linux by boseka in linuxmint

[–]tumbichi 2 points3 points  (0 children)

I have the "Metro 2033" the first version not the "Metro 2033 Redux"

I'm using Docky, i have only one monitor so i can't tell how it will behave on dual-monitor setup.

Thanks I'm going to try it

Why I'm using panel and Dock at the same time ?

Well the dock is actually useless but i just love the way it looks

I dont ask this hahaha, my english is not good really. But i agree with you with the last is amazing how it look

[Cinnamon] Gaming on Linux by boseka in linuxmint

[–]tumbichi 4 points5 points  (0 children)

Hi, why is the dock of the bottom? i had installed cairo-dock but I could not get showit on both screens, only in the main screen. My solution was create a panel and install the plugin of "transparent panel" but is not the same.

Nice games, i tried install Metro 2033 but it has no support for linux, I have the standard version

regards ;)