Re: Need help with server hosting.

2017-10-12 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Need help with server hosting.

How do you expect anyone to help when you don't provide any information about the server in question? Is it a windows server (bleh), a linux-based one, a regular windows computer in your basement you call your "server"?You also shouldn't be using a port forward tool, as I would assume it only works for your local machine. Unless your using remote desktop to run it on a windows server, in which case you still shouldn't be using it because UPNP probably isn't supported for opening ports by your host. Basically: don't use that tool.Look through the control panel provided by your hosting company and check if it mentions anything about a firewall, and open the port there. If that doesn't work, you'll need to open the ports you want through the firewall on the actual server.Also, you might consider actually searching the forum for topics like this; a lot of them exist (and ask better questions than "help, this tool w
 on't work on an environment I didn't specify").

URL: http://forum.audiogames.net/viewtopic.php?pid=333163#p333163





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: for raspberry pi users, what do you do with them?

2017-08-26 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: for raspberry pi users, what do you do with them?

I have 2, actually. One is a 3 model b, and the other is the original model b. The original is sitting in my tech bag, waiting for the next time I need a quick portable linux server.The 3 only runs my home automation system, (with homeassistant) though it used to do a lot more.I'll probably install a mySQL server as well as my game server when it's finished for local testing.As for the things it used to do, a nas, bit torrent client, occasional team talk server, running my web site, automatically collecting music and streaming it via icecast (with liquidsoap), a mySQL database (for various things), and more. Most of that is managed by my VPS now, so the pi's load is considerably lighter.They're great little devices to have around, especially for someone like me who usually has a project to try.

URL: http://forum.audiogames.net/viewtopic.php?pid=326312#p326312





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Website owners: accessibility and management

2017-03-21 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Website owners: accessibility and management

I've managed a few sites and even more servers that run other services other than an http/s web presence, so, while of course you should choose what fits your situation and usage case the best here are some things I've found to work well.First, the site itself:As noted above, one way you can manage your own website is by coding it by hand. This means you'll need knowledge of (at minimum) HTML, managing a web server (if your hosting company doesn't do this for you), css, and maybe some java.With this method, you would be writing out your pages by hand complete with HTML tags for tables, links, and forms; any css themes you want to include (to get a similar "feel" across pages on your site); including any java code (if you want ads or usage stats), etc.This method is as accessible as your operating system's "notepad" program. You would upload your oh-so-carefully handcrafted HTML pages and any other files to your
  server (hopefully not over ftp); if the files were placed in the proper directory the web server would start serving them immediately. Personally, for any site that's going to have more than 3 or 4 pages that will be updated even on a semi-regular basis, I think that's too much work. So moving up on the "less work, more gain" scale, you have static site generators. A bit of background first though: Most sites (including this forum!) aren't static sites. That is, there aren't html files sitting on a server somewhere that (to use this forum as an example), have the text of people's posts. Instead there is a relational database somewhere that has posts as a field in a row of that database. When users request a page (http://forum.audiogames.net/viewtopic.php?id=21432) for example, a php or other wsgi (web server gateway interface) compliant program takes the data it's g
 iven (URL parameters, post body, headers), and builds a response. In the case of this forum, it looks at the specific topic (that's what the id parameter is), and pulls the posts for this topic out of a database and returns them in the form of this web page your reading now.After that digression, you might understand a bit more about "static" and "dynamic" web content. When you have a static site (like in the case of hand-coded HTML or using a static site generator), web content is not pulled from a database and no extra script needs to run to return your content; when you request a file, all the web server has to do is send it to you. For dynamic sites, a script must run and (based on things like what the client is asking for in the URL, post body, etc), it must build an HTML page and send it back.Static site generators (ssgs) are tools that make creating and managing "static" sites easier and far less painful. This is what I use for m
 y personal blog for many reasons, not the least of which that static sites are less vulnerable to easily being hacked from common content management system vulnerabilities. I use Nikola, which lets you write your pages in a multitude of markup languages (markdown, ReST, even the markup this forum uses I believe). It then converts that into valid HTML, handles themes, handles comments with several different backends, etc. All in all it's very nice, as you simply write your pages / posts in whatever markup language you want, run a command and then upload to your server (Nikola can also automatically do this for you, you just need to tell it how).There are drawbacks to this method, of course. With "dynamic" content management systems like Wordpress and others, all you need to make a new web page on your site is a web browser. With Nikola (and any static site generator), you either need that software on the server (and if so you'll need root access to it, more 
 on that in a minute), or you need it installed on your local machine.As mentioned above, the ssg method has advantages, the biggest (in my opinion) being security. Since your website's pages are just static files, an attacker would need to compromise your server and be able to modify or create files. In the case of dynamic sites, every request to a site runs a script that needs to do some work to return the page; this gives an attacker chances to break things (e.g, inserting a new post in your database when they shouldn't be able to, etc). Dynamic sites (as mentioned above) have to run a script / program that (based on the data it's given) does some work to return the requested content. This is how wordpress and similar sites work; your posts are in a database and the "work" is pulling them out and rendering them into HTML. The advantages of this are that you need no extra software on any client where you want to create a new post or page; you c
 reate your post by visiting a web page, entering text in the forms provided, and hitting a button (like this forum does). A script runs and inserts that page or post into your database. Disadvantages are, of course, security. Wordpress and friends 

Re: accessible backup tools

2016-06-09 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: accessible backup tools

Hi.I had a search like this a while back, and I came up with 2 tools that fit my situation best; hope they help.As far as backup and restore, UrBackup was what I found and liked enough to actually try it. It does full disk backups as well as incremental backups,is open source (and is hosted on git hub), has a client / server architecture so many client machines can back up to one server (over a lan or the internet with full encryption, of course), and is really configurable. You can have the server generate specific setup files that you can install on many machines with preferences such as server address, a watched list of folders to specifically back up, autoupdating enabled, etc already configured.I haven't personally needed to do a full disk restore, but the documentation does say that ur backup has a specific mini OS environment from which to restore backups. This would need to be experimented with; I don't k
 now if you download the desired backup as an iso and write it to a flash drive or CD and it includes the bare metal restore OS or if you do it some other way. Though it isn't specifically "backup" software, I use Syncthing for syncing files across many machines. There is a rudimentary version control system in place for synced folders (so things aren't just gone everywhere when you delete them from the directory). All the pieces of the system are open source (normally you would only need the client, but there are also relay servers, relay pool servers, discovery servers... Everything you'd need to set up your network independently from the public one if you wanted too).Ur backup supports Windows and Linux (the client and server can run on either OS), and syncthing supports Windows, OS X, Linux and Android.I wrote a blog post with a bit more about my 2 choices here if your interested.

URL: http://forum.audiogames.net/viewtopic.php?pid=263750#p263750





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Garfield has passed away.

2016-05-24 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Garfield has passed away.

Wo.He really was cool. I hadn't talked to him in a while, but still really sad to hear he passed.While I didn't talk to him regularly, I did enjoy the times we did; a really cool guy and a fellow gamer.While anything else I can think to say seems shallow and in-eloquent, he will be missed.

URL: http://forum.audiogames.net/viewtopic.php?pid=261625#p261625





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Reasons for getting a Raspberry Pi

2016-03-26 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Reasons for getting a Raspberry Pi

Hi paddy.Yes, it should be possible to run servers alongside XBMC / kodi, though keep in mind that while doing things with kodi (streaming / transcoding video etc), you'll have less CPU cycles and memory for your different server daemons, and vice versa. I didn't even know a screenreader with kodi was possible on the pi, so that's really awesome to know.Also, I've been meaning to try out arch; I love systemd and even though debian 8 (jessie) uses it, I've heard good things about arch so will probably try that soon.

URL: http://forum.audiogames.net/viewtopic.php?pid=255102#p255102





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Reasons for getting a Raspberry Pi

2016-03-22 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Reasons for getting a Raspberry Pi

Hi.It depends on your level of curiosity and general knowledge about computing in general, Linux, etc. If you don't know anything about any of that, a pi is a great tool to start.Go find a book about debian linux and look at all the uses you can put a small, portable, power-efficient box to.Here's a list of things I use my pi for off the top of my head:* Network attached file server (samba, network filesystem)* Synchronizes several folders with my mac and other computers so they always have the most up-to-date version, and any changes I make on one get sent to the rest. The pi isn't necessary for this, but it's a nice backup if I need access quickly and don't have one of my computers.* Runs a small unused teamtalk server* runs a small website* sometimes runs a VPN that allows me to tunnel over the internet to my home network from anywhere in the world to get a secure, encrypted connection, even on open wi-fi 
 networks and access resources on my network* it used to run a git server where I stored my personal projects, I've since migrated to gitlab and now use my big server for that* Acts as a time machine backup server for my mac; it backs itself up to the pi (which has an attached external harddrive) automatically* occasionally runs projects of mine that monitor twitter, Reddit, crawl the web, run a mud chat server, etc. Generally stuff I don't need large amounts of processing power for, but need to run in the background all the time.If you like software or hardware hacking projects (or want to get into them), know a programming language and want to do something cool with what you know and have it run all the time (or want to learn a programming language and see how it can be used in the real world), get a new toy and run projects that others have helpfully put together for your leisure, run a small blog or file server accessible from anywhere in the wo
 rld, run your own teamtalk server (everyone and their mom has one, so why not you), or just learn about servers in general, get a pi.As for using it as a media center, I personally don't have much experience with that; if you have some sight or want to set it up for someone who does that would be a great use of it, as long as it would be used. Otherwise, I would go with using it as a headless server (where the pi has power and a network connection, but no keyboard, mouse, or display; you control it through SSH, over the network).Hope this helps, feel free to post questions here or on another topic and if I see them I'll try to help.

URL: http://forum.audiogames.net/viewtopic.php?pid=254676#p254676





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Becoming a computer programmer

2016-01-28 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Becoming a computer programmer

I have to agree with the above posts on the fact that Python is definitely one of the easiest languages to learn.It wasn't the first language I familiarized myself with however, and I do believe things would have amde more sense in the beginning for me if I had started with it.Don't let the above fool you into thinking python isn't a full blown language, or isn't powerful or advanced (these are some of the common misconceptions I often hear after stating it would be a good language to start with).As far as info on starting in the CS field, I don't have any specific resources I can give you, just some general advice:Start familiarizing yourself with a language, almost any language - try to understand object oriented programs (oop), and how they differ from languages that don't use oop.Code something in your language of choice. It doesn't have to be a complex, end-user ready application, maybe just a small utility tha
 t you've been wanting to make for a while. Everything I know about programming and computing in general I learned myself. I'm sure this has lead to a few insightful topics that your avrage computer science class doesn't teach, and I'm even more sure there are gaps in what I know, simply by the fact that I haven't needed to learn something yet. Luckily, My major will be in computer science .Good luck and happy coding!

URL: http://forum.audiogames.net/viewtopic.php?pid=248177#p248177





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Becoming a computer programmer

2016-01-28 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Becoming a computer programmer

I have to agree with the above posts on the fact that Python is definitely one of the easiest languages to learn.It wasn't the first language I familiarized myself with however, and I do believe things would have made more sense in the beginning for me if I had started with it.Don't let the above fool you into thinking python isn't a full blown language, or isn't powerful or advanced (these are some of the common misconceptions I often hear after stating it would be a good language to start with).As far as info on starting in the CS field, I don't have any specific resources I can give you, just some general advice:Start familiarizing yourself with a language, almost any language - try to understand object oriented programs (oop), and how they differ from languages that don't use oop.Code something in your language of choice. It doesn't have to be a complex, end-user ready application, maybe just a small utility tha
 t you've been wanting to make for a while. Everything I know about programming and computing in general I learned myself. I'm sure this has lead to a few insightful topics that your avrage computer science class doesn't teach, and I'm even more sure there are gaps in what I know, simply by the fact that I haven't needed to learn something yet. Luckily, My major will be in computer science .Good luck and happy coding!

URL: http://forum.audiogames.net/viewtopic.php?pid=248177#p248177





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible youtube playlist or channel downloader, please

2016-01-02 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Accessible youtube playlist or channel downloader, please

Um...@coltonhill01, why is your first thought to do something in BGT, do you know how limiting that is? rofl

URL: http://forum.audiogames.net/viewtopic.php?pid=245247#p245247





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: tw blue

2016-01-02 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: tw blue

What's that supposed to mean? Lol.

URL: http://forum.audiogames.net/viewtopic.php?pid=245249#p245249





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: doubts about pangu jailbreak 1.0.1 iOS 9.0.2. please help.

2016-01-02 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: doubts about pangu jailbreak 1.0.1 iOS 9.0.2. please help.

Yeah, Pangu is the only thing you might have difficulty in doing, Cydia is great.Also, just a quick note, you might want to be careful what you go smashity smashing in iOS, if you see something that you don't completely understand, and you delete it, you can break your device really badly if, say, some other component needs a library that the directory you deleted contained. In that sort of situation, you might find your phone can now longer download app store updates, make calls, etc etc. Just be careful what you delete.If you have any questions, there is a great Reddit jailbreak community that has lots of posts on things you can do, might want to do, and should never do with a jailbroken iOS device.Good luck, and happy jailbreaking

URL: http://forum.audiogames.net/viewtopic.php?pid=245248#p245248





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: doubts about pangu jailbreak 1.0.1 iOS 9.0.2. please help.

2016-01-02 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: doubts about pangu jailbreak 1.0.1 iOS 9.0.2. please help.

Yeah, Pangu is the only thing you might have difficulty in doing, Cydia is great.Also, just a quick note, you might want to be careful what you go smashity smashing in iOS, if you see something that you don't completely understand, and you delete it, you can break your device really badly if, say, some other component needs a library that the directory you deleted contained. In that sort of situation, you might find your phone can know longer download appstore updates, make calls, etc etc. Just be careful what you delete.If you have any questions, there is a great Reddit jailbreak community that has lots of posts on things you can do, might want to do, and should never do with a jailbroken iOS device.Good luck, and happy jailbreaking

URL: http://forum.audiogames.net/viewtopic.php?pid=245248#p245248





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Looking for a old peace of software

2015-12-27 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Looking for a old peace of software

Is there a particular reason you need "this" program? There are almost certainly better alternatives if it's old.Also, just gotta say... It's "an", not "a". As in, "Looking for an old piece of software"

URL: http://forum.audiogames.net/viewtopic.php?pid=244437#p244437





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: tw blue

2015-12-27 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: tw blue

I need lots more info.Windows version? TWBlue version, portable mode / installed? Have you been using it before now and it worked? If so, what did you change / do that you think caused this problem?Have you tried reinstalling? Do you get any log output?

URL: http://forum.audiogames.net/viewtopic.php?pid=244436#p244436





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Wine on a Debian VPS

2015-12-18 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Wine on a Debian VPS

Lol.@ogomez92, he's trying to run windows apps (server stuff, I would hope, as anything else would be pointless because of linux counterparts), on that VPS.Personally I haven't messed with wine, I use linux boxes to run linux things, and windows boxes to run windows things. Actually, I can only think of like... 1 server that I can't run on Linux lol.

URL: http://forum.audiogames.net/viewtopic.php?pid=243230#p243230





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible youtube playlist or channel downloader, please

2015-12-18 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Accessible youtube playlist or channel downloader, please

@blindndangerous: The main github page for it is here, and a windows executable can be found here.If you want to convert downloaded content to other formats, you'll also need FFMPEG. A windows version (which also includes FFMPlay and FFMProbe), can be found right here. Make sure to get a stitic build for either 32 or 64 bit. Just drop those 3 binaries in the same directory as YDL, or pot any of them in your path and you can convert anything you download.For help on what YDL can do, check the github page I linked, or ydl --help > YDLHelp.txtnotepad YDLHelp.txt(I renamed my youtube-dl.exe to ydl)Also, to update YDL, just run ydl -U (capital U), they release updates pretty frequently.Good luck

URL: http://forum.audiogames.net/viewtopic.php?pid=243233#p243233





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible youtube playlist or channel downloader, please

2015-12-18 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Accessible youtube playlist or channel downloader, please

@blindndangerous: The main github page for it is here, and a windows executable can be found here.If you want to convert downloaded content to other formats, you'll also need FFMPEG. A windows version (which also includes FFMPlay and FFMProbe), can be found right here. Make sure to get a static build for either 32 or 64 bit. Just drop those 3 binaries in the same directory as YDL, or put any of them in your path and you can convert anything you download.For help on what YDL can do, check the github page I linked, or ydl --help > YDLHelp.txtnotepad YDLHelp.txt(I renamed my youtube-dl.exe to ydl)Also, to update YDL, just run ydl -U (capital U), they release updates pretty frequently.Good luck

URL: http://forum.audiogames.net/viewtopic.php?pid=243233#p243233





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Wine on a Debian VPS

2015-12-18 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Wine on a Debian VPS

Okay so. Here's a hint... And by, "Here's a hint, I mean remember this as if it came from the deity you believe in":When your trying to get help with an issue... PLEASE, PLEASE, PLEASE DON'T JUST SAY, "It didn't work".If you want me to help, I need to know what you're trying to do, what you expect it to do (these are often two very different things), and what it's actually doing, with logs of output.I don't mind helping, but I won't make guesses and waist time.

URL: http://forum.audiogames.net/viewtopic.php?pid=243293#p243293





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible youtube playlist or channel downloader, please

2015-12-17 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Accessible youtube playlist or channel downloader, please

Make a github! 

URL: http://forum.audiogames.net/viewtopic.php?pid=243124#p243124





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible youtube playlist or channel downloader, please

2015-12-16 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Accessible youtube playlist or channel downloader, please

With YDL itself you can specify an output naming format, the default is the title, a dash, and the video ID from the site it was downloaded from. I'll probably be adding this to my fork of Hrvoje's addon (after, as he said), bigger bugs are fixed.

URL: http://forum.audiogames.net/viewtopic.php?pid=243052#p243052





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible youtube playlist or channel downloader, please

2015-12-15 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Accessible youtube playlist or channel downloader, please

Hi rvoje.I actually forked your add-on from bit bucket (as I don't have an account there), to github. I haven't done anything with it yet, (Though I planned auto-updates of YDL).It's at https://github.com/Oliver2213/NVDAYoutube-dlIf your interested.I might work on it to add more fine-graned video download control, and I'll look into canceling downloads.

URL: http://forum.audiogames.net/viewtopic.php?pid=242845#p242845





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: getting started with apache for windows?

2015-12-15 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: getting started with apache for windows?

Yeah... I'd bet I've seen several EFI bootmanagers, but since I'm also duel-booting windows 7 I'm reluctant to start chopping away at my apple one on my everyday work en play machine 

URL: http://forum.audiogames.net/viewtopic.php?pid=242846#p242846





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: getting started with apache for windows?

2015-12-10 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: getting started with apache for windows?

Oh huh. Could you link to how you set up your mac with Linux? (I'm assuming you duel-booted rather than running it inside a VM)?But yeah, no reason you can't run apache / nginx on a spare mac.Personally, I use Nginx, and I'm about to set up owncloud again, though that's not really what your looking for.

URL: http://forum.audiogames.net/viewtopic.php?pid=242184#p242184





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: getting started with apache for windows?

2015-12-09 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: getting started with apache for windows?

I know that apple has OS 10 server, which (as I understand it), basically lets you host your own mini iCloud. It's 20 bucks (again, last I knew of it), and runs on existing mac hardware.But honestly? Unless your a big enterprise that's really not what you need. Now if you've got a mac just sitting around, always on, connected to the internet? Sure, you could make that a server. But generally home PCs are not what you want for a server, even a small personal one. Better to run a VM with a cloud service, re-purpose (and by re-purpose, I mean take an old computer down to your mom's basement, hook it up to the net, slap a Linux OS on it, maybe give it a few harddrives, and accept that it's gonna stay there, doing nothing else but be your server...), buy a pi, etc.

URL: http://forum.audiogames.net/viewtopic.php?pid=241919#p241919





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: getting started with apache for windows?

2015-12-08 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: getting started with apache for windows?

Hi.First, I'd like to heartily agree with the people above:If you want to serve anything, windows is really not optomal for that. Linux is rock solidThere are a few ways you can go about getting access to a Linux box. Like someone suggested above, try it in a VM and SSH in, buy a cheap linode, or (what I would recommend), buy a raspberry pi. There are seveeral threads here on the forum that talk about how to set one up.(FRYI) the Raspberry Pi is a little 35 dollar computer the size of a credit card that makes an excilent little server or hackable hardware project.I use mine for tons of stuff, and it works great. It would be perfect for a blog, database, teamtalk server, etc. You would need to buy one, set it up, and plug it into your router, then forward the necessary ports (80 for http, 445 for https...).There is much more you can do with Linux than just host a website or blog, google and see what your interested in.Also... WHy apach
 e? Why not Nginx?

URL: http://forum.audiogames.net/viewtopic.php?pid=241806#p241806





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: getting started with apache for windows?

2015-12-08 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: getting started with apache for windows?

Hi.First, I'd like to heartily agree with the people above:If you want to serve anything, windows is really not optomal for that. Linux is rock solidThere are a few ways you can go about getting access to a Linux box. Like someone suggested above, try it in a VM and SSH in, buy a cheap linode, or (what I would recommend), buy a raspberry pi. There are seveeral threads here on the forum that talk about how to set one up.(FYI) the Raspberry Pi is a little 35 dollar computer the size of a credit card that makes an excilent little server or hackable hardware project.I use mine for tons of stuff, and it works great. It would be perfect for a blog, database, teamtalk server, etc. You would need to buy one, set it up, and plug it into your router, then forward the necessary ports (80 for http, 445 for https...).There is much more you can do with Linux than just host a website or blog, google and see what your interested in.Also... WHy apache
 ? Why not Nginx?

URL: http://forum.audiogames.net/viewtopic.php?pid=241806#p241806





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Samsung 50 inchaccessible TV

2015-11-28 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Samsung 50 inchaccessible TV

Hmm. On one hand, I feel like Samsung is trying to add accessibility, but either they don't have blind / low vision etc, people on the team, or there not getting good advice. Still though, you do have to give them a thumbs up for doing *something* towards accessibility.And (although you may be selling that TV), if I were you I would keep an eye on some online forums that deal with hacking those kinds of TV firmware. I don't mean hacking in a bad way (stupid media for giving it a bad connotation)...It would be cool to crack the software open and see exactly what's going on.Also, just a quick note here:BIG COMPANIES LIKE SAMSUNG HAVING A MICROPHONE IN MY LIVING ROOM DISTURBS ME!I'm reasonably Ok with using siri and dictation from apple, but in general apps that send your data off somewhere else and get a response back (sadly, lots of them these days), creep me out. I'll leave out the hole government-has-
 an-ear-in-your-living-room argument, and let you imagine that for yourselves .

URL: http://forum.audiogames.net/viewtopic.php?pid=240308#p240308





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: This isn't for attention

2015-11-28 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: This isn't for attention

[[wow]].I tried to come up with some unique advice for you @ghostRider, but the awesome posts by @Nocturnus and others would put anything I could do to shame. I haven't been in that situation, but I have had to deal with some very hard family times as well as figuring out my place in the world (Where I'll go to college, how I'll get around, what I'll study, what bills do I need to pay).That stresses me out to no end, sometimes I just wish I was a kid again and could let my parents deal with all of it .Personally, when I get stressed, have a hard decision to make, when feeling sad, angry, happy... I read. I find that (corny as it sounds), escaping into a plot and world that isn't my own with characters that I have no connection to othe
 r than words in a book really relaxes me. I finish a good portion of a book, stop reading, and I'm much calmer about my situation and am usually able to come up with a solution.For some, it's music. For others, it's physical excersize. For me, it's books.If you haven't read much, (or don't read much now), pick up a good book and see if that helps. If you need good books, to read, mention me, (@bladehunter2213 on twitter) and I'll help. There are also an amazing number of sites dedicated to book reviews (yay!), my personal favorite is Goodreads.Of course this could all be useless information to you if your not a book reading kind of person, but man I feel better having actually tried to help in some small way rather than just reading the thread and moving on.Good luck, happy holidays, and never give up!

URL: http://forum.audiogames.net/viewtopic.php?pid=240302#p240302





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: This isn't for attention

2015-11-28 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: This isn't for attention

Weee more reviews! Will do!

URL: http://forum.audiogames.net/viewtopic.php?pid=240306#p240306





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: virtual mac on a windows machine?

2015-11-28 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: virtual mac on a windows machine?

LololI definitly agree that my mac is, by far, the best windows computer I have ever owned.I also like OS X in general so it's not a stretch at all to say this is the best computer I've ever owned.To the person who asked if an I 3 would be enough to run OS X in a vm:Don't mean to be harsh here, but... No. You're gonna need at least an I 5 with (hopefully) more than 4 gigs of ram. Actually probably more than that, as your host OS still needs room to run and I don't even think ther is a mac with 2 GB ram on the market today.As to how I know you can't use an I 3 to run a mac VM?Well, on my old, crappy I 3 with 2 GB ram, I tried it. (This was a few years ago) and, while it worked, and I mean that as loosely as possible, it was slow as to be virtually unusable.As for @techmaster20's objections to rebooting...Uh... You sound like a windows kinda guy to me.Do you know what the windows unofficial mot
 to is?It's "You must restart this computer for the changes to take effect".So I don't see any problem in using bootcamp, tripple, or even quad booting (as was said above), bootcamp will do all the hard work for you with windows and... Frankly, you don't strike me as the venturing-off-into-linux-land-to-learn-things kinda guy.But shrug, to each their own, I guess.

URL: http://forum.audiogames.net/viewtopic.php?pid=240390#p240390





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: virtual mac on a windows machine?

2015-11-27 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: virtual mac on a windows machine?

Hi.I realize this is devolving from the topic slightly but...techmaster20 wrote:No. Don't use bootcamp. You have to partition, and you will need sighted assistance, as the idiots at apple don't allow sound driverd]s to be used until windows is installed. If you buy a mac, use vmware fusion, or look up the mac installers from SoulDev, since they went down, you will have to get them from a torrent.First off:You can have perfectly working audio during installation. It's called, "Oh... Speakers don't work? Let's use the headphone jack".You can have a windows install with speech by using a win PE disk image written to either a flash drive or DVD. (Don't ask me for these, there are a few floating around the net and this forum...)As for no speech on the second part of the install, after the computer restarts, just win u for util
 ities, tab until you hear narrator, hit enter.I've set up bootcamp on several macs this way, it works just fine (though, if you are going to be using a Win PE image you better go get a real win 8 / 8.1 / 10 iso from Microsoft, write it to a flash drive and plug that in during the bootcamp process... Then when the mac restarts switch the valid iso disk with the WinPE).Now, back on the actual topic of this thread:You might be having a slow time of it for a few reasons. The first, and most obvious is that your computer just doesn't have enough oomph to run multiple operating systems (your host, as well as a simulated one). For this you need enough ram and processor speed.I don't actually know how much ram my mac uses, I've got 16 GB in this macbook so it's never been a problem, but in general Apple is pretty smart about resources, at least in my experience.You might also be having audio latency issues, which could make the ma
 c just "feel" slower, because of the lagtime for audio output. There are articles on how to decrease this, so I won't go into it here.Also, there is a huge community dedicated to the "hackintosh", which is basically a computer that runs OS X either in a VM or as the primary OS (I don't really know many specifics, some researching required on that one).All that aside, if you are going to be using a mac in a professional environment (You need this for work / you depend on it / you aren't going to be as effective without it), if at all possible, just buy one. You can grab a mac mini for like... what... 400 dollars these days? (A mac mini is a small box with all the computing hardware packed inside that you just plug up to speakers and a monitor).I use my macbook with OS X and windows daily and love it. I'm about to trippleboot some sort of Linux flavor, so I have access to windows 7, Mac OS X, and my favorite linux distro.
 Hope that helps

URL: http://forum.audiogames.net/viewtopic.php?pid=240301#p240301





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: virtual mac on a windows machine?

2015-11-27 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: virtual mac on a windows machine?

Hi.I realize this is devolving from the topic slightly but...techmaster20 wrote:No. Don't use bootcamp. You have to partition, and you will need sighted assistance, as the idiots at apple don't allow sound driverd]s to be used until windows is installed. If you buy a mac, use vmware fusion, or look up the mac installers from SoulDev, since they went down, you will have to get them from a torrent.First off:You can have perfectly working audio during installation. It's called, "Oh... Speakers don't work? Let's use the headphone jack".You can have a windows install with speech by using a win PE disk image written to either a flash drive or DVD. (Don't ask me for these, there are a few floating around the net and this forum...)As for no speech on the second part of the install, after the computer restarts, just win u for util
 ities, tab until you hear narrator, hit enter.I've set up bootcamp on several macs this way, it works just fine (though, if you are going to be using a Win PE image you better go get a real win 8 / 8.1 / 10 iso from Microsoft, write it to a flash drive and plug that in during the bootcamp process... Then when the mac restarts switch the valid iso disk with the WinPE).Now, back on the actual topic of this thread:You might be having a slow time of it for a few reasons. The first, and most obvious is that your computer just doesn't have enough oomph to run multiple operating systems (your host, as well as a simulated one). For this you need enough ram and processor speed.I don't actually know how much ram my mac uses, I've got 16 GB in this macbook so it's never been a problem, but in general Apple is pretty smart about resources, at least in my experience.You might also be having audio latency issues, which could make the ma
 c just "feel" slower, because of the lagtime for audio output. THere are articles on how to decrease this, so I won't go into it here.Also, there is a huge community dedicated to the "hackintosh", which is basically a computer that runs OS X either in a VM or as the primary OS (I don't really know many specifics, some researching required on that one).All that aside, if you are going to be using a mac in a professional environment (You need this for work / you depend on it / you aren't going to be as effective without it), if at all possible, just buy one. You can grab a mac mini for like... what... 400 dollars these days? (A mac mini is a small box with all the computing hardware packed inside that you just plug up to speakers and a monitor).I use my macbook with OS X and windows daily and love it. I'm about to trippleboot some sort of Linux flavor, so I have access to windows 7, Mac OS X, and my favorite linux distro.
 Hope that helps

URL: http://forum.audiogames.net/viewtopic.php?pid=240301#p240301





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible youtube playlist or channel downloader, please

2015-11-24 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Accessible youtube playlist or channel downloader, please

coltonhill01 wrote:there's also the youtube dl addon for nvda.And guess what that is based off of? YDL! It's nice for quick downloading, but you lose a lot of more powerful options, such as output file name conventions, the ability to specify exactly what you want "Get items under 200 MB and only get 10 total", verses... "Get this link and use your defaults for everything".Still, a useful addon.

URL: http://forum.audiogames.net/viewtopic.php?pid=239870#p239870





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible youtube playlist or channel downloader, please

2015-11-21 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Accessible youtube playlist or channel downloader, please

I know it's been said before but...I can't even emphasize how awesome Youtube-dl, (YDL for short), is.It can download over 700 video sites, popular ones include soundcloud, BBC, vimeo, youtube, ABC, adult swim, facebook... Pretty much any popular video site it can download from. It also has built in audio conversion with FFMPEG, you can specify that you want all videos to just be converted to MP3, ogg... Anything FFMPEG supports.Yes it's commandline, but that's a plus in my book.Of course if you're not familiar with the commandline your missing out on a lot, and one of those web-based downloaders might do what you want.

URL: http://forum.audiogames.net/viewtopic.php?pid=239479#p239479





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: rasberry pie for the blind and or visually impaired

2015-11-21 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: rasberry pie for the blind and or visually impaired

Hello.I agree with what Livrobo said above.There is another topic on the subject, that I posted in and gave some of the uses that I put my pi to.If your interested, you can find it here.http://forum.audiogames.net/viewtopic.php?id=17374

URL: http://forum.audiogames.net/viewtopic.php?pid=239480#p239480





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Raspberry Pi, any tips?

2015-11-08 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Raspberry Pi, any tips?

Hi.I personally have always used my Pi as a headless server. That is, not connecting it to a keyboard, mouse, or TV and using it like a normal desktop - instead, just hooking it up to my wired network and running servers on it.There are lots of guides on loading an operating system onto an SD card, though the tool for Windows that most of them recommend (Win32DiskImager), is inaccessible. I've used Roadkill's disk imager successfully in the past, if you're an OSx or Linux guy, dd should do just fine, though you might want to tweak the write speed. I've found that setting it two fast can corrupt parts of the image (you should only have to worry about this if you use dd).Once you have an operating system installed, (I use raspbian, never used anything else, can't help much there), you need to decide on how you'll ultimately use the pi. As a standard computer, with keyboard, mouse, display and sound output (you can use a TV or monitor 
 with HDMI for that), or as a headless server. I can't help you much with the standard computer layout method, I've never used mine that way.However, if you go the headless route, you can use any standard SSH client, such as PuTTY for Windows, OSx and pretty much all *nix flavors have one built in. After finding it's IP address and logging in with the default credentials, you can use it like any other unix box, (apt-get to install packages, nano, vim, sudo to get root privileges for one command, etc). There are lots of online resources for linux, debian, and the pi in general, as well as comprehensive guides and tutorials on how to do things with you're pi.I use my pi mainly for server things, It runs 2 teamtalk servers, a web server I hardly use, syncthing for keeping files up to date across all my computers, icecast + liquidsoap + Youtube-dl with a bit of shell scripting for streaming music and automatically updating it's library, a MySQL
  installation, a personal gitserver, a twitter bot or 2, a bittorrent tracker, a bittorrent downloader that I can control from my phone or computer anywhere, an NVDA Remote server, time machine backup server for my mac... Probably a few more things I'm forgetting but use every day.It's a great little mini server, and I've held off buying a domain and VPS for this long by using it.Hope this post gives you a few ideas

URL: http://forum.audiogames.net/viewtopic.php?pid=237763#p237763





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Pontes Media Downloader - a friendly youtube downloader - version 2.0

2015-08-07 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Pontes Media Downloader - a friendly youtube downloader - version 2.0

Also... You guys do know that Youtube-DL supports video to audio conversions... You dont really need to outsource that to another program... Just download the FFMPEG binaries and put them in youre path (system32 or syswo64), and pass the -x --audio-format mp3 args to YDl, then -k if youd like to keep the video files as well.

URL: http://forum.audiogames.net/viewtopic.php?pid=226942#p226942




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Pontes Media Downloader - a friendly youtube downloader - version 2.0

2015-08-07 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Pontes Media Downloader - a friendly youtube downloader - version 2.0

Hi everyone.I havent tried this... But I can honestly say that Youtube-dl (YDL) is way better...Or... If youre lazy like me, try its new NVDA Add on.Ive also made modifications to that add on, and you can find them here on my git hub branches page for that repositoryPull requests to my repo are welcome, Ive kind of split off development of this guys add on into my repo, though I still pull in his changes.

URL: http://forum.audiogames.net/viewtopic.php?pid=226940#p226940




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: NVDA Instant Translate Solution

2015-08-02 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: NVDA Instant Translate Solution

Seems I didnt look hard enough, the project can be found at https://bitbucket.org/nvdaaddonteam/instanttranslateAnd it seems that their last commit fixed things, at least in part.

URL: http://forum.audiogames.net/viewtopic.php?pid=226285#p226285




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: NVDA Instant Translate Solution

2015-08-02 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: NVDA Instant Translate Solution

Nice Stewi.Upon checking the official NVDA addons site, I found the following:IMPORTANT NOTICE: Add-on temporarily unavailableDue to changes to the service the add-on uses, Instant Translate add-on is temporarily unavailable. Sorry for the inconvenience. If you wish to help the add-on author, please use the development version and ask on the NVDA community add-ons mailing list. Thank you.NVDA Community add-ons teamI personally am not subscribed to that list, but you might consider sending an email to the contact addresses in the add-on itself.Id also suggest you put this somewhere like github, Ive been thinking about messing with it for a while now but never did find its public repo (if its even in one)

URL: http://forum.audiogames.net/viewtopic.php?pid=226274#p226274




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Kodi screen reader addon--Installing on OS X

2015-06-22 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: Kodi screen reader addon--Installing on OS X

Hi.Kodi looks cool, sucks that its inaccessible out of the box.I found the screen reader add on, but have had some difficulty in getting it working right.Im using NVDA 2015.2 on windows.I see something in the change log, that says you need a different DLL for NVDA and this add on for Kodi to work.I downloaded Kodi, then the installer for the add on. The add on installer gave me a 404, saying it couldnt find the file needed. I looked at the folder it was trying to install the add on into.I then Downloaded the add on from his github (https://github.com/ruuk/service.xbmc.tts), and extracted that resulting repository folder (minus the branchname) into the directory the installer was trying to use.That folder turned out to be my home folder, app data, kodi, addons. After reopening kodi, nothing. Can anyone post a link, or instructions on how to get
  this working with NVDA?

URL: http://forum.audiogames.net/viewtopic.php?pid=220939#p220939




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: syncthing: the better alternative of bt sync

2015-04-14 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: syncthing: the better alternative of bt sync

Hello everyone.I had heard about this a while back, but it wasnt as stable and well documented as it now is.I personally love it.Also, @victorious, if you go to add a device, youll see an introducer checkbox. This allows the device youre adding to automatically add devices you add to it to the device youre on now.In simpler terms: When i added my server device to my local syncthing, i checked the introducer check box. So, in theory (as far as i understand this), any *other* devices that i add to my server will get added to the local copy of syncthing, as well.Also, a note about interface wrappers:Ive found that the seemingly awesome syncTrayzor that includes system tray balloons (much like were used to in BTSync), a built in minibrowser for displaying the syncthing interface, a portable version, and more, is inaccessible.With object nav and NVDA i was able to get a few
  things to work, but not well enough for me to want to keep it as the easy ui wrapper its supposed to be -- hiding the command prompt with NUtils and using the normal web interface seems much easier to me.I would however, like to note that the SyncthingTray (https://github.com/iss0/SyncthingTray), is quite accessible, if a bit limited. I also wouldnt use this, because id much prefer just a simple start and stop (which this does offer), and balloon notifications (which it does not).If anyone is aware of a wrapper for this that provides balloon notifications and is somewhat customizable as well as accessible, please, post it here.Thanks,

URL: http://forum.audiogames.net/viewtopic.php?pid=212315#p212315




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: raspberry pi: need an image

2014-12-23 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Re: raspberry pi: need an image

Hello.First off, it kind of depends on what youre planning to use it for what operating system you want.I myself use it as a server, and use a thin version ofraspbian. And as for your question about how accessible the set up is, SSH is support out of the box.That means you can just plug it into an ethernet network, find its IP address, and login with the default username and password to set it up that way.Ive never used arch, and have heard is particularly difficult to set up and not good for accessibility. Personally I find that using it with raspbian is a headless server works best for me… But by all means, look around and try out different things… Just giving you my views and experiences so far.Good luck!

URL: http://forum.audiogames.net/viewtopic.php?pid=198348#p198348




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Creating a raw disk image?

2014-08-14 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Creating a raw disk image?

Hello all.A couple of you may remember some months back when i took to the forums for some help with my 1 TB harddrive problem.Although i got great segestions, sadly none worked, and im ready to move on. [sniff sniff] Any ways, what i mean is, id like to repurpose this disk for the time machine backup disk for my shiny new mac. Im quite sure that the disk is (physically) in good health.However, i dont want to lose a backup of the raw data on this disk currently.I know there are software programs out there that will back up the raw data on a disk into a format. I dont want to casually chose one such program and then realize that, the reading and recovery of my cherished data is limited to that companies particular products.So, my question for you, tech savvy reader, is this:Do you know of one, or many
 , such programs that would be able to take a backup of the raw data (including all file tables, partitions and such) and have it in a widely usable format? (perhaps with tools like testDisk)If so, please post here with any information.Much apreciated,

URL: http://forum.audiogames.net/viewtopic.php?pid=184814#p184814




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Creating a raw disk image?

2014-08-14 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


  


Creating a raw disk image?

Hello all.A couple of you may remember some months back when i took to the forums for some help with my 1 TB harddrive problem.Although i got great segestions, sadly none worked, and im ready to move on. [sniff sniff] Any ways, what i mean is, id like to repurpose this disk for the time machine backup disk for my shiny new mac. Im quite sure that the disk is (physically) in good health.However, i dont want to lose a backup of the raw data on this disk currently.I know there are software programs out there that will back up the raw data on a disk into a format. I dont want to casually chose one such program and then realize that, the reading and recovery of my cherished data is limited to that companies particular products.So, my question for you, tech savvy reader, is this:Do you know of one, or many
 , such programs that would be able to take a backup of the raw data (including all file tables, partitions and such) and have it in a widely usable format? (perhaps with tools like testDisk)If so, please post here with any information.Much apreciated,

URL: http://forum.audiogames.net/viewtopic.php?pid=184814#p184814




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Any way to get Eloquence for android free?

2014-06-12 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


Re: Any way to get Eloquence for android free?

Hi everyone.Now, im not saying i have such a pirated copy as mentioned above, but @ALittleGamer if youre still interested in eloquence, PM me on the forrum or mention me on twitter.URL: http://forum.audiogames.net/viewtopic.php?pid=176734#p176734

___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Accessible NAS?

2014-06-12 Thread AudioGames . net ForumOff-topic room : Blademan via Audiogames-reflector


Re: Accessible NAS?

Hi all.I myself use a Raspberry pi, as one of the posters here said. Oh, a note for the person who uses the Pi as a NAS, check out NTFS3G. Its a driver that should help.But yes, using a raspberry pi is a solution on the more geek side of things. but on the flip side, the Pi itself is only 35 US dollars, runns off of a micro USB (youll probabbly recognize it as what most android devices are powered by), its small and there are a ton of guides online on how to make it do way more than just store files for you.For example, my raspberry pi allows me to upload files to it with Samba, runs a teamtalk server, runs transmission-daemon (a remote controllable Bittorrent client) BTSync... and more.If youre looking for an inexpensive NAS solution, the Pi could be what youre looking for.One of the cool things about the Pi as a NAS server is that you dont need to buy hard drives, you can simply use your own.Here are some l
 inks you may want to look at:Raspberry Pi Home pagehttp://www.raspberrypi.orgFreeNas (a solution where u can use an old computer to do basically the same thing as teh pi)http://www.freenas.orgURL: http://forum.audiogames.net/viewtopic.php?pid=176747#p176747

___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector