精华

【非官方】客户端App已发布Alpha版,不来看看吗?

【非官方】客户端App已发布Alpha版,不来看看吗?
>1< 下载地址: http://t.cn/RRbF6Xg>2< 有什么优点:
  1. 预先加载。预测你可能会点击的内容并且预先加载。
  2. 阻止截屏。阻止其他应用对本应用屏幕内容的读取。
  3. 不用每次访问都打开微信……
  4. 同等网络下稍微比微信快……
>3< 有什么缺点:
  1. 没有通知推送。
  2. 没有分享功能。
  3. 你无法给本应用截图了……
  4. 其实你又装了一个应用……
>4< 我很基本不在线,有问题直接问,我看到会回复
2018-02-10 • IP属地广州
按热门排序    按默认排序

15 个回复

这只是一个简单的骨架,至于为什么没有加肉呢,是因为我还没来得及做。
zhengqiang - 勤奋学习
任重道远啊。。。
就是一个 网页嘛。。 弄成应用 ^_^ 还是是大神…… 反正我都不会做。点赞~~~
加油:D
虽然年纪轻轻,但已有了一事无成的感慨,觉得自己什么都没有做成。自己虽然会点算法设计,会点开源硬件,会点3D设计,会点机器学习,会点混合开发,会点ROM开发,但全都不精通,带来的收益太低……
同样的年龄,身边的人是各种技能点乱坠,有的会CAD,有的每周有六七百块钱的收入。除了技术类的人,还有其他方面的才子,有的人能上歌手大赛的舞台,有的人每次艺术画展都有他。越想越是不舒坦啊……
看着别人的光彩,总觉得自己一事无成。离高考也只剩109天了,然而知识到了,分数却没到。感觉自己只是大数据里的一个字节。害怕得不到自己想要的,害怕活不成自己想成为的样子……
而且自己人际交往也很糟糕,认识的人很少,原有的熟人也越来越少,渐渐的都成了陌生人了……
盖将自其变者而观之,则天地曾不能以一瞬;自其不变者而观之,则物与我皆无尽也,而又何羡乎!

为什么发这里?因为这里没人认识我
请接收一份特殊的问候:


py:
print("Happy New Year ^_-")

java:
public class Java {
public static void main(String[] args) {
System.out.println("Happy New Year ^_-");
}
}

c:
#include <stdio.h>
int main() {
printf("Happy New Year ^_-");
}

cpp:
#include <iostream>
int main() {
std::cout << "Happy New Year ^_-";
}

js:
console.log("Happy New Year ^_-");

cs:
class HelloWorld {
static void Main() {
System.Console.WriteLine("Happy New Year ^_-");
}
}

swift:
print("Happy New Year ^_-")

php:
<?php
echo 'Happy New Year ^_-';

R:
cat("Happy New Year ^_-")

rb:
puts "Happy New Year ^_-"

go:
package main
import "fmt"
func main() {
fmt.Printf("Happy New Year ^_-")
}

asm:
section .text
global _start
_start:
xor eax,eax
lea edx,[rax+len]
mov al,1
mov esi,msg
mov edi,eax
syscall
xor edi, edi
lea eax,[rdi+60]
syscall
section .rodata
msg db 'Happy New Year ^_-',0xa
len equ $ - msg

sh:
echo "Happy New Year ^_-"

html:
<!DOCTYPE html>
<html>
<head>
<title>Happy New Year ^_-</title>
</head>
<body>
<h1>Happy New Year ^_-</h1>
</body>
</html>

scala:
object HelloWorld extends App {
println("Happy New Year ^_-")
}

ino:
void setup(){
Serial.begin(9600);
Serial.println("Happy New Year ^_-!");
}

p6:
v6;
say "Happy New Year ^_-!";

m (Matlab):
disp('Happy New Year ^_-')

sql:
CREATE TABLE HELLO (HELLO CHAR(12))
INSERT INTO HELLO
VALUES ('Happy New Year ^_-!')
SELECT * FROM HELLO

vb:
Module HelloWorld
Sub Main()
MsgBox("Happy New Year ^_-!")
End Sub
End Module

rs:
fn main() {
println!("Happy New Year ^_-!");
}

m (Objective-C):
#import <Foundation/Foundation.h>
int main(void)
{
NSLog(@"Happy New Year ^_-");
}

hs:
module Main where
main = putStrLn "Happy New Year ^_-!"

lua:
print("Happy New Year ^_-")

delphi:
Program Hello;
($APPTYPE CONSOLE)
Begin
WriteLn('Happy New Year ^_-');
End.

sas:
%macro putit( string= );
%put &string;
%mend;
%putit(string=Happy New Year ^_-!)

pde:
size(128, 128);
background(0);
textAlign(CENTER, CENTER);
fill(255);
text("Happy New Year ^_-", width / 2, height / 2);

cbl:
identification division.
program-id. cobol.
procedure division.
main.
display 'Happy New Year ^_-.' end-display.
stop run.

lsp:
(DEFUN hello ()
(PRINT (LIST 'Happy New Year ^_-'))
)
(hello)

d:
import std.stdio;
void main() {
writefln("Happy New Year ^_-!");
}

f90:
program helloworld
print *,'Happy New Year ^_-'
end program helloworld

abap:
REPORT ZHELLO_WORLD.
START-OF-SELECTION.
WRITE: 'Happy New Year ^_-!'.

clj:
(println "Happy New Year ^_-")

pro:
helloWorld :-
write('Happy New Year ^_-').
:- helloWorld.

vhdl:
use std.textio.all;
entity hello_world is
end hello_world;
architecture behaviour of hello_world is
begin
process
begin
write (output, String'("Happy New Year ^_-!"));
wait;
end process;
end behaviour;

ada:
with Text_IO;
procedure Hello_World is
begin
Text_IO.Put_line("Happy New Year ^_-!");
end Hello_World;

jl:
println("Happy New Year ^_-")

v:
module main;
initial
begin
$display("Happy New Year ^_-!");
$finish;
end
endmodule

erl:
-module(erlang_hw).
-export([start/0]).
start() ->
io:format("Happy New Year ^_-~n").

scm:
(display "Happy New Year ^_-") (newline)

ml:
print_string "Happy New Year ^_-\n"

tcl:
puts "Happy New Year ^_-"

ijs:
echo 'Happy New Year ^_-'
exit ''

fth:
.( Happy New Year ^_-!)

as:
trace( "Happy New Year ^_-" );
是调用接口?代码能开源吗?哈哈,可能有些人怕不安全
费力科思 - WeGene勤杂工
楼主是只有寒暑假干活啊
 
啥时候毕业?
已加精,1000积分请查收!
这是最后一条社区回复。由于前段时间我的服务器搬迁,β版无限延期,高考后再见。
peace
费力科思 - WeGene勤杂工
高考考啥学校和专业啊?
厉害
搂住快毕业
yhlhhhhh - 每日与生物工程斗智斗勇到谢顶
前来挖坟~咱俩经历貌似有那么一丝的相似😂话说哥们,你编程会啥语言嘞~
这都4年前的帖了,挖个坟把我给炸出来了,我回复下哈:

现在是被疫情困在家里上Zoom大学的留学生,数据分析与人工智能方向。

这几年搞过一堆东西,开发方面做过网站前后端、微信小程序、Unity、Android App、Office插件,
AI算法方面做过CV质检、心电图诊断(第一个决赛拿奖的项目)、故障预测、推荐系统、时序信号分析,
硬件方面自己打过PCB等。
更多情况看我简历截图,懒得打了:

图片1.png


图片2.png

 
谢谢

要回复问题请先登录注册