Tuesday, June 24, 2014

[solved]How to turn off/disable [overwrite/insert/fill in mode](replace original text and highlight the rest of the whole line on the right) in gmail

WHen you type in a gmail, the right part of the line might be automatically highlighted and you can't add words in the middle of a line. What you should do is:


pressed the Insert and the Caps Lock Key
(credit to Erin Figueroa)

Sunday, June 22, 2014

[solved]Windows 8 Google Chrome Prompt Window can't show up when uploading photos to facebook or renren 人人網上傳照片窗口被擋住

Actually the uploading or downloading window has already been open but you can't reach it which hides behind the main window.

There are two ways to reach the prompt window

1: move the cursor to the google chrome icon on bottom taskbar of your screen, then a miniwindow will show up above your cursor. Move your cursor to that miniwindow and right click. Then you'll reach the window you want

2: alternatively, right click on the google chrome icon and try to close the window. WHen it trys to close, the prompt window will show up. 

Saturday, June 21, 2014

How to record a Mac screen using soundflower and quicktime

1. Turn on soundflower
2. Go to Mac system settings --> Sound, select 2ch as both input and output
3. increase volume
4. open quicktime and start new screen recording
5. record
6. close all the programs and reset sound settings to normal

Friday, June 6, 2014

How to transfer Pandora data to spotify

1. Install Pandora to Spotify Playlist Converter
https://chrome.google.com/webstore/detail/pandora-to-spotify-playli/cgkmfkggcmoclhipfkabaemflflellek?hl=en
2. go to your pandora page with all the liked songs listed (click on 'show more' to show all)
3. click on the icon of the converter
4. Copy the song ids in the text box
5. Download and install spotify
6. create a new playlist
7. go to this newly created playlist and move your cursor to the blank area
8. paste
(YOur songs will automatically appear)

Sunday, June 1, 2014

how to rename a song in itunes(mac) 怎样给itunes播放列表里的歌曲改名

right click on a song and select 'get info'
click on info tab and type the song title....

扫描的文件怎样换成白色背景【Photoshop】 change background to white after scanning

用魔棒工具或者是套索工具将扫描的文件抠出来,再在其图层下新建一个图层,给它填充为其它颜色。
1.在菜单栏中找到窗口——》点工具——》在第二排第二列找到魔法棒后单击选取(也可以采用其它方法选取)——》复制。
2.点文件——》新建图层——》给它填充颜色(或想要的背景方法同上)——》将复制的图层粘贴过来——》调整后保存完成。

copy paste into excel while keeping original format win7粘贴到excel只占一个单元格怎么办:保留原格式粘贴到excel,对tab敏感

只要:
1.点excel左上角那格,全选所有单元格
2.右键点击被选中的任意一个单元格
3.点选择性粘贴
4.选择unicode 确定
5.提示:格式不同 仍要粘贴吗,选择确定

windows7+ubuntu double system,access windows desktop from ubuntu 怎样从ubuntu进入windows主系统C盘桌面

ubuntu下的桌面地址在~/Desktop
而win7的桌面则在/host/Users/Brian/Desktop

check gtalk chatting / message history

They are stored under a label in gmail

show file extension in win7

Start->Control Panel->Appearance and Personalization->Folder Options->View(tab)->unpick "hide extension"

How to crack pdf password protected file

http://freemypdf.com/

怎样批量下载虾米音乐收藏歌曲,批量提取豆瓣电台红心歌曲名称

批量下载虾米音乐

0人收藏此文章, 我要收藏发表于10个月前(2012-12-02 19:13) , 已有173次阅读 ,共1个评论
相信有很多朋友都在使用虾米听歌,某日想把收藏的歌曲下到手机里面,但是在虾米下载需虾币,囧。
于是google搜索方案之,发现一个不错的软件。 iDown——专门用于下载网络在线视频,在线音乐的小工具。
 

挺好用的一个小软件,直接把歌曲的地址复制到输入框,确定就开始下歌了。但是收藏的歌曲有上百首,一次拷贝一首,打开一个歌曲页面,拷贝地址出来,要死人的,重复的工作坚决要交给机器来做,于是写了一个js小脚本,用来在虾米收藏list页上抓取歌曲页面的地址。
因为虾米js库使用的jquery,所以直接用jquery写的脚本。
var arr = [];
$('.song_name a:nth-child(odd)').each(function(){
arr.push(decodeURI(this.href))
});
console.log(arr.toString().replace(/\,/g,'\n'));
var arr = [];
$('.song_name a:nth-child(odd)').each(function(){
    arr.push(decodeURI(this.href));
});
console.log(arr.toString().replace(/\,/g,'\n'));
脚本使用条件:带有命令控制台的浏览器,Firefox(装firebug),chrome,ie9等浏览器。

firefox使用方法:
按F12打开firebug页面,选中控制台Tab。
 
在下面输入框中输入上面命令,ctrl+回车,就会在上面输出当前页,歌曲的地址,拷贝出来扔到iDown的批量添加任务中去。
chrome和IE同理。chrome中输入命令的是‘console’面板。ie是‘控制台’面板。








1。登陆豆瓣
3。按f12代码区选最右那个标签   或者   点击右上角> 工具 > javascript console
4。粘贴下列代码(注意把第一个6换成你的红心歌曲的总页数)
var tpage = 6; 
var page = 1; 
var n = 0; 
var songNum=0; 
$("div.copyright").html(""); 
for(page=1;page<=tpage;page++) { 
    n = (page - 1) * 9; 
    var url = "http://douban.fm/mine?start=" + n + "&type=liked"; 
    $.ajax({ 
        type:"GET" 
        ,url:url 
        ,async:false 
        ,dataType:"html" 
        , success:function(html){ 
            songNum+=$(html).find("div.song_info").length; 
            $(html).find("div.song_info").each(function(s) { 
                var d = ""; 
                d=$(this).find("p.song_title").first().text()+"-"+ 
                                $(this).find("p.performer").first().text()+"-"+ 
                                $(this).find("p.source>a").first().text()+"<br>"; 
$("div.copyright").html($("div.copyright").html()+d); 
            }); 
$("div.copyright").html($("div.copyright").html()+"此页面收集到歌曲:"+$(html).find("div.song_info").length+"<br/><br/>"); 
        } 
    }); 
}

按回车

5。稍等一下,下拉页面,歌曲清单就出来了

臉書facebook使用專頁/主頁評論 comment as a page

  1. Click  in the top-right corner of Facebook
  2. Select your Page below Use Facebook as:

how to drop/block notifications from a course on Piazza

1. put your cursor onto the triangle right to your profile name( up-right corner of the browser)
2. click 'account/email settings'
3. scroll down to the bottom and your find the settings for each course you take. 
4. click drop class or edit email notifications

How to cut and paste free form/irregular objects in paint in PC win7

1. Select --> Free form selection
2. Select out the irregular object of interest
3. This time Select ---> Free form selection ---Check Transparent selection
4. Drag to your target location


Note that this only works for bmp format



如何显示windows隐藏的文件夹 Show hidden folders in win7

computer --> organize --> Folder and search options --->view --> click the button "show hidden files..."--> click OK
计算机 ---》 组织 --》 文件夹选项---》 查看---》显示隐藏文件

[solved]How to change the default download path of Firefox

tools>options>downloads and check 'ask me where to save every file' or right-click on the link and select 'save link as..'

windows 如何去掉搜狗输入法悬浮皮肤标志

在搜狗中文模式下任意输入一个字母,按ctrl. + shift

Windows 7: Cannot Change Filename (Source and Destination filenames are the same)

This happened when I tried to remove the trailing space of filenames. 

For windows 7, they consider the filename unchanged after I remove the trailing space.

Therefore, the solution is: you not only remove the space, but also use a different name (say, add a '_' or '.' at the end of the filename). 

[Mac] How to lock screen/turn off display without shutting down

control + shift + eject

How to disable auto correction of quote mark [mac text edit]

Edit --> Substitutions --> uncheck the smart quote

For other autocorrections it's the same

[Mac][Chrome]How to disable command + q Enable "Warn before quitting"

  • Click Chrome on the top menu bar.
  • Select Warn Before Quitting (?Q).
  • How to type Greek letters on Mac. [Option + any key].

    As long as you press Option while typing, the letters will be converted to the corresponding Greek letters listed below.

    Greek letter key
    α A A 
    β Β B 
    γ Γ G 
    δ Δ D 
    ε Ε E 
    ζ Ζ Z 
    η Η H 
    θ Θ U 
    ι Ι I 
    κ Κ K 
    λ Λ L 
    μ Μ M 
    ν Ν N 
    ξ Ξ J 
    ο Ο O 
    π Π P 
    ρ Ρ R 
    σ Σ (medial sigma) S 
    ? Σ (final sigma) W 
    ? ? (lunate sigma) option + S 
    τ Τ T 
    υ Υ Y 
    φ Φ F 
    χ Χ X 
    ψ Ψ C 
    ω Ω V

    How to add your home folder to finder's side bar 怎样添加根文件夹至mac Fi

    Press CMD+SHIFT+H to enter your Home folder in Finder, then press CMD+ArrowUp to get into the Users folder, from there drag the folder of your choice to the Sidebar.


    How to display all the/more search results of google calendar

    1.After you type in key words and start searching, latest records will be shown

    2.Move your cursor to the 'mini calendar' on the left panel, click on a date earlier than the currently selected one (Make sure you only click once)

    3. Now earlier records will be displayed now.


    *Currently you can not display all the search results. What you can do is using this method to display more.

    Windows 8.1 no connection -- Dropbox connection failure

    The solution is :
     use google DNS, enable public access of dropbox on windows firewall and restart.

    How to use google DNS

    Google Public DNS is the preferred DNS and is known for being fast, accurate and no restriction.
    Step 1 – Navigate to Control Panel  >>  Network and Internet  >> Network and Sharing Center  >>  Change Adapter Settings.
    Step 2 – Select the connection that you want to configure Google Public DNS.
    For example:
    – To change the settings for an Ethernet connection, right-click Local Area Connection, and click Properties.
    – To change the settings for a wireless connection, right-click Wireless Network Connection, and click Properties.

    Step 3 – Click on the Networking tab. Click on Internet Protocol Version 4 (TCP/IPv4) and then Properties.
    Step 4 – Click on Advanced and then DNS tab.
    If there is an existing IP address listed here, do write them down for future reference.
    For Google Public DNS, select Use the following DNS server addresses:
    Preferred DNS Server: 8.8.8.8
    Alternate DNS Server: 8.8.4.4
    Step 5 – Click OK and restart your network connection for changes to be applied.
    You are now using Google Public DNS.

    (original article: http://www.ipserverone.info/dns-2/change-dns-settings-to-google-dns-in-windows-7-8/)