osc

Can I create OSC message handlers containing wildcards?

杀马特。学长 韩版系。学妹 提交于 2019-12-08 06:35:24
问题 I am trying to create an OSC msg handler, using pyosc, which can listen to incoming multitoggle messages from TouchOSC. The multitoggle is a grid of toggleswitches. The incoming messages are in the form "/1/multitoggle1/5/8" or "/1/multitoggle1/x/y" where x and y are integers corresponding to the grid position. server.addMsgHandler( "/1/multitoggle1/5/8", toggle_callback ) works fine but I need the 5 and the 8 to be arguments read in the handler so I can get at them without having to add a

吐槽OSC

强颜欢笑 提交于 2019-12-05 21:45:23
看到一篇突出OSC的动弹,感同身受,一年前使用上了开源中国的博客,瞬间觉得甩了CSDN几条街,于是到今天,每天我都会上OSC,偶尔还会写写博客,发表一下评论、看法。说实话我很感谢OSC。 然后呢?打开OSC之后,很不自觉地就是查看动弹、热门动弹,看到有图片就会点击图片,瞎逛而已。下面我来吐槽一下OSC,21世纪,吐槽算不上什么,吐槽应该是用户最直白的反馈,敏捷开发要的不就是用户的反馈吗? 1)在问答去搜索根本就没人回答,或者回答质量不高,你不信看看我的提到的问题,妹的都是把自己的答案标准正确答案[9]; 2)OSC首页搞这么多内容是为了什么?一眼根本看不到亮点还老是弹弹...........如果是博客系统,你就上一些热门的博客,类似推酷;如果是提问解答系统,你就学学知乎,把热门的问题和回答分享给大家;如果是社交你就学学新浪,给我传视频点赞分享; 3)OSC客户端,因为我在想,业务人高手开发的软件如果装在手机上都会闪退,那么说明手机系统不行。不开玩笑,虽然我的手机一直装着OSC,但是使用率几乎为0; 4)还是OSC客户端,我不知道有什么理由我需要打开OSC,看博客、新闻我有推酷、虎嗅、36氪;看问题论坛我有知乎、SegmentFault;看工作我有拉钩;难道你想我打开你看代码?看翻译?看专题?说实话在闲暇的时候要一个程序员拿着手机看代码,是不是有点过分了。纯手打

OSC中Markdown编辑器基本语法

左心房为你撑大大i 提交于 2019-12-05 12:20:36
分割线 -------------- #h1 #h1 ##h2 ##h2 ###h3 ###h3 换行 文字末尾使用两个以上空格即可 无序列表 列表 列表 第三个 在 - 符号前后加上一个空格 无序列表嵌套 列表 列表 列表 列表 第三个 将子列表与父列表相隔一个制表位或者四个空格即可 引用 在行开始使用 > 符号 效果: 在行开始使用 > 符号 代码部分: 使用反引号将代码包裹起来即可`` 效果: echo "hello world" 代码段落: 使用三个成对的反引号将代码段落包裹起来几个``` ``` 效果: var a = 1; var b = 1; 其他说明: 在osc的markdown编辑器中使用代码段落貌似用```不行,需要用 <!-- lang: php --> 等标示符才可以显示大片的代码段落。 需要在markdown里输出`等内置关键标示符的时候需要用 \ 反引号转义才行 来源: oschina 链接: https://my.oschina.net/u/2295334/blog/359325

Android开源中国客户端学习 上拉刷新 底部加载 的listview <4>

社会主义新天地 提交于 2019-12-04 20:13:12
这次学习一些osc客户端的 上拉刷新 底部加载 的listview 这里还是以加载新闻为例 osc上的下拉刷新 和底部自动加载下一页是和qq空间等app相似的,那就学习一下 其实osc是使用了一个开源的控件 --PullToRefreshListView 具体代码恕不粘贴 具体的使用在fragme_news.xml中 <net.oschina.app.widget.PullToRefreshListView android:id="@+id/frame_listview_news" style="@style/widget_listview" /> 在这里说一点,其实osc各个功能的切换只不过是 切换四个fragmelayout的可见性。具体请查看main.xml 先说下拉刷新 ,其实使用了PullToRefreshListView这个控件后,使用下拉就很简单了 只需监听一个下来事件就ok' lvNews.setOnRefreshListener(new PullToRefreshListView.OnRefreshListener() { public void onRefresh() { loadLvNewsData(curNewsCatalog, 0, lvNewsHandler, UIHelper.LISTVIEW_ACTION_REFRESH); } });

javascript osc library?

帅比萌擦擦* 提交于 2019-12-03 09:41:04
问题 Does an open sound control library exists for javascript? I cant seem to find any information on this. 回答1: Web sockets are, indeed, the best way to implement OSC in a browser - but, with lacking support, the next-best thing is a custom HTTP server. An effort is underway to build one - I've not checked out the process, so have a look yourself to see if it fits your purposes. 回答2: Implemented, client-side, in my KievII library. Here's a link to the code. Works nicely with my server-side, node

How to send MIDI or OSC signals to a Mac application from my iOS application?

匿名 (未验证) 提交于 2019-12-03 09:02:45
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm thinking of writing an iPhone/iPad application to emulate a MIDI controller. I know there are already quite a few available but I still want to do my own. I have several questions about that: I know a little bit about MIDI, but I've recently heard about OSC. Obviously MIDI is supported by almost all DJ software applications, but does OSC have a critical advantage that makes it compelling? For example, is it possible for my iOS application to send OSC messages directly to the DJ application without going through a hosted proxy application

OSC android app 退出方法改进

时间秒杀一切 提交于 2019-12-03 05:05:52
/** * 应用程序Activity管理类:用于Activity管理和应用程序退出 * @author liux (http://my.oschina.net/liux) * @version 1.0 * @created 2012-3-21 */ public class AppManager { ....... /** * 退出应用程序 */ public void AppExit(Context context) { try { finishAllActivity(); ActivityManager activityMgr= (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE); activityMgr. killBackgroundProcesses (context.getPackageName()); //activityMgr. restartPackage (context.getPackageName()); //不建议,不推荐的方法==此方法将来会不被支持 System.exit(0); //只靠关闭activity是不能完全退出的,这里只是释放了activity,还有其他未释放的资源通过重启安装包后调用System.exit(0);才能完全退出。 } catch

Lattice Fpga Internal clock

匿名 (未验证) 提交于 2019-12-03 01:41:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to configure a lattice MachX03's internal Oscillator. I read the MachXO3 sysCLOCK PLL Design and Usage Guide* and tried using the vhdl code found on page 31 of the documente, but I keep getting this error (VHDL-1261) syntax error near COMPONENT. Can someone tell me how I can get the clock to work using VHDL? here is the code I'm trying to use: LIBRARY lattice; library machXO3; use machXO3.all; COMPONENT OSCH GENERIC( NOM_FREQ: string := "53.20"); --53.20MHz, or can select other supported frequencies PORT( STDBY : IN STD_LOGIC; --

OSC android app LayoutParams改进

最后都变了- 提交于 2019-12-02 08:05:40
android.view.ViewGroup.LayoutParams public static final int FILL_PARENT Since: API Level 1 Special value for the height or width requested by a View. FILL_PARENT means that the view wants to be as big as its parent, minus the parent's padding, if any. This value is deprecated starting in API Level 8 and replaced by MATCH_PARENT . Constant Value: -1 (0xffffffff) //////////////////////////////////////////////////// private void applyTo(View target) { LayoutParams lp = target.getLayoutParams(); ViewParent parent = target.getParent(); FrameLayout container = new FrameLayout(context); if (target