Showing posts with label Chrome. Show all posts
Showing posts with label Chrome. Show all posts

3 Simple Ways to Zip and Unzip Files on a Chromebook



3 Simple Ways to Zip and Unzip Files on a Chromebook
Zip or Unzip Using the Chrome OS
Unzip Using Apps on the Chrome Web Store
he best app in the store at the moment is ‘ZIP Extractor‘, developed by former Google employee Mike Procopio.
The app is available for free and currently has a 4.5 star rating from its 17,000+ user-base. Unlike the Chrome OS, the app can handle unzipping from either your Chromebook’s local drive or your cloud-based Google Drive. It also allows you to choose specifically which files in the ZIP file you want to extract and then lets you share them with other people.
Unzip Using a Cloud-Based Service
If you don’t want to use the Chrome OS and don’t feel happy using ZIP Extractor, your final option is to use a web-based service like ‘ZipShare‘.
Developed by the makers of the once-ubiquitous WinZip, the cloud-based extraction tool allows you to upload ZIP files from either your local machine or one of your online storage spaces before placing the unzipped files in your own personal online ZipShare account. With a 50 Mb upload limit, the service can cover most users’ needs, and even allows sharing of unzipped files across various social media platforms.
Read full article from 3 Simple Ways to Zip and Unzip Files on a Chromebook

4 Browser Extensions For Searching Multiple Words On A Webpage [Chrome, Firefox]



4 Browser Extensions For Searching Multiple Words On A Webpage [Chrome, Firefox]
MultiHighlighter [Chrome]
MultiHighlighter Chrome   4 Browser Extensions For Searching Multiple Words On A Webpage [Chrome, Firefox]

MultiHighlighter is another Chrome extension that allows multi-word searching and highlighting. Like other search tools, each term is given its own color. You don’t need to separate the words with a comma, instead just put a space between each one. To the right of the text field, there’s a box that displays the count of the number of matched terms appearing on the page.
To display the Multihighlighter search bar, click the icon or use the keyboard shortcut CTRL+SHIFT+A. To close the bar, click the “X” or press the escape key [ESC]. This extension looks fairly simple, but it actually has some really impressive features, such as preserving the highlighting when printing the page onto paper or to PDF. MultiHighlighter is being actively developed and more unique features will be added soon
Below are some important notes taken from MultiHighlighter’s Chrome Web Store Page:
  • Only words of 2 or more characters are searchable.
  • Search is currently not case-sensitive.
  • Redaction functionality is currently in-process.
  • Doesn’t work when viewing PDF documents in Chrome.
Stay up to date by following the group behind this project on Twitter and Facebook.

efTwo (F2) [Chrome]

efTwo F2 Chrome   4 Browser Extensions For Searching Multiple Words On A Webpage [Chrome, Firefox]

efTwo is another option for searching multiple words simultaneously on a webpage. It also has several more options, giving you more control over its features. These can be seen in the image below.
Read full article from 4 Browser Extensions For Searching Multiple Words On A Webpage [Chrome, Firefox]

How can I search for regular expressions within webpages using Google Chrome or IE?



How can I search for regular expressions within webpages using Google Chrome or IE?

Using Javascript to match regular expressions

Maybe you want try this at chrome's console:
var p=/.*(regu).+?\ /gi; console.log( document.body.innerText.match(p) );
Just open console, copy and paste above to consele and hit enter. You can test it here at this page.
This can be improved if it fits in.
Here we print to console match indexes and matched text. Here we try to match text that contains regu, 20 chars before (or less if start of line) and 10 chars after (or less if eol).
var p=/.{0,20}regu[^ \n]+[^\n]{0,10}/gi;
while (m = p.exec(document.body.innerText)) { 
    console.log( 'Index: '+m.index+' Match: '+m ); }
Please read full article from How can I search for regular expressions within webpages using Google Chrome or IE?

Labels

Algorithm (219) Lucene (130) LeetCode (97) Database (36) Data Structure (33) text mining (28) Solr (27) java (27) Mathematical Algorithm (26) Difficult Algorithm (25) Logic Thinking (23) Puzzles (23) Bit Algorithms (22) Math (21) List (20) Dynamic Programming (19) Linux (19) Tree (18) Machine Learning (15) EPI (11) Queue (11) Smart Algorithm (11) Operating System (9) Java Basic (8) Recursive Algorithm (8) Stack (8) Eclipse (7) Scala (7) Tika (7) J2EE (6) Monitoring (6) Trie (6) Concurrency (5) Geometry Algorithm (5) Greedy Algorithm (5) Mahout (5) MySQL (5) xpost (5) C (4) Interview (4) Vi (4) regular expression (4) to-do (4) C++ (3) Chrome (3) Divide and Conquer (3) Graph Algorithm (3) Permutation (3) Powershell (3) Random (3) Segment Tree (3) UIMA (3) Union-Find (3) Video (3) Virtualization (3) Windows (3) XML (3) Advanced Data Structure (2) Android (2) Bash (2) Classic Algorithm (2) Debugging (2) Design Pattern (2) Google (2) Hadoop (2) Java Collections (2) Markov Chains (2) Probabilities (2) Shell (2) Site (2) Web Development (2) Workplace (2) angularjs (2) .Net (1) Amazon Interview (1) Android Studio (1) Array (1) Boilerpipe (1) Book Notes (1) ChromeOS (1) Chromebook (1) Codility (1) Desgin (1) Design (1) Divide and Conqure (1) GAE (1) Google Interview (1) Great Stuff (1) Hash (1) High Tech Companies (1) Improving (1) LifeTips (1) Maven (1) Network (1) Performance (1) Programming (1) Resources (1) Sampling (1) Sed (1) Smart Thinking (1) Sort (1) Spark (1) Stanford NLP (1) System Design (1) Trove (1) VIP (1) tools (1)

Popular Posts