Posts: 28389
Threads: 226
Joined: March 24, 2014
Reputation:
184
RE: What's everyone up to right now?
March 29, 2016 at 4:28 pm
(This post was last modified: March 29, 2016 at 4:30 pm by Losty.)
(March 29, 2016 at 1:56 pm)Cthulhu Dreaming Wrote: (March 29, 2016 at 1:43 pm)Losty Wrote:
Anyways, it should be maybe a month or so and I will have wifi again. Moving with 3 kids and 3 dogs is stressful and exhausting and expensive. But things will settle and I'll get wifi hooked up. In the meantime I try to post some here and there. I just get bored waiting for pages to load.
Can you PM me that link?
The "please click here" link? I'll try to get back over there today and get it
(August 21, 2017 at 11:31 pm)KevinM1 Wrote: "I'm not a troll"
Religious Views: He gay
0/10
Hammy Wrote:and we also have a sheep on our bed underneath as well
Posts: 31730
Threads: 117
Joined: February 22, 2011
Reputation:
159
RE: What's everyone up to right now?
March 29, 2016 at 4:45 pm
I seem to recall that our local Perkins restaurant used the same software, Fortinet, but didn't block AF.org. You may be dealing with a customized blocklist.
Posts: 2088
Threads: 6
Joined: January 3, 2016
Reputation:
30
RE: What's everyone up to right now?
March 29, 2016 at 4:54 pm
Gave up on tanks too.
I'm just gonna go cry in a corner and contemplate why i still play this damn game
"He who fights with monsters should look to it that he himself does not become a monster. For if you gaze long into an abyss, the abyss also gazes unto you."
Posts: 31396
Threads: 204
Joined: July 19, 2011
Reputation:
141
RE: What's everyone up to right now?
March 29, 2016 at 5:04 pm
(March 29, 2016 at 4:45 pm)Jörmungandr Wrote: I seem to recall that our local Perkins restaurant used the same software, Fortinet, but didn't block AF.org. You may be dealing with a customized blocklist.
Could be. Whomever configures Fortinet either accepts the default list of blocked categories or sets it up according to their own preference. The problem is that there's a lot of miscategorized sites, like ours.
Either way I think the solution to the problem is going to be getting the site categorized correctly.
Posts: 15351
Threads: 118
Joined: January 13, 2014
Reputation:
116
RE: What's everyone up to right now?
March 29, 2016 at 6:13 pm
(This post was last modified: March 29, 2016 at 6:13 pm by SteelCurtain.)
Sitting in Discrete Structures going over our exam. I got a 93%. Mixed up an adjacency relations and array pointer lists and missed 3 points twice.
Gives me a little leeway for a lab I got the desired result (in a rather elegant way, if I do say so myself) but used a forbidden method (I used an array of structs where I should have used a 2D Array.) I think it's way easier to read the code with dot notation rather than array indices, but I'm not grading it. Fuck it the program works and I'm not changing all my code around.
"There remain four irreducible objections to religious faith: that it wholly misrepresents the origins of man and the cosmos, that because of this original error it manages to combine the maximum servility with the maximum of solipsism, that it is both the result and the cause of dangerous sexual repression, and that it is ultimately grounded on wish-thinking." ~Christopher Hitchens, god is not Great
PM me your email address to join the Slack chat! I'll give you a taco(or five) if you join! --->There's an app and everything!<---
Posts: 19668
Threads: 178
Joined: July 31, 2012
Reputation:
91
RE: What's everyone up to right now?
March 29, 2016 at 7:15 pm
(March 29, 2016 at 6:13 pm)SteelCurtain Wrote: Sitting in Discrete Structures going over our exam. I got a 93%. Mixed up an adjacency relations and array pointer lists and missed 3 points twice.
Gives me a little leeway for a lab I got the desired result (in a rather elegant way, if I do say so myself) but used a forbidden method (I used an array of structs where I should have used a 2D Array.) I think it's way easier to read the code with dot notation rather than array indices, but I'm not grading it. Fuck it the program works and I'm not changing all my code around.
Structs are awesome!
Specially in IDL!
Arrays of structs!
watch this:
struct[0] = {time:0, position:2}
struct[1] = {time:1, position:5}
struct[2] = {time:2, position:7}
print, struct.time
> [0, 1, 2]
boooyah!
Beat that, JAVA!
Posts: 34008
Threads: 1429
Joined: March 15, 2013
Reputation:
152
RE: What's everyone up to right now?
March 29, 2016 at 7:21 pm
(This post was last modified: March 29, 2016 at 7:21 pm by Silver.)
It is bedtime. Goodnight.
I have to work on 5am salad in the morning.
"Never trust a fox. Looks like a dog, behaves like a cat."
~ Erin Hunter
Posts: 2088
Threads: 6
Joined: January 3, 2016
Reputation:
30
RE: What's everyone up to right now?
March 29, 2016 at 7:33 pm
(This post was last modified: March 29, 2016 at 7:46 pm by Jello.)
(March 29, 2016 at 7:21 pm)Kitan Wrote: It is bedtime. Goodnight.
I have to work on 5am salad in the morning.
5am salad sounds unusual. xD
"He who fights with monsters should look to it that he himself does not become a monster. For if you gaze long into an abyss, the abyss also gazes unto you."
Posts: 31396
Threads: 204
Joined: July 19, 2011
Reputation:
141
RE: What's everyone up to right now?
March 29, 2016 at 8:41 pm
(March 29, 2016 at 6:13 pm)SteelCurtain Wrote: Sitting in Discrete Structures going over our exam. I got a 93%. Mixed up an adjacency relations and array pointer lists and missed 3 points twice.
Gives me a little leeway for a lab I got the desired result (in a rather elegant way, if I do say so myself) but used a forbidden method (I used an array of structs where I should have used a 2D Array.) I think it's way easier to read the code with dot notation rather than array indices, but I'm not grading it. Fuck it the program works and I'm not changing all my code around.
I don't know what data you're modeling, or what language you're using (C++?) but I'd generally prefer a struct to an array, and I'd greatly prefer to use a Collection (in a language which supports them) over an array, at least in cases that don't need to have the shit optimized out of them.
Simple arrays generally suck unless you're doing trivial operations on them.
Posts: 28389
Threads: 226
Joined: March 24, 2014
Reputation:
184
RE: What's everyone up to right now?
March 29, 2016 at 8:42 pm
(March 29, 2016 at 7:21 pm)Kitan Wrote: It is bedtime. Goodnight.
I have to work on 5am salad in the morning.
I like the random salad in there. Hehe.
(August 21, 2017 at 11:31 pm)KevinM1 Wrote: "I'm not a troll"
Religious Views: He gay
0/10
Hammy Wrote:and we also have a sheep on our bed underneath as well
|