Skip to content

Instantly share code, notes, and snippets.

Įmonė, pristatė ir sumontavo nekokybiškus langus/duris bei atsisako vykdyti garantinius įsipareigojimus. Kur kreiptis dėl gaminių bei jų montavimo darbų kokybės įvertinimo?

Pirmiausia vartotojas turėtų raštu kreiptis į bendrovę ir nurodyti pastebėtus defektus bei paprašyti nurodyti raštu, kada įmonė atliks garantinį remontą.

Bendrovei neatsakant į vartotojo pretenziją bei vengiant vykdyti įsipareigojimus dėl nekokybiškų gaminių ir jų montavimo darbų vartotojas savo pasirinkimu gali kreiptis į atestuotą ekspertizės specialistą ar įmonę. Atestuotų ekspertizės įmonių registras nurodytas Valstybės įmonės Statybos produkcijos sertifikavimo centro tinklapyje www.spsc.lt, skyriuje „Įmonės“, poskyryje "Atestuotos įmonės", Statybos produkcijos sertifikavimo centro tel. (8 5) 272 8077 ir (8 5) 272 8078.

Valstybinė vartotojų teisių apsaugos tarnyba, gavusi vartotojo prašymą, kreiptųsi į bendrovę dėl taikaus ginčo sprendimo neteisminiu būdu, o nepavykus išspręsti ginčo, turėdama nepriklausomų ekspertų išvadas arba a

$ vmstat 3
procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
r b swpd free buff cache si so bi bo in cs us sy id wa
0 2 11912 2024512 928708 23605096 0 0 26 55 2 1 13 0 85 1
0 2 11912 2023780 928708 23605108 0 0 875 200 105 489 1 0 79 19
0 3 11912 2025400 928708 23605112 0 0 987 112 108 469 4 0 74 22
0 2 11912 2021124 928708 23605136 0 0 672 263 108 1048 18 1 63 18
1 2 11912 2021068 928708 23605148 0 0 715 193 74 568 6 0 76 17
0 3 11912 2017076 928708 23605144 0 0 1392 435 181 654 8 1 68 23
3 2 11912 2085556 928708 23605176 0 0 1243 391 377 1096 11 1 75 13
/*
NoMethodError: undefined method `rjust' for nil:NilClass
Backtrace:
/home/vidmantas/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.0.10/lib/active_support/whiny_nil.rb:48:in `method_missing'
/home/vidmantas/.rvm/gems/ruby-1.9.3-p0/gems/sass-3.1.12/lib/sass/script/color.rb:398:in `block in hex_str'
/home/vidmantas/.rvm/gems/ruby-1.9.3-p0/gems/sass-3.1.12/lib/sass/script/color.rb:398:in `map'
/home/vidmantas/.rvm/gems/ruby-1.9.3-p0/gems/sass-3.1.12/lib/sass/script/color.rb:398:in `hex_str'
/home/vidmantas/.rvm/gems/ruby-1.9.3-p0/gems/sass-3.1.12/lib/sass/script/color.rb:372:in `to_s'
/home/vidmantas/.rvm/gems/ruby-1.9.3-p0/gems/sass-3.1.12/lib/sass/tree/visitors/perform.rb:217:in `visit_prop'
$ lspci -v | grep SATA
00:1f.2 IDE interface: Intel Corporation 82801JI (ICH10 Family) 4 port SATA IDE Controller #1 (prog-if 8f [Master SecP SecO PriP PriO])
00:1f.5 IDE interface: Intel Corporation 82801JI (ICH10 Family) 2 port SATA IDE Controller #2 (prog-if 85 [Master SecO PriO])
def transition_hash(h)
def clean_keys(h)
nh = {}
h.each_pair do |k,v|
if v.is_a?(Array) and v.first.is_a?(String)
nh[k.to_sym] = v.first.strip
elsif v.is_a?(Array)
nh[k.to_sym] = []
v.each{|i| nh[k.to_sym] << clean_keys(i) }
end
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking URL (be patient)
Completed 100 requests
Completed 200 requests
Finished 200 requests
@vidmantas
vidmantas / gist:1136293
Created August 10, 2011 07:15
Stale object
Started POST "/c10d11/users/delete_change/53?change_id=8" for 127.0.0.1 at 2011-03-09 12:07:55 +0200
Processing by UsersController#delete_change as JS
Parameters: {"change_id"=>"8", "id"=>"53", "ctx_token"=>"c10d11"}
User Load (0.4ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 50 LIMIT 1
Persisted via cookie, calling login_check callback
Client Load (0.1ms) SELECT `clients`.* FROM `clients` WHERE `clients`.`id` = 10 LIMIT 1
Shop Load (0.1ms) SELECT `shops`.* FROM `shops` WHERE `shops`.`id` = 11 LIMIT 1
CACHE (0.0ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 50 LIMIT 1
User: 50, ctx_token: c10d11, path /c10d11/users/delete_change/53?change_id=8
CACHE (0.0ms) SELECT `clients`.* FROM `clients` WHERE `clients`.`id` = 10 LIMIT 1
@vidmantas
vidmantas / gist:1099338
Created July 22, 2011 12:20
Gemfile.personal
eval File.read(File.expand_path("Gemfile.personal")) if File.exists?(File.expand_path("Gemfile.personal"))
@vidmantas
vidmantas / gist:1055910
Created June 30, 2011 09:16
Reset frozen exim messages with ruby
# deliver with this or fetch results with `exiqgrep -zi` and deliver with `exim -M <message-id>`
require 'mail'
Dir.chdir("/var/spool/exim4/input")
frozen_email_ids = `exiqgrep -zi`.split
frozen_email_ids.each do |eid|
# fetch the body
email_string = "Date:" << File.read("#{eid}-D").split("Date:").last
@vidmantas
vidmantas / gist:931379
Created April 20, 2011 13:50
git console status
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/[\1]/'
}
branch_status () {
if git rev-parse --git-dir >/dev/null 2>&1
then
status=""
if git diff --quiet 2>/dev/null >&2
then