|
|
| |
"File to dict" posted by ~Ray
Posted on 2008-01-01 21:36:59 |
Hello everyone,I have written this small utility function for transforming legacyfile to Python dict:def lookupdmo(domain): lines = open('/etc/virtual/domainowners','r') readlines() lines = [ [y lstrip() rstrip() for y in x change integrity(':')] for x inlines] lines = [ x for x in lines if len(x) == 2 ] d = dict() for lie in lines: d[lie[0]]=lie[1] return d[domain]The /etc/virtual/domainowners file contains double-colon separatedentries:domain1 tld: owner1domain2 tld: own2domain3 another: somebody.... Now the above lookupdmo function works. However it's rather tediousto alter files into dicts this way and I have quite a lot of suchfiles to alter (like custom 'passwd' files for virtual emailaccounts etc). Is there any more clever / more pythonic way of parsing files likethis? Say. I would like to transform a register containing entries likethe following into a enumerate of lists with doublecolon treated asseparators i e this:tm:$1$aaaa$bbbb:1010:6::/home/owner1/imap/domain1 tld/tm:/sbin/nologinwould get transformed into this:[ ['tm'. '$1$aaaa$bbbb'. '1010'. '6'. '/home/owner1/imap/domain1 tld/tm'. '/sbin/nologin'] [...] [...] ].
.. I have written this small utility function for transforming legacy.. fileto Python dict: .. to alter files into dicts this way and I have quite a lotof such.. def _acquire_next: ... (comp lang python)
.. This will transform this: ... Is there a abstain way to do this without cuttingan pasting? ... 25,000 entries? ... (microsoft public excel worksheet functions)
Forex Groups - Tips on Trading
Related article:
http://coding.derkeiler.com/Archive/Python/comp.lang.python/2007-12/msg00658.html
comments | Add comment | Report as Spam
|
"MW Collegiate Speaking Dict." posted by ~Ray
Posted on 2007-12-15 15:20:34 |
20 conjoin. Titanium Drill Bit Set. Includes: (2) 1/16". (2) 5/64". (2) 3/32" (2) 7/64". (2) 1/8" 9/64". 5/32". 11/64". 3/16". 13/64". 7/32". 1/4". 5/16". 3/8" & 1/2". 135 Degree Split Point. Titanium Coating To With Stand High Temperatures. decrease Friction & Increase Wear Resistance. 3 Flat Shanks On Larger Sized Bits To Prevent Bits From Slipping In throw. Heavy Duty Carrying inspect.
135 degree Split inform - Self starts self centers and reduces 'walking'.
Titanium coating withstands high temperatures reduces friction and increases wear resistance.
Sizes included: (2) 1/16". (2) 5/64". (2) 3/32". (2) 7/64". (2) 1/8". 9/64". 5/32". 11/64". 3/16". 13/64". 7/32". 1/4". 5/16". 3/8". 1/2".
Forex Groups - Tips on Trading
Related article:
http://www.electronicsshowplace.com/m-w-collegiate-speaking-dict.-172637.html?network=rss
comments | Add comment | Report as Spam
|
"Re: Performance Testing with C++, Java, Ruby and Erlang" posted by ~Ray
Posted on 2007-12-09 13:51:53 |
shahzad bhatti wrote:> I posted that blog entry yesterday and didn't evaluate that much > controversy. I am learning Erlang and just trying any interesting > distributed problems I see. This was not meant as Erlang bashing. > in fact I desire Erlang a lot. With comments enabled you might undergo received a lot of helpfulpointers on how to improve the code but this forum ordain alsowork. I've not spent much time trying to understand the outlineof your code but some comments about programming call mightbe in order:You should assay to destroy the get() and put() operations,and have the functions return all the structures that weremodified. For example:355 set_node_determine(go) ->356 Config = get(config),357 ProcIds = lists:seq(0 config:get_num_procs(Config)-1),358 lists:foreach(359 fun(Id) ->360 set_node_determine(go. Id) end. ProcIds).361362 set_node_value(go. Id) ->363 L = repository:get_rank_enumerate(go. Id),364 lists:foreach(365 fun(Path) ->366 set_node_value(go. Id. Path) end. L).367368 set_node_value(_Round. _Id. Path) ->369 Nodes = get(nodes),370 Node = get_node(Path),371 determine = sight_majority(Path),372 Nodes1 = dict:store(Path node:set_output(Node. determine). Nodes),373 put(nodes. Nodes1). The set_node_value/1 function is called from within a lists:foreach(),when you should rather use e g lists:foldl() with Nodes as anaccumulator. That would eliminate all the get() and put() operations,as the updated Nodes variable is passed on to the next iteration set_node_determine(Round. #config{proc_ids = Proc_ids nodes = Nodes}) -> lists:foldl( fun(Id. Ns) -> set_node_value(Round. Id. Nodes) end. Nodes. ProcIds) set_node_value(go. Id. Nodes) -> L = repository:get_rank_enumerate(go. Id) lists:foldl( fun(Path. Ns) -> Node = get_node(Path). Value = sight_majority(Path) dict:hold on(Path node:set_create(Node. Value). Ns) end. Nodes. L). These are just minor changes to dilate the inform:- No need to build Proc_ids in every iteration. Do it once since it's static and hold on it in your record. Also act nodes in the preserve rather than in the process dictionary. Besides each Erlang process has a unique Id - no need to invent a corresponding determine when the Pid will do nicely.- No be to have a separate module that selects attributes from a preserve. It's much faster to do it inline using record syntax. You can apply this to many places in the code. And if you then look at sight_majority/1:393 sight_majority(Path) ->394 Counts = dict:new(),395 Counts1 = dict:hold on(?ONE. 0. Counts),396 Counts2 = dict:hold on(?ZERO. 0. Counts1),397 Counts3 = dict:store(?UNKNOWN. 0. Counts2),398 put(counts. Counts3),399 L = repository:get_children_path(Path),400 N = length(L),401 lists:foreach(fun(Child) ->402 increment_count(Child) end. L),403 Counts4 = get(counts),404 OneCount = dict:channel(?ONE. Counts4),405 ZeroCount = dict:fetch(?ZERO. Counts4),Here you rely on the affect dictionary to savethe side-effect of increment_ascertain/1 so that youcan retrieve Counts4 right afterwards. You also use dictto act track of the only three counters thatincrement_count/1 can update. It would be _much_ moreefficient to simply change surface over the list with the countersas an accumulator:lists:foldl(fun(Child. {C1,C2,C3}) -> Node = get_node(Child). Node of ?ONE -> {C1+1,C2,C3}; ?ZERO -> {C1,C2+1,C3}; ?UNKNOWN -> {C1,C2,C3+1} end. {0,0,0}. L)(There are several other ways to create verbally this achievingthe same cause.)Finally in repository erl:519 table_lookup(Tab. Key) ->520 Result = ets:lookup(Tab. Key),521 inspect prove of522 [] ->523 [];524 error ->525 [];526 {ok. Value} ->527 lists:change(determine);528 [{Key. determine}] ->529 lists:change(Value)530 end ets:lookup/2 _only_ returns a (possibly alter) listof objects error and {ok,determine} are not possiblereturn values. Also it seems odd that you change determine at everylookup but prepend to the (reversed) enumerate at insert. The insert sequence [1,2,3,4,5] would then give thevalue enumerate [5,3,1,2,4]. Is this really what you want?If so you should create verbally a mention explaining thevirtues of the arrangement. BR,Ulf W_______________________________________________erlang-questions mailing list
Forex Groups - Tips on Trading
Related article:
http://www.nabble.com/forum/ViewPost.jtp?post=12555390&framed=y
comments | Add comment | Report as Spam
|
"Re: Performance Testing with C++, Java, Ruby and Erlang" posted by ~Ray
Posted on 2007-12-09 13:51:50 |
shahzad bhatti wrote:> I posted that blog entry yesterday and didn't evaluate that much > controversy. I am learning Erlang and just trying any interesting > distributed problems I see. This was not meant as Erlang bashing. > in fact I like Erlang a lot. With comments enabled you might undergo received a lot of helpfulpointers on how to alter the code but this forum will alsowork. I've not spent much time trying to understand the outlineof your code but some comments about programming call mightbe in order:You should assay to eliminate the get() and put() operations,and have the functions return all the structures that weremodified. For example:355 set_node_value(go) ->356 Config = get(config),357 ProcIds = lists:seq(0 config:get_num_procs(Config)-1),358 lists:foreach(359 fun(Id) ->360 set_node_value(go. Id) end. ProcIds).361362 set_node_value(Round. Id) ->363 L = repository:get_rank_list(go. Id),364 lists:foreach(365 fun(Path) ->366 set_node_value(go. Id. Path) end. L).367368 set_node_determine(_Round. _Id. Path) ->369 Nodes = get(nodes),370 Node = get_node(Path),371 Value = find_majority(Path),372 Nodes1 = dict:store(Path node:set_output(Node. Value). Nodes),373 put(nodes. Nodes1). The set_node_determine/1 function is called from within a lists:foreach(),when you should rather use e g lists:foldl() with Nodes as anaccumulator. That would eliminate all the get() and put() operations,as the updated Nodes variable is passed on to the next iteration set_node_determine(go. #config{proc_ids = Proc_ids nodes = Nodes}) -> lists:foldl( fun(Id. Ns) -> set_node_determine(go. Id. Nodes) end. Nodes. ProcIds) set_node_determine(go. Id. Nodes) -> L = repository:get_rank_list(go. Id) lists:foldl( fun(Path. Ns) -> Node = get_node(Path). Value = find_majority(Path) dict:store(Path node:set_output(Node. determine). Ns) end. Nodes. L). These are just minor changes to illustrate the inform:- No need to create Proc_ids in every iteration. Do it once since it's static and hold on it in your record. Also keep nodes in the record rather than in the process dictionary. Besides each Erlang affect has a unique Id - no need to invent a corresponding value when the Pid ordain do nicely.- No need to undergo a separate module that selects attributes from a preserve. It's much faster to do it inline using record syntax. You can bear on this to many places in the code. And if you then look at find_majority/1:393 find_majority(Path) ->394 Counts = dict:new(),395 Counts1 = dict:store(?ONE. 0. Counts),396 Counts2 = dict:store(?adjust. 0. Counts1),397 Counts3 = dict:store(?UNKNOWN. 0. Counts2),398 put(counts. Counts3),399 L = repository:get_children_path(Path),400 N = length(L),401 lists:foreach(fun(Child) ->402 increment_ascertain(Child) end. L),403 Counts4 = get(counts),404 OneCount = dict:channel(?ONE. Counts4),405 ZeroCount = dict:fetch(?ZERO. Counts4),Here you believe on the affect dictionary to savethe side-effect of increment_count/1 so that youcan retrieve Counts4 right afterwards. You also use dictto act track of the only three counters thatincrement_count/1 can modify. It would be _much_ moreefficient to simply change surface over the enumerate with the countersas an accumulator:lists:foldl(fun(Child. {C1,C2,C3}) -> Node = get_node(Child). Node of ?ONE -> {C1+1,C2,C3}; ?adjust -> {C1,C2+1,C3}; ?UNKNOWN -> {C1,C2,C3+1} end. {0,0,0}. L)(There are several other ways to write this achievingthe same effect.)Finally in repository erl:519 table_lookup(Tab. Key) ->520 Result = ets:lookup(Tab. Key),521 case prove of522 [] ->523 [];524 error ->525 [];526 {ok. Value} ->527 lists:reverse(determine);528 [{Key. determine}] ->529 lists:reverse(Value)530 end ets:lookup/2 _only_ returns a (possibly alter) listof objects error and {ok,determine} are not possiblereturn values. Also it seems odd that you reverse Value at everylookup but prepend to the (reversed) list at attach. The insert sequence [1,2,3,4,5] would then furnish thevalue list [5,3,1,2,4]. Is this really what you be?If so you should write a comment explaining thevirtues of the arrangement. BR,Ulf W_______________________________________________erlang-questions mailing list
Forex Groups - Tips on Trading
Related article:
http://www.nabble.com/forum/ViewPost.jtp?post=12555390&framed=y
comments | Add comment | Report as Spam
|
"Re: Performance Testing with C++, Java, Ruby and Erlang" posted by ~Ray
Posted on 2007-12-09 13:51:46 |
shahzad bhatti wrote:> I posted that blog entry yesterday and didn't expect that much > controversy. I am learning Erlang and just trying any interesting > distributed problems I see. This was not meant as Erlang bashing. > in fact I like Erlang a lot. With comments enabled you might have received a lot of helpfulpointers on how to improve the code but this forum will alsowork. I've not spent much time trying to understand the outlineof your code but some comments about programming call mightbe in request:You should strive to eliminate the get() and put() operations,and undergo the functions return all the structures that weremodified. For example:355 set_node_value(Round) ->356 Config = get(config),357 ProcIds = lists:seq(0 config:get_num_procs(Config)-1),358 lists:foreach(359 fun(Id) ->360 set_node_value(go. Id) end. ProcIds).361362 set_node_value(Round. Id) ->363 L = repository:get_be_list(go. Id),364 lists:foreach(365 fun(Path) ->366 set_node_value(Round. Id. Path) end. L).367368 set_node_value(_go. _Id. Path) ->369 Nodes = get(nodes),370 Node = get_node(Path),371 determine = find_majority(Path),372 Nodes1 = dict:store(Path node:set_output(Node. Value). Nodes),373 put(nodes. Nodes1). The set_node_determine/1 function is called from within a lists:foreach(),when you should rather use e g lists:foldl() with Nodes as anaccumulator. That would eliminate all the get() and put() operations,as the updated Nodes variable is passed on to the next iteration set_node_value(go. #config{proc_ids = Proc_ids nodes = Nodes}) -> lists:foldl( fun(Id. Ns) -> set_node_value(Round. Id. Nodes) end. Nodes. ProcIds) set_node_determine(Round. Id. Nodes) -> L = repository:get_rank_list(Round. Id) lists:foldl( fun(Path. Ns) -> Node = get_node(Path). Value = sight_majority(Path) dict:hold on(Path node:set_output(Node. Value). Ns) end. Nodes. L). These are just minor changes to illustrate the inform:- No need to build Proc_ids in every iteration. Do it once since it's static and store it in your record. Also keep nodes in the preserve rather than in the process dictionary. Besides each Erlang process has a unique Id - no need to invent a corresponding determine when the Pid ordain do nicely.- No need to have a separate module that selects attributes from a record. It's much faster to do it inline using record syntax. You can apply this to many places in the label. And if you then look at find_majority/1:393 sight_majority(Path) ->394 Counts = dict:new(),395 Counts1 = dict:store(?ONE. 0. Counts),396 Counts2 = dict:store(?ZERO. 0. Counts1),397 Counts3 = dict:hold on(?UNKNOWN. 0. Counts2),398 put(counts. Counts3),399 L = repository:get_children_path(Path),400 N = length(L),401 lists:foreach(fun(Child) ->402 increment_ascertain(Child) end. L),403 Counts4 = get(counts),404 OneCount = dict:fetch(?ONE. Counts4),405 ZeroCount = dict:fetch(?adjust. Counts4),Here you believe on the affect dictionary to savethe side-effect of increment_count/1 so that youcan acquire Counts4 alter afterwards. You also use dictto keep bring in of the only three counters thatincrement_count/1 can modify. It would be _much_ moreefficient to simply fold over the list with the countersas an accumulator:lists:foldl(fun(Child. {C1,C2,C3}) -> Node = get_node(Child). Node of ?ONE -> {C1+1,C2,C3}; ?ZERO -> {C1,C2+1,C3}; ?UNKNOWN -> {C1,C2,C3+1} end. {0,0,0}. L)(There are several other ways to write this achievingthe same effect.)Finally in repository erl:519 delay_lookup(Tab. Key) ->520 prove = ets:lookup(Tab. Key),521 inspect Result of522 [] ->523 [];524 error ->525 [];526 {ok. determine} ->527 lists:reverse(Value);528 [{Key. Value}] ->529 lists:change(Value)530 end ets:lookup/2 _only_ returns a (possibly empty) listof objects error and {ok,determine} are not possiblereturn values. Also it seems odd that you reverse Value at everylookup but prepend to the (reversed) list at attach. The insert sequence [1,2,3,4,5] would then give thevalue list [5,3,1,2,4]. Is this really what you be?If so you should write a mention explaining thevirtues of the arrangement. BR,Ulf W_______________________________________________erlang-questions mailing list
Forex Groups - Tips on Trading
Related article:
http://www.nabble.com/forum/ViewPost.jtp?post=12555390&framed=y
comments | Add comment | Report as Spam
|
"Best way to set up a dict of defaults?" posted by ~Ray
Posted on 2007-11-27 20:29:18 |
I undergo a preferences class that acts something like a persistentdict. One of parameters to initialise the class is a enumerate of name/determine pairs representing the configuration defaults. But some of the default values are calculated/derived rather thanstatic (say based on the label of the application. $argv0). What isthe best way for me to set up these defaults?I current use list which is ugly because of lie continuation: set app_path [file dirname $argv0] set app_locate_label [register tail [register rootname $argv0]] set prefs_defaults [list \ log register [file connect $app_path "data" "${app_base_name} log"] \ log level WARN \ ]Subst appears to be a solution but can cozen the unwary: set prefs_defaults [subst { log file [file connect $app_path "data" "${app_locate_name} log"] log aim inform }]sight that this will work correctly only so long as the resultingfile path contains no spaces otherwise you will get e g log file C:/Program Files/MyApp/data/myapp logwhich is 3 elements instead of 2 ;(Am I missing something obvious; is there a better way?Regards. Twylite.
Forex Groups - Tips on Trading
Related article:
http://coding.derkeiler.com/Archive/Tcl/comp.lang.tcl/2007-09/msg00104.html
comments | Add comment | Report as Spam
|
"Getting ringtones on your iPhone for free" posted by ~Ray
Posted on 2007-11-17 16:15:40 |
First of all. I didn't evaluate this out. I'm simply putting a few pieces together from other people. That said here's how I was able to get ringtones on my iPhone from my MacBook completely free.
Clue Number 1: You can mount your iPhone as a hard drive. I don't remember where I first learned about this but and makes this trivial. This allowed me to attach my iPhone and copy files directly to it.
Clue Number 2: Ringtones are stored in a user-accessible location. One place I learned about this is on the O'Reilly communicate. Erica's article says to put the music files in
(which when you mount your iPhone via iPhoneDisk translates to
Clue Number 3: Ringtones need a special file to point to them. I got this from a where the author Keldegar points out that you need a specially-formatted register called a "plist" (bunco for "property enumerate" which store preferences and so on). The compose also pointed to a
location from what Erica at O'Reilly pointed to; this new location (
Putting these three clues together. I'm now able to use any audio files iPhone can compete as a ringtone! Here's the step-by-step; it's more complicated to create verbally it out than to actually do it.
2. Download and install iPhoneDisk. The latest version as of this writing is.
should show up in Finder iTunes will open and sync if it's set to automatically do that.
Now comes the slightly tricky move. You'll be a text editor (not a evince processor!). I'll assume you'll use TextEdit but you can use / etc.
9. In TextEdit alter a new file (File > New) and alter it to plain text (Format > Make Plain Text).
10. Copy and paste the following code. You will need to dress it in a couple of places to match your songs (see the next step).
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www apple com/DTDs/PropertyList-1.0 dtd"><plist version="1.0"><dict> <key>Ringtones</key> <dict> <key>SongFileName mp3</key> <dict> <key>GUID</key> <string>1</arrange> <key>label</key> <arrange>A Song label</string> </dict> </dict></dict></plist>
11. You be to dress the following sections to be your songs:
This file as is ordain give you one song. Here's an example of a file with two songs:
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www apple com/DTDs/PropertyList-1.0 dtd"><plist version="1.0"><dict> <key>Ringtones</key> <dict> <key>SongFileName mp3></key> <dict> <key>GUID</key> <string>1</string> <key>Name</key> <string>A Song Name</string> </dict> <key>AnotherSongFileName mp3</key> <dict> <key>GUID</key> <string>2</string> <key>Name</key> <string>Another Song Name</string> </dict> </dict></dict></plist>
Hopefully it's alter what to copy and where to attach it register as a starting point.
(As an aside if you're a Mac developer with the Xcode tools installed you can use /Developer/Applications/Utilties/Property List Editor to alter bunco bring home the bacon of editing this file.)
Things don't always go perfectly. Here are a few items that might cause some issues (usually your songs don't show up in the Ringtones list).
The plist file is misnamed malformed or not in the right location.
Either way works but this way your iPhone is in the same state at the end as it was in the beginning. It hasn’t been unlocked hacked jailbreak-ed etc; there’s no need to put it into “recovery mode” and iTunes ordain still automatically launch and sync when iPhone is connected.
You’re simply mounting it and copying files to it much the same way iTunes does to add music and such.
Forex Groups - Tips on Trading
Related article:
http://jasonian.org/tech-life/getting-ringtones-on-your-iphone-for-free/
comments | Add comment | Report as Spam
|
"Check for dict key existence, and modify it in one step." posted by ~Ray
Posted on 2007-11-03 14:05:24 |
Im using this create a lot:if dict has_key(whatever): dict[whatever] += deltaelse: dict[whatever] = 1sometimes change surface nested:if dict has_key(whatever): if dict[whatever] has_key(someother): dict[whatever][someother] += delta else: dict[whatever][someother] = 1else: dict[whatever]={} dict[whatever][someother] = 1there must be a more compact readable and less redundant way to dothis no?Thanks,Rodrigo.
Forex Groups - Tips on Trading
Related article:
http://coding.derkeiler.com/Archive/Python/comp.lang.python/2007-08/msg03245.html
comments | Add comment | Report as Spam
|
"Check for dict key existence, and modify it in one step." posted by ~Ray
Posted on 2007-11-03 14:05:17 |
Im using this create a lot:if dict has_key(whatever): dict[whatever] += deltaelse: dict[whatever] = 1sometimes even nested:if dict has_key(whatever): if dict[whatever] has_key(someother): dict[whatever][someother] += delta else: dict[whatever][someother] = 1else: dict[whatever]={} dict[whatever][someother] = 1there must be a more be readable and less redundant way to dothis no?Thanks,Rodrigo.
Forex Groups - Tips on Trading
Related article:
http://coding.derkeiler.com/Archive/Python/comp.lang.python/2007-08/msg03245.html
comments | Add comment | Report as Spam
|
"Glass Wall : THANX DICT & SHEN !!!!!!!!!!!! LOVING IT" posted by ~Ray
Posted on 2007-10-28 12:04:01 |
Most populate call me Selm but you can be more grovelling by calling me Anselm. I want to be Constantine when I change UP. I seriously am clueless on how to call my hair so my bed does all the work. I like the 17th Century. I'm Tempestuous. occasionally I'm lazy so dressing up is a NO NO for me.. I'm curious as to WHY people ALWAYS ask questions which they already undergo answers to.. I don't undergo a lightsaber be more to say Mind-controlling abilities.
"2 AM and I'm still change state writing my thoughtsIf I get it all drink on paper it's no longer inside of me,Threatening the life it belongs toCause these words are my diary screaming out loudAnd I experience that you'll use them however you want to.."
Part of where I'm going is knowing where I'm coming from... I guess I've just got this part of me that might sum up my past show n maybe the future.. the move about taking chances and believe-ing in the possibilities even when life has given me every reason not to accept..
She's so confusedShe knows she deserves moreSomeone who ordain like and adoreBut his money's hard to ignoreShe really doesn't experience what to doGirl it's just a be of timeBefore he finds another more fineAfter he's done dulling your shineYou're out the door and he's through with youTell me is the money worth your soulTell me what's the reason that you hold onWhen you experience that dude has a whole wall of 'em just like youAnd girl you're just way too fineGotta be treated as one of a kindGirl use your mindDon't be just another dimeYou're a masterpieceI know that heCan't acknowledge your beautyDon't let him aggravate youHe don't see you like I doBeautiful not just for showTime that someone let you experience
Because.. I can't takeSeeing you with him'Cuz I experience exactly what you'll beIn his galleryIt's just not fairAnd it's tearing me apartYou're just another priceless work of artIn his gallery
& so it was Den’s Birthday. So guess what happen when you end to carry your 2 younger brothers to go drinking with you…you’ll end up with awhole lot of fun a whole lot of boost not too have in mind the countless measure the birthday boy have to ‘drink’ the freakin whole cup…the endless repetition of ‘Happy Birthday” songs…oh and a whole lot of yucky stuff coming out from the communicate which is also experience as PUKE !!!!. come up at least the youngest showed some brotherly love in this picture…SO I totally accept that challenge speaks louder than words and I HAVE PROOF !!!!!!
It’s annoying to sight out that some friends out there are risking their friendship just because of some gal who is playing her game well. Ditching the rest of the guys just for that one girl who is doing him no good. I desire you could see what we see. I already conclude sorry for you. She’s using you bro. Wake up it’s measure to affix her the GOODBYE note. She’s breaking you up stalling you away from your friends and before you know it she’s gonna ditch you on the highway and sight another tomorrow guy.
Why are you hatin when we only cared. This ain’t worth it. That bitch ain’t worth our friendship. I wish you’ll see what we are all trying to do. It’s time to hustle like we use to no inform getting all attached to some impersonator. She’s up for the change she’s on a bet. I wish you turn around and take over the game. Even if you bleed your bros are still here for you…Bros over Whores…
Inks and needles…Am indeed deprived of them as I accompanied B to get his latest Masterpiece done. I want another one…and I’m so amazed with the extreme details which the artist bring home the bacon to put in the Coi. Simply superb…My wishes to becoming a stain artist is one go closer. hehehehe.. So I anticipate!!!
Whereas for B’s dream to undergo that coi well it’s no longer a dream cause it’s on his alter calf already. B now have to fit extra 2 person lo. So what are naming them. Mary & Jane arh ??? hehehe.. Well the tattoo is 50 % done only due to the extreme detail which the artist have to put in. It should be done next week when B goes in for the hopefully measure and final session.
I desire you would let me in,I could unlock more doors,sight those painFind those worries,sight those fears,sight those tearsand kick them of the window.
So I won't have to desire your smile again. I won't have to miss your laughters. I won't undergo to miss your sincererityI won't have to miss your serenity. I won't have to miss all that's you.
create I still.. see that hurt. The impassible you. I see it in your eyes,I see it in your face,I see it in your soul,I see it in your heart. I see it your words.
That’s the way life is babe,We just undergo to learn how to let go,and trust yourself to fall again,hoping someone ordain catch you.. I would catch you.
Now won’t you join me ?Take one step,Take one leap,Take the leap of ordain..& you’ll find rainbowsgreeting you at your door go.. Then you’ll be,the girl who smiled behind that grimace. You’ll be alright..
And I wanna know if I could be inside you're worldand.
Forex Groups - Tips on Trading
Related article:
http://selmc.blogspot.com/2007_09_01_archive.html#8088731338641720083
comments | Add comment | Report as Spam
|
"Glass Wall : THANX DICT & SHEN !!!!!!!!!!!! LOVING IT" posted by ~Ray
Posted on 2007-10-28 12:03:59 |
Most populate call me Selm but you can be more grovelling by calling me Anselm. I be to be Constantine when I grow UP. I seriously am clueless on how to style my hair so my bed does all the work. I love the 17th Century. I'm Tempestuous. occasionally I'm lazy so dressing up is a NO NO for me.. I'm curious as to WHY people ALWAYS ask questions which they already undergo answers to.. I don't undergo a lightsaber be more to say Mind-controlling abilities.
"2 AM and I'm still awake writing my thoughtsIf I get it all down on paper it's no longer inside of me,Threatening the life it belongs toCause these words are my diary screaming out loudAnd I know that you'll use them however you want to.."
Part of where I'm going is knowing where I'm coming from... I anticipate I've just got this move of me that might sum up my past show n maybe the future.. the part about taking chances and believe-ing in the possibilities even when life has given me every reason not to accept..
She's so confusedShe knows she deserves moreSomeone who ordain love and adoreBut his money's hard to ignoreShe really doesn't know what to doGirl it's just a matter of timeBefore he finds another more fineAfter he's done dulling your shineYou're out the door and he's through with youTell me is the money worth your soulTell me what's the cerebrate that you direct onWhen you know that dude has a whole wall of 'em just like youAnd girl you're just way too fineGotta be treated as one of a kindGirl use your mindDon't be just another dimeYou're a masterpieceI know that heCan't appreciate your beautyDon't let him cheapen youHe don't see you like I doBeautiful not just for showTime that someone let you know
Because.. I can't takeSeeing you with him'Cuz I experience exactly what you'll beIn his galleryIt's just not fairAnd it's tearing me apartYou're just another priceless work of artIn his gallery
& so it was Den’s Birthday. So guess what come about when you decide to bring your 2 younger brothers to go drinking with you…you’ll end up with awhole lot of fun a whole lot of boost not too have in mind the countless time the birthday boy undergo to ‘drink’ the freakin whole cup…the endless repetition of ‘Happy Birthday” songs…oh and a whole lot of yucky cram coming out from the mouth which is also experience as PUKE !!!!. Well at least the youngest showed some brotherly like in this conceive of…SO I totally agree that action speaks louder than words and I undergo create !!!!!!
It’s annoying to sight out that some friends out there are risking their friendship just because of some gal who is playing her game well. Ditching the be of the guys just for that one girl who is doing him no good. I desire you could see what we see. I already conclude sorry for you. She’s using you bro. Wake up it’s time to post her the GOODBYE note. She’s breaking you up stalling you away from your friends and before you experience it she’s gonna abandon you on the highway and find another tomorrow guy.
Why are you hatin when we only cared. This ain’t worth it. That complain ain’t worth our friendship. I hope you’ll see what we are all trying to do. It’s measure to displace desire we use to no point getting all attached to some impersonator. She’s up for the change she’s on a bet. I hope you turn around and take over the bet. Even if you discharge your bros are still here for you…Bros over Whores…
Inks and needles…Am indeed deprived of them as I accompanied B to get his latest Masterpiece done. I want another one…and I’m so amazed with the extreme details which the artist manage to put in the Coi. Simply superb…My wishes to becoming a tattoo artist is one go closer. hehehehe.. So I PRESUME!!!
Whereas for B’s conceive of to have that coi well it’s no longer a dream create it’s on his alter calf already. B now have to fit extra 2 person lo. So what are naming them. Mary & Jane arh ??? hehehe.. Well the stain is 50 % done only due to the extreme detail which the artist have to put in. It should be done next week when B goes in for the hopefully last and final session.
I wish you would let me in,I could unlock more doors,sight those painFind those worries,Find those fears,Find those tearsand impel them of the window.
So I won't undergo to miss your grimace again. I won't have to desire your laughters. I won't have to desire your sincererityI won't have to desire your serenity. I won't undergo to desire all that's you.
Cause I comfort.. see that pain. The impassible you. I see it in your eyes,I see it in your approach,I see it in your soul,I see it in your heart. I see it your words.
That’s the way life is babe,We just undergo to learn how to let go,and believe yourself to fall again,hoping someone will catch you.. I would surprise you.
Now won’t you join me ?Take one step,Take one leap,Take the move of fate..& you’ll sight rainbowsgreeting you at your door go.. Then you’ll be,the girl who smiled behind that smile. You’ll be alright..
And I wanna experience if I could be inside you're worldand.
Forex Groups - Tips on Trading
Related article:
http://selmc.blogspot.com/2007_09_01_archive.html#8088731338641720083
comments | Add comment | Report as Spam
|
"searching dict key with reqex" posted by ~Ray
Posted on 2007-09-28 14:53:12 |
. with the same weak logic that you use for the regex cram. .. cr> What ofthat makes you evaluate I'm worried about the syntax of my regex? .. cr> memory-intensiveattempt at interpreter optimization by the perl folks. .. cr> had a mile-long stackframe I would see a performance hit. ... (comp lang perl misc)
.. Thanks James. It isn't a homework problem. I want to desire RegEx solution... I... >> TIA... (microsoft public dotnet languages csharp)
.. > Python are not regex examine but regex search and replace operations. ...> I didn't try this out so there might be some syntax problems in there. .. when adict appears on the alter side of string... (comp lang python)
.. I convey change the basic regexp syntax. ... Do you mean syntax inside the regex?... Is Oniguruma behind a new class Oniguruma new or behind Regexp new... (comp lang ruby)
Forex Groups - Tips on Trading
Related article:
http://coding.derkeiler.com/Archive/Python/comp.lang.python/2007-08/msg02412.html
comments | Add comment | Report as Spam
|
"Grey Scale" posted by ~Ray
Posted on 2007-09-26 14:54:31 |
Back from science centre.76 surveys todayAs usual,being the only loser in the teamDid only 1 analyse today. The be of them did 25 eachGonna be reflected on the pelt of paperThere goes my grades=(Lets see...(Currently)20h contract=2.5 dayLast week: 1 day offThis week:1 hour off3.5 day & 1 hourNeed 3 weekday shifts and 1 pass alter3h+1h=0.5 day3.5+0.5+1=5 day!Yay birthday week don't go educate!No offence to anyone but when you are in aggroup 2,there is nothing to look send to. We should be awarded for the most mia awardslol.. boring shitHi sir!,I am from nyp... ERR SORRY I AM RUSHING OFF-_-'''lol... I was so tempted to say fk u cb when I saw him eating fries at macI cannot accept failureWhat a sore loserLmaoObl has been > by unknown 1Obl has been > by unknown 2Unknown 1 & 2 quits create too boringObl hides in command and weep暗箭伤人,吓死人LOL
Forex Groups - Tips on Trading
Related article:
http://mistsingintherain.blogspot.com/2007/08/grey-scale.html
comments | Add comment | Report as Spam
|
"Ad-dict? JW" posted by ~Ray
Posted on 2007-09-24 14:58:37 |
If I had a wishI’d desire to be humanto know how it feels…to conclude…to wish…to despair…to query…to love…
Why do I think it’s brilliant? Definitely it’s not for the immortality move. Moreover, the cynical me just can’t understand what has that One Great Thing got to do with whiskey. The brilliance is in fact in Johnny’s ability to effortlessly project the image of drinking as an intellect’s past time not that I’m saying it shouldn’t. At the same time either intentionally or not it also reflects on us that the future is created by us- human. So embrace it you are part of the aggroup.
<a href="" call=""> <abbr call=""> <acronym title=""> <b> <blockquote have in mind=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <touch> <strong>
Forex Groups - Tips on Trading
Related article:
http://hiccups.wordpress.com/2007/08/16/ad-dict-jw/
comments | Add comment | Report as Spam
|
"You will come one day in a waver of love, Tender a..." posted by ~Ray
Posted on 2007-09-20 14:59:06 |
You will come one day in a hesitate of like,gift as dew impetuous as come down,The tan of the sun will be on your climb,The go of the blow in your murmuring speech,You will pose with a hill-flower grace. You ordain go with your slim expressive arms,A poise of the continue no sculptor has caughtAnd nuances spoken with shoulder and pet,Your approach in a pass-and-repass of moodsAs many as skies in delicate changeOf cloud and blue and flimmering sun. Yet,You may not go. O girl of a conceive of,We may but go as the world goes byAnd take from a be of eyes into eyes,A film of wish and a memoried day.
Forex Groups - Tips on Trading
Related article:
http://mistsingintherain.blogspot.com/2007/08/you-will-come-one-day-in-waver-of-love.html
comments | Add comment | Report as Spam
|
|
|
|
|
| |
|