Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Streetwalrus

Pages: 1 ... 185 186 [187] 188 189 ... 283
2791
Miscellaneous / Re: Random YouTube Videos
« on: October 27, 2013, 04:14:08 pm »
Oh XD Awesome. ;D

2792
Axe / Re: GDB's
« on: October 27, 2013, 04:11:03 pm »
I also use them as a terneary operator though I should avoid it cause it's a major pita to maintain. ;)

2793
General Discussion / Re: Watcha Been Listening To?
« on: October 27, 2013, 04:08:21 pm »
These two Wrecking Ball covers you found are awesome Juju. I have to agree Miley Cyrus's just sucks.

Now for some epic french music :


This one has better audio :

2794
Axe / Re: GDB's
« on: October 27, 2013, 04:06:41 am »
That's why ? and ?? were created. These are the logical AND and OR respectively.

2795
Humour and Jokes / Re: Whatdoestheinternetthink.net
« on: October 26, 2013, 05:46:51 pm »
But we are more insane. Say it.
* Streetwalker hides

2796
Gaming Discussion / Re: best metroid game
« on: October 26, 2013, 08:08:44 am »
O.O Yeah awesome typo. XD

2797
Miscellaneous / Re: Random YouTube Videos
« on: October 26, 2013, 07:54:28 am »
Wtf ? XD

2798
News / Re: Warning: OS 3.6 bricks TI-Nspire ClickPad DVT prototypes
« on: October 26, 2013, 07:43:36 am »
It already happened with the 2.x upgrade IIRC.

2799
Miscellaneous / Re: Post your desktop
« on: October 26, 2013, 07:11:42 am »
new theme time =D
>inb4 entire server is full of pictures
This desktop is quite nice. I'm also switching to MATE and Awesome and I found your rc.lua on github. Gonna use some pieces of it. Mind sharing your Beautiful theme ? Also what's you GTK theme ?

2800
TI Z80 / Re: [Axe] game demo
« on: October 26, 2013, 06:36:37 am »
It can happen if your collision code relies on exact positions. Since you use physics, the character can move several pixels at a time and that's your issue.

2801
OmnomIRC Development / Re: OmnomIRC changelog and suggestions
« on: October 26, 2013, 06:32:42 am »
Well, the code in my post adapts correctly to window width. Only the grab-able part of the scrollbar goes God-knows-where when you resize the window, I fixes itself after a refresh though (that's an OmnomIRC bug btw, since it does the same without the userstyle).

2802
Introduce Yourself! / Re: New user!
« on: October 26, 2013, 06:25:24 am »
Cool to see you here, Ryleh !
Have some peanuts :
!peanuts

I'm myself waiting for Xmas and my bday to get myself an HP Prime. :D

2803
Humour and Jokes / Re: Weird/funny pictures thread
« on: October 26, 2013, 06:22:47 am »
Why did I have to laugh so hard at this one ? :evillaugh:

2804
Humour and Jokes / Re: Whatdoestheinternetthink.net
« on: October 26, 2013, 06:21:23 am »
XD People are insane. :P

2805
OmnomIRC Development / Re: OmnomIRC changelog and suggestions
« on: October 26, 2013, 06:14:38 am »
So with Darl's help, I ported his style tweaks to the default Omni theme and actually set the body background. :P
Code: [Select]
body {
  background-color: #DFEFFF
}

#Channels {
    width: 100% !important;
}

#topicBox {
    width: 100% !important;
    border-left: none !important;
/*    box-shadow: 0 2px 2px rgba(0,0,0,0.5) !important; */
/*    meh shadows, line highlight messes them up */
}

#topic {
    margin-bottom: 2px !important;
    margin-top: -1px !important;
}

#UserListContainer {
    height: 100% !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    border: none !important;
    border-left: 1px solid #6699FF !important;
/*
    OR REPLACE WITH PROPER BORDER COLOR
    #999 IN V5R
*/
    left: 90% !important;
    width: 10% !important;
/*    box-shadow: -2px 4em 2px rgba(0,0,0,0.4) !important; */
}

#UserList {
    height: calc(100% - 4em) !important;
    background-color: #CAE4FF !important;
    left: 0 !important;
    padding-left: 1em !important;
    padding-top: 2px !important;
    border-top: 1px solid #6699FF !important;
    transition: 1s 1s background-color !important;
}

/* #UserList:hover {
    background-color: #DFEFFF !important;
    transition: 0.5s 0.25s background-color !important;
} */

.arrowButtonHoriz2:nth-child(1) {
/* all arrows */
/* this part achieves so much :o */
}

.arrowButtonHoriz2, .arrowButtonHoriz3 > div {
/* both top */
    margin-top: 2.5em !important;
}

#windowbg2 > span:nth-child(8) > div {
/* main bottom */
    margin-bottom: 1.5em !important;
}

#UserListContainer .arrowButtonHoriz3 > div {
/* userlist top */
    margin-top: 4.3em !important;
}

#UserListContainer > *:nth-child(4) > div {
/* userlist bottom */
    margin-top: -1.5em !important;
}

td.chan,
td.curchan {
/*    border-radius: 0 !important; */
}

td.chan:hover {
    padding-top: 3px !important;
}

td.action > a {
margin-right: 0px !important;
}

td.action > a > span {
margin-right: -5px !important;
}

/* replacing hardcoded colors -
    #dfdfdf is light bg, #cacaca is dark bg, #999 is border */
#mBoxCont {
    width: 90% !important;
}

.message {
    word-wrap: break-word !important;
}

#scrollbar {
    background-color: #CAE4FF !important;
    box-shadow: none !important;
    transition: background-color 1s 1s, box-shadow 1s 1s !important;
    -webkit-transition: background-color 1s 1s, box-shadow 1s 1s !important;
    border-radius: 2px !important;
}

#scrollbar:hover {
    background-color: #DFEFFF !important;
    box-shadow: none !important;
    transition: background-color .5s .25s, box-shadow 1s 0s !important;
    -webkit-transition: background-color .5s .25s, box-shadow 1s 0s !important;
}

#scrollbar:active {
    background-color: #DFEFFF !important;
    box-shadow: 0 0 4px #6699FF !important;
    transition: background-color 0s 0s, box-shadow 0s 0s !important;
    -webkit-transition: background-color 0s 0s, box-shadow 0s 0s !important;
}

/* placeholder until the track gets an id
 *SORUNOME POKE POKE* */
body > *:nth-child(16) {
    background-color: #CAE4FF !important;
    border: 1px solid #6699FF !important;
    border-top: none !important;
    top: 38px !important;
    width: 6px !important;
    left: calc(90% - 16px) !important;
}
Credits go to Darl for most of the code. ;)

Pages: 1 ... 185 186 [187] 188 189 ... 283