29 Jan 2021 @ 1:37 PM 

TL;DR: ncdu , du -h -d1 /.

On a system where you have root access, you should install the utility ncdu, which offers a friendly way of scanning and displaying the space occupied by the folders in the current directory ncdu (or in the folder sent as parameter when starting the utility: ncdu /).

If you don’t have root access, but you have the ncdu utility pre-installed, you won’t see the true size of the folders, so you should execute sudo ncdu /.

If you don’t have root access and you don’t have the ncdu utility at hand, you are stuck with the old du utility, which by default is pretty verbose (shows the size of each subfolder – if you’re in the root folder, it’s hard to get some meaningful info from the whole screens of data reported), so you should use some parameters to filter the output:

  • du -h -d1 / – use the ‘human’-style display (-h) to show the size in Kb, Mb, Gb, and the depth flag (-d, –max-depth) to help control the depth of directories that the command reports on.
  • du -cBM – max-depth=1 /var/lib/ 2>&1 | grep -v 'denied' | sort -n – to skip displaying errors in case of denied acces to some folders and to sort by size, descending, the remaining first-level folders.

Enjoy!

Posted By: Teodor Muraru
Last Edit: 29 Jan 2021 @ 01:38 PM

EmailPermalinkComments (0)
Tags
Tags: , , , ,
Categories: personal

 26 Apr 2020 @ 2:51 PM 

TL;DR : cd ~/public_html/var/session/ && ls -1 | wc -l && perl -e 'for(<*>){((stat)[9]<(unlink))}' && ls -1 | wc -l with a close follower from rsync: rsync -a – delete /tmp/empty/ ~/public_html/var/session/ .

I had to delete ~1.700.000 files in a Magento ./var/session/ folder

  • the Plesk interface crashed after a few minutes because it didn’t have the memory to list the folder’s content
  • after ssh-ing into the machine, the classic rm -rf var/session/* also crashed afeter a few minutes with the error: ” -sh: /usr/bin/rm: Argument list too long”

Count the initial number of files:

cd ~/public_html/var/session/

ls | wc -l

So I started looking on other solutions on the wild web and I came to this Kinamo post: Efficiently delete a million files on Linux servers that had 4 variants:

  • `-sh-4.2$ rm -rf var/session/*` -> -sh: /usr/bin/rm: Argument list too long
  • `find /yourmagicmap/* -type f -mtime +3 -exec rm -f {} \;`
  • `find /yourmagicmap/* -type f -mtime +3 -delete`
  • `-sh-4.2$ rsync -a –delete /tmp/empty/ var/session/`

Details on those variants:

  • rm: deleting millions of file is a no-can-do!
  • find -exec: an option, but slower!
  • find -delete: fast and easy way to remove loads of files.
  • rsync –delete: without doubt the quickest!

Beside that post, I found another solution proposed on a Unix StackExchange thread: Faster way to delete large number of files [duplicate] which had answers on another one: Efficiently delete large directory containing thousands of files. The solution was a delete-in-5000-files-batches script:

#!/bin/bash

# Path to folder with many files
FOLDER="/path/to/folder/with/many/files"

# Temporary file to store file names
FILE_FILENAMES="/tmp/filenames"

if [ -z "$FOLDER" ]; then
    echo "Prevented you from deleting everything! Correct your FOLDER variable!"
    exit 1
fi

while true; do
    FILES=$(ls -f1 $FOLDER | wc -l)
    if [ "$FILES" -gt 10000 ]; then
        printf "[%s] %s files found. going on with removing\n" "$(date)" "$FILES"
        # Create new list of files
        ls -f1 $FOLDER | head -n 5002 | tail -n 5000 > "$FILE_FILENAMES"

        if [ -s $FILE_FILENAMES ]; then
            while read FILE; do
                rm "$FOLDER/$FILE"
                sleep 0.005
            done < "$FILE_FILENAMES"
        fi
    else
        printf "[%s] script has finished, almost all files have been deleted" "$(date)"
        break
    fi
    sleep 5
done

Stats for my test:

  • batch-delete-script: 5000 files / 43 seconds -> ~100 files/s
  • rsync: 50.000 files / 6 seconds -> 8300 files/s !!

Obviously, the rsync is the fastest solution for deleting a huge number of files!


PS. There was another solution on one of the stackexchange threads above, that claimed that a Perl one-liner would be even faster:

cd ~/public_html/var/session/ && ls -1 | wc -l && perl -e ‘for(<*>){((stat)[9]<(unlink))}' && ls -1 | wc -l

I tested it and it was really faster…

Posted By: Teodor Muraru
Last Edit: 29 Jan 2021 @ 01:50 PM

EmailPermalinkComments (0)
Tags
Categories: Linux, Technology

 25 Sep 2017 @ 8:44 PM 

Browsere folosite:

Mobile browsers: Chrome, Dolphin, UC Browser, Puffin, Iron, Yandex Browser

 

Windows: I2PsBrowserPortable, Brave, CentBrowser, Epic Privacy Browser, FlashPeak SlimBrowser, FreeNet, Google Chrome, Mozilla Firefox, Opera, Opera Neon, Polarity, UC Browser, Cent

 

Linux: Chrome, Opera, Chromium, Firefox, …

 

Chrome:

Extensii si aplicatii:

HTML format
Generated: Mon, 25 Sep 2017 17:39:06 GMT
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36

Extensions: 18

  • Octotree v2.3.1

    Code tree for GitHub

  • Tab Resize – split screen layouts v2.3.3

    Split Screen made easy. Resize the CURRENT tab and tabs to the RIGHT into layouts on separate windows. w/ Multi Monitor Support.

  • Nimbus Screenshot & Screen Video Recorder v8.4.7

    Screen Capture FULL Web page or any part. Edit screenshots. Record screencasts – record video from your screen.

  • Share Extensions v0.1.2

    Export your favorite Google Chrome™ extensions as BBCode, HTML, Wiki, Markdown or text. Share extensions via Twitter, Google Mail™.

  • Pushbullet v336

    Bringing together your devices, friends, and the things you care about.

  • OneTab v1.18

    Save up to 95% memory and reduce tab clutter

  • Tampermonkey v4.4

    The world’s most popular userscript manager

  • Floating for YouTube™ Extension v0.7.3

    Open YouTube video in Floating Mini Player for YouTube™.

  • EditThisCookie v1.4.1

    EditThisCookie is a cookie manager. You can add, delete, edit, search, protect and block cookies!

  • LastPass: Free Password Manager v4.1.65.12

    LastPass, an award-winning password manager, saves your passwords and gives you secure access from every computer and mobile device.

  • Disconnect v5.18.23

    Make the web faster, more private, and more secure.

  • Cookie Inspector v2.0.9

    Missing cookie manager for Google Chrome. Edit and create cookies right in the Developer Tools.

  • Planyway: Calendar and Timeline for Trello v1.5.2.1

    Calendar and Team Timeline for Trello • Multiboard View • Google Calendar Sync

  • Utime v3.0.3

    Converts UNIX timestamps to human-readable dates and vice versa.

  • Application Launcher for Drive (by Google) v3.2

    Open Drive files directly from your browser in compatible applications installed on your computer.

  • Extensions Manager (aka Switcher) v0.2.1.2

    Handy extensions, applications & themes manager.

  • Zapier v2.2.2

    Manually trigger Zaps using Push

  • Evernote Web Clipper v6.12.3

    Use the Evernote extension to save things you see on the web into your Evernote account.

Disabled Extensions: 105

  • NooBoss v0.1.6.4

    A powerful Extensions Manager and Userscript Manager with many unique features

  • Google Translate v2.0.6

    View translations easily as you browse the web. By the Google Translate team.

  • Magic Actions for YouTube™ v7.2.0.5

    Enhance your YouTube watching experience! Cinema Mode, Mouse Wheel Volume Control, AutoHD, Expand, Snapshots …

  • Text Mode v0.5.0

    Browse the web without distractions via simple text based pages.

  • Postman Interceptor v0.2.23

    Sends requests fired through the Postman chrome app.

  • Tab-Snap v1.2.9

    Get open tab URLs for window, or load a list of URLs into new tabs on this window.

  • Xmarks Bookmark Sync v1.0.33

    Backup and sync your bookmarks and open tabs across computers and browsers. Xmarks is also available for Firefox, Safari and IE.

  • Open Screenshot v24.0

    The most powerful and freeware app for capture entire page, Save & Edit & Annotate & Print & Share

  • Media Hint v3.0.1

    Use the Media Hint service to access the content you need on the internet.

  • Sexy Undo Close Tab v7.5.5.6

    Accidentally closed your last tab? Tired of losing tabs in Incognito? Don’t worry, everything is possible with this sexy extension!

  • JSON Formatter v0.6.0

    Makes JSON easy to read. Open source.

  • Google Voice Search Hotword (Beta) v0.1.1.5023

    This extension allows you to say ‘Ok Google’ and start speaking your search.

  • Web Developer v0.5

    Adds a toolbar button with various web developer tools.

  • NiftySplit v0.8.0

    Splits the screen and loads all links in the second window

  • Lighthouse v2.3.0

    Lighthouse

  • Minimalist for Everything v0.7.0

    You live in webapps. Make them yours.

  • Chrome Poster v1.5

    Chrome poster is a developer tool that allows you to interact with http server

  • JSONView v0.0.32.3

    Validate and view JSON documents

  • Bookmarks Organizer v2.0.8

    Organize Bookmarks

  • uBlock Origin v1.14.8

    Finally, an efficient blocker. Easy on CPU and memory.

  • Transmission easy client v1.7.0

    Extension add Transmission web GUI in your web browser

  • Image Downloader v2.4.0

    Browse and download images on a web page.

  • BuiltWith Technology Profiler v2.6

    Find out what the website you are visiting is built with using this extension.

  • jQuery Debugger v0.1.3.2

    Chrome Developer Tools extension for jQuery development

  • Monster v1.0.2

    Monster analyzes web pages and suggests ways to improve their performance based on a set of rules for high performance web pages.

  • TickTick – Todo & Task List v1.1.2.6

    Your wonderful to-do & task list to make all things done and get life well organized.

  • Rememberry – Translate and Memorize v0.3.23

    Translate words and phrases while browsing the web, and easily replenish your foreign languages dictionary using flashcards.

  • Stackup v2.5.4

    Track, Measure, and Reward Online Reading.

  • Xdebug helper v1.6.1

    Easy debugging, profiling and tracing extension for Xdebug

  • MozBar v3.1.203

    MozBar from Moz

  • Google PageSpeed Insights Extension v2.2.4

    Check PageSpeed Insights score with a single click

  • Tabs Outliner v1.4.130

    The Next Generation Session Manager; A Really Working Too Many Open Tabs Solution; And Your Browsing Notebook.

  • Tab Wrangler v5.3.2

    Automatically closes inactive tabs and makes it easy to get them back

  • Dark Reader v3.5.0

    Care your eyes, invert page colors, use dark theme for night and daily browsing.

  • Excellent Selection v1.7.1

    Transform selected text using one of several built-in filters.

  • Link Klipper – Extract all links v2.4.1

    Extract all links on a webpage and export them to a file.

  • Watchdog v2.1

    A watchdog that checks analytics and trafic codes on every page you visit

  • Facebook Pixel Helper v0.7.13

    The Facebook Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.

  • Print or PDF with CleanPrint v4.8.4

    Print or PDF only what you want with CleanPrint

  • Tab Shutter v1.6.4

    Save all your current open tabs. Keep them accessible, anywhere and all the time.

  • XML Tree v2.0.1

    Displays XML data in a user friendly way.

  • jQuerify v2.5.0
  • HTTPS Everywhere v2017.9.12

    Encrypt the Web! Automatically use HTTPS security on many sites.

  • Forget Me – Clean History, Cookies & more v1.1.0

    Delete everything about a website. Cookies, History, localStorage, sessionStorage…everything!

  • Google Docs Offline v1.4

    Get things done offline with the Google Docs family of products.

  • AdBlock v3.16.0

    The most popular Chrome extension, with over 40 million users! Blocks ads all over the web.

  • Inbox by Gmail v1.0.0.1929

    Save links to web pages for later or share via email with one click.

  • Unlimited Free VPN – Hola v1.61.659

    Access websites blocked in your country, company or school with Hola! Hola is free and easy to use!

  • Holmes v3.3.0

    Chrome Bookmark Search Extension

  • Wappalyzer v5.1.1

    Identify web technologies

  • Nimbus Notes v3.2.3

    Nimbus Notes – The easiest way to taking notes and clip text/pictures from Web pages in Chrome browser.

  • Iconic History v1.0

    Visualize your browser history with favicons.

  • SuperSorter v0.4.4

    Clean up your bookmark mess! Sort bookmarks recursively, delete duplicates, merge folders, sort automatically, etc.

  • Eye Dropper v0.5.2

    Eye Dropper is open source extension which allows you to pick colors from web pages, color picker and your personal color history.

  • JetBrains IDE Support v2.0.9

    HTML/CSS/JavaScript editing and JavaScript debugging using JetBrains IDEs.

  • META SEO inspector v2.0.9

    Useful to inspect the meta data found inside web pages, usually not visible while browsing.

  • Resolution Test v2.3

    An extension for developers to test web pages in different screen resolutions, with an option to define your own resolutions

  • Table Capture v3.9

    Copies HTML tables to the clipboard or creates a Google Doc from them.

  • Proxmate v4.6.2

    Browse the web with confidence! Easily, Privately & Securely!

  • Live editor for CSS and LESS – Magic CSS v6.2.12

    Live preview of CSS/LESS code with an in-page editor. Autocomplete, convert LESS to CSS, beautify, minify, CSS reloader, linter, …

  • Inject jQuery v1.0.4

    Injects jQuery in the page.

  • EverSync – Sync bookmarks, backup favorites v13.1.1

    Synchronize your bookmarks, FVD Speed Dials. Secure online access. Backup, restore your bookmarks. Sync favorites between computers

  • XPath Helper Wizard v3.0.24

    Create XPath queries select similar elements and visualize the results.

  • Links Extractor v0.4

    click to search for links within this page

  • Memento Time Travel v1.0.0

    Travel to the past of the web by right-clicking pages and links.

  • Todoist: To-Do list and Task Manager v8.6

    Todoist is the beautifully simple to-do list designed to help you do more and stress less.

  • Page Ruler v2.0.9

    Draw a ruler to get pixel dimensions and positioning, and measure elements on any web page.

  • Trackitonline: package tracker v0.3.0.58

    Trackitonline – package tracking. Plugin for adding package items.

  • Web Scraper v0.2.0.16

    Tool for data extraction from websites

  • Google Analytics Debugger v2.6

    Prints useful information to the JavaScript console by enabling the debug version of the Google Analytics Javascript.

  • Pricy v4.2.8

    Pricy is your best friend when buying online. It tracks over 1.5 million products and gets you the best deals.

  • StumbleBar by StumbleUpon v11.304

    Discover the best of the web

  • Tag Assistant (by Google) v17.129.0

    Tag Assistant helps to troubleshoot installation of various Google tags including Google Analytics, Google Tag Manager and more.

  • Sprint Reader – Speed Reading Extension v2.5

    Speed reading made easy, train yourself to read 1800+ words per minute. Rapid serial visual presentation (RSVP) at its best!

  • Remote Transmission ++ v1.0.4

    Download and manage torrents on a remote Transmission client.

  • Popup Blocker Pro v1.3.5

    Blocks popups and popunders and makes you feel better.

  • The Great Suspender v6.30

    Automatically suspends unused tabs to free up system resources

  • Noisli v1.0.11

    Improve your focus and boost your productivity. Block out annoying noises and create the right environment for working or relaxing.

  • tab packager by tab.bz v4.14

    turn your open tabs into one super short link!

  • PageSpeed Insights (with PNaCl) v0.0.1.8

    Analyze the performance of your webpages and get specific suggestions on how to optimize them.

  • ColumnCopy v0.4.0

    Enables copying columns from tables.

  • Corporate Ipsum v0.0.1

    Generate random corporate double-speak for use as filler text

  • Linkclump v2.7.8

    Lets you open, copy or bookmark multiple links at the same time.

  • User Agent Switcher, URL sniffer v0.9.3.9

    This extension can switch the user agent of a browser. and it allows you to find all HTTP URLs.

  • Video DownloadHelper v2.0.1.0

    Download videos from the Web

  • Bookmark Checker v5.1.6

    Bookmarks Checker. Scan favorites for broken or dead links. Delete empty, and duplicate folders.

  • Google Keep Chrome Extension v3.1.16302.1110

    Save to Google Keep in a single click!

  • Scraper v1.7

    Scraper gets data out of web pages and into spreadsheets.

  • Responsive Inspector v1.0.0

    Responsive Inspector allows inspecting page media queries.

  • Save to Google v2.2016.503.11627

    Saves a webpage to Google.

  • Handle for Gmail & Google Apps v1.20

    Handle: To-do List, Inbox, and Calendar Management all in one

  • Text Tools v1.0.10

    Handy text tools a click away

  • Hotspot Shield VPN Free Proxy – Unblock Sites v3.0.5

    Unblock any blocked website and stay secure with Hotspot Shield. Easy use with one-click activation. Unlimited bandwidth!

  • Google Tone v2.0.7

    Broadcast any URL to computers within earshot.

  • Data Scraper – Easy Web Scraping v3.278.0

    Data Scraper extracts data out of HTML web pages and imports it into Microsoft Excel spreadsheets

  • VK Music Downloader – Safe v1.0.14

    Adds download button to every audio item on vk.com. All filenames are original. New vk design supported.

  • Better History v3.9.20

    A better look at your browsing history. The best searching, the sharpest interface, and the most useful filters – for your history.

  • SaveFrom Social v3.2.0

    SaveFrom поможет скачать музыку с вк бесплатно без рекламы

  • Storage Area Explorer v0.4.2

    Simple editor for Storage Area for Chrome Packaged Apps & Extensions

  • Live CSS Editor v1.8.0

    Live Write CSS onto any page

  • Print Friendly & PDF v2.3.1

    Print Friendly and PDF any Webpage

  • Stylebot v2.2

    Change the appearance of websites instantly. Preview and install styles created by other users on stylebot.me

  • Mercury Reader v4.2.4.0

    Mercury Reader – Clear away the clutter from all of your articles. Instantly.

  • Recent Bookmarks v1.6.2

    A list of recent bookmarks in descending order, grouped by the day they were added.

  • Startpage Toolbar v2.0.9

    Startpage Toolbar

Exported with Share Extensions for Google Chrome™

Apps: 35

  • Postman v5.2.0
  • Google Keep – notes and lists v3.1.17381.1239

    Quickly capture what’s on your mind and share those thoughts with friends and family.

  • Floating for YouTube™ v0.7.0

    Always on top Floating Mini Player for YouTube™.

  • Google Slides v0.9

    Create and edit presentations

  • Google Docs v0.9

    Create and edit documents

  • Google Drive v14.1

    Google Drive: create, share and keep all your stuff in one place.

  • Habitual v0.2.5

    Better Habits, Better You.

  • Link All v1.4.0.0

    Link all the nodes. It is not as easy as you would think.

  • Signal Private Messenger v0.43.4

    Privacy is possible. Signal makes it easy.

  • YouTube v4.2.8
  • HTML Editor v1.0.0.1

    A Reactive Editor for HTML5 Creations and Experiments

  • Alchemize v2.1.0

    Minify & pretty-print source code with ease.

  • Visual History v0.5.5

    Visual History for Chrome web browser. Display your browsing behaviour through an interactive graph.

  • Google Apps Script v1.5

    Create and edit scripts

  • Google Play Music v1.375.0

    Google Play Music for Chrome

  • Postman – REST Client v0.8.4.19
  • Google Sheets v1.1

    Create and edit spreadsheets

  • Caret v1.6.28

    Professional text editing for Chrome and Chrome OS

  • Google Photos v1.0

    Store, search, and share a lifetime of photos

  • Timer v0.0.0.6

    Timer Countdown + Alarm Clock + Stopwatch

  • Kindle Cloud Reader v1.7.0.1

    Kindle Cloud Reader – Read Kindle books in your browser, and shop on Amazon.com.

  • html Fire v1.0.0.0

    An Offline Realtime HTML Editor, for quick coding checking on the code

  • Mohiomap v1.6

    Visually explore and organize all of your Google Drive, Evernote, Dropbox, and Box files and make better informed decisions.

  • Orb-X v0.2

    Guide the orb to the black hole.

  • WorkFlowy v1.9

    WorkFlowy is a beautiful tool for lists and notes. It’s simple enough for a shopping list, and powerful enough to run a company.

  • Mini Player for YouTube, Vimeo & Facebook v1.26.5

    Mini Player allows you to play videos on a floating mini window at the bottom of your screen from sites YouTube, Vimeo, Facebook

  • JSON Editor v3.7.5

    A tool to view, edit, format, and validate JSON

  • Mindomo – Mind Mapping and Concept Mapping v7.6.3

    Real-time collaboration on mind maps, concept maps and outlines. Works with Google Drive.

  • DevDocs v1.0.8

    All-in-one, offline API documentation browser with a fast, organized, and searchable interface.

  • Chrome MySQL Admin v4.6.4

    This application provides you ‘MySQL GUI Admin console’ windows.

  • Tamper Chrome (application) v1.3.1

    Intercept and modify Chrome requests

  • Chrome Apps & Extensions Developer Tool v0.1.18

    Develop and Debug Chrome Apps & Extensions.

  • TeamViewer v12.1.7400

    TeamViewer – the All-In-One Software for Remote Support and Home Office

  • Gmail v8.1

    Fast, searchable email with less spam.

  • Reditr – The Best Reddit Client v0.3.3.4

    Desktop application developed for Reddit with an intuitive column design with fast browsing for your endless entertainment needs.

 

Exported with Chrome Extensions Share

 

Posted By: Teodor Muraru
Last Edit: 25 Sep 2017 @ 09:02 PM

EmailPermalinkComments (0)
Tags

 30 Nov 2016 @ 4:36 PM 

Cafeaua Claudiei (cana mai mica [multumim, Jumbo!]);
Cafeaua lui Teo (cana mai mare [multumim, Bogo!]).
???
Cafeaua in familia Muraru

Posted By: Teodor Muraru
Last Edit: 30 Nov 2016 @ 04:37 PM

EmailPermalinkComments (0)
Tags
Tags: , ,
Categories: personal

 05 Nov 2015 @ 11:11 AM 

——————- Date contract ———————–
Dezvoltator / vanzator / adminstrator
Garantie imobil (e trecuta in contract?)
Asociatie de proprietari constituita?
Cota indiviza teren de sub cladire pentru fiecare proprietar
Schite amplasare tevi apa / cabluri electrice in podea/pereti
Pret acte notariale (prima casa / credit ipotecar)
——————- Date pozitionare complex ———————–
Stare drum de acces de la soseaua principala cea mai apropiata la complex
Posibilitate acces rapid ambulanta/pompieri in interiorul complexului
Infrastructura servicii publice – farmacii, RATB/Metrou, parc, scoli, gradinite, supermarket
Management acumulari de apa/zapada in timpul ploilor/zapezilor puternice
Furnizor servicii Internet/TV/Tel in complex
Spatii joaca copii
Puncte de paza intrare/iesire
Pozitionare garaj: la suprafata / la subsol (intrare/iesire diferite)
——————– Date bloc ———————-
Data incepere/dare in folosinta bloc
Stare generala cladire, holuri, subsol – varuit, crapaturi, igrasie, finisari
Adancimea fundatiei – sub nivel(uri) subsol
Grosime cabluri fierbeton in fundatie / pereti
Peretii exteriori – grosime, material (bca / caramida / monolit)
Peretii interiori – grosime, material (bca / caramida)
Hidroizolatie (acoperis, vopsea exterior care nu permite trecerea apei)
Termoizolatie (grosime – 10cm)
Racordare cladire la electricitate, apa, canalizare (sa nu fie cu fosa)
(Stare statie pompare apa – calitate, rugina vizibila)
Marime ascensoare / pozitionare scara
——————–Date apartamente ———————-
Pret (EUR)/m util (interior+terasa/balcon), Pret (EUR)/m construit (total)
Schita apartament, suprafete utile/construite
Vedere exterioara / obiective inconjuratoare importante
Orientare geografica apartament
Stare ocupare apartamente deasupra/dedesubt
Costuri intretinere la comun (apa, paza, lift, curatenie)
Costuri facturi – consum/apartament (gaz, electricitate, apa)
Localizare apometre, contor electric, contor gaze (in apartament / hol comun / subsol)
Peretii interiori – racorduri finalizate la utilitati: gaze, apa, electricitate
Pervazuri geamuri – sunt inclinate inspre exterior?
Panta gresie baie/balcon – e inclinata corect spre gaura de scurgere?
Aerisire baie – geam catre exterior / gura aerisire
Bucatarie – deschisa/inchisa
Inchidere bucatarie: gratis/contra cost/diferenta pentru personalizare
Stare/calitate instalatii sanitare/electrice, pereti varuiti
Calitate/marca centrala termica (boiler incorporat/extern)
Calitate/stare (Pregatire instalare) aer conditonat (evacuare la geam/pe acoperis [la comun])
Calitate/marca termopane / usa (izolare termica/fonica)
Calitate/marca parchet, gresie/faianta
Incalzire apartament: calorifere (dimensiune/camera) / in pardoseala
Numar/pozitionare prize electrice/internet in camere
.

Posted By: Teodor Muraru
Last Edit: 05 Nov 2015 @ 11:11 AM

EmailPermalinkComments (0)
Tags
Categories: personal

 14 Dec 2014 @ 8:09 PM 
Posted By: Teodor Muraru
Last Edit: 31 May 2020 @ 09:54 PM

EmailPermalinkComments (0)
Tags
Categories: personal

 13 Dec 2014 @ 5:45 PM 

Ciocanele de pui + cartofi la cuptor

image

Alba ca zapada (multumim, Dr. Oetker! 🙂 )

image

image

Posted By: Teodor Muraru
Last Edit: 13 Dec 2014 @ 05:45 PM

EmailPermalinkComments (0)
Tags
Categories: personal

 24 Nov 2014 @ 4:04 PM 

image
image

image

Posted By: Teodor Muraru
Last Edit: 15 Aug 2021 @ 03:22 PM

EmailPermalinkComments (1)
Tags
Categories: personal

 15 Jan 2014 @ 12:40 PM 

Chrome:

Extensii si aplicatii:

HTML format
Generated: Wed, 15 Jan 2014 10:51:23 GMT

User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.76 Safari/537.36

Extensions: 10 (Disabled Extensions: 100 ) Apps: 30
  • Xmarks Bookmark Sync v1.0.27
    Backup and sync your bookmarks and open tabs across computers and browsers. Xmarks is also available for Firefox, Safari and IE.
  • Sexy Undo Close Tab v7.3.1
    Accidentally closed your last tab? Tired of losing tabs in Incognito? Don’t worry, everything is possible with this sexy extension!
  • Share Extensions v0.1.1
    Export your favorite Google Chrome™ extensions as BBCode, HTML, Wiki or text list for your Blog. Share the extensions via Twitter, Google Buzz™, Google Mail™ or add them to Google Bookmarks™ lists. Also you can directly enable/disable your extensions.
  • Webpage Screenshot Capture v13.6
    The most powerful and freeware app for capture entire page, Save & Edit & Annotate & Print & Share
  • Forget Me – Clean History, Cookies & more v1.1.0
    Delete everything about a website. Cookies, History, localStorage, sessionStorage…everything!
  • LastPass v3.0.22
    LastPass is a free password manager and form filler. LastPass is also available for Firefox, Internet Explorer, Opera and Safari.
  • Ultimate User Agent Switcher, URL sniffer v0.9.3.5
    This extension can switch the user agent of a browser. and it allows you to find all HTTP URLs.
  • Extensions Manager (aka Switcher) v0.2.1.2
    Handy extensions, applications & themes manager.
  • Better History v2.4.1
    A better look at your browsing history. The best searching, the sharpest interface, and the most useful filters – for your history.
  • Readability v3.0.15
    Readability is a web and mobile app that zaps clutter and saves web articles in a comfortable reading view.

Disabled Extensions: 100

  • Google Translate v1.2.5
    This extension translates entire webpages into a language of your choice with one click. By the Google Translate team.
  • Magic Actions for YouTube™ v6.7.1
    Enhance your YouTube watching experience! Auto HD, Ad Block, Cinema Mode, Mouse Wheel Volume Control, Screenshot…
  • Mouse Stroke v2.0.3
    Use mouse strokes (gestures) to accelerate browsing. Super drag & go, rocker gestures and wheel gestures in one extension!
  • Tab-Snap v1.2.8
    Get open tab URLs for window, or load a list of URLs into new tabs on this window.
  • XHR POSTER v1.3.1
    Tool for sending XHR to Web Pages, RESTful Web Services. You can save/load requests.
  • SEOquake v1.0.18
    SEOquake is a SEO extension (toolbar) for Google Chrome, it shows PageRank, Alexa and tons of SEO parameters, also works in SERP
  • Webpage Screenshot Bar v1.2
    This extension add a powerful bar when you selecting text. Capture, Translate, Share, Highlight, and…
  • XML Beautifier v0.0.1
  • TooManyTabs for Chrome v2.0.0
    Manage your tabs, improve your browsing, and maintain your sanity when you have many tabs open.
  • Discover DevTools Companion v0.2.13
  • MeasureIt! v1.1.3
    Draw out a ruler that will help you get the pixel width and height of any elements on a webpage.
  • Shortcuts for Google™ v3.3.2
    Choose from 200+ Google™ services to show up as buttons in a space-saving popup. Official Firefox extension port.
  • Bookmark Sentry (scanner) v1.7.18
    A bookmark scanner that checks for duplicate and bad links.
  • Web Developer v0.4.5
    Adds a toolbar button with various web developer tools. The official port of the Web Developer extension for Firefox.
  • NiftySplit v0.8.0
    Splits the screen and loads all links in the second window
  • Firebug Lite for Google Chrome™ v1.4.0.11967
    Firebug Lite for Google Chrome, supported by the Firebug Working Group.
  • Minimalist for Everything v0.6.8
    You live in webapps. Make them yours
  • Radio Player Live v2.1.7
    Easily listen any audio stream. Add your own feeds, or add radio stations among the thousands available.
  • DuckDuckGo for Chrome v42.5.15
    DuckDuckGo enhancements for Chrome.
  • Find My Bookmarks v1.1.4
    Find all your related bookmarks for the current website.
  • Adblock Plus v1.7.2
    The free adblock tool for Chrome: Blocks annoying video ads on YouTube, Facebook ads, banners and much more.
  • Strict Workflow v1.6.1
    Enforces a 25min/5min workflow: 25 minutes of distraction-free work, followed by 5 minutes of break. Repeat as necessary.
  • JSONView v0.0.32.2
    Validate and view JSON documents
  • Bookmarks Organizer v2.0.3
    Organize Bookmarks
  • PHP Ninja Manual v2.0
    PHP 5.5 documentation in a popup
  • Image Downloader v1.3
    See all images shown or linked on a web page and download them.
  • BuiltWith Technology Profiler v2.2
    Find out what the website you are visiting is built with using this extension.
  • Canonical v1.3
    If a page has a canonical rel link, provide a quick way to navigate to it.
  • Tampermonkey v3.6.3737
    The most popular userscript manager for Blink-based browsers
  • SEO Site Tools v2.91
    On-Page / External metrics, Social Media info, PR / numbering on Yahoo, Bing, Google SERPs.Extends WMT, YSE and GA with metrics
  • PerfectPixel by WellDoneCode v1.61
    This extension helps develop your websites with per pixel accuracy!
  • Add to Wunderlist v1.2.2
    The Add to Wunderlist extension is the best way to remember websites you want to visit later, with just one click.
  • *Split Screen* v0.45
    Prompts the user for two URL addresses and then displays both in one window!
  • Xdebug helper v1.4.2
    Easy debugging, profiling and tracing extension for Xdebug
  • Open Graph Inspector v1.1.1
    Show open graph information.
  • Springpad Clipper v1.1212.12.6
    Save and organize what matters to you… anywhere
  • Session Buddy v3.2.4
    Manage Your Browser Sessions
  • Disable All Extensions Plus v1.2.2
  • Symtica v1
    Symtica helps you to access quickly to all your google’s apps. You can now get the best shortcut you have ever wanted.
  • Service Pages for Google Chrome™ v5.0.3
    All service pages for Google Chrome™.
  • Stylish v1.2
    Restyle the web with Stylish, a user styles manager. Stylish lets you easily install themes and skins for Google, Facebook, YouTube, Orkut, and many, many other sites.
  • Edit This Cookie v1.2.5
    Edit This Cookie is a cookie manager. You can add, delete, edit, search, protect and block cookies!
  • Pendule v1.0.0
    Web developer tools for Chrome.
  • CSSViewer v1.4
    A simple CSS property viewer.
  • Temporary Bookmarks v1.3
    Add actual page or any web links on actual page into temporary bookmarks. You can open these web links later.
  • Gist v0.3.26
    Gist for Chrome gives you contact details, recent news and social updates for all your connections. Check it out in Gmail.
  • Send to Evernote v2.6.3.3
    1-Click to send web article to Evernote
  • Holmes v3.1.7
    Chrome Bookmark Search Extension
  • Pin It Button v1.2
    Pinterest for Google Chrome
  • PageSpeed Insights (by Google) v2.0.4.2
    PageSpeed Insights analyzes the performance of your web pages and provides suggestions to make them faster.
  • New Additions v1.1
    Quick access to web store for all the categories including Apps, Extensions, Themes…..
  • SendTab v3.2.1
    Send links to any device on the internet!
  • Rapportive v1.4.1
    Making email a better place
  • SuperSorter v0.4.4
    Clean up your bookmark mess! Sort bookmarks recursively, delete duplicates, merge folders, sort automatically, etc.
  • Yah’s Link Checker for Chrome v1.205
    Extension based on ‘The Cavern Link Checker’.
  • Chrome Sniffer v0.3.1
    Detect web applications and javascript libraries run on browsing website.
  • META SEO inspector v2.0.4
    Useful to inspect the meta data found inside web pages, usually not visible while browsing.
  • REST Sniffer v0.0.9
    A developers tool that extends the Network tab
  • Web Development Expert! v1.1.2
    Websites to follow if you are into Web Development.
  • Clearly v9.3374.689.453
    Clearly makes blog posts, articles and webpages clean and easy to read. Save them to Evernote to read anywhere.
  • Links Extractor v0.4
    click to search for links within this page
  • Disconnect v5.11.0
    Make the web faster, more private, and more secure.
  • View Image Info (properties) v0.0.1.1
    Get properties(including dimensions, URL, file size, file type info) of the image your cursor is pointing to via context menu.
  • Page Ruler v2.0.5
    Draw a ruler to get pixel dimensions and positioning, and measure elements on any web page.
  • Tape v1.4
    Measurement tools, rulers and grids
  • Google Analytics Debugger v2.6
    Prints useful information to the JavaScript console by enabling the debug version of the Google Analytics Javascript.
  • Shareaholic for Google Chrome™ v5.8.1
    The easiest way to share & bookmark great content from anywhere on the web with Facebook, Twitter, Pinterest & 200+ other services.
  • StumbleUpon v5.12.2.3
    Explore more.
  • Development Pointers v1.0
    Websites to follow for application development.
  • ChromeVox v1.31.1
    ChromeVox – Giving Voice to Chrome
  • DcdRvsLnk – Decode or reverse links v1.0.23
    DcdRvsLnk – Decode, invert or reverse links: Unscramble the encrypted link of some sites. Shares, copies,pdf, generates QR Code …
  • SmartVideo For YouTube™ v0.9928
    Better YouTube experience. Provides ‘Smart Buffer’ for slow connections; auto loop; buffer preferences; quality selection; and more.
  • Http Requests v0.0.5.1
  • URL Parameters v1.1
    Breakdown the long URL into page address and URL parameters. Change the URL parameters and rejoin it to create new URLs.
  • Download Master v4.0.0.2
    Download all files linked on the web page
  • Responsive Inspector v1.0.0
    Responsive Inspector allows inspecting page media queries.
  • Ghostery v5.1.1
    Protect your privacy. See who’s tracking your web browsing with Ghostery.
  • Postponer Manager v0.4.3
    Read and manage your Read It Later reading list
  • Über simple bookmark count v1.0
    Shows an icon with the bookmark count.
  • Simple Bookmarks v16.2
    Simple Bookmarks
  • PHP Console v3.0.18
    Display PHP errors & vars dumps in Google Chrome console and notification popups, execute PHP code remotely.
  • Pocket (formerly Read It Later) v1.5.6
    Pocket Extension for Google Chrome – The best way to save articles, videos and more
  • YSlow v3.1.2
    Make your pages faster with Yahoo!’s page performance tool
  • FreshStart – Cross Browser Session Manager v1.6.1
    Need simple session management? Several users on the same Chrome? FreshStart is a simple cross browser session manager.
  • csscan v2.0.1
    Offers a quick overview of CSS properties to the element the mouse cursor is hovering.
  • Buffer v2.3.29
    Buffer is the best way to share great content to Twitter, Facebook and LinkedIn from anywhere on the web, with just one click.
  • SEO for Chrome v0.9.5
    SEO for Chrome provides SEO Stats and Tools that make your daily SEO tasks easier. The MOST popular Google Chrome SEO Plugin!
  • Mydex Bookmarks v0.1.1.32
    Bookmarks extension
  • Speed Tracer (by Google) v0.27
    Get insight into the performance of your web applications.
  • Stylebot v2.2
    Change the appearance of websites instantly. Preview and install styles created by other users on stylebot.me
  • Auto Refresh Plus v1.8.9.23
    Refresh page automatically, plus page monitor feature etc.
  • Check My Links v3.3.4
    Check My Links is a link checker that crawls through your webpage and looks for broken links.
  • WebDeveloper Image Overlay v0.1.5
    Develop your website accurate to the last pixel – check your layout by overlaying a picture of your design on the current website.
  • Recent Bookmarks v1.6.1
    A list of recent bookmarks in descending order, grouped by the day they were added.
  • OneClick Cleaner for Chrome v0.9.0.9
    Is Chrome browser Slow? Clean up browsing data. Make your Chrome browser more faster and Protect your privacy!!
  • Ozone v1.30
    Ozone is the Omnibox on steroids. It recommends stuff from the web services you already use. Oh yea, and it’s really fast.
  • Postponer Adder v0.4
    Add items to your Read It Later reading list
  • LivePage v1.5.1
    LivePage reloads website resources (such as CSS, LESS, HTML and JavaScript) as they change on the server.
  • Evernote Web Clipper v6.0.8
    Use the Evernote extension to save things you see on the web into your Evernote account.
  • Humans.txt v1.4.5
    Show humans.txt for the current website, if it exists (see http://humanstxt.org)
  • Google Docs v0.5
    Create and edit documents
  • Google Drive v6.3
    Google Drive: create, share and keep all your stuff in one place.
  • YouTube v4.2.6
    The world’s most popular online video community.
  • Google Search v0.0.0.20
    The fastest way to search the web.
  • Postman – REST Client v0.8.4.3
  • Gmail v7
    Fast, searchable email with less spam.
  • ICEcoder v3.4
    JavaScript and PHP based code editor that runs in the browser
  • BIODIGITAL HUMAN v0.9.5
    The BioDigital Human is a 3D platform that simplifies the understanding of anatomy, disease and treatments. Explore the body in 3D!
  • Sketchboard.Me v0.1.0.0
    Simple Software Design in Realtime. Sketch UML, free hand, notes, mind maps and roadmaps. Create simple diagrams together.
  • Quizlet v4.1
    Beautifully simple learning tools for students. Join millions of students and teachers already using Quizlet – for free!
  • Gliffy Diagrams v1.0.27
    Diagrams Made Easy. Draw a flowchart, org chart, UML, ERD, network diagram, wireframe, BPMN, and other diagrams.
  • Archiver for Gmail v17
  • Kingdom Rush v1.1.0.1
    Defend your Kingdom against the forces of evil in this epic tower defense game!
  • Read Later Fast v1.6.5.1
    Save pages to read later — online or offline, and fast! Avoid too many tabs and make your browsing a blast!
  • Byrd IRC Client v1.7.3
    Byrd IRC client for Google Chrome.
  • Highgrounds v4
    Highgrounds is a FREE multiplayer strategy game with collectable units. Play against friends or join tournaments to win free units!
  • Model Scaler v4.3
  • Advanced REST client v3.1.7
    The web developers helper program to create and test custom HTTP requests.
  • Timer v0.0.0.6
    Timer Countdown + Alarm Clock + Stopwatch
  • Google Keep v2.0.14032.121
    Quickly capture what’s on your mind and be reminded at the right place or time.
  • HootSuite v5.244
    Publish updates, track activity, and analyze results across multiple social networks including Twitter and Facebook.
  • Little Alchemy v0.0.15.7
    Start with four basic elements, then mix and match them to create more and more awesome things.
  • WorkFlowy v1.0.8
    WorkFlowy is a beautiful tool for lists and notes. It’s simple enough for a shopping list, and powerful enough to run a company.
  • Quick Note v1.6.3
    The quickest way to take notes in Chrome, as quick and slick as the best desktop note-app.
  • Pocket v0.600
    The best way to save-for-later articles, videos and more, even works offline!
  • Hacker News Reader v0.2
    Quickly browse Hacker News articles and comments
  • Picky Wallpapers v1.0.0
    Desktop wallpapers for all screen sizes with 100+ mobile devices supported.
  • All Cheat Sheets v1.1
    Collecting All The Cheat Sheets
  • Wunderlist for Chrome v2.3.4.4
    Your beautiful and simple to-do list app
  • Click&Clean App v8.0
    This app checks whether you have enhanced private data protection and prevents tracking of your on-line activity.
Exported with Chrome Extensions Share
Text format
Generated: Wed, 15 Jan 2014 10:50:36 GMT
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.76 Safari/537.36
Extensions: 10 (Disabled Extensions: 100) Apps: 30
Extensions: 10
– Xmarks Bookmark Sync v1.0.27: https://chrome.google.com/webstore/detail/ajpgkpeckebdhofmmjfgcjjiiejpodla
– Sexy Undo Close Tab v7.3.1: https://chrome.google.com/webstore/detail/bcennaiejdjpomgmmohhpgnjlmpcjmbg
– Share Extensions v0.1.1: https://chrome.google.com/webstore/detail/chdafcbnfkfenoeejpaeenpdamhmalhe
– Webpage Screenshot Capture v13.6: https://chrome.google.com/webstore/detail/ckibcdccnfeookdmbahgiakhnjcddpki
– Forget Me – Clean History, Cookies & more v1.1.0: https://chrome.google.com/webstore/detail/gekpdemielcmiiiackmeoppdgaggjgda
– LastPass v3.0.22: https://chrome.google.com/webstore/detail/hdokiejnpimakedhajhdlcegeplioahd
– Ultimate User Agent Switcher, URL sniffer v0.9.3.5: https://chrome.google.com/webstore/detail/ljfpjnehmoiabkefmnjegmpdddgcdnpo
– Extensions Manager (aka Switcher) v0.2.1.2: https://chrome.google.com/webstore/detail/lpleipinonnoibneeejgjnoeekmbopbc
– Better History v2.4.1: https://chrome.google.com/webstore/detail/obciceimmggglbmelaidpjlmodcebijb
– Readability v3.0.15: https://chrome.google.com/webstore/detail/oknpjjbmpnndlpmnhmekjpocelpnlfdiDisabled Extensions: 100
– Google Translate v1.2.5: https://chrome.google.com/webstore/detail/aapbdbdomjkkjkaonfhkkikfgjllcleb
– Magic Actions for YouTube™ v6.7.1: https://chrome.google.com/webstore/detail/abjcfabbhafbcdfjoecdgepllmpfceif
– Mouse Stroke v2.0.3: https://chrome.google.com/webstore/detail/aeaoofnhgocdbnbeljkmbjdmhbcokfdb
– Tab-Snap v1.2.8: https://chrome.google.com/webstore/detail/ajjloplcjllkammemhenacfjcccockde
– XHR POSTER v1.3.1: https://chrome.google.com/webstore/detail/akdbimilobjkfhgamdhneckaifceicen
– SEOquake v1.0.18: https://chrome.google.com/webstore/detail/akdgnmcogleenhbclghghlkkdndkjdjc
– Webpage Screenshot Bar v1.2: https://chrome.google.com/webstore/detail/akgpcdalpfphjmfifkmfbpdmgdmeeaeo
– XML Beautifier v0.0.1: https://chrome.google.com/webstore/detail/algapgcdeecjibplhdokcenhobenecdn
– TooManyTabs for Chrome v2.0.0: https://chrome.google.com/webstore/detail/amigcgbheognjmfkaieeeadojiibgbdp
– Discover DevTools Companion v0.2.13: https://chrome.google.com/webstore/detail/angkfkebojeancgemegoedelbnjgcgme
– MeasureIt! v1.1.3: https://chrome.google.com/webstore/detail/aonjhmdcgbgikgjapjckfkefpphjpgma
– Shortcuts for Google™ v3.3.2: https://chrome.google.com/webstore/detail/baohinapilmkigilbbbcccncoljkdpnd
– Bookmark Sentry (scanner) v1.7.18: https://chrome.google.com/webstore/detail/bdglbbcbmgnimogcmcdenggkpdmihlga
– Web Developer v0.4.5: https://chrome.google.com/webstore/detail/bfbameneiokkgbdmiekhjnmfkcnldhhm
– NiftySplit v0.8.0: https://chrome.google.com/webstore/detail/bkmjnlfillpnkgmjnhgklpjjlpjnfeil
– Firebug Lite for Google Chrome™ v1.4.0.11967: https://chrome.google.com/webstore/detail/bmagokdooijbeehmkpknfglimnifench
– Minimalist for Everything v0.6.8: https://chrome.google.com/webstore/detail/bmihblnpomgpjkfddepdpdafhhepdbek
– Radio Player Live v2.1.7: https://chrome.google.com/webstore/detail/boidnimkebefpfgbeekbjoponilnomle
– DuckDuckGo for Chrome v42.5.15: https://chrome.google.com/webstore/detail/bpphkkgodbfncbcpgopijlfakfgmclao
– Find My Bookmarks v1.1.4: https://chrome.google.com/webstore/detail/cahmhjehomglimoklhidcfdlfmahlold
– Adblock Plus v1.7.2: https://chrome.google.com/webstore/detail/cfhdojbkjhnklbpkdaibdccddilifddb
– Strict Workflow v1.6.1: https://chrome.google.com/webstore/detail/cgmnfnmlficgeijcalkgnnkigkefkbhd
– JSONView v0.0.32.2: https://chrome.google.com/webstore/detail/chklaanhfefbnpoihckbnefhakgolnmc
– Bookmarks Organizer v2.0.3: https://chrome.google.com/webstore/detail/cjdenbocfdbjohomdaojaokiffjbnaca
– PHP Ninja Manual v2.0: https://chrome.google.com/webstore/detail/clbhjjdhmgeibgdccjfoliooccomjcab
– Image Downloader v1.3: https://chrome.google.com/webstore/detail/cnpniohnfphhjihaiiggeabnkjhpaldj
– BuiltWith Technology Profiler v2.2: https://chrome.google.com/webstore/detail/dapjbgnjinbpoindlpdmhochffioedbn
– Canonical v1.3: https://chrome.google.com/webstore/detail/dcckfeohihhlbeobohobibjbdobjbhbo
– Tampermonkey v3.6.3737: https://chrome.google.com/webstore/detail/dhdgffkkebhmkfjojejmpbldmpobfkfo
– SEO Site Tools v2.91: https://chrome.google.com/webstore/detail/diahigjngdnkdgajdbpjdeomopbpkjjc
– PerfectPixel by WellDoneCode v1.61: https://chrome.google.com/webstore/detail/dkaagdgjmgdmbnecmcefdhjekcoceebi
– Add to Wunderlist v1.2.2: https://chrome.google.com/webstore/detail/dmnddeddcgdllibmaodanoonljfdmooc
– *Split Screen* v0.45: https://chrome.google.com/webstore/detail/eachfleknamlcepmplpdghagngjfjkin
– Xdebug helper v1.4.2: https://chrome.google.com/webstore/detail/eadndfjplgieldjbigjakmdgkmoaaaoc
– Open Graph Inspector v1.1.1: https://chrome.google.com/webstore/detail/ebkdjclngbmacgocokfncakpdeemgfjm
– Springpad Clipper v1.1212.12.6: https://chrome.google.com/webstore/detail/eclcnlepmfepnccogfjdafhhlgcfdmnj
– Session Buddy v3.2.4: https://chrome.google.com/webstore/detail/edacconmaakjimmfgnblocblbcdcpbko
– Disable All Extensions Plus v1.2.2: https://chrome.google.com/webstore/detail/ejhdjfmkegkpenillofhpmikailkjpkb
– Symtica v1: https://chrome.google.com/webstore/detail/fafldeedegmfkdkolgpcopgfcdidgbjk
– Service Pages for Google Chrome™ v5.0.3: https://chrome.google.com/webstore/detail/fjmhjjohhiehaoljianalpmfcceojaff
– Stylish v1.2: https://chrome.google.com/webstore/detail/fjnbnpbmkenffdnngjfgmeleoegfcffe
– Edit This Cookie v1.2.5: https://chrome.google.com/webstore/detail/fngmhnnpilhplaeedifhccceomclgfbg
– Pendule v1.0.0: https://chrome.google.com/webstore/detail/gbkffbkamcejhkcaocmkdeiiccpmjfdi
– CSSViewer v1.4: https://chrome.google.com/webstore/detail/ggfgijbpiheegefliciemofobhmofgce
– Temporary Bookmarks v1.3: https://chrome.google.com/webstore/detail/gicpnnockilhclmgekhdnnjokdmlfhmk
– Gist v0.3.26: https://chrome.google.com/webstore/detail/gkdeicjlogpjofphmccgkaekkbhchfnc
– Send to Evernote v2.6.3.3: https://chrome.google.com/webstore/detail/gnilckpgiopfcokcijkhpghppekcoafm
– Holmes v3.1.7: https://chrome.google.com/webstore/detail/gokficnebmomagijbakglkcmhdbchbhn
– Pin It Button v1.2: https://chrome.google.com/webstore/detail/gpdjojdkbbmdfjfahjcgigfpmkopogic
– PageSpeed Insights (by Google) v2.0.4.2: https://chrome.google.com/webstore/detail/gplegfbjlmmehdoakndmohflojccocli
– New Additions v1.1: https://chrome.google.com/webstore/detail/hefnmebgliipbhahdokghfhdjbdlamjf
– SendTab v3.2.1: https://chrome.google.com/webstore/detail/helfjghkkgfpipmbhpocdkccmephafgb
– Rapportive v1.4.1: https://chrome.google.com/webstore/detail/hihakjfhbmlmjdnnhegiciffjplmdhin
– SuperSorter v0.4.4: https://chrome.google.com/webstore/detail/hjebfgojnlefhdgmomncgjglmdckngij
– Yah’s Link Checker for Chrome v1.205: https://chrome.google.com/webstore/detail/hobijieodegdbpakkfiopclcljnomfnj
– Chrome Sniffer v0.3.1: https://chrome.google.com/webstore/detail/homgcnaoacgigpkkljjjekpignblkeae
– META SEO inspector v2.0.4: https://chrome.google.com/webstore/detail/ibkclpciafdglkjkcibmohobjkcfkaef
– REST Sniffer v0.0.9: https://chrome.google.com/webstore/detail/ifeiedjadmeabnlahklpafjbomkcklbj
– Web Development Expert! v1.1.2: https://chrome.google.com/webstore/detail/ikmodglecnfjjbhodpjajkmkmgackpbj
– Clearly v9.3374.689.453: https://chrome.google.com/webstore/detail/iooicodkiihhpojmmeghjclgihfjdjhj
– Links Extractor v0.4: https://chrome.google.com/webstore/detail/jbjhlmnnoeacdfafelfmbomgginmnbed
– Disconnect v5.11.0: https://chrome.google.com/webstore/detail/jeoacafpbcihiomhlakheieifhpjdfeo
– View Image Info (properties) v0.0.1.1: https://chrome.google.com/webstore/detail/jldjjifbpipdmligefcogandjojpdagn
– Page Ruler v2.0.5: https://chrome.google.com/webstore/detail/jlpkojjdgbllmedoapgfodplfhcbnbpn
– Tape v1.4: https://chrome.google.com/webstore/detail/jmfleijdbicilompnnombcbkcgidbefb
– Google Analytics Debugger v2.6: https://chrome.google.com/webstore/detail/jnkmfdileelhofjcijamephohjechhna
– Shareaholic for Google Chrome™ v5.8.1: https://chrome.google.com/webstore/detail/kbmipnjdeifmobkhgogdnomkihhgojep
– StumbleUpon v5.12.2.3: https://chrome.google.com/webstore/detail/kcahibnffhnnjcedflmchmokndkjnhpg
– Development Pointers v1.0: https://chrome.google.com/webstore/detail/kdincancfhbjbhigncdpbgocllncidma
– ChromeVox v1.31.1: https://chrome.google.com/webstore/detail/kgejglhpjiefppelpmljglcjbhoiplfn
– DcdRvsLnk – Decode or reverse links v1.0.23: https://chrome.google.com/webstore/detail/knidennbiioljeelcbojomofhgaepipb
– SmartVideo For YouTube™ v0.9928: https://chrome.google.com/webstore/detail/lnkdbjbjpnpjeciipoaflmpcddinpjjp
– Http Requests v0.0.5.1: https://chrome.google.com/webstore/detail/loiejdllpallhmjcfmofkbjhmcjghlej
– URL Parameters v1.1: https://chrome.google.com/webstore/detail/mbnigpeabbgkmbcbhkkbnlidcobbapff
– Download Master v4.0.0.2: https://chrome.google.com/webstore/detail/mcceagdollnkjlogmdckgjakjapmkdjf
– Responsive Inspector v1.0.0: https://chrome.google.com/webstore/detail/memcdolmmnmnleeiodllgpibdjlkbpim
– Ghostery v5.1.1: https://chrome.google.com/webstore/detail/mlomiejdfkolichcflejclcbmpeaniij
– Postponer Manager v0.4.3: https://chrome.google.com/webstore/detail/mmfblgljgoaokhbcjnddgcnaielcpjeb
– Über simple bookmark count v1.0: https://chrome.google.com/webstore/detail/mogbbilahcoegijagmcmleheifpijffa
– Simple Bookmarks v16.2: https://chrome.google.com/webstore/detail/nafmgkhgdblkabfjfegmafagpccaobfg
– PHP Console v3.0.18: https://chrome.google.com/webstore/detail/nfhmhhlpfleoednkpnnnkolmclajemef
– Pocket (formerly Read It Later) v1.5.6: https://chrome.google.com/webstore/detail/niloccemoadcdkdjlinkgdfekeahmflj
– YSlow v3.1.2: https://chrome.google.com/webstore/detail/ninejjcohidippngpapiilnmkgllmakh
– FreshStart – Cross Browser Session Manager v1.6.1: https://chrome.google.com/webstore/detail/nmidkjogcjnnlfimjcedenagjfacpobb
– csscan v2.0.1: https://chrome.google.com/webstore/detail/nnklpgoldelpoigiacfpnpphpkkmbdkb
– Buffer v2.3.29: https://chrome.google.com/webstore/detail/noojglkidnpfjbincgijbaiedldjfbhh
– SEO for Chrome v0.9.5: https://chrome.google.com/webstore/detail/oangcciaeihlfmhppegpdceadpfaoclj
– Mydex Bookmarks v0.1.1.32: https://chrome.google.com/webstore/detail/ofnchgjhggajdlmgbkmdmagnnhdmdenc
– Speed Tracer (by Google) v0.27: https://chrome.google.com/webstore/detail/ognampngfcbddbfemdapefohjiobgbdl
– Stylebot v2.2: https://chrome.google.com/webstore/detail/oiaejidbmkiecgbjeifoejpgmdaleoha
– Auto Refresh Plus v1.8.9.23: https://chrome.google.com/webstore/detail/oilipfekkmncanaajkapbpancpelijih
– Check My Links v3.3.4: https://chrome.google.com/webstore/detail/ojkcdipcgfaekbeaelaapakgnjflfglf
– WebDeveloper Image Overlay v0.1.5: https://chrome.google.com/webstore/detail/olfihdjffmgfmmcdodcgciejhnhibalg
– Recent Bookmarks v1.6.1: https://chrome.google.com/webstore/detail/olndffocioplakeilhkgenfgdincjlpn
– OneClick Cleaner for Chrome v0.9.0.9: https://chrome.google.com/webstore/detail/oncckmaelaecccmaniihojgeopkcajfh
– Ozone v1.30: https://chrome.google.com/webstore/detail/peeefgkjcjfpjdmpklpfaompngmbknje
– Postponer Adder v0.4: https://chrome.google.com/webstore/detail/pggmlienkcoenodbjpkbidlmmedgonai
– LivePage v1.5.1: https://chrome.google.com/webstore/detail/pilnojpmdoofaelbinaeodfpjheijkbh
– Evernote Web Clipper v6.0.8: https://chrome.google.com/webstore/detail/pioclpoplcdbaefihamjohnefbikjilc
– Humans.txt v1.4.5: https://chrome.google.com/webstore/detail/pocdghmbbodjiclginddlaimdaholhfk
Apps: 30
– Google Docs v0.5: https://chrome.google.com/webstore/detail/aohghmighlieiainnegkcijnfilokake
– Google Drive v6.3: https://chrome.google.com/webstore/detail/apdfllckaahabafndbhieahigkjlhalf
– YouTube v4.2.6: https://chrome.google.com/webstore/detail/blpcfgokakmgnkcojhhkbfbldkacnbeo
– Google Search v0.0.0.20: https://chrome.google.com/webstore/detail/coobgpohoikkiipiblmjeljniedjpjpf
– Postman – REST Client v0.8.4.3: https://chrome.google.com/webstore/detail/fdmmgilgnpjigdojojpjoooidkmcomcm
– Gmail v7: https://chrome.google.com/webstore/detail/pjkljhegncpnkpknbcohdijeoejaedia
– ICEcoder v3.4: https://chrome.google.com/webstore/detail/afgfniiplemaghleemnbfgckjaiipcng
– BIODIGITAL HUMAN v0.9.5: https://chrome.google.com/webstore/detail/agoenciogemlojlhccbcpcfflicgnaak
– Sketchboard.Me v0.1.0.0: https://chrome.google.com/webstore/detail/bgafhjpdkfjfmmjbebbdckolonomaoil
– Quizlet v4.1: https://chrome.google.com/webstore/detail/bgofflgeghkhocbociocnckocbjmomjh
– Gliffy Diagrams v1.0.27: https://chrome.google.com/webstore/detail/bhmicilclplefnflapjmnngmkkkkpfad
– Archiver for Gmail v17: https://chrome.google.com/webstore/detail/bohfahbhaioeaildanonpalaengldgfh
– Kingdom Rush v1.1.0.1: https://chrome.google.com/webstore/detail/ckmfhhjalnddapegkbbohfaodgbnocim
– Read Later Fast v1.6.5.1: https://chrome.google.com/webstore/detail/decdfngdidijkdjgbknlnepdljfaepji
– Byrd IRC Client v1.7.3: https://chrome.google.com/webstore/detail/endimfdcgfnlmoankhocnkhgohmoecoi
– Highgrounds v4: https://chrome.google.com/webstore/detail/fignghnefmnkmiliggjbjhfdkibcoikf
– Model Scaler v4.3: https://chrome.google.com/webstore/detail/gcjaflhdpihnmbmfhdomllinepfkikob
– Advanced REST client v3.1.7: https://chrome.google.com/webstore/detail/hgmloofddffdnphfgcellkdfbfbjeloo
– Timer v0.0.0.6: https://chrome.google.com/webstore/detail/hhclmngbkkejbdfjmicnkmoggfpehein
– Google Keep v2.0.14032.121: https://chrome.google.com/webstore/detail/hmjkmjkepdijhoojdojkdfohbdgmmhki
– HootSuite v5.244: https://chrome.google.com/webstore/detail/kneloppijbcidgidihgdjnooihjcdbij
– Little Alchemy v0.0.15.7: https://chrome.google.com/webstore/detail/knkapnclbofjjgicpkfoagdjohlfjhpd
– WorkFlowy v1.0.8: https://chrome.google.com/webstore/detail/koegeopamaoljbmhnfjbclbocehhgmkm
– Quick Note v1.6.3: https://chrome.google.com/webstore/detail/mijlebbfndhelmdpmllgcfadlkankhok
– Pocket v0.600: https://chrome.google.com/webstore/detail/mjcnijlhddpbdemagnpefmlkjdagkogk
– Hacker News Reader v0.2: https://chrome.google.com/webstore/detail/npalbnjnpgfknopcnjofihcankbnngef
– Picky Wallpapers v1.0.0: https://chrome.google.com/webstore/detail/odklcfojpedohplkimfdpcamkjnhanaj
– All Cheat Sheets v1.1: https://chrome.google.com/webstore/detail/oedodeocfdeegliepeeoieemhdgoijod
– Wunderlist for Chrome v2.3.4.4: https://chrome.google.com/webstore/detail/ojcflmmmcfpacggndoaaflkmcoblhnbh
– Click&Clean App v8.0: https://chrome.google.com/webstore/detail/pdabfienifkbhoihedcgeogidfmibmhp
Exported with Share Extensions for Google Chrome™ – https://chrome.google.com/webstore/detail/chdafcbnfkfenoeejpaeenpdamhmalhe

 

Posted By: Teodor Muraru
Last Edit: 15 Jan 2014 @ 12:57 PM

EmailPermalinkComments (0)
Tags
Categories: Ghid instalare, Lists, personal

 04 May 2013 @ 9:30 PM 

Cu ocazia sarbatorilor de Paste, va urez  sa aveti parte de un Paste cat se poate de fericit impreuna cu cei dragi voua si sa va pastrati in suflet bunatatea si omenia prilejuite de aceasta sarbatoare cat se poate de mult (daca se poate, chiar pana in urmatorul an)!

Teo

 

 

 

Paste Fericit!

 

 

 

 

Posted By: Teodor Muraru
Last Edit: 04 May 2013 @ 09:31 PM

EmailPermalinkComments (0)
Tags
Categories: De suflet, personal





 Last 50 Posts
 Back
Change Theme...
  • Users » 1
  • Posts/Pages » 84
  • Comments » 8
Change Theme...
  • VoidVoid « Default
  • LifeLife
  • EarthEarth
  • WindWind
  • WaterWater
  • FireFire
  • LightLight

Filme vazute



    No Child Pages.

Carti citite



    No Child Pages.

Muzica



    No Child Pages.