Posts

ios - UIButton squeezed when project is run -

Image
i created uibutton in interface builder, setting size 81x31 , using image of same size. however, in simulator comes out looking squeezed. know doing wrong? also, realize not lot of information not sure relevant. please let me know if there's else should post.

plugins - Gradle: illegal repetition error -

just started use artifactory manage libraries use..therefore had have artifactory plugin. used screencast tutorial @ http://www.jfrog.com/confluence/display/rtf/gradle+artifactory+plugin , added buildscript follows download plugin.. buildscript { repositories { maven { url 'http://localhost:8081/artifactory/plugins-release' credentials { username = "${artifactory_user}" password = "${artifactory_password}" } } } dependencies { classpath ( group: 'org.jfrog.buildinfo', name: 'build-info-extractor-gradle', version: '2.1.0' ) } } then in gradle.properties file in gradleuserhomedir, have following, password encrypted artifactory. artifactory_user=admin artifactory_password={desede}ifw8dygu849gr8enzumolj/l8cwy6fqfrzghhtyj9l0= artifactory_contexturl=http://localhost:8081/artifactory then ran g...

android - Link to app in Google play -

i have prepared lite version of app. take user paid version in google play if user clicks on "buy option". please point me process/steps achieve this. just use intent , start activity in this example.

security - Strange git branch showing up in all my repos -

i noticed git repo create or clone has —quiet branch in it, cannot check out or , don't know comes from, ideas? i regularly use github, source tree (mac version), git command line, any suggestions appreciated, edit2: noted @dcoder first character not regular hyphen or minus sign, makes more suspicious, edit: if git branch get: * ali master —quiet if git checkout -quit or git checkout "-quit" or git checkout \-quit or git checkout -- --quit or anyother variant come mind get: error: pathspec '-quiet' did not match file(s) known git. i looked ~/.gitconfig file , did not find related this, found culprit, should have guessed it, few days back, copied , pasted config script webpage fish config file, , happens in addition ' , " replaced similar looking characters - replaced had missed it, thanks @dcoder did grep on , found in fish config file, case closed,

How to monitor Seed method in an Azure Deployment? -

i have seed method - time around - quite bit of work. takes 10 minutes locally , has been running in azure (website) 20 minutes. the feedback have 1) monitoring azure database changes reflect successful seed - difficult addorupdate, , 2) fact package manager console still says "running seed method". is there other way more insight stage / method / etc seed method on, while it's running part of migration? if application running on windows azure websites, can instrument seed , migration methods calls system.diagnostics.trace , can stream log command line: azure site log tail mysite for details on procedure refer streaming diagnostics trace logging azure command line (plus glimpse!) , how debug application in windows azure web sites . you can view log stream in visual studio. described in announcing release of windows azure sdk 2.0 .net , can done in server explorer, connecting web site , selecting view streaming logs in output window command. ...

sql - How to join multiple tables in Oracle -

i keep getting follow error "column ambiguously defined" input below. using oracle sql developer. i in school , 1 of assignments. being said, unexperienced , need "child-like" explanation. assignment states, "create view list movies available renting. view should include title, category description (not category_code), company, director, actor, store, copy, type." think might joining many tables?!? or, obviously, not doing correctly. assistance tremendously appreciated. create view availablemovies select m.title, mcat.description, comp.company_name, d.director_name, act.actor_name, mrs.store_name, mrl.available_for_rent, mrl.type_distributed companies comp join directors d on comp.company_id = d.company_id join movie_directors mdir on d.director_id = mdir.director_id join actor_in_movies aim on mdir.movie_id = aim.movie_id join actors act on aim.actor_id = act.actor_id join actor_in_movies aim on act.actor_id = aim.actor_id join order_items o...

git - GitLab remote repository with a non standard port -

i have following error: ssh: connect host git.limeworks.eu port 22: connection refused fatal: not read remote repository. please make sure have correct access rights , repository exists. now, configuration have in local .ssh/config file is: host limeworks user git port 6565 hostname git.limeworks.eu; and in remote gitlab.yml: gitlab: ## web server settings host: git.limeworks.eu port: 6565 also, here's nginx setup (/sites-enabled/gitlab): server { listen 80; # e.g., listen 192.168.1.1:80; in cases *:80 idea server_name git.limeworks.eu; # e.g., server_name source.example.com; ... i have restarted gitlab , nginx services after each modification, yet nothing works! edit: worth noting here snippets sshd_config of remote server port 9595 allowusers rrw git ok , found fix: in gitlab.yml ... under advanced setting there's option change default ssh port # if use non-standard ssh port need specify ssh_po...