Jump to content

Jisagi

Member
  • Posts

    73
  • Joined

  • Last visited

Reputation Activity

  1. Agree
    Jisagi reacted to kelvinhall05 in I'm looking for a bedrock Minecraft server for me and my friend for free can any on recommend a serve host that will do Australian servers.   
    Nobody will host your server for free. If they do, it will suck ass.
     
     
    You need to open 25565 TCP/UDP if you want to host yourself. There are tons of guides online.
  2. Agree
    Jisagi reacted to leadeater in Hardware raid or ZFS?   
    ZFS or mdadm will work for you, mdadm may actually be better for this smaller use case.
  3. Agree
    Jisagi reacted to Middcore in Discord Inc is exploring a sale valuing at more than 10billion   
    Lol does TeamSpeak still exist?
  4. Agree
    Jisagi reacted to Downkey in Discord Inc is exploring a sale valuing at more than 10billion   
    If it’s Facebook I will cry 
  5. Agree
    Jisagi reacted to ahancock in Package all dependencies into one DLL (C#)   
    Recommend looking at Fody.Costura - it produces a single dll packaged with all dependencies: nuget
  6. Agree
    Jisagi reacted to tarfeef101 in ALWAYS Avoid Global Variables?   
    I'll assume this is a question. 

    A good rule when you encounter these "universal rules" in programming, I think, is this:
    do your absolute best to follow them unless you understand why people say that, and why they could be wrong People often say "don't use switch statements" or (especially this one) "don't use goto". However, both have their legitimate uses, and are the best solution in some cases. If you can say why that is the case, then feel free to use them. If you can't, then probably don't. 
     
     
    There are definitely times when writing js code that I have used globals, and definitely times I technically could have, but avoided doing so in favour of a better solution. But, I'm also a CS graduate, and have been working professionally in software development for some time, so I sincerely hope I'd be able to make those determinations 😄

    I will also say this: those rules mostly apply to writing "real" code, when making applications you plan to actually run and do something productive. If you're just playing around trying to learn, don't stress about it. It's much better to keep progressing in your learning experience and commit a couple faux-pas than to run into one, get stumped, and quit.
  7. Agree
    Jisagi reacted to Windows7ge in So unraid is not meant to be a backup?   
    I'm guessing they're not talking about the OS but RAID in itself.
     
    RAID or Redundant Array of Inexpensive Disks traditionally stripes (RAID0), stripes with parity bits (RAID5/6), mirrors (RAID1), or some combination (RAID10/50/60/51/61) data across multiple disks to increase performance, redundancy, or both.
     
    UnRAID took this one step further by designing it so whole files are stored on individual disks so losing drives beyond the parity or mirror resiliency doesn't cause complete and total loss of data. Only partial loss.
     
    The reason Unraid or RAID in general isn't a backup is because ultimately they're about maintaining up-time. In a business or other work environment the server going down can be catastrophic to profitability or productivity. By introducing resiliency to a storage solution a drive failure doesn't cost downtime. However a drive failure isn't the only thing a server can experience.
    Memory errors Corrupt data Bit rot Lightning strikes Human error Natural disasters Hackers Catastrophic PSU failure Fire The list goes on. So many things can happen to the server that RAID will do nothing to protect the data. Some of these issues do have systems in place to mitigate like ECC memory, CRC's, & check sums, but these aren't full proof.
  8. Agree
    Jisagi reacted to JacobFW in Html page won't go live   
    Best bet would be to find an introductory tutorial for node.js which shows you how to return a file based on an http request.
    This one may be of some help to you
    https://www.tutorialspoint.com/serving-html-pages-from-node-js
     
     
  9. Agree
    Jisagi reacted to Arika in bringing a business into the 21st century   
    I would turn him down, the last thing you want is for something to go wrong or not work exactly as they expected and then try and push everything on you. You will become their IT guy and it will be expected because you're "family".
     
    NEVER WORK FOR FAMILY.
  10. Agree
    Jisagi reacted to TargetDron3 in Would a NAS be my best option?   
    Set up the NAS.  Keep a copy on your pc.  
    Easiest cheapest way to do it. 
  11. Agree
    Jisagi reacted to Electronics Wizardy in Avoiding cloud storage for my small business   
    How many tb are we thinking?
     
     
    Really, cloud is the way to go. Reliable, pretty cheap, secure.
     
    If you want a self hosted cloud like solution look at nextcloud, but really, just go O365 or gsuite here, its a much better solution.
  12. Agree
    Jisagi reacted to Blue4130 in Ineed help to make server   
    My guess is that it is low and that this server will never be purchased. So many people post dream purchases that in the end never get purchased. Good luck.
  13. Agree
    Jisagi reacted to Electronics Wizardy in 20 x 8TB in Raid6 -> Sloooooow   
    Software raid isn't a workaround, it is often the better solutuion. Its more flexable, and gives more features.
     
    Also lots of large companies, like Oracle, Facebook and others are using software raid, and many more, like VMWare and Microsoft are selling soluions built on software raid. Its not the worse solution, and hardware raid cards seem to be slowing going away.
  14. Agree
    Jisagi reacted to Archer42 in 20 x 8TB in Raid6 -> Sloooooow   
    Nowadays this is completely wrong.
    Modern CPU-s can easily deal with the math, usually much faster than dedicated controller unless it is modern and expensive one.
     
    For the OP-s problem to me it also seems like controller is working without cache for whatever reason, most probable one - no battery/dead battery. If that is the case sometimes it is possible to force cache on without battery for testing purposes, just be sure to not use the array like this, especially for any work-related task.
  15. Agree
    Jisagi reacted to Electronics Wizardy in 20 x 8TB in Raid6 -> Sloooooow   
    you see a lot of servers with software raid. There are tons of software raid solutions like zfs and storage spaces that are made for servers. They provide similar performance, and are used in many production servers. Also with things like nvme ,software raid is getting much more common as hardware raid can't be used.
  16. Agree
    Jisagi reacted to Eigenvektor in Subdomain HELP!   
    You either need an additional A record for your sub-subdomain
    www.sub.example.com A 5.6.7.8 or you need to use a wildcard A record
    *.sub.example.com A 5.6.7.8 if your DNS provider supports that. In that case you'd then e.g. have an appropriate virtual host on your web server that takes care of serving the appropriate page.
     
    Just be aware that e.g. a wildcard SSL certificate (*.example.com) is not valid for sub-subdomains, so it will not work for www.sub.example.com, only sub.example.com.
  17. Agree
    Jisagi reacted to Electronics Wizardy in Is there a Windows 10 software based "NAS" option ?   
    There is built in smb for local network shares, but don't use this over wan.
     
    But for wan cloud like shares id just getup a vm with nextcloud on it. 
  18. Agree
    Jisagi got a reaction from Fasauceome in Help with 4790k   
    4.4 GHz is the default boost clock of the 4790k. It can run on that w/o any problems or overclock. A 240mm AIO is total overkill for this cpu. Any decent air cooler is more than enough to run this cpu on 4.4 GHz all the time. I did the same with mine for 6+ years. The temps you posted are more than fine, there is still headroom. There is no nead to improve cpu temps at all at this point
  19. Agree
    Jisagi reacted to Electronics Wizardy in Setting up a server/website   
    What programs are you using to host?
     
    Id probalby rent a vps here, then its much more reliable, and not limiteed by your home internet connection
  20. Agree
    Jisagi reacted to SansVarnic in Can someone with 5900x benchmark Rust for me?   
    This is not a good idea to do. Allowing strangers to access you Steam account is very risky.
     
    Do So at Your Own Risk.
  21. Agree
    Jisagi reacted to WhitetailAni in PSU doesn't have molex   
    Adapters.
  22. Agree
    Jisagi reacted to Electronics Wizardy in Update on Raid 5 Fail and ?'s   
    Id really try to stay away from the raid inthe bios, its known not be be great, use raid in your os,its normally much better.
  23. Agree
    Jisagi reacted to Electronics Wizardy in Hybrid Gaming PC/NAS   
    Is this for the whole pc or just the storage upgrade?
     
    10tb isn't that much storage, just get a big hdd or two in your desktop and make a share in windows, and mount it on other devices. No reason to install unraid or other oses here.
     
     
  24. Like
    Jisagi got a reaction from wall03 in Thread for Linus Tech Tips Video Suggestions   
  25. Agree
    Jisagi reacted to SansVarnic in What if intel bought amd?   
    This would not happen due to anti-trust and anti-monopoly laws. Intel would not have a fair competitor and thusly creating a monopoly.
     
×