similar to: Replacing of non-alphanumeric chars in Name can be confusing

Displaying 20 results from an estimated 3000 matches similar to: "Replacing of non-alphanumeric chars in Name can be confusing"

2017 May 17
3
Improving packets/sec and data rate - v1.0.24
Niklas - Thanks! Yeah, your Github issue was very useful for me to understand what is probably causing our issue (the syscall chain done on every UDP packet). Very interesting that you're able to see around 90% of a Gig line on bare metal. Were you ever able to make any further progress on adjusting Tinc based on the investigation in https://github.com/gsliepen/tinc/issues/110 ? Martin -
2017 May 18
1
Improving packets/sec and data rate - v1.0.24
I noticed a large performance boost both on bare metal and in vps instances by turning on kernel routing in the tinc config, and using full host declerations for routs rather than dumping things to the tun interface ambiguously. "Forwarding = kernel" ip route add 1.2.3.4 via 4.3.2.1 dev tun -instead of- ip route add 1.2.3.4 dev tun On May 17, 2017 3:10 PM, "Niklas Hambüchen"
2017 May 17
2
Improving packets/sec and data rate - v1.0.24
Hi Jared, I've seen the same while testing on digital ocean, I think it's the context switching that happens when sending a packet. I've done some testing with wireguard and that has a lot better performance but it's still changing quite a lot and only does a subset of what tinc does so probably not a stable solution. Martin On Wed, 17 May 2017 at 18:05 Jared Ledvina <jared at
2005 Jan 18
1
tinc svn rev 1432 segfaults
Dear readers, Today i checked out a fresh copy of tinc from svn (rev 1432) and got the following: tinc[32605]: Got fatal signal 11 (Segmentation fault) tinc[32605]: Got another fatal signal 11 (Segmentation fault): not restarting. I've got two nodes set up in switch mode which work fine with tinc-1.0.2 (not with 1.0.3 due to the broadcast packet issue) gdb backtrace: Program received
2010 Sep 17
1
friend of a friend type darknets
Hi! here a little patch for darknet functionality, i hope it does what its intended for sufficiently ... but it seems to work :). what should it do? imagine your friend-network. A trusts B and C. B trusts D and E, D trust F, C trusts G. All trust relationships are mutal A <---> C <---> G ^ \ \-----> B <---> D <---> F ^ \ \---> E
2016 Apr 25
3
Please assist -- Unable to remove '-' character from char vector--
Hi, I have a char vector with year values. Some cells have single year value '2001-' and some have range like 1996-2007. I need to remove hyphen character '-' from all the values within the character vector named as 'end'. After removing the hyphen I need to get the last number from the cells where there are year range values i.e if the cell has range 1996-2007, the code
2018 May 20
1
Issue using tinc-vpn on Windows Server 1709 with Docker Overlay Network
Hi Etienne, Am 20.05.2018 um 10:58 schrieb Etienne Dechamps: > Hi Marc, > > A number of bugs have been found and fixed in the code that deals with > Windows devices in tinc 1.1: > > https://github.com/gsliepen/tinc/pull/169 > https://github.com/gsliepen/tinc/pull/173 > https://github.com/gsliepen/tinc/pull/174 > https://github.com/gsliepen/tinc/pull/181 >
2016 Apr 25
0
Please assist -- Unable to remove '-' character from char vector--
Hi Sunny, Try this: # notice that I have replaced the fancy hyphens with real hyphens end<-c("2001-","1992-","2013-","2013-","2013-","2013-", "1993-2007","2010-","2012-","1984-1992","1996-","2015-") splitends<-sapply(end,strsplit,"-") last_bit(x)
2018 May 20
0
Issue using tinc-vpn on Windows Server 1709 with Docker Overlay Network
Hi Marc, A number of bugs have been found and fixed in the code that deals with Windows devices in tinc 1.1: https://github.com/gsliepen/tinc/pull/169 https://github.com/gsliepen/tinc/pull/173 https://github.com/gsliepen/tinc/pull/174 https://github.com/gsliepen/tinc/pull/181 https://github.com/gsliepen/tinc/pull/182 Unfortunately, these fixes have not made it in a tinc 1.1 release yet, but
2012 Nov 29
1
Read in alphanumeric column without decimals
All - How can I read in a column of alphanumeric values without including ".0" on the numeric values? Original column: TeamLeaderID 258 342 316 U8 331 279 D1 116 235 296 ... [truncated] leaders = read.xlsx2('FILE', sheetIndex = 1, header = T) Column after it's been read in: leaders$TeamLeaderID 258.0 342.0 316.0 U8 331.0 279.0 D1 116.0 235.0 296.0 ... [truncated] If I
2006 Jan 06
1
Alphanumeric pattern match in extensions.conf
I need to match an incoming call based on a prefixed string, and this solution was suggested to me some time back. exten => _conf.,1,Answer exten => _conf.,2,MeetMe(${EXTEN:4}|d) exten => _conf.,3,Hangup However incoming calls never match this pattern, and I cannot find any evidence in the wiki or on google that such a pattern is valid. I'm currently running a SVN trunk, but have
2008 Apr 25
2
Differentiate alphanumeric vs numeric strings
I have a bunch of tables in a Microsoft Access database. An updated database is sent to me every week containing a new table. I know that is inefficient and weird but welcome to my life. I want to read the tables whose names are something such as "040207" but not the ones that have alphanumeric names such as "everyone". Using RODBC I am easily able to create a character vector
2006 Nov 09
1
special characters in alphanumeric extensions
Hi all, I use alphanumeric names as extensions in my Asterisk architecture, which are the username part of the e-mail of each person at my site. Because Asterisk was primarily built to use numeric extensions, I'm having some problems with people that have usernames with dots between letters, like "john.doe". More specifically my problem is when john.doe dials some number.
2006 Nov 09
0
special characters in alphanumeric extension s
>I use alphanumeric names as extensions in my Asterisk architecture, >which are the username part of the e-mail of each person at my site. >Because Asterisk was primarily built to use numeric extensions, I'm >having some problems with people that have usernames with dots between >letters, like "john.doe". I ran into the same problem myself and I realized while
2011 May 27
1
XP Clients Showing Incorrect Filenames
I'm seeing something fairly odd where XP clients show some - but not nearly all -filenames as a random jumble of characters. The files are still perfectly accessible; if I tell windows manually what the file type is, they'll open. I don't think it's a character set issue. Affected filenames contain alphanumeric characters (a-zA-z, no accents or anything outside ASCII), periods,
2009 Jul 09
2
naming of columns in R dataframe consisting of mixed data (alphanumeric and numeric)
Hello, I have an r function that creates the following dataframe tresults2. Notice that column 1 does not have a column heading. Tresults2: [,1] estparam 18.00000 nullval 20.00000 . . . ciWidth 2.04622 HalfInterval 1.02311 pertinent code: results<-cbind( estparam, nullval, t, pv_left, pv_right, pv_two_t, estse, df, cc, tbox, llim, ulim, ciWidth,
2009 May 27
0
[PATCH] src/linux/device.c: Fix segfault when running without `--net'.
If running without `--net', the (global) variable `netname' is NULL. This creates a segmentation fault because this NULL-pointer is passed to strdup: Program terminated with signal 11, Segmentation fault. #0 0xb7d30463 in strlen () from /lib/tls/i686/cmov/libc.so.6 (gdb) bt #0 0xb7d30463 in strlen () from /lib/tls/i686/cmov/libc.so.6 #1 0xb7d30175 in strdup () from
2016 Apr 25
1
Please assist -- Unable to remove '-' character from char vector--
Thank you Jim, The code did assist me to get the what I needed. Also, I learnt that there are different types of dashes (en-dash/em-dash/hyphen) as explained on this site : http://www.punctuationmatters.com/hyphen-dash-n-dash-and-m-dash/ I achieved it by executing below command after going through this page on stackoverflow:
2004 May 11
1
Caller-ID for alphanumeric SIP uris
My first post here, so a brief intro: I'm somewhat new to Asterisk, but have been working with SIP in depth for about 3 years. I studied Asterisk for about a year and have been experimenting with it hands-on for the past month or so. I've done 6 Asterisk installs in wildly different roles/applications, some of them test systems, others in semi-production, so I know a little bit about
2011 Mar 10
1
ChanSpy with alphanumeric SIP channels [1.6.2]
Hi, I'm using SIP users of the form 'ab_12345' (two letters, underscore, 5 digits). ChanSpy is working fine for listening in to conversations initiated by these channels, and I can use '*' to randomly switch channels. However, is there any way in this scenario to be able to switch ChanSpy to a specific channel by typing in a ...# key sequence during a spy session?