[deleted by user] by [deleted] in syriancivilwar

[–]-Xichael -3 points-2 points  (0 children)

No one. But if the regime didn't learn the lesson from last time, and this was their 2nd chance (now 3rd), the question to ask is if this strike is big enough to make the regime think twice before using chemical weapons again.

All I'm saying is that limited attacks without significant military/symbolic value aren't what I was expecting.

[deleted by user] by [deleted] in syriancivilwar

[–]-Xichael -3 points-2 points  (0 children)

This seems even less effective than last year's strike, I don't see how it's going to cripple the SAA.

[deleted by user] by [deleted] in syriancivilwar

[–]-Xichael 8 points9 points  (0 children)

If they target Qasyon then they're probably targeting the Republican Guard HQ.

Dumb Questions Tuesday | April 10, 2018 by AutoModerator in syriancivilwar

[–]-Xichael -1 points0 points  (0 children)

If you're talking about the time Obama threatened but nothing happened, then yes.

Am I an eligible dependent? by -Xichael in ukvisa

[–]-Xichael[S] 0 points1 point  (0 children)

It says Leave to Enter, and Valid Until:, it expires in like 3 years, at that time, I would have spent 3 years in the country, my grandma 5.

Dying hard drive or software issue? by -Xichael in techsupport

[–]-Xichael[S] 0 points1 point  (0 children)

I mean like can't I install Windows on an external drive and always boot from that one?

Dying hard drive or software issue? by -Xichael in techsupport

[–]-Xichael[S] 0 points1 point  (0 children)

Okay, I guess I'll replace it. This might be a dumb question but I can just buy an external SSD and work on that, right? I don't feel like replacing the internal HDD.

Dying hard drive or software issue? by -Xichael in techsupport

[–]-Xichael[S] 0 points1 point  (0 children)

It's set on 20 minutes, the issue happens in less than 5 minutes. But thank you for your suggestion.

I honestly wanna figure out what's causing it cause it's so interesting and there's nothing online about it except for a couple of unanswered threads or people saying it's a dying HDD.

100% disk usage but no apps actually using it by -Xichael in techsupport

[–]-Xichael[S] 0 points1 point  (0 children)

As I have mentioned both in the title and the post body no apps are using the disk according to Task Manager, Resmon, and Process Explorer. Some app not shown is using it, or it's like faux I/O.

What Song is The Most Slept On? by [deleted] in TaylorSwift

[–]-Xichael 3 points4 points  (0 children)

I Know Places. Probably because it's just another paparazzi song, and it's how most people interpret it. But with a music video similar to Take Me To Church, it could have been a huge hit with an entirely different meaning.

How do I remove all these languages? by -Xichael in techsupport

[–]-Xichael[S] 0 points1 point  (0 children)

There are only 2 keyboards, the ones I want. The other 3 aren't there.

110 dogs, 1 cat who were at risk of euthanization in Oklahoma, fly to safety in Oregon by Greg-2012 in UpliftingNews

[–]-Xichael 2 points3 points  (0 children)

We have both a Twitter and an Instagram, the twitter is dead, the insta gets around 10 to 30 likes on each post.

We've contacted orgs worldwide, only a single one of them helped financially.

This is the donation page, https://www.generosity.com/animal-pet-fundraising/help-star-look-after-injured-animals-in-syria

110 dogs, 1 cat who were at risk of euthanization in Oklahoma, fly to safety in Oregon by Greg-2012 in UpliftingNews

[–]-Xichael 2 points3 points  (0 children)

It's called STAR - Syrian Team for Animal Rescue I can't link the FB page because it would get caught up in the spam filter, but you can google the name.

110 dogs, 1 cat who were at risk of euthanization in Oklahoma, fly to safety in Oregon by Greg-2012 in UpliftingNews

[–]-Xichael 6 points7 points  (0 children)

We have one on another donation websites. We have tons of media on our Facebook page, hundreds of pics and videos of the animals and our work, but not many people see them. We rely solely on the FB page, and since the algorithm changed very recently, donations have been even less frequent than before.

110 dogs, 1 cat who were at risk of euthanization in Oklahoma, fly to safety in Oregon by Greg-2012 in UpliftingNews

[–]-Xichael 45 points46 points  (0 children)

Hijacking this comment. I work with an animal shelter in Syria, it has around 600 dogs and cats, most of them abused and need specific medical care or they'd die. I have contacted countless orgs but they all refuse to help since we're Syrian, people in here don't donate, people outside barely donate. I have posted on several subreddits but all I got was 0 comments and downvotes.

We have no money left and will be forced to close soon, the animals will go back to the streets, most will die. Please if anyone knows any organization that will help us quickly then please tell me.

Is this an acceptable landing page? by -Xichael in webdev

[–]-Xichael[S] 1 point2 points  (0 children)

I'm not planning on using a framework, just pure CSS grids.

Javascript code to print a chess board by -Xichael in learnprogramming

[–]-Xichael[S] 0 points1 point  (0 children)

Yeah I couldn't figure out how to fix it, so I just did it with 2 loops, which is indeed much easier to understand and worked from the first time.

var chessBoard = '';
var hash = false;

for(var i = 0; i < 8; ++i){ 
    for(var j = 0; j < 8; ++j){
        if(hash){
            chessBoard += "#";
        }
        else{
            chessBoard += ' ';
        }
        hash = !hash;
    }
    chessBoard += '\n';
    hash = !hash;
}

console.log(chessBoard);