pequenenas.com
Al mal tiempo… 9 planes bajo techo | Pequenenas
http://www.pequenenas.com/2014/10/16/al-mal-tiempo-9-planes-bajo-techo
A hablar de mamá. Al mal tiempo… 9 planes bajo techo. 16 octubre, 2014. Hace poco leí en no sé dónde a una madre que decía que adoraba el mal tiempo porque así tenía excusa para no bajar al parque. Es cierto, bajar al parque un día de esos en los que tu hij@ mataría por bajar pero a ti no te apetece nada puede ser muy, muy, muy desesperante…. Casi tanto como quedarte en casa con una criatura que mataría por ir al parque. Vamos, que no estoy de acuerdo con esa madre. Ya me daréis las gracias 😉. Hoy en dí...
slowtrek.com
常念乗越 | SLOW TREK
http://slowtrek.com/archives/category/kitaalps/jounennokkoshi
TEAM SLOW TREKメンバーの エドヤマさん. に http:/ www.edmedsshopping.men/. に http:/ www./. に 燕岳へ SLOW TREK. に 新緑いっぱい SLOW CAMP FIELD. Proudly powered by WordPress.
slowtrek.com
大天井岳 | SLOW TREK
http://slowtrek.com/archives/category/kitaalps/otensyoudake-kitaalps
に http:/ www.edmedsshopping.men/. に http:/ www./. に 燕岳へ SLOW TREK. に 新緑いっぱい SLOW CAMP FIELD. Proudly powered by WordPress.
michaelis-haarmoden.de
Michaelis Haarmoden
http://www.michaelis-haarmoden.de/gaestebuch.html
Viewing entries 10 at page 1 (Total entries : 30). Http:/ www.edtreatment.men/. Website URL : http:/ www.edtreatment.men/. I didn’t really mean that the media are experts. They certainly take things like this and run with them… but then again, the mainstream media is just the face of corporations, so. More. Http:/ www.findedmedsonline.men/html/ed.html. Website URL : http:/ www.findedmedsonline.men/html/ed.html. Http:/ www.cheapedpills.pw/. Website URL : http:/ www.cheapedpills.pw/. I think it’s gre...
lordong.net
MySQL root忘记密码的解决办法 « LorDong's Blog
http://lordong.net/wp/post/1598.html
Safe MySQLd –skip-grant-tables &. MySQL update MySQL.user set password=PASSWORD(‘新密码’) where User=’root’. MySQL flush privileges;. 有可能你的系统没有 safe MySQLd 程序 , 下面方法可以恢复. Sudo /etc/init.d/MySQL stop. MySQLd –skip-grant-tables &. MySQL update MySQL.user set password=PASSWORD(‘newpassword’) where User=’root’. MySQL flush privileges;. 2 运行cmd命令行程序 系统管理员权限 ,进入mysql安装目录的bin目录下,以不检查权限的方式启动服务. 3 新开一个cmd命令行程序 系统管理员权限 ,进入mysql安装目录的bin目录下,运行mysql. 参考链接 http:/ database.51cto.com/art/201005/202227.htm.
lordong.net
安全 « LorDong's Blog
http://lordong.net/wp/post/tag/安全
Posts Tagged ‘安全’. Laquo; Older Entries. 星期二, 三月 8th, 2016. 之前用GoAgent 来部署本地的Shadowsocks,发现依赖于.Net Framework 3.5,给别人用时经常由于没有安装这个依赖包而失败。 查看Shadowsocks子目录发现比较关键的是ss-local.exe和config.json两个文件,查看系统进程发现ss-local.exe是通过命令行运行的,没有用到config.json文件,命令格式是. Ss-local.exe -s SS服务器 -p SS端口 -l 本地监听端口 -b 本地绑定的IP -k 密码 -m 方法 -t 超时时间. 通过 ss-loca.exe -? 查看到通过 ss-loca.exe -c config.json 可以直接使用config.json里的配置,测试发现config.json必段所有内容放到 第一行且同一行上. 本地绑定的IP如果使用127.0.0.1就只能用本机连接,如果使用0.0.0.0就可以共享给局域网的其它电脑连接。 星期一, 四月 27th, 2015. ITouch 4...
lordong.net
用树莓派做音乐播放器 « LorDong's Blog
http://lordong.net/wp/post/1584.html
网上资料说Volumio可以直接输入到DAC,可以减少音质的失真,因此把我那块声卡当成DAC解码器,USB端连接树莓派,音频输出连接音箱,启动Volumio后竟然也认,不过需要通过浏览器访问树莓派,进入Playback页面,把Audio Output设成Set,默认的ALSA是树莓派的内置声卡,点 Save Changes 应用即可通过USB播放无损音乐到音箱。 由于是无损音轨容量比较大,因此我把这些音乐跟电影等放到一个2T的外挂硬盘上,分成3个区 sda1 3 ,音乐在最后一个分区,碰到的问题是Volumio启动后为会把所有的分区都加载成/mnt/USB目录,每次都需要进入Library去 Update Library ,而且硬盘比较大更新时间比较长,扫到音乐内容做成Playlist后重启树莓派就不能播放了,还要重复长时间的Update Library过程,很痛苦。 D "/mnt/USB/Music" ]; then ln -s /mnt/USB2/Music /mnt/USB/Music fi. Feed You can leave a response. From your own site.
lordong.net
SSH « LorDong's Blog
http://lordong.net/wp/post/tag/ssh
Posts Tagged ‘SSH’. 星期五, 六月 19th, 2015. 除部分精简的系统或者定制的系统大部分都安装了screen命令,如果没有安装,CentOS系统可以执行 yum install screen Debian/Ubuntu系统执行 apt-get install screen。 1 登录ssh后执行screen创建新的会话或screen -S NAME创建指定名称NAME的会话。 2 需要临时离开时按ctrl ad(即按住Ctrl,依次再按a,d)。 3 恢复会话时按screen -r [NAME],如果指定会话名NAME的话会恢复到该会话,否则会恢复到默认未绑定的会话或提示输入NAME选择会话。 6 使用screen -x NAME可以登录同一个会话名是NAME的screen,同时多个连接之间是同步的,起到演示的作用。 参考链接 http:/ www.vpser.net/manage/screen.html. 星期二, 十一月 29th, 2011. 这里比较怪的地方是 不是客户端主动发起保持连接的请求(如FTerm, CTerm等),而是需要服务器先主动。 Http:/ ww...
lordong.net
东东博客 « LorDong's Blog
http://lordong.net/wp/post/category/东东博客
Archive for the ‘东东博客’ Category. Laquo; Older Entries. 星期一, 八月 8th, 2016. 启动按Fn F2进入BOIS设置,选择非UEFI启动模式,使用Windows 7多合一旗舰版制成的U盘安装盘启动,选择WinPE启动,运行DISKGENIUS磁盘管理把C盘之前的几个分区全干掉 建议先备份分区表,万一失败时还能用后面几个恢复盘来恢复 ,然后新建成一个分区。 制作智能模式的启动盘,为了以后的兼容可以钩选”支持UEFI启动”,制作完成后用这个U深度盘启动,选择非UEFI模式启动 因为前面我们在BOIS里选择了非UEFI启动模式,这里要匹配 ,选择Windows 8 PE高级版启动。 星期三, 七月 27th, 2016. For句子中可以加eol=变成”eol= tokens=* delims=”把空格开头的行去掉,还想把多余的无关行去掉又要保留错误输出行,还没找到合适的办法。 星期一, 六月 6th, 2016. Display errors = Off. Display errors = On. 星期二, 三月 8th, 2016.
theaterfreunde-wemding.de
Theateraufführung ein voller Erfolg « Theaterfreunde Wemding e.V.
http://www.theaterfreunde-wemding.de/2014/05/10/theaterauffuehrung-ein-voller-erfolg
Theaterfreunde Wemding e.V. 2009: Die Nacht der Nächte. 2010: Eine himmlische Beförderung. 2011: Wohin mit der Leiche. 2012: Mit Sexappeal und Mangoschnaps. 2014: Drum prüfe wer sich ewig windet. 2016: Zwischen Wahnsinn und Mallorca. Theateraufführung ein voller Erfolg. Die Theaterfreunde bedanken sich ganz herzlich bei allen Besuchern der diesjährigen Aufführung. Es ist ein super Gefühl vor so einem Puplikum zu spielen. Halle voll bis auf den letzten Platz! Http:/ w3similar.com/site/yr.no. Everyone expe...